diff --git a/GatewayFlattened.sol b/GatewayFlattened.sol deleted file mode 100644 index 66b7487..0000000 --- a/GatewayFlattened.sol +++ /dev/null @@ -1,1326 +0,0 @@ - - -// SPDX-License-Identifier: MIXED - -// Sources flattened with hardhat v2.14.0 https://hardhat.org - -// File @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) - -pragma solidity ^0.8.1; - -/** - * @dev Collection of functions related to the address type - */ -library AddressUpgradeable { - /** - * @dev Returns true if `account` is a contract. - * - * [IMPORTANT] - * ==== - * It is unsafe to assume that an address for which this function returns - * false is an externally-owned account (EOA) and not a contract. - * - * Among others, `isContract` will return false for the following - * types of addresses: - * - * - an externally-owned account - * - a contract in construction - * - an address where a contract will be created - * - an address where a contract lived, but was destroyed - * - * Furthermore, `isContract` will also return true if the target contract within - * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, - * which only has an effect at the end of a transaction. - * ==== - * - * [IMPORTANT] - * ==== - * You shouldn't rely on `isContract` to protect against flash loan attacks! - * - * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets - * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract - * constructor. - * ==== - */ - function isContract(address account) internal view returns (bool) { - // This method relies on extcodesize/address.code.length, which returns 0 - // for contracts in construction, since the code is only stored at the end - // of the constructor execution. - - return account.code.length > 0; - } - - /** - * @dev Replacement for Solidity's `transfer`: sends `amount` wei to - * `recipient`, forwarding all available gas and reverting on errors. - * - * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost - * of certain opcodes, possibly making contracts go over the 2300 gas limit - * imposed by `transfer`, making them unable to receive funds via - * `transfer`. {sendValue} removes this limitation. - * - * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. - * - * IMPORTANT: because control is transferred to `recipient`, care must be - * taken to not create reentrancy vulnerabilities. Consider using - * {ReentrancyGuard} or the - * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. - */ - function sendValue(address payable recipient, uint256 amount) internal { - require(address(this).balance >= amount, "Address: insufficient balance"); - - (bool success, ) = recipient.call{value: amount}(""); - require(success, "Address: unable to send value, recipient may have reverted"); - } - - /** - * @dev Performs a Solidity function call using a low level `call`. A - * plain `call` is an unsafe replacement for a function call: use this - * function instead. - * - * If `target` reverts with a revert reason, it is bubbled up by this - * function (like regular Solidity function calls). - * - * Returns the raw returned data. To convert to the expected return value, - * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. - * - * Requirements: - * - * - `target` must be a contract. - * - calling `target` with `data` must not revert. - * - * _Available since v3.1._ - */ - function functionCall(address target, bytes memory data) internal returns (bytes memory) { - return functionCallWithValue(target, data, 0, "Address: low-level call failed"); - } - - /** - * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with - * `errorMessage` as a fallback revert reason when `target` reverts. - * - * _Available since v3.1._ - */ - function functionCall( - address target, - bytes memory data, - string memory errorMessage - ) internal returns (bytes memory) { - return functionCallWithValue(target, data, 0, errorMessage); - } - - /** - * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], - * but also transferring `value` wei to `target`. - * - * Requirements: - * - * - the calling contract must have an ETH balance of at least `value`. - * - the called Solidity function must be `payable`. - * - * _Available since v3.1._ - */ - function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { - return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); - } - - /** - * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but - * with `errorMessage` as a fallback revert reason when `target` reverts. - * - * _Available since v3.1._ - */ - function functionCallWithValue( - address target, - bytes memory data, - uint256 value, - string memory errorMessage - ) internal returns (bytes memory) { - require(address(this).balance >= value, "Address: insufficient balance for call"); - (bool success, bytes memory returndata) = target.call{value: value}(data); - return verifyCallResultFromTarget(target, success, returndata, errorMessage); - } - - /** - * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], - * but performing a static call. - * - * _Available since v3.3._ - */ - function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { - return functionStaticCall(target, data, "Address: low-level static call failed"); - } - - /** - * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], - * but performing a static call. - * - * _Available since v3.3._ - */ - function functionStaticCall( - address target, - bytes memory data, - string memory errorMessage - ) internal view returns (bytes memory) { - (bool success, bytes memory returndata) = target.staticcall(data); - return verifyCallResultFromTarget(target, success, returndata, errorMessage); - } - - /** - * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], - * but performing a delegate call. - * - * _Available since v3.4._ - */ - function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { - return functionDelegateCall(target, data, "Address: low-level delegate call failed"); - } - - /** - * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], - * but performing a delegate call. - * - * _Available since v3.4._ - */ - function functionDelegateCall( - address target, - bytes memory data, - string memory errorMessage - ) internal returns (bytes memory) { - (bool success, bytes memory returndata) = target.delegatecall(data); - return verifyCallResultFromTarget(target, success, returndata, errorMessage); - } - - /** - * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling - * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. - * - * _Available since v4.8._ - */ - function verifyCallResultFromTarget( - address target, - bool success, - bytes memory returndata, - string memory errorMessage - ) internal view returns (bytes memory) { - if (success) { - if (returndata.length == 0) { - // only check isContract if the call was successful and the return data is empty - // otherwise we already know that it was a contract - require(isContract(target), "Address: call to non-contract"); - } - return returndata; - } else { - _revert(returndata, errorMessage); - } - } - - /** - * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the - * revert reason or using the provided one. - * - * _Available since v4.3._ - */ - function verifyCallResult( - bool success, - bytes memory returndata, - string memory errorMessage - ) internal pure returns (bytes memory) { - if (success) { - return returndata; - } else { - _revert(returndata, errorMessage); - } - } - - function _revert(bytes memory returndata, string memory errorMessage) private pure { - // Look for revert reason and bubble it up if present - if (returndata.length > 0) { - // The easiest way to bubble the revert reason is using memory via assembly - /// @solidity memory-safe-assembly - assembly { - let returndata_size := mload(returndata) - revert(add(32, returndata), returndata_size) - } - } else { - revert(errorMessage); - } - } -} - - -// File @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) - -pragma solidity ^0.8.2; - -/** - * @dev 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] - * ``` - * /// @custom:oz-upgrades-unsafe-allow constructor - * constructor() { - * _disableInitializers(); - * } - * ``` - * ==== - */ -abstract contract Initializable { - /** - * @dev Indicates that the contract has been initialized. - * @custom:oz-retyped-from bool - */ - uint8 private _initialized; - - /** - * @dev Indicates that the contract is in the process of being initialized. - */ - bool private _initializing; - - /** - * @dev Triggered when the contract has been initialized or reinitialized. - */ - event Initialized(uint8 version); - - /** - * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, - * `onlyInitializing` functions can be used to initialize parent contracts. - * - * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a - * constructor. - * - * Emits an {Initialized} event. - */ - modifier initializer() { - bool isTopLevelCall = !_initializing; - require( - (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), - "Initializable: contract is already initialized" - ); - _initialized = 1; - if (isTopLevelCall) { - _initializing = true; - } - _; - if (isTopLevelCall) { - _initializing = false; - emit Initialized(1); - } - } - - /** - * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the - * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be - * used to initialize parent contracts. - * - * A reinitializer may be used after the original initialization step. This is essential to configure modules that - * are added through upgrades and that require initialization. - * - * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` - * cannot be nested. If one is invoked in the context of another, execution will revert. - * - * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in - * a contract, executing them in the right order is up to the developer or operator. - * - * WARNING: setting the version to 255 will prevent any future reinitialization. - * - * Emits an {Initialized} event. - */ - modifier reinitializer(uint8 version) { - require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); - _initialized = version; - _initializing = true; - _; - _initializing = false; - emit Initialized(version); - } - - /** - * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the - * {initializer} and {reinitializer} modifiers, directly or indirectly. - */ - modifier onlyInitializing() { - require(_initializing, "Initializable: contract is not initializing"); - _; - } - - /** - * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. - * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized - * to any version. It is recommended to use this to lock implementation contracts that are designed to be called - * through proxies. - * - * Emits an {Initialized} event the first time it is successfully executed. - */ - function _disableInitializers() internal virtual { - require(!_initializing, "Initializable: contract is initializing"); - if (_initialized != type(uint8).max) { - _initialized = type(uint8).max; - emit Initialized(type(uint8).max); - } - } - - /** - * @dev Returns the highest version that has been initialized. See {reinitializer}. - */ - function _getInitializedVersion() internal view returns (uint8) { - return _initialized; - } - - /** - * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. - */ - function _isInitializing() internal view returns (bool) { - return _initializing; - } -} - - -// File @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) - -pragma solidity ^0.8.0; - -/** - * @dev 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. - */ -abstract contract ContextUpgradeable is Initializable { - function __Context_init() internal onlyInitializing { - } - - function __Context_init_unchained() internal onlyInitializing { - } - function _msgSender() internal view virtual returns (address) { - return msg.sender; - } - - function _msgData() internal view virtual returns (bytes calldata) { - return msg.data; - } - - function _contextSuffixLength() internal view virtual returns (uint256) { - return 0; - } - - /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps - */ - uint256[50] private __gap; -} - - -// File @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) - -pragma solidity ^0.8.0; - - -/** - * @dev Contract module which provides a basic access control mechanism, where - * there is an account (an owner) that can be granted exclusive access to - * specific functions. - * - * By default, the owner account will be the one that deploys the contract. 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. - */ -abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { - address private _owner; - - event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); - - /** - * @dev Initializes the contract setting the deployer as the initial owner. - */ - function __Ownable_init() internal onlyInitializing { - __Ownable_init_unchained(); - } - - function __Ownable_init_unchained() internal onlyInitializing { - _transferOwnership(_msgSender()); - } - - /** - * @dev Throws if called by any account other than the owner. - */ - modifier onlyOwner() { - _checkOwner(); - _; - } - - /** - * @dev Returns the address of the current owner. - */ - function owner() public view virtual returns (address) { - return _owner; - } - - /** - * @dev Throws if the sender is not the owner. - */ - function _checkOwner() internal view virtual { - require(owner() == _msgSender(), "Ownable: caller is not the owner"); - } - - /** - * @dev 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. - */ - function renounceOwnership() public virtual onlyOwner { - _transferOwnership(address(0)); - } - - /** - * @dev Transfers ownership of the contract to a new account (`newOwner`). - * Can only be called by the current owner. - */ - function transferOwnership(address newOwner) public virtual onlyOwner { - require(newOwner != address(0), "Ownable: new owner is the zero address"); - _transferOwnership(newOwner); - } - - /** - * @dev Transfers ownership of the contract to a new account (`newOwner`). - * Internal function without access restriction. - */ - function _transferOwnership(address newOwner) internal virtual { - address oldOwner = _owner; - _owner = newOwner; - emit OwnershipTransferred(oldOwner, newOwner); - } - - /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps - */ - uint256[49] private __gap; -} - - -// File @openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) - -pragma solidity ^0.8.0; - - -/** - * @dev Contract module which provides access control mechanism, where - * there is an account (an owner) that can be granted exclusive access to - * specific functions. - * - * By default, the owner account will be the one that deploys the contract. This - * can later be changed with {transferOwnership} and {acceptOwnership}. - * - * This module is used through inheritance. It will make available all functions - * from parent (Ownable). - */ -abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable { - address private _pendingOwner; - - event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); - - function __Ownable2Step_init() internal onlyInitializing { - __Ownable_init_unchained(); - } - - function __Ownable2Step_init_unchained() internal onlyInitializing { - } - /** - * @dev Returns the address of the pending owner. - */ - function pendingOwner() public view virtual returns (address) { - return _pendingOwner; - } - - /** - * @dev 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. - */ - function transferOwnership(address newOwner) public virtual override onlyOwner { - _pendingOwner = newOwner; - emit OwnershipTransferStarted(owner(), newOwner); - } - - /** - * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. - * Internal function without access restriction. - */ - function _transferOwnership(address newOwner) internal virtual override { - delete _pendingOwner; - super._transferOwnership(newOwner); - } - - /** - * @dev The new owner accepts the ownership transfer. - */ - function acceptOwnership() public virtual { - address sender = _msgSender(); - require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); - _transferOwnership(sender); - } - - /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps - */ - uint256[49] private __gap; -} - - -// File @openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) - -pragma solidity ^0.8.0; - - -/** - * @dev Contract module which allows children to implement an emergency stop - * mechanism that can be triggered by an authorized account. - * - * This module is used through inheritance. It will make available the - * modifiers `whenNotPaused` and `whenPaused`, which can be applied to - * the functions of your contract. Note that they will not be pausable by - * simply including this module, only once the modifiers are put in place. - */ -abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { - /** - * @dev Emitted when the pause is triggered by `account`. - */ - event Paused(address account); - - /** - * @dev Emitted when the pause is lifted by `account`. - */ - event Unpaused(address account); - - bool private _paused; - - /** - * @dev Initializes the contract in unpaused state. - */ - function __Pausable_init() internal onlyInitializing { - __Pausable_init_unchained(); - } - - function __Pausable_init_unchained() internal onlyInitializing { - _paused = false; - } - - /** - * @dev Modifier to make a function callable only when the contract is not paused. - * - * Requirements: - * - * - The contract must not be paused. - */ - modifier whenNotPaused() { - _requireNotPaused(); - _; - } - - /** - * @dev Modifier to make a function callable only when the contract is paused. - * - * Requirements: - * - * - The contract must be paused. - */ - modifier whenPaused() { - _requirePaused(); - _; - } - - /** - * @dev Returns true if the contract is paused, and false otherwise. - */ - function paused() public view virtual returns (bool) { - return _paused; - } - - /** - * @dev Throws if the contract is paused. - */ - function _requireNotPaused() internal view virtual { - require(!paused(), "Pausable: paused"); - } - - /** - * @dev Throws if the contract is not paused. - */ - function _requirePaused() internal view virtual { - require(paused(), "Pausable: not paused"); - } - - /** - * @dev Triggers stopped state. - * - * Requirements: - * - * - The contract must not be paused. - */ - function _pause() internal virtual whenNotPaused { - _paused = true; - emit Paused(_msgSender()); - } - - /** - * @dev Returns to normal state. - * - * Requirements: - * - * - The contract must be paused. - */ - function _unpause() internal virtual whenPaused { - _paused = false; - emit Unpaused(_msgSender()); - } - - /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps - */ - uint256[49] private __gap; -} - - -// File contracts/GatewaySettingManager.sol - -// License-Identifier: UNLICENSED - -/** - * @title GatewaySettingManager - * @dev This contract manages the settings and configurations for the Gateway protocol. - */ -pragma solidity ^0.8.18; - -contract GatewaySettingManager is Ownable2StepUpgradeable { - uint256 internal MAX_BPS; - uint64 internal protocolFeePercent; - address internal treasuryAddress; - address internal _aggregatorAddress; - mapping(address => uint256) internal _isTokenSupported; - - // this should decrease if more slots are needed on this contract to avoid collisions with base contract - uint256[50] private __gap; - - - event SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status); - event ProtocolFeeUpdated(uint64 protocolFee); - event ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress); - event SetFeeRecipient(address indexed treasuryAddress); - - /* ################################################################## - OWNER FUNCTIONS - ################################################################## */ - - /** - * @dev Sets the boolean value for a specific setting. - * @param what The setting to be updated. - * @param value The address or value associated with the setting. - * @param status The boolean value to be set. - * Requirements: - * - The value must not be a zero address. - */ - function settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner { - require(value != address(0), 'Gateway: zero address'); - require(status == 1 || status == 2, 'Gateway: invalid status'); - if (what == 'token') { - _isTokenSupported[value] = status; - emit SettingManagerBool(what, value, status); - } - } - - /** - * @dev Updates the protocol fee percentage. - * @param _protocolFeePercent The new protocol fee percentage to be set. - */ - function updateProtocolFee(uint64 _protocolFeePercent) external onlyOwner { - protocolFeePercent = _protocolFeePercent; - emit ProtocolFeeUpdated(_protocolFeePercent); - } - - /** - * @dev Updates a protocol address. - * @param what The address type to be updated (treasury or aggregator). - * @param value The new address to be set. - * Requirements: - * - The value must not be a zero address. - */ - function updateProtocolAddress(bytes32 what, address value) external onlyOwner { - require(value != address(0), 'Gateway: zero address'); - bool updated; - if (what == 'treasury') { - require(treasuryAddress != value, 'Gateway: treasury address already set'); - treasuryAddress = value; - updated = true; - } else if (what == 'aggregator') { - require(_aggregatorAddress != value, 'Gateway: aggregator address already set'); - _aggregatorAddress = value; - updated = true; - } - if (updated) { - emit ProtocolAddressUpdated(what, value); - } - } -} - - -// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.9.5 - -// License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) - -pragma solidity ^0.8.0; - -/** - * @dev Interface of the ERC20 standard as defined in the EIP. - */ -interface IERC20 { - /** - * @dev Emitted when `value` tokens are moved from one account (`from`) to - * another (`to`). - * - * Note that `value` may be zero. - */ - event Transfer(address indexed from, address indexed to, uint256 value); - - /** - * @dev Emitted when the allowance of a `spender` for an `owner` is set by - * a call to {approve}. `value` is the new allowance. - */ - event Approval(address indexed owner, address indexed spender, uint256 value); - - /** - * @dev Returns the amount of tokens in existence. - */ - function totalSupply() external view returns (uint256); - - /** - * @dev Returns the amount of tokens owned by `account`. - */ - function balanceOf(address account) external view returns (uint256); - - /** - * @dev Moves `amount` tokens from the caller's account to `to`. - * - * Returns a boolean value indicating whether the operation succeeded. - * - * Emits a {Transfer} event. - */ - function transfer(address to, uint256 amount) external returns (bool); - - /** - * @dev 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. - */ - function allowance(address owner, address spender) external view returns (uint256); - - /** - * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. - * - * Returns a boolean value indicating whether the operation succeeded. - * - * IMPORTANT: Beware that changing an allowance with this method brings the risk - * that someone may use both the old and the new allowance by unfortunate - * transaction ordering. One possible solution to mitigate this race - * condition is to first reduce the spender's allowance to 0 and set the - * desired value afterwards: - * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 - * - * Emits an {Approval} event. - */ - function approve(address spender, uint256 amount) external returns (bool); - - /** - * @dev Moves `amount` tokens from `from` to `to` using the - * allowance mechanism. `amount` is then deducted from the caller's - * allowance. - * - * Returns a boolean value indicating whether the operation succeeded. - * - * Emits a {Transfer} event. - */ - function transferFrom(address from, address to, uint256 amount) external returns (bool); -} - - -// File contracts/interfaces/IGateway.sol - -// License-Identifier: UNLICENSED -pragma solidity ^0.8.18; - -/** - * @title IGateway - * @notice Interface for the Gateway contract. - */ -interface IGateway { - /* ################################################################## - EVENTS - ################################################################## */ - /** - * @dev Emitted when a deposit is made. - * @param sender The address of the sender. - * @param token The address of the deposited token. - * @param amount The amount of the deposit. - * @param orderId The ID of the order. - * @param rate The rate at which the deposit is made. - * @param messageHash The hash of the message. - */ - event OrderCreated( - address indexed sender, - address indexed token, - uint256 indexed amount, - uint256 protocolFee, - bytes32 orderId, - uint256 rate, - string messageHash - ); - - /** - * @dev Emitted when an aggregator settles a transaction. - * @param splitOrderId The ID of the split order. - * @param orderId The ID of the order. - * @param liquidityProvider The address of the liquidity provider. - * @param settlePercent The percentage at which the transaction is settled. - */ - event OrderSettled( - bytes32 splitOrderId, - bytes32 indexed orderId, - address indexed liquidityProvider, - uint96 settlePercent - ); - - /** - * @dev Emitted when an aggregator refunds a transaction. - * @param fee The fee deducted from the refund amount. - * @param orderId The ID of the order. - */ - event OrderRefunded(uint256 fee, bytes32 indexed orderId); - - /** - * @dev Emitted when the sender's fee is transferred. - * @param sender The address of the sender. - * @param amount The amount of the fee transferred. - */ - event SenderFeeTransferred(address indexed sender, uint256 indexed amount); - - /* ################################################################## - STRUCTS - ################################################################## */ - /** - * @dev Struct representing an order. - * @param sender The address of the sender. - * @param token The address of the token. - * @param senderFeeRecipient The address of the sender fee recipient. - * @param senderFee The fee to be paid to the sender fee recipient. - * @param protocolFee The protocol fee to be paid. - * @param isFulfilled Whether the order is fulfilled. - * @param isRefunded Whether the order is refunded. - * @param refundAddress The address to which the refund is made. - * @param currentBPS The current basis points. - * @param amount The amount of the order. - */ - struct Order { - address sender; - address token; - address senderFeeRecipient; - uint256 senderFee; - uint256 protocolFee; - bool isFulfilled; - bool isRefunded; - address refundAddress; - uint96 currentBPS; - uint256 amount; - } - - /* ################################################################## - EXTERNAL CALLS - ################################################################## */ - /** - * @notice Locks the sender's amount of token into Gateway. - * @dev Requirements: - * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - * - `_token` must be an acceptable token. See {isTokenSupported}. - * - `amount` must be greater than minimum. - * - `_refundAddress` refund address must not be zero address. - * @param _token The address of the token. - * @param _amount The amount in the decimal of `_token` to be locked. - * @param _rate The rate at which the sender intends to sell `_amount` of `_token`. - * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`. - * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`. - * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund. - * @param messageHash The hash of the message. - * @return _orderId The ID of the order. - */ - function createOrder( - address _token, - uint256 _amount, - uint96 _rate, - address _senderFeeRecipient, - uint256 _senderFee, - address _refundAddress, - string calldata messageHash - ) external returns (bytes32 _orderId); - - /** - * @notice Settles a transaction and distributes rewards accordingly. - * @param _splitOrderId The ID of the split order. - * @param _orderId The ID of the transaction. - * @param _liquidityProvider The address of the liquidity provider. - * @param _settlePercent The rate at which the transaction is settled. - * @return bool the settlement is successful. - */ - function settle( - bytes32 _splitOrderId, - bytes32 _orderId, - address _liquidityProvider, - uint64 _settlePercent - ) external returns (bool); - - /** - * @notice Refunds to the specified refundable address. - * @dev Requirements: - * - Only aggregators can call this function. - * @param _fee The amount to be deducted from the amount to be refunded. - * @param _orderId The ID of the transaction. - * @return bool the refund is successful. - */ - function refund(uint256 _fee, bytes32 _orderId) external returns (bool); - - /** - * @notice Checks if a token is supported by Gateway. - * @param _token The address of the token to check. - * @return bool the token is supported. - */ - function isTokenSupported(address _token) external view returns (bool); - - /** - * @notice Gets the details of an order. - * @param _orderId The ID of the order. - * @return Order The order details. - */ - function getOrderInfo(bytes32 _orderId) external view returns (Order memory); - - /** - * @notice Gets the fee details of Gateway. - * @return protocolReward The protocol reward amount. - * @return max_bps The maximum basis points. - */ - function getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps); -} - - -// File contracts/Gateway.sol - -// License-Identifier: UNLICENSED -pragma solidity ^0.8.18; - - -/** - * @title Gateway - * @notice This contract serves as a gateway for creating orders and managing settlements. - */ -contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { - struct fee { - uint256 protocolFee; - uint256 liquidityProviderAmount; - } - - mapping(bytes32 => Order) private order; - mapping(address => uint256) private _nonce; - uint256[50] private __gap; - - /// @custom:oz-upgrades-unsafe-allow constructor - constructor() { - _disableInitializers(); - } - - /** - * @dev Initialize function. - */ - function initialize() external initializer { - MAX_BPS = 100_000; - __Ownable2Step_init(); - __Pausable_init(); - } - - /** - * @dev Modifier that allows only the aggregator to call a function. - */ - modifier onlyAggregator() { - require(msg.sender == _aggregatorAddress, 'OnlyAggregator'); - _; - } - - /* ################################################################## - OWNER FUNCTIONS - ################################################################## */ - /** - * @dev Pause the contract. - */ - function pause() external onlyOwner { - _pause(); - } - - /** - * @dev Unpause the contract. - */ - function unpause() external onlyOwner { - _unpause(); - } - - /* ################################################################## - USER CALLS - ################################################################## */ - /** @dev See {createOrder-IGateway}. */ - function createOrder( - address _token, - uint256 _amount, - uint96 _rate, - address _senderFeeRecipient, - uint256 _senderFee, - address _refundAddress, - string calldata messageHash - ) external whenNotPaused returns (bytes32 orderId) { - // checks that are required - _handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee); - - // validate messageHash - require(bytes(messageHash).length != 0, 'InvalidMessageHash'); - - // transfer token from msg.sender to contract - IERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee); - - // increase users nonce to avoid replay attacks - _nonce[msg.sender]++; - - // generate transaction id for the transaction - orderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender])); - - // update transaction - uint256 _protocolFee = (_amount * protocolFeePercent) / (MAX_BPS + protocolFeePercent); - order[orderId] = Order({ - sender: msg.sender, - token: _token, - senderFeeRecipient: _senderFeeRecipient, - senderFee: _senderFee, - protocolFee: _protocolFee, - isFulfilled: false, - isRefunded: false, - refundAddress: _refundAddress, - currentBPS: uint64(MAX_BPS), - amount: _amount - _protocolFee - }); - - // emit order created event - emit OrderCreated( - order[orderId].sender, - _token, - order[orderId].amount, - _protocolFee, - orderId, - _rate, - messageHash - ); - } - - /** - * @dev Internal function to handle order creation. - * @param _token The address of the token being traded. - * @param _amount The amount of tokens being traded. - * @param _refundAddress The address to refund the tokens in case of cancellation. - * @param _senderFeeRecipient The address of the recipient for the sender fee. - * @param _senderFee The amount of the sender fee. - */ - function _handler( - address _token, - uint256 _amount, - address _refundAddress, - address _senderFeeRecipient, - uint256 _senderFee - ) internal view { - require(_isTokenSupported[_token] == 1, 'TokenNotSupported'); - require(_amount != 0, 'AmountIsZero'); - require(_refundAddress != address(0), 'ThrowZeroAddress'); - - if (_senderFee != 0) { - require(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient'); - } - } - - /* ################################################################## - AGGREGATOR FUNCTIONS - ################################################################## */ - /** @dev See {settle-IGateway}. */ - function settle( - bytes32 _splitOrderId, - bytes32 _orderId, - address _liquidityProvider, - uint64 _settlePercent - ) external onlyAggregator returns (bool) { - // ensure the transaction has not been fulfilled - require(!order[_orderId].isFulfilled, 'OrderFulfilled'); - require(!order[_orderId].isRefunded, 'OrderRefunded'); - - // load the token into memory - address token = order[_orderId].token; - - // subtract sum of amount based on the input _settlePercent - order[_orderId].currentBPS -= _settlePercent; - - if (order[_orderId].currentBPS == 0) { - // update the transaction to be fulfilled - order[_orderId].isFulfilled = true; - - if (order[_orderId].senderFee != 0) { - // transfer sender fee - IERC20(order[_orderId].token).transfer( - order[_orderId].senderFeeRecipient, - order[_orderId].senderFee - ); - - // emit event - emit SenderFeeTransferred( - order[_orderId].senderFeeRecipient, - order[_orderId].senderFee - ); - } - - if (order[_orderId].protocolFee != 0) { - // transfer protocol fee - IERC20(token).transfer(treasuryAddress, order[_orderId].protocolFee); - } - } - - // transfer to liquidity provider - uint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / MAX_BPS; - order[_orderId].amount -= liquidityProviderAmount; - IERC20(token).transfer(_liquidityProvider, liquidityProviderAmount); - - // emit settled event - emit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent); - - return true; - } - - /** @dev See {refund-IGateway}. */ - function refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) { - // ensure the transaction has not been fulfilled - require(!order[_orderId].isFulfilled, 'OrderFulfilled'); - require(!order[_orderId].isRefunded, 'OrderRefunded'); - require(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee'); - - // transfer refund fee to the treasury - IERC20(order[_orderId].token).transfer(treasuryAddress, _fee); - - // reset state values - order[_orderId].isRefunded = true; - order[_orderId].currentBPS = 0; - - // deduct fee from order amount - uint256 refundAmount = order[_orderId].amount + order[_orderId].protocolFee - _fee; - - // transfer refund amount and sender fee to the refund address - IERC20(order[_orderId].token).transfer( - order[_orderId].refundAddress, - refundAmount + order[_orderId].senderFee - ); - - // emit refunded event - emit OrderRefunded(_fee, _orderId); - - return true; - } - - /* ################################################################## - VIEW CALLS - ################################################################## */ - /** @dev See {getOrderInfo-IGateway}. */ - function getOrderInfo(bytes32 _orderId) external view returns (Order memory) { - return order[_orderId]; - } - - /** @dev See {isTokenSupported-IGateway}. */ - function isTokenSupported(address _token) external view returns (bool) { - if (_isTokenSupported[_token] == 1) return true; - return false; - } - - /** @dev See {getFeeDetails-IGateway}. */ - function getFeeDetails() external view returns (uint64, uint256) { - return (protocolFeePercent, MAX_BPS); - } -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json deleted file mode 100644 index c517fb1..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json deleted file mode 100644 index c517fb1..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json deleted file mode 100644 index 5251870..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "OwnableUpgradeable", - "sourceName": "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol", - "abi": [ - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint8", - "name": "version", - "type": "uint8" - } - ], - "name": "Initialized", - "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": "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" - } - ], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json deleted file mode 100644 index 6168b48..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json b/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json deleted file mode 100644 index 4b29c72..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "Initializable", - "sourceName": "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol", - "abi": [ - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint8", - "name": "version", - "type": "uint8" - } - ], - "name": "Initialized", - "type": "event" - } - ], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json deleted file mode 100644 index c517fb1..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json deleted file mode 100644 index 4bc1f5e..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "PausableUpgradeable", - "sourceName": "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol", - "abi": [ - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint8", - "name": "version", - "type": "uint8" - } - ], - "name": "Initialized", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "Paused", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "Unpaused", - "type": "event" - }, - { - "inputs": [], - "name": "paused", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - } - ], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json deleted file mode 100644 index c517fb1..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json deleted file mode 100644 index 33e0d43..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "AddressUpgradeable", - "sourceName": "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol", - "abi": [], - "bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220f6ddb883a482100c4d67fab9837ea78e63b163c19355bca0994abe06e37084bc64736f6c63430008140033", - "deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220f6ddb883a482100c4d67fab9837ea78e63b163c19355bca0994abe06e37084bc64736f6c63430008140033", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json deleted file mode 100644 index c517fb1..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json deleted file mode 100644 index e154d60..0000000 --- a/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "ContextUpgradeable", - "sourceName": "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol", - "abi": [ - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint8", - "name": "version", - "type": "uint8" - } - ], - "name": "Initialized", - "type": "event" - } - ], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json b/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json new file mode 100644 index 0000000..92f9d15 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json @@ -0,0 +1,163 @@ +{ + "_format": "hh3-artifact-1", + "contractName": "ProxyAdmin", + "sourceName": "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + }, + { + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "changeProxyAdmin", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + } + ], + "name": "getProxyAdmin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + } + ], + "name": "getProxyImplementation", + "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": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + }, + { + "internalType": "address", + "name": "implementation", + "type": "address" + } + ], + "name": "upgrade", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + }, + { + "internalType": "address", + "name": "implementation", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "upgradeAndCall", + "outputs": [], + "stateMutability": "payable", + "type": "function" + } + ], + "bytecode": "0x608060405234801561000f575f80fd5b506100193361001e565b61006d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6106618061007a5f395ff3fe608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033", + "deployedBytecode": "0x608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol", + "buildInfoId": "solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65" +} \ No newline at end of file diff --git a/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/artifacts.d.ts b/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/artifacts.d.ts new file mode 100644 index 0000000..bf9ca9f --- /dev/null +++ b/artifacts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/artifacts.d.ts @@ -0,0 +1,27 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface ProxyAdmin$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "ProxyAdmin"; + readonly sourceName: "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol"; + readonly abi: [{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"},{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeProxyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"}],"name":"getProxyAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"}],"name":"getProxyImplementation","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"},{"internalType":"address","name":"implementation","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"},{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeAndCall","outputs":[],"stateMutability":"payable","type":"function"}]; + readonly bytecode: "0x608060405234801561000f575f80fd5b506100193361001e565b61006d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6106618061007a5f395ff3fe608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033"; + readonly deployedBytecode: "0x608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol"; + readonly buildInfoId: "solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["ProxyAdmin"]: ProxyAdmin$Type; + ["@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol:ProxyAdmin"]: ProxyAdmin$Type; + } +} \ No newline at end of file diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json b/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.json similarity index 57% rename from artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json rename to artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.json index fbc6085..a31e401 100644 --- a/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json +++ b/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.json @@ -1,19 +1,25 @@ { - "_format": "hh-sol-artifact-1", - "contractName": "Ownable2StepUpgradeable", - "sourceName": "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol", + "_format": "hh3-artifact-1", + "contractName": "ITransparentUpgradeableProxy", + "sourceName": "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol", "abi": [ { "anonymous": false, "inputs": [ { "indexed": false, - "internalType": "uint8", - "name": "version", - "type": "uint8" + "internalType": "address", + "name": "previousAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" } ], - "name": "Initialized", + "name": "AdminChanged", "type": "event" }, { @@ -22,17 +28,11 @@ { "indexed": true, "internalType": "address", - "name": "previousOwner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "newOwner", + "name": "beacon", "type": "address" } ], - "name": "OwnershipTransferStarted", + "name": "BeaconUpgraded", "type": "event" }, { @@ -41,42 +41,42 @@ { "indexed": true, "internalType": "address", - "name": "previousOwner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "newOwner", + "name": "implementation", "type": "address" } ], - "name": "OwnershipTransferred", + "name": "Upgraded", "type": "event" }, { "inputs": [], - "name": "acceptOwnership", - "outputs": [], - "stateMutability": "nonpayable", + "name": "admin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", "type": "function" }, { - "inputs": [], - "name": "owner", - "outputs": [ + "inputs": [ { "internalType": "address", "name": "", "type": "address" } ], - "stateMutability": "view", + "name": "changeAdmin", + "outputs": [], + "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], - "name": "pendingOwner", + "name": "implementation", "outputs": [ { "internalType": "address", @@ -88,8 +88,14 @@ "type": "function" }, { - "inputs": [], - "name": "renounceOwnership", + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "upgradeTo", "outputs": [], "stateMutability": "nonpayable", "type": "function" @@ -98,18 +104,26 @@ "inputs": [ { "internalType": "address", - "name": "newOwner", + "name": "", "type": "address" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" } ], - "name": "transferOwnership", + "name": "upgradeToAndCall", "outputs": [], - "stateMutability": "nonpayable", + "stateMutability": "payable", "type": "function" } ], "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {}, - "deployedLinkReferences": {} -} + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol", + "buildInfoId": "solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c" +} \ No newline at end of file diff --git a/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json b/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json new file mode 100644 index 0000000..0bb50b0 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json @@ -0,0 +1,88 @@ +{ + "_format": "hh3-artifact-1", + "contractName": "TransparentUpgradeableProxy", + "sourceName": "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "_logic", + "type": "address" + }, + { + "internalType": "address", + "name": "admin_", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "stateMutability": "payable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "previousAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "AdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "beacon", + "type": "address" + } + ], + "name": "BeaconUpgraded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address" + } + ], + "name": "Upgraded", + "type": "event" + }, + { + "stateMutability": "payable", + "type": "fallback" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x608060405260405162000df438038062000df4833981016040819052620000269162000415565b82816200003582825f6200004c565b50620000439050826200007d565b50505062000540565b6200005783620000ee565b5f82511180620000645750805b1562000078576200007683836200012f565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620000be5f8051602062000dad833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a1620000eb816200015e565b50565b620000f981620001fb565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b606062000157838360405180606001604052806027815260200162000dcd6027913962000292565b9392505050565b6001600160a01b038116620001c95760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b805f8051602062000dad8339815191525b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381163b6200026a5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401620001c0565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc620001da565b60605f80856001600160a01b031685604051620002b09190620004ef565b5f60405180830381855af49150503d805f8114620002ea576040519150601f19603f3d011682016040523d82523d5f602084013e620002ef565b606091505b50909250905062000303868383876200030d565b9695505050505050565b60608315620003805782515f0362000378576001600160a01b0385163b620003785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001c0565b50816200038c565b6200038c838362000394565b949350505050565b815115620003a55781518083602001fd5b8060405162461bcd60e51b8152600401620001c091906200050c565b80516001600160a01b0381168114620003d8575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156200040d578181015183820152602001620003f3565b50505f910152565b5f805f6060848603121562000428575f80fd5b6200043384620003c1565b92506200044360208501620003c1565b60408501519092506001600160401b038082111562000460575f80fd5b818601915086601f83011262000474575f80fd5b815181811115620004895762000489620003dd565b604051601f8201601f19908116603f01168101908382118183101715620004b457620004b4620003dd565b81604052828152896020848701011115620004cd575f80fd5b620004e0836020830160208801620003f1565b80955050505050509250925092565b5f825162000502818460208701620003f1565b9190910192915050565b602081525f82518060208401526200052c816040850160208701620003f1565b601f01601f19169190910160400192915050565b61085f806200054e5f395ff3fe60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564", + "deployedBytecode": "0x60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol", + "buildInfoId": "solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c" +} \ No newline at end of file diff --git a/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/artifacts.d.ts b/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/artifacts.d.ts new file mode 100644 index 0000000..659e8a7 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/artifacts.d.ts @@ -0,0 +1,43 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface ITransparentUpgradeableProxy$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "ITransparentUpgradeableProxy"; + readonly sourceName: "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; + readonly abi: [{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]; + readonly bytecode: "0x"; + readonly deployedBytecode: "0x"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol"; + readonly buildInfoId: "solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c"; +}; + +export interface TransparentUpgradeableProxy$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "TransparentUpgradeableProxy"; + readonly sourceName: "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; + readonly abi: [{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]; + readonly bytecode: "0x608060405260405162000df438038062000df4833981016040819052620000269162000415565b82816200003582825f6200004c565b50620000439050826200007d565b50505062000540565b6200005783620000ee565b5f82511180620000645750805b1562000078576200007683836200012f565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620000be5f8051602062000dad833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a1620000eb816200015e565b50565b620000f981620001fb565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b606062000157838360405180606001604052806027815260200162000dcd6027913962000292565b9392505050565b6001600160a01b038116620001c95760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b805f8051602062000dad8339815191525b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381163b6200026a5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401620001c0565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc620001da565b60605f80856001600160a01b031685604051620002b09190620004ef565b5f60405180830381855af49150503d805f8114620002ea576040519150601f19603f3d011682016040523d82523d5f602084013e620002ef565b606091505b50909250905062000303868383876200030d565b9695505050505050565b60608315620003805782515f0362000378576001600160a01b0385163b620003785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001c0565b50816200038c565b6200038c838362000394565b949350505050565b815115620003a55781518083602001fd5b8060405162461bcd60e51b8152600401620001c091906200050c565b80516001600160a01b0381168114620003d8575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156200040d578181015183820152602001620003f3565b50505f910152565b5f805f6060848603121562000428575f80fd5b6200043384620003c1565b92506200044360208501620003c1565b60408501519092506001600160401b038082111562000460575f80fd5b818601915086601f83011262000474575f80fd5b815181811115620004895762000489620003dd565b604051601f8201601f19908116603f01168101908382118183101715620004b457620004b4620003dd565b81604052828152896020848701011115620004cd575f80fd5b620004e0836020830160208801620003f1565b80955050505050509250925092565b5f825162000502818460208701620003f1565b9190910192915050565b602081525f82518060208401526200052c816040850160208701620003f1565b601f01601f19169190910160400192915050565b61085f806200054e5f395ff3fe60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564"; + readonly deployedBytecode: "0x60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol"; + readonly buildInfoId: "solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["ITransparentUpgradeableProxy"]: ITransparentUpgradeableProxy$Type + ["TransparentUpgradeableProxy"]: TransparentUpgradeableProxy$Type; + ["@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol:ITransparentUpgradeableProxy"]: ITransparentUpgradeableProxy$Type + ["@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol:TransparentUpgradeableProxy"]: TransparentUpgradeableProxy$Type; + } +} \ No newline at end of file diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json b/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json deleted file mode 100644 index 6168b48..0000000 --- a/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json b/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json deleted file mode 100644 index a255516..0000000 --- a/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json +++ /dev/null @@ -1,297 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "ERC20", - "sourceName": "@openzeppelin/contracts/token/ERC20/ERC20.sol", - "abi": [ - { - "inputs": [ - { - "internalType": "string", - "name": "name_", - "type": "string" - }, - { - "internalType": "string", - "name": "symbol_", - "type": "string" - } - ], - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ], - "name": "Approval", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ], - "name": "Transfer", - "type": "event" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "internalType": "address", - "name": "spender", - "type": "address" - } - ], - "name": "allowance", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "approve", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "balanceOf", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "decimals", - "outputs": [ - { - "internalType": "uint8", - "name": "", - "type": "uint8" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "internalType": "uint256", - "name": "subtractedValue", - "type": "uint256" - } - ], - "name": "decreaseAllowance", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "internalType": "uint256", - "name": "addedValue", - "type": "uint256" - } - ], - "name": "increaseAllowance", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "symbol", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalSupply", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "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": "amount", - "type": "uint256" - } - ], - "name": "transferFrom", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - } - ], - "bytecode": "0x608060405234801562000010575f80fd5b5060405162001756380380620017568339818101604052810190620000369190620001e7565b8160039081620000479190620004a1565b508060049081620000599190620004a1565b50505062000585565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620000c3826200007b565b810181811067ffffffffffffffff82111715620000e557620000e46200008b565b5b80604052505050565b5f620000f962000062565b9050620001078282620000b8565b919050565b5f67ffffffffffffffff8211156200012957620001286200008b565b5b62000134826200007b565b9050602081019050919050565b5f5b838110156200016057808201518184015260208101905062000143565b5f8484015250505050565b5f620001816200017b846200010c565b620000ee565b905082815260208101848484011115620001a0576200019f62000077565b5b620001ad84828562000141565b509392505050565b5f82601f830112620001cc57620001cb62000073565b5b8151620001de8482602086016200016b565b91505092915050565b5f80604083850312156200020057620001ff6200006b565b5b5f83015167ffffffffffffffff81111562000220576200021f6200006f565b5b6200022e85828601620001b5565b925050602083015167ffffffffffffffff8111156200025257620002516200006f565b5b6200026085828601620001b5565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b957607f821691505b602082108103620002cf57620002ce62000274565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f6565b6200033f8683620002f6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000389620003836200037d8462000357565b62000360565b62000357565b9050919050565b5f819050919050565b620003a48362000369565b620003bc620003b38262000390565b84845462000302565b825550505050565b5f90565b620003d2620003c4565b620003df81848462000399565b505050565b5b818110156200040657620003fa5f82620003c8565b600181019050620003e5565b5050565b601f82111562000455576200041f81620002d5565b6200042a84620002e7565b810160208510156200043a578190505b620004526200044985620002e7565b830182620003e4565b50505b505050565b5f82821c905092915050565b5f620004775f19846008026200045a565b1980831691505092915050565b5f62000491838362000466565b9150826002028217905092915050565b620004ac826200026a565b67ffffffffffffffff811115620004c857620004c76200008b565b5b620004d48254620002a1565b620004e18282856200040a565b5f60209050601f83116001811462000517575f841562000502578287015190505b6200050e858262000484565b8655506200057d565b601f1984166200052786620002d5565b5f5b82811015620005505784890151825560018201915060208501945060208101905062000529565b868310156200057057848901516200056c601f89168262000466565b8355505b6001600288020188555050505b505050505050565b6111c380620005935f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610add565b60405180910390f35b6100e360048036038101906100de9190610b8e565b610303565b6040516100f09190610be6565b60405180910390f35b610101610325565b60405161010e9190610c0e565b60405180910390f35b610131600480360381019061012c9190610c27565b61032e565b60405161013e9190610be6565b60405180910390f35b61014f61035c565b60405161015c9190610c92565b60405180910390f35b61017f600480360381019061017a9190610b8e565b610364565b60405161018c9190610be6565b60405180910390f35b6101af60048036038101906101aa9190610cab565b61039a565b6040516101bc9190610c0e565b60405180910390f35b6101cd6103df565b6040516101da9190610add565b60405180910390f35b6101fd60048036038101906101f89190610b8e565b61046f565b60405161020a9190610be6565b60405180910390f35b61022d60048036038101906102289190610b8e565b6104e4565b60405161023a9190610be6565b60405180910390f35b61025d60048036038101906102589190610cd6565b610506565b60405161026a9190610c0e565b60405180910390f35b60606003805461028290610d41565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610d41565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f8061030d610588565b905061031a81858561058f565b600191505092915050565b5f600254905090565b5f80610338610588565b9050610345858285610752565b6103508585856107dd565b60019150509392505050565b5f6012905090565b5f8061036e610588565b905061038f8185856103808589610506565b61038a9190610d9e565b61058f565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103ee90610d41565b80601f016020809104026020016040519081016040528092919081815260200182805461041a90610d41565b80156104655780601f1061043c57610100808354040283529160200191610465565b820191905f5260205f20905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b5f80610479610588565b90505f6104868286610506565b9050838110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c290610e41565b60405180910390fd5b6104d8828686840361058f565b60019250505092915050565b5f806104ee610588565b90506104fb8185856107dd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f490610ecf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290610f5d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107459190610c0e565b60405180910390a3505050565b5f61075d8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090610fc5565b60405180910390fd5b6107d6848484840361058f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611053565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b0906110e1565b60405180910390fd5b6108c4838383610a49565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061116f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a309190610c0e565b60405180910390a3610a43848484610a4e565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610a8a578082015181840152602081019050610a6f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610aaf82610a53565b610ab98185610a5d565b9350610ac9818560208601610a6d565b610ad281610a95565b840191505092915050565b5f6020820190508181035f830152610af58184610aa5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b2a82610b01565b9050919050565b610b3a81610b20565b8114610b44575f80fd5b50565b5f81359050610b5581610b31565b92915050565b5f819050919050565b610b6d81610b5b565b8114610b77575f80fd5b50565b5f81359050610b8881610b64565b92915050565b5f8060408385031215610ba457610ba3610afd565b5b5f610bb185828601610b47565b9250506020610bc285828601610b7a565b9150509250929050565b5f8115159050919050565b610be081610bcc565b82525050565b5f602082019050610bf95f830184610bd7565b92915050565b610c0881610b5b565b82525050565b5f602082019050610c215f830184610bff565b92915050565b5f805f60608486031215610c3e57610c3d610afd565b5b5f610c4b86828701610b47565b9350506020610c5c86828701610b47565b9250506040610c6d86828701610b7a565b9150509250925092565b5f60ff82169050919050565b610c8c81610c77565b82525050565b5f602082019050610ca55f830184610c83565b92915050565b5f60208284031215610cc057610cbf610afd565b5b5f610ccd84828501610b47565b91505092915050565b5f8060408385031215610cec57610ceb610afd565b5b5f610cf985828601610b47565b9250506020610d0a85828601610b47565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5857607f821691505b602082108103610d6b57610d6a610d14565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da882610b5b565b9150610db383610b5b565b9250828201905080821115610dcb57610dca610d71565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610e2b602583610a5d565b9150610e3682610dd1565b604082019050919050565b5f6020820190508181035f830152610e5881610e1f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610eb9602483610a5d565b9150610ec482610e5f565b604082019050919050565b5f6020820190508181035f830152610ee681610ead565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f47602283610a5d565b9150610f5282610eed565b604082019050919050565b5f6020820190508181035f830152610f7481610f3b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f610faf601d83610a5d565b9150610fba82610f7b565b602082019050919050565b5f6020820190508181035f830152610fdc81610fa3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61103d602583610a5d565b915061104882610fe3565b604082019050919050565b5f6020820190508181035f83015261106a81611031565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6110cb602383610a5d565b91506110d682611071565b604082019050919050565b5f6020820190508181035f8301526110f8816110bf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611159602683610a5d565b9150611164826110ff565b604082019050919050565b5f6020820190508181035f8301526111868161114d565b905091905056fea264697066735822122017d0eb9749a45a781e1aceec4cce3d7a464856bc0a03e53663704358996e3b9a64736f6c63430008140033", - "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610add565b60405180910390f35b6100e360048036038101906100de9190610b8e565b610303565b6040516100f09190610be6565b60405180910390f35b610101610325565b60405161010e9190610c0e565b60405180910390f35b610131600480360381019061012c9190610c27565b61032e565b60405161013e9190610be6565b60405180910390f35b61014f61035c565b60405161015c9190610c92565b60405180910390f35b61017f600480360381019061017a9190610b8e565b610364565b60405161018c9190610be6565b60405180910390f35b6101af60048036038101906101aa9190610cab565b61039a565b6040516101bc9190610c0e565b60405180910390f35b6101cd6103df565b6040516101da9190610add565b60405180910390f35b6101fd60048036038101906101f89190610b8e565b61046f565b60405161020a9190610be6565b60405180910390f35b61022d60048036038101906102289190610b8e565b6104e4565b60405161023a9190610be6565b60405180910390f35b61025d60048036038101906102589190610cd6565b610506565b60405161026a9190610c0e565b60405180910390f35b60606003805461028290610d41565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610d41565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f8061030d610588565b905061031a81858561058f565b600191505092915050565b5f600254905090565b5f80610338610588565b9050610345858285610752565b6103508585856107dd565b60019150509392505050565b5f6012905090565b5f8061036e610588565b905061038f8185856103808589610506565b61038a9190610d9e565b61058f565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103ee90610d41565b80601f016020809104026020016040519081016040528092919081815260200182805461041a90610d41565b80156104655780601f1061043c57610100808354040283529160200191610465565b820191905f5260205f20905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b5f80610479610588565b90505f6104868286610506565b9050838110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c290610e41565b60405180910390fd5b6104d8828686840361058f565b60019250505092915050565b5f806104ee610588565b90506104fb8185856107dd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f490610ecf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290610f5d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107459190610c0e565b60405180910390a3505050565b5f61075d8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090610fc5565b60405180910390fd5b6107d6848484840361058f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611053565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b0906110e1565b60405180910390fd5b6108c4838383610a49565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061116f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a309190610c0e565b60405180910390a3610a43848484610a4e565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610a8a578082015181840152602081019050610a6f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610aaf82610a53565b610ab98185610a5d565b9350610ac9818560208601610a6d565b610ad281610a95565b840191505092915050565b5f6020820190508181035f830152610af58184610aa5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b2a82610b01565b9050919050565b610b3a81610b20565b8114610b44575f80fd5b50565b5f81359050610b5581610b31565b92915050565b5f819050919050565b610b6d81610b5b565b8114610b77575f80fd5b50565b5f81359050610b8881610b64565b92915050565b5f8060408385031215610ba457610ba3610afd565b5b5f610bb185828601610b47565b9250506020610bc285828601610b7a565b9150509250929050565b5f8115159050919050565b610be081610bcc565b82525050565b5f602082019050610bf95f830184610bd7565b92915050565b610c0881610b5b565b82525050565b5f602082019050610c215f830184610bff565b92915050565b5f805f60608486031215610c3e57610c3d610afd565b5b5f610c4b86828701610b47565b9350506020610c5c86828701610b47565b9250506040610c6d86828701610b7a565b9150509250925092565b5f60ff82169050919050565b610c8c81610c77565b82525050565b5f602082019050610ca55f830184610c83565b92915050565b5f60208284031215610cc057610cbf610afd565b5b5f610ccd84828501610b47565b91505092915050565b5f8060408385031215610cec57610ceb610afd565b5b5f610cf985828601610b47565b9250506020610d0a85828601610b47565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5857607f821691505b602082108103610d6b57610d6a610d14565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da882610b5b565b9150610db383610b5b565b9250828201905080821115610dcb57610dca610d71565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610e2b602583610a5d565b9150610e3682610dd1565b604082019050919050565b5f6020820190508181035f830152610e5881610e1f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610eb9602483610a5d565b9150610ec482610e5f565b604082019050919050565b5f6020820190508181035f830152610ee681610ead565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f47602283610a5d565b9150610f5282610eed565b604082019050919050565b5f6020820190508181035f830152610f7481610f3b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f610faf601d83610a5d565b9150610fba82610f7b565b602082019050919050565b5f6020820190508181035f830152610fdc81610fa3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61103d602583610a5d565b915061104882610fe3565b604082019050919050565b5f6020820190508181035f83015261106a81611031565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6110cb602383610a5d565b91506110d682611071565b604082019050919050565b5f6020820190508181035f8301526110f8816110bf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611159602683610a5d565b9150611164826110ff565b604082019050919050565b5f6020820190508181035f8301526111868161114d565b905091905056fea264697066735822122017d0eb9749a45a781e1aceec4cce3d7a464856bc0a03e53663704358996e3b9a64736f6c63430008140033", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json b/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json deleted file mode 100644 index 6168b48..0000000 --- a/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json b/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json deleted file mode 100644 index 76b073c..0000000 --- a/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json +++ /dev/null @@ -1,194 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "IERC20", - "sourceName": "@openzeppelin/contracts/token/ERC20/IERC20.sol", - "abi": [ - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ], - "name": "Approval", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ], - "name": "Transfer", - "type": "event" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "internalType": "address", - "name": "spender", - "type": "address" - } - ], - "name": "allowance", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "approve", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "balanceOf", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalSupply", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "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": "amount", - "type": "uint256" - } - ], - "name": "transferFrom", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - } - ], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json b/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json deleted file mode 100644 index 3d5e25a..0000000 --- a/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json b/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json deleted file mode 100644 index 0436b92..0000000 --- a/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "IERC20Metadata", - "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", - "abi": [ - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ], - "name": "Approval", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ], - "name": "Transfer", - "type": "event" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "internalType": "address", - "name": "spender", - "type": "address" - } - ], - "name": "allowance", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "spender", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "approve", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "balanceOf", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "decimals", - "outputs": [ - { - "internalType": "uint8", - "name": "", - "type": "uint8" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "symbol", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalSupply", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "amount", - "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": "amount", - "type": "uint256" - } - ], - "name": "transferFrom", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - } - ], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json b/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json deleted file mode 100644 index c517fb1..0000000 --- a/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json b/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json deleted file mode 100644 index 8fe86fc..0000000 --- a/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "_format": "hh-sol-artifact-1", - "contractName": "Context", - "sourceName": "@openzeppelin/contracts/utils/Context.sol", - "abi": [], - "bytecode": "0x", - "deployedBytecode": "0x", - "linkReferences": {}, - "deployedLinkReferences": {} -} diff --git a/artifacts/artifacts.d.ts b/artifacts/artifacts.d.ts new file mode 100644 index 0000000..2f67331 --- /dev/null +++ b/artifacts/artifacts.d.ts @@ -0,0 +1,12 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["IGateway"]: never; + } +} \ No newline at end of file diff --git a/artifacts/build-info/0fd1142d7618bca75338f2d6daf62308.json b/artifacts/build-info/0fd1142d7618bca75338f2d6daf62308.json deleted file mode 100644 index 2d84e6a..0000000 --- a/artifacts/build-info/0fd1142d7618bca75338f2d6daf62308.json +++ /dev/null @@ -1 +0,0 @@ -{"id":"0fd1142d7618bca75338f2d6daf62308","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./OwnableUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\n address private _pendingOwner;\n\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n function __Ownable2Step_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable2Step_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the address of the pending owner.\n */\n function pendingOwner() public view virtual returns (address) {\n return _pendingOwner;\n }\n\n /**\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual override onlyOwner {\n _pendingOwner = newOwner;\n emit OwnershipTransferStarted(owner(), newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual override {\n delete _pendingOwner;\n super._transferOwnership(newOwner);\n }\n\n /**\n * @dev The new owner accepts the ownership transfer.\n */\n function acceptOwnership() public virtual {\n address sender = _msgSender();\n require(pendingOwner() == sender, \"Ownable2Step: caller is not the new owner\");\n _transferOwnership(sender);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal onlyInitializing {\n _transferOwnership(_msgSender());\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 require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\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 require(newOwner != address(0), \"Ownable: new owner is the zero address\");\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\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 Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\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 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\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 require(_initializing, \"Initializable: contract is not initializing\");\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 require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _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 _initializing;\n }\n}\n"},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n function __Pausable_init() internal onlyInitializing {\n __Pausable_init_unchained();\n }\n\n function __Pausable_init_unchained() internal onlyInitializing {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev 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 amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"},"contracts/Gateway.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\n\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\n\n/**\n * @title Gateway\n * @notice This contract serves as a gateway for creating orders and managing settlements.\n */\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\n\tstruct fee {\n\t\tuint256 protocolFee;\n\t\tuint256 liquidityProviderAmount;\n\t}\n\n\tmapping(bytes32 => Order) private order;\n\tmapping(address => uint256) private _nonce;\n\tuint256[50] private __gap;\n\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @dev Initialize function.\n\t */\n\tfunction initialize() external initializer {\n\t\tMAX_BPS = 100_000;\n\t\t__Ownable2Step_init();\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @dev Modifier that allows only the aggregator to call a function.\n\t */\n\tmodifier onlyAggregator() {\n\t\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\n\t\t_;\n\t}\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\t/**\n\t * @dev Pause the contract.\n\t */\n\tfunction pause() external onlyOwner {\n\t\t_pause();\n\t}\n\n\t/**\n\t * @dev Unpause the contract.\n\t */\n\tfunction unpause() external onlyOwner {\n\t\t_unpause();\n\t}\n\n\t/* ##################################################################\n USER CALLS\n ################################################################## */\n\t/** @dev See {createOrder-IGateway}. */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external whenNotPaused returns (bytes32 orderId) {\n\t\t// checks that are required\n\t\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\n\n\t\t// validate messageHash\n\t\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\n\n\t\t// transfer token from msg.sender to contract\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\t// increase users nonce to avoid replay attacks\n\t\t_nonce[msg.sender]++;\n\n\t\t// generate transaction id for the transaction with chain id\n\t\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid));\n\n\t\trequire(order[orderId].sender == address(0), 'OrderAlreadyExists');\n\n\t\t// update transaction\n\t\tuint256 _protocolFee;\n\t\tif (_rate == 100) {\n\t\t\t// local transfer (rate = 1)\n\t\t\t_protocolFee = 0;\n\t\t\trequire(_senderFee > 0, 'SenderFeeIsZero');\n\t\t} else {\n\t\t\t// fx transfer (rate != 1) - use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\t\t\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\n\t\t\t_protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\n\t\t}\n\t\torder[orderId] = Order({\n\t\t\tsender: msg.sender,\n\t\t\ttoken: _token,\n\t\t\tsenderFeeRecipient: _senderFeeRecipient,\n\t\t\tsenderFee: _senderFee,\n\t\t\tprotocolFee: _protocolFee,\n\t\t\tisFulfilled: false,\n\t\t\tisRefunded: false,\n\t\t\trefundAddress: _refundAddress,\n\t\t\tcurrentBPS: uint64(MAX_BPS),\n\t\t\tamount: _amount\n\t\t});\n\n\t\t// emit order created event\n\t\temit OrderCreated(\n\t\t\t_refundAddress,\n\t\t\t_token,\n\t\t\torder[orderId].amount,\n\t\t\t_protocolFee,\n\t\t\torderId,\n\t\t\t_rate,\n\t\t\tmessageHash\n\t\t);\n\t}\n\n\t/**\n\t * @dev Internal function to handle order creation.\n\t * @param _token The address of the token being traded.\n\t * @param _amount The amount of tokens being traded.\n\t * @param _refundAddress The address to refund the tokens in case of cancellation.\n\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\n\t * @param _senderFee The amount of the sender fee.\n\t */\n\tfunction _handler(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _refundAddress,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal view {\n\t\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\n\t\trequire(_amount != 0, 'AmountIsZero');\n\t\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\n\n\t\tif (_senderFee != 0) {\n\t\t\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\n\t\t}\n\t}\n\n\t/* ##################################################################\n AGGREGATOR FUNCTIONS\n ################################################################## */\n\t/** @dev See {settle-IGateway}. */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(_rebatePercent <= MAX_BPS, 'InvalidRebatePercent');\n\n\t\t// load the token into memory\n\t\taddress token = order[_orderId].token;\n\n\t\t// subtract sum of amount based on the input _settlePercent\n\t\tuint256 currentOrderBPS = order[_orderId].currentBPS;\n\t\torder[_orderId].currentBPS -= _settlePercent;\n\n\t\tif (order[_orderId].currentBPS == 0) {\n\t\t\t// update the transaction to be fulfilled\n\t\t\torder[_orderId].isFulfilled = true;\n\n\t\t\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee != 0) {\n\t\t\t\t// fx transfer - sender keeps all fee\n\t\t\t\t_handleFxTransferFeeSplitting(_orderId);\n\t\t\t}\n\t\t}\n\n\t\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee == 0) {\n\t\t\t// local transfer - split sender fee\n\t\t\t_handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, _settlePercent);\n\t\t}\n\n\t\t// transfer to liquidity provider\n\t\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) /\n\t\t\tcurrentOrderBPS;\n\t\torder[_orderId].amount -= liquidityProviderAmount;\n\n\t\tif (order[_orderId].protocolFee != 0) {\n\t\t\t// FX transfer - use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\t\tuint256 protocolFee = (liquidityProviderAmount * settings.providerToAggregatorFx) /\n\t\t\t\tMAX_BPS;\n\t\t\tliquidityProviderAmount -= protocolFee;\n\n\t\t\tif (_rebatePercent != 0) {\n\t\t\t\t// calculate rebate amount\n\t\t\t\tuint256 rebateAmount = (protocolFee * _rebatePercent) / MAX_BPS;\n\t\t\t\tprotocolFee -= rebateAmount;\n\t\t\t\tliquidityProviderAmount += rebateAmount;\n\t\t\t}\n\n\t\t\t// transfer protocol fee\n\t\t\tIERC20(token).transfer(treasuryAddress, protocolFee);\n\t\t}\n\n\t\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\n\n\t\t// emit settled event\n\t\temit OrderSettled(\n\t\t\t_splitOrderId,\n\t\t\t_orderId,\n\t\t\t_liquidityProvider,\n\t\t\t_settlePercent,\n\t\t\t_rebatePercent\n\t\t);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {refund-IGateway}. */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\n\n\t\tif (_fee > 0) {\n\t\t\t// transfer refund fee to the treasury\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\n\t\t}\n\n\t\t// reset state values\n\t\torder[_orderId].isRefunded = true;\n\t\torder[_orderId].currentBPS = 0;\n\n\t\t// deduct fee from order amount\n\t\tuint256 refundAmount = order[_orderId].amount - _fee;\n\n\t\t// transfer refund amount and sender fee to the refund address\n\t\tIERC20(order[_orderId].token).transfer(\n\t\t\torder[_orderId].refundAddress,\n\t\t\trefundAmount + order[_orderId].senderFee\n\t\t);\n\n\t\t// emit refunded event\n\t\temit OrderRefunded(_fee, _orderId);\n\n\t\treturn true;\n\t}\n\n\t/* ##################################################################\n VIEW CALLS\n ################################################################## */\n\t/** @dev See {getOrderInfo-IGateway}. */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\n\t\treturn order[_orderId];\n\t}\n\n\t/** @dev See {isTokenSupported-IGateway}. */\n\tfunction isTokenSupported(address _token) external view returns (bool) {\n\t\tif (_isTokenSupported[_token] == 1) return true;\n\t\treturn false;\n\t}\n\n\t/**\n\t * @dev Handles fee splitting for local transfers (rate = 1).\n\t * @param _orderId The order ID to process.\n\t * @param _liquidityProvider The address of the liquidity provider who fulfilled the order.\n\t */\n\tfunction _handleLocalTransferFeeSplitting(\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\tuint256 senderFee = order[_orderId].senderFee;\n\n\t\t// Calculate splits based on config\n\t\tuint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS;\n\t\tuint256 currentProviderAmount = (providerAmount * _settlePercent) / MAX_BPS;\n\t\tuint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) /\n\t\t\tMAX_BPS;\n\t\tuint256 senderAmount = senderFee - providerAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount != 0 && order[_orderId].currentBPS == 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\tsenderAmount\n\t\t\t);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount != 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Transfer provider portion to the liquidity provider who fulfilled the order\n\t\tcurrentProviderAmount = currentProviderAmount - aggregatorAmount;\n\t\tif (currentProviderAmount != 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(_liquidityProvider, currentProviderAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\n\t\temit LocalTransferFeeSplit(_orderId, senderAmount, currentProviderAmount, aggregatorAmount);\n\t}\n\n\t/**\n\t * @dev Handles fee splitting for FX transfers (rate != 1).\n\t * @param _orderId The order ID to process.\n\t */\n\tfunction _handleFxTransferFeeSplitting(bytes32 _orderId) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\tuint256 senderFee = order[_orderId].senderFee;\n\n\t\t// Calculate sender portion based on senderToAggregator setting\n\t\tuint256 senderAmount = (senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS;\n\t\tuint256 aggregatorAmount = senderFee - senderAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\tsenderAmount\n\t\t\t);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\n\t\temit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount);\n\t}\n}\n"},"contracts/GatewaySettingManager.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\n\n/**\n * @title GatewaySettingManager\n * @dev This contract manages the settings and configurations for the Gateway protocol.\n */\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\n\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\n\tuint256 internal MAX_BPS;\n\tuint64 internal protocolFeePercent;\n\taddress internal treasuryAddress;\n\taddress internal _aggregatorAddress;\n\tmapping(address => uint256) internal _isTokenSupported;\n\n\t// Token-specific fee settings\n\tstruct TokenFeeSettings {\n\t\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\n\t\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\n\t\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\n\t\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\n\t}\n\n\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\n\n\tuint256[49] private __gap;\n\n\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\n\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\n\tevent SetFeeRecipient(address indexed treasuryAddress);\n\tevent TokenFeeSettingsUpdated(\n\t\taddress indexed token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t);\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\n\t/**\n\t * @dev Sets the boolean value for a specific setting.\n\t * @param what The setting to be updated.\n\t * @param value The address or value associated with the setting.\n\t * @param status The boolean value to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\trequire(status == 1 || status == 2, 'Gateway: invalid status');\n\t\tif (what == 'token') {\n\t\t\t_isTokenSupported[value] = status;\n\t\t\temit SettingManagerBool(what, value, status);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Updates a protocol address.\n\t * @param what The address type to be updated (treasury or aggregator).\n\t * @param value The new address to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\tbool updated;\n\t\tif (what == 'treasury') {\n\t\t\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\n\t\t\ttreasuryAddress = value;\n\t\t\tupdated = true;\n\t\t} else if (what == 'aggregator') {\n\t\t\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\n\t\t\t_aggregatorAddress = value;\n\t\t\tupdated = true;\n\t\t}\n\t\tif (updated) {\n\t\t\temit ProtocolAddressUpdated(what, value);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Sets token-specific fee settings for stablecoins.\n\t * @param token The token address to configure.\n\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n\t * Requirements:\n\t * - The token must be supported.\n\t * - Fee percentages must be within valid ranges.\n\t */\n\tfunction setTokenFeeSettings(\n\t\taddress token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t) external onlyOwner {\n\t\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\n\t\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\n\t\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\n\t\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\n\t\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\n\n\t\t_tokenFeeSettings[token] = TokenFeeSettings({\n\t\t\tsenderToProvider: senderToProvider,\n\t\t\tproviderToAggregator: providerToAggregator,\n\t\t\tsenderToAggregator: senderToAggregator,\n\t\t\tproviderToAggregatorFx: providerToAggregatorFx\n\t\t});\n\n\t\temit TokenFeeSettingsUpdated(\n\t\t\ttoken,\n\t\t\tsenderToProvider,\n\t\t\tproviderToAggregator,\n\t\t\tsenderToAggregator,\n\t\t\tproviderToAggregatorFx\n\t\t);\n\t}\n\n\t/**\n\t * @dev Gets token-specific fee settings.\n\t * @param token The token address to query.\n\t * @return TokenFeeSettings struct containing all fee settings for the token.\n\t */\n\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\n\t\treturn _tokenFeeSettings[token];\n\t}\n}\n"},"contracts/interfaces/IGateway.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGateway {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t * @param rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t */\n\tevent OrderSettled(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint64 settlePercent,\n\t\tuint64 rebatePercent\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\n\n\t/**\n\t * @dev Emitted when a local transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param providerAmount The amount that goes to the provider.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent LocalTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 providerAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/**\n\t * @dev Emitted when an FX transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent FxTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n}\n"}},"settings":{"optimizer":{"enabled":false,"runs":200},"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","devdoc","userdoc","storageLayout","evm.gasEstimates"],"":["ast"]}},"metadata":{"useLiteralContent":true}}},"output":{"sources":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":107,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:0"},{"absolutePath":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol","file":"./OwnableUpgradeable.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":240,"src":"132:34:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":409,"src":"167:63:0","symbolAliases":[{"foreign":{"id":3,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"175:13:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"Initializable","nameLocations":["719:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"719:13:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"719:13:0"},{"baseName":{"id":8,"name":"OwnableUpgradeable","nameLocations":["734:18:0"],"nodeType":"IdentifierPath","referencedDeclaration":239,"src":"734:18:0"},"id":9,"nodeType":"InheritanceSpecifier","src":"734:18:0"}],"canonicalName":"Ownable2StepUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"232:441:0","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 By default, the owner account will be the one that deploys the contract. 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":106,"linearizedBaseContracts":[106,239,917,408],"name":"Ownable2StepUpgradeable","nameLocation":"692:23:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":11,"mutability":"mutable","name":"_pendingOwner","nameLocation":"775:13:0","nodeType":"VariableDeclaration","scope":106,"src":"759:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"759:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700","id":17,"name":"OwnershipTransferStarted","nameLocation":"801:24:0","nodeType":"EventDefinition","parameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"842:13:0","nodeType":"VariableDeclaration","scope":17,"src":"826:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"873:8:0","nodeType":"VariableDeclaration","scope":17,"src":"857:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14,"name":"address","nodeType":"ElementaryTypeName","src":"857:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"825:57:0"},"src":"795:88:0"},{"body":{"id":25,"nodeType":"Block","src":"946:43:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":22,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"956:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"956:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24,"nodeType":"ExpressionStatement","src":"956:26:0"}]},"id":26,"implemented":true,"kind":"function","modifiers":[{"id":20,"kind":"modifierInvocation","modifierName":{"id":19,"name":"onlyInitializing","nameLocations":["929:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"929:16:0"},"nodeType":"ModifierInvocation","src":"929:16:0"}],"name":"__Ownable2Step_init","nameLocation":"898:19:0","nodeType":"FunctionDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[],"src":"917:2:0"},"returnParameters":{"id":21,"nodeType":"ParameterList","parameters":[],"src":"946:0:0"},"scope":106,"src":"889:100:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":31,"nodeType":"Block","src":"1062:7:0","statements":[]},"id":32,"implemented":true,"kind":"function","modifiers":[{"id":29,"kind":"modifierInvocation","modifierName":{"id":28,"name":"onlyInitializing","nameLocations":["1045:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1045:16:0"},"nodeType":"ModifierInvocation","src":"1045:16:0"}],"name":"__Ownable2Step_init_unchained","nameLocation":"1004:29:0","nodeType":"FunctionDefinition","parameters":{"id":27,"nodeType":"ParameterList","parameters":[],"src":"1033:2:0"},"returnParameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1062:0:0"},"scope":106,"src":"995:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":40,"nodeType":"Block","src":"1206:37:0","statements":[{"expression":{"id":38,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1223:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":37,"id":39,"nodeType":"Return","src":"1216:20:0"}]},"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"1074:65:0","text":" @dev Returns the address of the pending owner."},"functionSelector":"e30c3978","id":41,"implemented":true,"kind":"function","modifiers":[],"name":"pendingOwner","nameLocation":"1153:12:0","nodeType":"FunctionDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[],"src":"1165:2:0"},"returnParameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":41,"src":"1197:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":35,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1196:9:0"},"scope":106,"src":"1144:99:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[213],"body":{"id":60,"nodeType":"Block","src":"1515:99:0","statements":[{"expression":{"id":52,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":50,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1525:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":51,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1541:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1525:24:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":53,"nodeType":"ExpressionStatement","src":"1525:24:0"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":55,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1589:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1589:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":57,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1598:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":54,"name":"OwnershipTransferStarted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17,"src":"1564:24:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":59,"nodeType":"EmitStatement","src":"1559:48:0"}]},"documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"1249:182:0","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."},"functionSelector":"f2fde38b","id":61,"implemented":true,"kind":"function","modifiers":[{"id":48,"kind":"modifierInvocation","modifierName":{"id":47,"name":"onlyOwner","nameLocations":["1505:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1505:9:0"},"nodeType":"ModifierInvocation","src":"1505:9:0"}],"name":"transferOwnership","nameLocation":"1445:17:0","nodeType":"FunctionDefinition","overrides":{"id":46,"nodeType":"OverrideSpecifier","overrides":[],"src":"1496:8:0"},"parameters":{"id":45,"nodeType":"ParameterList","parameters":[{"constant":false,"id":44,"mutability":"mutable","name":"newOwner","nameLocation":"1471:8:0","nodeType":"VariableDeclaration","scope":61,"src":"1463:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":43,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:18:0"},"returnParameters":{"id":49,"nodeType":"ParameterList","parameters":[],"src":"1515:0:0"},"scope":106,"src":"1436:178:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[233],"body":{"id":77,"nodeType":"Block","src":"1870:81:0","statements":[{"expression":{"id":69,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1880:20:0","subExpression":{"id":68,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1887:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":70,"nodeType":"ExpressionStatement","src":"1880:20:0"},{"expression":{"arguments":[{"id":74,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":64,"src":"1935:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":71,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1910:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Ownable2StepUpgradeable_$106_$","typeString":"type(contract super Ownable2StepUpgradeable)"}},"id":73,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1916:18:0","memberName":"_transferOwnership","nodeType":"MemberAccess","referencedDeclaration":233,"src":"1910:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":76,"nodeType":"ExpressionStatement","src":"1910:34:0"}]},"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"1620:173:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n Internal function without access restriction."},"id":78,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"1807:18:0","nodeType":"FunctionDefinition","overrides":{"id":66,"nodeType":"OverrideSpecifier","overrides":[],"src":"1861:8:0"},"parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"newOwner","nameLocation":"1834:8:0","nodeType":"VariableDeclaration","scope":78,"src":"1826:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"1826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1825:18:0"},"returnParameters":{"id":67,"nodeType":"ParameterList","parameters":[],"src":"1870:0:0"},"scope":106,"src":"1798:153:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":99,"nodeType":"Block","src":"2073:170:0","statements":[{"assignments":[83],"declarations":[{"constant":false,"id":83,"mutability":"mutable","name":"sender","nameLocation":"2091:6:0","nodeType":"VariableDeclaration","scope":99,"src":"2083:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":82,"name":"address","nodeType":"ElementaryTypeName","src":"2083:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":86,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":84,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2100:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2100:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2083:29:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":91,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"2130:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2130:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":90,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2148:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2130:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e6572","id":92,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2156:43:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""},"value":"Ownable2Step: caller is not the new owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""}],"id":87,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2122:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":93,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2122:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":94,"nodeType":"ExpressionStatement","src":"2122:78:0"},{"expression":{"arguments":[{"id":96,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2229:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":95,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[78],"referencedDeclaration":78,"src":"2210:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":97,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2210:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":98,"nodeType":"ExpressionStatement","src":"2210:26:0"}]},"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"1957:69:0","text":" @dev The new owner accepts the ownership transfer."},"functionSelector":"79ba5097","id":100,"implemented":true,"kind":"function","modifiers":[],"name":"acceptOwnership","nameLocation":"2040:15:0","nodeType":"FunctionDefinition","parameters":{"id":80,"nodeType":"ParameterList","parameters":[],"src":"2055:2:0"},"returnParameters":{"id":81,"nodeType":"ParameterList","parameters":[],"src":"2073:0:0"},"scope":106,"src":"2031:212:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"constant":false,"documentation":{"id":101,"nodeType":"StructuredDocumentation","src":"2249:254:0","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":105,"mutability":"mutable","name":"__gap","nameLocation":"2528:5:0","nodeType":"VariableDeclaration","scope":106,"src":"2508:25:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"2508:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":104,"length":{"hexValue":"3439","id":103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2516:2:0","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"2508:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":107,"src":"674:1862:0","usedErrors":[],"usedEvents":[17,124,254]}],"src":"107:2430:0"},"id":0},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"OwnableUpgradeable":[239]},"id":240,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":108,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:1"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":918,"src":"127:41:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":111,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":409,"src":"169:63:1","symbolAliases":[{"foreign":{"id":110,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"177:13:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":113,"name":"Initializable","nameLocations":["769:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"769:13:1"},"id":114,"nodeType":"InheritanceSpecifier","src":"769:13:1"},{"baseName":{"id":115,"name":"ContextUpgradeable","nameLocations":["784:18:1"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"784:18:1"},"id":116,"nodeType":"InheritanceSpecifier","src":"784:18:1"}],"canonicalName":"OwnableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"234:494:1","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 By default, the owner account will be the one that deploys the contract. This\n can 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":239,"linearizedBaseContracts":[239,917,408],"name":"OwnableUpgradeable","nameLocation":"747:18:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":118,"mutability":"mutable","name":"_owner","nameLocation":"825:6:1","nodeType":"VariableDeclaration","scope":239,"src":"809:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"809:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":124,"name":"OwnershipTransferred","nameLocation":"844:20:1","nodeType":"EventDefinition","parameters":{"id":123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"881:13:1","nodeType":"VariableDeclaration","scope":124,"src":"865:29:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":119,"name":"address","nodeType":"ElementaryTypeName","src":"865:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":122,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"912:8:1","nodeType":"VariableDeclaration","scope":124,"src":"896:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":121,"name":"address","nodeType":"ElementaryTypeName","src":"896:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"864:57:1"},"src":"838:84:1"},{"body":{"id":133,"nodeType":"Block","src":"1076:43:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":130,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"1086:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1086:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":132,"nodeType":"ExpressionStatement","src":"1086:26:1"}]},"documentation":{"id":125,"nodeType":"StructuredDocumentation","src":"928:91:1","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":134,"implemented":true,"kind":"function","modifiers":[{"id":128,"kind":"modifierInvocation","modifierName":{"id":127,"name":"onlyInitializing","nameLocations":["1059:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1059:16:1"},"nodeType":"ModifierInvocation","src":"1059:16:1"}],"name":"__Ownable_init","nameLocation":"1033:14:1","nodeType":"FunctionDefinition","parameters":{"id":126,"nodeType":"ParameterList","parameters":[],"src":"1047:2:1"},"returnParameters":{"id":129,"nodeType":"ParameterList","parameters":[],"src":"1076:0:1"},"scope":239,"src":"1024:95:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":144,"nodeType":"Block","src":"1187:49:1","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":140,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1216:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1216:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":139,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"1197:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1197:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":143,"nodeType":"ExpressionStatement","src":"1197:32:1"}]},"id":145,"implemented":true,"kind":"function","modifiers":[{"id":137,"kind":"modifierInvocation","modifierName":{"id":136,"name":"onlyInitializing","nameLocations":["1170:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1170:16:1"},"nodeType":"ModifierInvocation","src":"1170:16:1"}],"name":"__Ownable_init_unchained","nameLocation":"1134:24:1","nodeType":"FunctionDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[],"src":"1158:2:1"},"returnParameters":{"id":138,"nodeType":"ParameterList","parameters":[],"src":"1187:0:1"},"scope":239,"src":"1125:111:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":152,"nodeType":"Block","src":"1345:41:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":148,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1355:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1355:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":150,"nodeType":"ExpressionStatement","src":"1355:13:1"},{"id":151,"nodeType":"PlaceholderStatement","src":"1378:1:1"}]},"documentation":{"id":146,"nodeType":"StructuredDocumentation","src":"1242:77:1","text":" @dev Throws if called by any account other than the owner."},"id":153,"name":"onlyOwner","nameLocation":"1333:9:1","nodeType":"ModifierDefinition","parameters":{"id":147,"nodeType":"ParameterList","parameters":[],"src":"1342:2:1"},"src":"1324:62:1","virtual":false,"visibility":"internal"},{"body":{"id":161,"nodeType":"Block","src":"1517:30:1","statements":[{"expression":{"id":159,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1534:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":158,"id":160,"nodeType":"Return","src":"1527:13:1"}]},"documentation":{"id":154,"nodeType":"StructuredDocumentation","src":"1392:65:1","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":162,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1471:5:1","nodeType":"FunctionDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[],"src":"1476:2:1"},"returnParameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":162,"src":"1508:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1508:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1507:9:1"},"scope":239,"src":"1462:85:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":175,"nodeType":"Block","src":"1665:85:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":167,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1683:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1683:7:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":169,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1694:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1694:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1683:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1708:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":166,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1675:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":174,"nodeType":"ExpressionStatement","src":"1675:68:1"}]},"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"1553:62:1","text":" @dev Throws if the sender is not the owner."},"id":176,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1629:11:1","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"1640:2:1"},"returnParameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"1665:0:1"},"scope":239,"src":"1620:130:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":189,"nodeType":"Block","src":"2139:47:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2176:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2168:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":183,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:1","typeDescriptions":{}}},"id":186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":182,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2149:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2149:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":188,"nodeType":"ExpressionStatement","src":"2149:30:1"}]},"documentation":{"id":177,"nodeType":"StructuredDocumentation","src":"1756:324:1","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":190,"implemented":true,"kind":"function","modifiers":[{"id":180,"kind":"modifierInvocation","modifierName":{"id":179,"name":"onlyOwner","nameLocations":["2129:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2129:9:1"},"nodeType":"ModifierInvocation","src":"2129:9:1"}],"name":"renounceOwnership","nameLocation":"2094:17:1","nodeType":"FunctionDefinition","parameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"2111:2:1"},"returnParameters":{"id":181,"nodeType":"ParameterList","parameters":[],"src":"2139:0:1"},"scope":239,"src":"2085:101:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":212,"nodeType":"Block","src":"2405:128:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2423:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2443:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2435:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":200,"name":"address","nodeType":"ElementaryTypeName","src":"2435:7:1","typeDescriptions":{}}},"id":203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2423:22:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2447:40:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":198,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2415:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2415:73:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":207,"nodeType":"ExpressionStatement","src":"2415:73:1"},{"expression":{"arguments":[{"id":209,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2517:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":208,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2498:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2498:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":211,"nodeType":"ExpressionStatement","src":"2498:28:1"}]},"documentation":{"id":191,"nodeType":"StructuredDocumentation","src":"2192:138:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":213,"implemented":true,"kind":"function","modifiers":[{"id":196,"kind":"modifierInvocation","modifierName":{"id":195,"name":"onlyOwner","nameLocations":["2395:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2395:9:1"},"nodeType":"ModifierInvocation","src":"2395:9:1"}],"name":"transferOwnership","nameLocation":"2344:17:1","nodeType":"FunctionDefinition","parameters":{"id":194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":193,"mutability":"mutable","name":"newOwner","nameLocation":"2370:8:1","nodeType":"VariableDeclaration","scope":213,"src":"2362:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":192,"name":"address","nodeType":"ElementaryTypeName","src":"2362:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2361:18:1"},"returnParameters":{"id":197,"nodeType":"ParameterList","parameters":[],"src":"2405:0:1"},"scope":239,"src":"2335:198:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":232,"nodeType":"Block","src":"2750:124:1","statements":[{"assignments":[220],"declarations":[{"constant":false,"id":220,"mutability":"mutable","name":"oldOwner","nameLocation":"2768:8:1","nodeType":"VariableDeclaration","scope":232,"src":"2760:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":219,"name":"address","nodeType":"ElementaryTypeName","src":"2760:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":222,"initialValue":{"id":221,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2779:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2760:25:1"},{"expression":{"id":225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":223,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2795:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":224,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2804:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2795:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":226,"nodeType":"ExpressionStatement","src":"2795:17:1"},{"eventCall":{"arguments":[{"id":228,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"2848:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":229,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2858:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"2827:20:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2827:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":231,"nodeType":"EmitStatement","src":"2822:45:1"}]},"documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"2539:143:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":233,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2696:18:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":216,"mutability":"mutable","name":"newOwner","nameLocation":"2723:8:1","nodeType":"VariableDeclaration","scope":233,"src":"2715:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":215,"name":"address","nodeType":"ElementaryTypeName","src":"2715:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2714:18:1"},"returnParameters":{"id":218,"nodeType":"ParameterList","parameters":[],"src":"2750:0:1"},"scope":239,"src":"2687:187:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":234,"nodeType":"StructuredDocumentation","src":"2880:254:1","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":238,"mutability":"mutable","name":"__gap","nameLocation":"3159:5:1","nodeType":"VariableDeclaration","scope":239,"src":"3139:25:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":235,"name":"uint256","nodeType":"ElementaryTypeName","src":"3139:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":237,"length":{"hexValue":"3439","id":236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:2:1","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3139:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":240,"src":"729:2438:1","usedErrors":[],"usedEvents":[124,254]}],"src":"102:3066:1"},"id":1},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","exportedSymbols":{"AddressUpgradeable":[866],"Initializable":[408]},"id":409,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":241,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"113:23:2"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","file":"../../utils/AddressUpgradeable.sol","id":242,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":409,"sourceUnit":867,"src":"138:44:2","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":243,"nodeType":"StructuredDocumentation","src":"184: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":408,"linearizedBaseContracts":[408],"name":"Initializable","nameLocation":"2412:13:2","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"2432:109:2","text":" @dev Indicates that the contract has been initialized.\n @custom:oz-retyped-from bool"},"id":246,"mutability":"mutable","name":"_initialized","nameLocation":"2560:12:2","nodeType":"VariableDeclaration","scope":408,"src":"2546:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":245,"name":"uint8","nodeType":"ElementaryTypeName","src":"2546:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"constant":false,"documentation":{"id":247,"nodeType":"StructuredDocumentation","src":"2579:91:2","text":" @dev Indicates that the contract is in the process of being initialized."},"id":249,"mutability":"mutable","name":"_initializing","nameLocation":"2688:13:2","nodeType":"VariableDeclaration","scope":408,"src":"2675:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":248,"name":"bool","nodeType":"ElementaryTypeName","src":"2675:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"anonymous":false,"documentation":{"id":250,"nodeType":"StructuredDocumentation","src":"2708:90:2","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498","id":254,"name":"Initialized","nameLocation":"2809:11:2","nodeType":"EventDefinition","parameters":{"id":253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"2827:7:2","nodeType":"VariableDeclaration","scope":254,"src":"2821:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":251,"name":"uint8","nodeType":"ElementaryTypeName","src":"2821:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2820:15:2"},"src":"2803:33:2"},{"body":{"id":309,"nodeType":"Block","src":"3269:483:2","statements":[{"assignments":[258],"declarations":[{"constant":false,"id":258,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"3284:14:2","nodeType":"VariableDeclaration","scope":309,"src":"3279:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":257,"name":"bool","nodeType":"ElementaryTypeName","src":"3279:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":261,"initialValue":{"id":260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3301:14:2","subExpression":{"id":259,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3302:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3279:36:2"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":263,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3347:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":264,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3365:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3380:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3365:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3347:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3346:36:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3387:45:2","subExpression":{"arguments":[{"arguments":[{"id":273,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3426:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}],"id":272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3418:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"3418:7:2","typeDescriptions":{}}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":269,"name":"AddressUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":866,"src":"3388:18:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AddressUpgradeable_$866_$","typeString":"type(library AddressUpgradeable)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3407:10:2","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":554,"src":"3388:29:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3388:44:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":277,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3436:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3452:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3436:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3387:66:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3386:68:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3346:108:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3468:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":262,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3325:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3325:201:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"ExpressionStatement","src":"3325:201:2"},{"expression":{"id":288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":286,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3536:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3551:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3536:16:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":289,"nodeType":"ExpressionStatement","src":"3536:16:2"},{"condition":{"id":290,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3566:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":296,"nodeType":"IfStatement","src":"3562:65:2","trueBody":{"id":295,"nodeType":"Block","src":"3582:45:2","statements":[{"expression":{"id":293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":291,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3596:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3612:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3596:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":294,"nodeType":"ExpressionStatement","src":"3596:20:2"}]}},{"id":297,"nodeType":"PlaceholderStatement","src":"3636:1:2"},{"condition":{"id":298,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3651:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":308,"nodeType":"IfStatement","src":"3647:99:2","trueBody":{"id":307,"nodeType":"Block","src":"3667:79:2","statements":[{"expression":{"id":301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":299,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3681:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3697:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3681:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":302,"nodeType":"ExpressionStatement","src":"3681:21:2"},{"eventCall":{"arguments":[{"hexValue":"31","id":304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3733: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":303,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"3721:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3721:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":306,"nodeType":"EmitStatement","src":"3716:19:2"}]}}]},"documentation":{"id":255,"nodeType":"StructuredDocumentation","src":"2842:399: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 functions marked with `initializer` can be nested in the context of a\n constructor.\n Emits an {Initialized} event."},"id":310,"name":"initializer","nameLocation":"3255:11:2","nodeType":"ModifierDefinition","parameters":{"id":256,"nodeType":"ParameterList","parameters":[],"src":"3266:2:2"},"src":"3246:506:2","virtual":false,"visibility":"internal"},{"body":{"id":342,"nodeType":"Block","src":"4863:255:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4881:14:2","subExpression":{"id":316,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"4882:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":318,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4899:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":319,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4914:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4899:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4881:40:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4923:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":315,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4873:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4873:99:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4873:99:2"},{"expression":{"id":327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":325,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4982:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":326,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4997:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4982:22:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":328,"nodeType":"ExpressionStatement","src":"4982:22:2"},{"expression":{"id":331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":329,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5014:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5030:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5014:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":332,"nodeType":"ExpressionStatement","src":"5014:20:2"},{"id":333,"nodeType":"PlaceholderStatement","src":"5044:1:2"},{"expression":{"id":336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":334,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5055:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5071:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5055:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":337,"nodeType":"ExpressionStatement","src":"5055:21:2"},{"eventCall":{"arguments":[{"id":339,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"5103:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":338,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"5091:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5091:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":341,"nodeType":"EmitStatement","src":"5086:25:2"}]},"documentation":{"id":311,"nodeType":"StructuredDocumentation","src":"3758:1062: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 255 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":343,"name":"reinitializer","nameLocation":"4834:13:2","nodeType":"ModifierDefinition","parameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":313,"mutability":"mutable","name":"version","nameLocation":"4854:7:2","nodeType":"VariableDeclaration","scope":343,"src":"4848:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":312,"name":"uint8","nodeType":"ElementaryTypeName","src":"4848:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4847:15:2"},"src":"4825:293:2","virtual":false,"visibility":"internal"},{"body":{"id":352,"nodeType":"Block","src":"5356:97:2","statements":[{"expression":{"arguments":[{"id":347,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5374:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420696e697469616c697a696e67","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5389:45:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""},"value":"Initializable: contract is not initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""}],"id":346,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5366:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5366:69:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":350,"nodeType":"ExpressionStatement","src":"5366:69:2"},{"id":351,"nodeType":"PlaceholderStatement","src":"5445:1:2"}]},"documentation":{"id":344,"nodeType":"StructuredDocumentation","src":"5124: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":353,"name":"onlyInitializing","nameLocation":"5337:16:2","nodeType":"ModifierDefinition","parameters":{"id":345,"nodeType":"ParameterList","parameters":[],"src":"5353:2:2"},"src":"5328:125:2","virtual":false,"visibility":"internal"},{"body":{"id":388,"nodeType":"Block","src":"5988:231:2","statements":[{"expression":{"arguments":[{"id":359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6006:14:2","subExpression":{"id":358,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6007:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e67","id":360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6022:41:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""},"value":"Initializable: contract is initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""}],"id":357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5998:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5998:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":362,"nodeType":"ExpressionStatement","src":"5998:66:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":363,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6078:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6099:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":365,"name":"uint8","nodeType":"ElementaryTypeName","src":"6099:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":364,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6094:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6094:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6106:3:2","memberName":"max","nodeType":"MemberAccess","src":"6094:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6078:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":387,"nodeType":"IfStatement","src":"6074:139:2","trueBody":{"id":386,"nodeType":"Block","src":"6111:102:2","statements":[{"expression":{"id":376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":370,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6125:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6145:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":372,"name":"uint8","nodeType":"ElementaryTypeName","src":"6145:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":371,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6140:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6152:3:2","memberName":"max","nodeType":"MemberAccess","src":"6140:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6125:30:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":377,"nodeType":"ExpressionStatement","src":"6125:30:2"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6191:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":380,"name":"uint8","nodeType":"ElementaryTypeName","src":"6191:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":379,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6186:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6186:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6198:3:2","memberName":"max","nodeType":"MemberAccess","src":"6186:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":378,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"6174:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6174:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":385,"nodeType":"EmitStatement","src":"6169:33:2"}]}}]},"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"5459: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":389,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"5948:20:2","nodeType":"FunctionDefinition","parameters":{"id":355,"nodeType":"ParameterList","parameters":[],"src":"5968:2:2"},"returnParameters":{"id":356,"nodeType":"ParameterList","parameters":[],"src":"5988:0:2"},"scope":408,"src":"5939:280:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":397,"nodeType":"Block","src":"6393:36:2","statements":[{"expression":{"id":395,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6410:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":394,"id":396,"nodeType":"Return","src":"6403:19:2"}]},"documentation":{"id":390,"nodeType":"StructuredDocumentation","src":"6225:99:2","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":398,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"6338:22:2","nodeType":"FunctionDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[],"src":"6360:2:2"},"returnParameters":{"id":394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":398,"src":"6386:5:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":392,"name":"uint8","nodeType":"ElementaryTypeName","src":"6386:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6385:7:2"},"scope":408,"src":"6329:100:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":406,"nodeType":"Block","src":"6601:37:2","statements":[{"expression":{"id":404,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6618:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":403,"id":405,"nodeType":"Return","src":"6611:20:2"}]},"documentation":{"id":399,"nodeType":"StructuredDocumentation","src":"6435:105:2","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":407,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"6554:15:2","nodeType":"FunctionDefinition","parameters":{"id":400,"nodeType":"ParameterList","parameters":[],"src":"6569:2:2"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":407,"src":"6595:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":401,"name":"bool","nodeType":"ElementaryTypeName","src":"6595:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6594:6:2"},"scope":408,"src":"6545:93:2","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":409,"src":"2394:4246:2","usedErrors":[],"usedEvents":[254]}],"src":"113:6528:2"},"id":2},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"PausableUpgradeable":[536]},"id":537,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":410,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:3"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":411,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":918,"src":"130:41:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":413,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":409,"src":"172:63:3","symbolAliases":[{"foreign":{"id":412,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"180:13:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":415,"name":"Initializable","nameLocations":["718:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"718:13:3"},"id":416,"nodeType":"InheritanceSpecifier","src":"718:13:3"},{"baseName":{"id":417,"name":"ContextUpgradeable","nameLocations":["733:18:3"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"733:18:3"},"id":418,"nodeType":"InheritanceSpecifier","src":"733:18:3"}],"canonicalName":"PausableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":414,"nodeType":"StructuredDocumentation","src":"237:439:3","text":" @dev Contract module which allows children to implement an emergency stop\n mechanism that can be triggered by an authorized account.\n This module is used through inheritance. It will make available the\n modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n the functions of your contract. Note that they will not be pausable by\n simply including this module, only once the modifiers are put in place."},"fullyImplemented":true,"id":536,"linearizedBaseContracts":[536,917,408],"name":"PausableUpgradeable","nameLocation":"695:19:3","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":419,"nodeType":"StructuredDocumentation","src":"758:73:3","text":" @dev Emitted when the pause is triggered by `account`."},"eventSelector":"62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258","id":423,"name":"Paused","nameLocation":"842:6:3","nodeType":"EventDefinition","parameters":{"id":422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":421,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"857:7:3","nodeType":"VariableDeclaration","scope":423,"src":"849:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":420,"name":"address","nodeType":"ElementaryTypeName","src":"849:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"848:17:3"},"src":"836:30:3"},{"anonymous":false,"documentation":{"id":424,"nodeType":"StructuredDocumentation","src":"872:70:3","text":" @dev Emitted when the pause is lifted by `account`."},"eventSelector":"5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa","id":428,"name":"Unpaused","nameLocation":"953:8:3","nodeType":"EventDefinition","parameters":{"id":427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":426,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"970:7:3","nodeType":"VariableDeclaration","scope":428,"src":"962:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":425,"name":"address","nodeType":"ElementaryTypeName","src":"962:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"961:17:3"},"src":"947:32:3"},{"constant":false,"id":430,"mutability":"mutable","name":"_paused","nameLocation":"998:7:3","nodeType":"VariableDeclaration","scope":536,"src":"985:20:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":429,"name":"bool","nodeType":"ElementaryTypeName","src":"985:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"body":{"id":439,"nodeType":"Block","src":"1137:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":436,"name":"__Pausable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":450,"src":"1147:25:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1147:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":438,"nodeType":"ExpressionStatement","src":"1147:27:3"}]},"documentation":{"id":431,"nodeType":"StructuredDocumentation","src":"1012:67:3","text":" @dev Initializes the contract in unpaused state."},"id":440,"implemented":true,"kind":"function","modifiers":[{"id":434,"kind":"modifierInvocation","modifierName":{"id":433,"name":"onlyInitializing","nameLocations":["1120:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1120:16:3"},"nodeType":"ModifierInvocation","src":"1120:16:3"}],"name":"__Pausable_init","nameLocation":"1093:15:3","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[],"src":"1108:2:3"},"returnParameters":{"id":435,"nodeType":"ParameterList","parameters":[],"src":"1137:0:3"},"scope":536,"src":"1084:97:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":449,"nodeType":"Block","src":"1250:32:3","statements":[{"expression":{"id":447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":445,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1260:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1270:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1260:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":448,"nodeType":"ExpressionStatement","src":"1260:15:3"}]},"id":450,"implemented":true,"kind":"function","modifiers":[{"id":443,"kind":"modifierInvocation","modifierName":{"id":442,"name":"onlyInitializing","nameLocations":["1233:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1233:16:3"},"nodeType":"ModifierInvocation","src":"1233:16:3"}],"name":"__Pausable_init_unchained","nameLocation":"1196:25:3","nodeType":"FunctionDefinition","parameters":{"id":441,"nodeType":"ParameterList","parameters":[],"src":"1221:2:3"},"returnParameters":{"id":444,"nodeType":"ParameterList","parameters":[],"src":"1250:0:3"},"scope":536,"src":"1187:95:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":457,"nodeType":"Block","src":"1493:47:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":453,"name":"_requireNotPaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":487,"src":"1503:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1503:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":455,"nodeType":"ExpressionStatement","src":"1503:19:3"},{"id":456,"nodeType":"PlaceholderStatement","src":"1532:1:3"}]},"documentation":{"id":451,"nodeType":"StructuredDocumentation","src":"1288:175:3","text":" @dev Modifier to make a function callable only when the contract is not paused.\n Requirements:\n - The contract must not be paused."},"id":458,"name":"whenNotPaused","nameLocation":"1477:13:3","nodeType":"ModifierDefinition","parameters":{"id":452,"nodeType":"ParameterList","parameters":[],"src":"1490:2:3"},"src":"1468:72:3","virtual":false,"visibility":"internal"},{"body":{"id":465,"nodeType":"Block","src":"1740:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":461,"name":"_requirePaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"1750:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1750:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":463,"nodeType":"ExpressionStatement","src":"1750:16:3"},{"id":464,"nodeType":"PlaceholderStatement","src":"1776:1:3"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"1546:167:3","text":" @dev Modifier to make a function callable only when the contract is paused.\n Requirements:\n - The contract must be paused."},"id":466,"name":"whenPaused","nameLocation":"1727:10:3","nodeType":"ModifierDefinition","parameters":{"id":460,"nodeType":"ParameterList","parameters":[],"src":"1737:2:3"},"src":"1718:66:3","virtual":false,"visibility":"internal"},{"body":{"id":474,"nodeType":"Block","src":"1932:31:3","statements":[{"expression":{"id":472,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1949:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":471,"id":473,"nodeType":"Return","src":"1942:14:3"}]},"documentation":{"id":467,"nodeType":"StructuredDocumentation","src":"1790:84:3","text":" @dev Returns true if the contract is paused, and false otherwise."},"functionSelector":"5c975abb","id":475,"implemented":true,"kind":"function","modifiers":[],"name":"paused","nameLocation":"1888:6:3","nodeType":"FunctionDefinition","parameters":{"id":468,"nodeType":"ParameterList","parameters":[],"src":"1894:2:3"},"returnParameters":{"id":471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":475,"src":"1926:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":469,"name":"bool","nodeType":"ElementaryTypeName","src":"1926:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1925:6:3"},"scope":536,"src":"1879:84:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":486,"nodeType":"Block","src":"2082:55:3","statements":[{"expression":{"arguments":[{"id":482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2100:9:3","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":480,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2101:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2101:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a20706175736564","id":483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2111:18:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""},"value":"Pausable: paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""}],"id":479,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2092:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:38:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":485,"nodeType":"ExpressionStatement","src":"2092:38:3"}]},"documentation":{"id":476,"nodeType":"StructuredDocumentation","src":"1969:57:3","text":" @dev Throws if the contract is paused."},"id":487,"implemented":true,"kind":"function","modifiers":[],"name":"_requireNotPaused","nameLocation":"2040:17:3","nodeType":"FunctionDefinition","parameters":{"id":477,"nodeType":"ParameterList","parameters":[],"src":"2057:2:3"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[],"src":"2082:0:3"},"scope":536,"src":"2031:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":497,"nodeType":"Block","src":"2257:58:3","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":492,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2275:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2275:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a206e6f7420706175736564","id":494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2285:22:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""},"value":"Pausable: not paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""}],"id":491,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2267:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2267:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":496,"nodeType":"ExpressionStatement","src":"2267:41:3"}]},"documentation":{"id":488,"nodeType":"StructuredDocumentation","src":"2143:61:3","text":" @dev Throws if the contract is not paused."},"id":498,"implemented":true,"kind":"function","modifiers":[],"name":"_requirePaused","nameLocation":"2218:14:3","nodeType":"FunctionDefinition","parameters":{"id":489,"nodeType":"ParameterList","parameters":[],"src":"2232:2:3"},"returnParameters":{"id":490,"nodeType":"ParameterList","parameters":[],"src":"2257:0:3"},"scope":536,"src":"2209:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":513,"nodeType":"Block","src":"2499:66:3","statements":[{"expression":{"id":506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":504,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2509:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2519:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2509:14:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":507,"nodeType":"ExpressionStatement","src":"2509:14:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":509,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2545:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":508,"name":"Paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"2538:6:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2538:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":512,"nodeType":"EmitStatement","src":"2533:25:3"}]},"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"2321:124:3","text":" @dev Triggers stopped state.\n Requirements:\n - The contract must not be paused."},"id":514,"implemented":true,"kind":"function","modifiers":[{"id":502,"kind":"modifierInvocation","modifierName":{"id":501,"name":"whenNotPaused","nameLocations":["2485:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"2485:13:3"},"nodeType":"ModifierInvocation","src":"2485:13:3"}],"name":"_pause","nameLocation":"2459:6:3","nodeType":"FunctionDefinition","parameters":{"id":500,"nodeType":"ParameterList","parameters":[],"src":"2465:2:3"},"returnParameters":{"id":503,"nodeType":"ParameterList","parameters":[],"src":"2499:0:3"},"scope":536,"src":"2450:115:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":529,"nodeType":"Block","src":"2745:69:3","statements":[{"expression":{"id":522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":520,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2755:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2765:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2755:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":523,"nodeType":"ExpressionStatement","src":"2755:15:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":525,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2794:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2794:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":524,"name":"Unpaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":428,"src":"2785:8:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2785:22:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":528,"nodeType":"EmitStatement","src":"2780:27:3"}]},"documentation":{"id":515,"nodeType":"StructuredDocumentation","src":"2571:121:3","text":" @dev Returns to normal state.\n Requirements:\n - The contract must be paused."},"id":530,"implemented":true,"kind":"function","modifiers":[{"id":518,"kind":"modifierInvocation","modifierName":{"id":517,"name":"whenPaused","nameLocations":["2734:10:3"],"nodeType":"IdentifierPath","referencedDeclaration":466,"src":"2734:10:3"},"nodeType":"ModifierInvocation","src":"2734:10:3"}],"name":"_unpause","nameLocation":"2706:8:3","nodeType":"FunctionDefinition","parameters":{"id":516,"nodeType":"ParameterList","parameters":[],"src":"2714:2:3"},"returnParameters":{"id":519,"nodeType":"ParameterList","parameters":[],"src":"2745:0:3"},"scope":536,"src":"2697:117:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":531,"nodeType":"StructuredDocumentation","src":"2820:254:3","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":535,"mutability":"mutable","name":"__gap","nameLocation":"3099:5:3","nodeType":"VariableDeclaration","scope":536,"src":"3079:25:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":532,"name":"uint256","nodeType":"ElementaryTypeName","src":"3079:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":534,"length":{"hexValue":"3439","id":533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3087:2:3","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3079:11:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":537,"src":"677:2430:3","usedErrors":[],"usedEvents":[254,423,428]}],"src":"105:3003:3"},"id":3},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","exportedSymbols":{"AddressUpgradeable":[866]},"id":867,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":538,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:4"},{"abstract":false,"baseContracts":[],"canonicalName":"AddressUpgradeable","contractDependencies":[],"contractKind":"library","documentation":{"id":539,"nodeType":"StructuredDocumentation","src":"126:67:4","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":866,"linearizedBaseContracts":[866],"name":"AddressUpgradeable","nameLocation":"202:18:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":553,"nodeType":"Block","src":"1489:254:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":547,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":542,"src":"1713:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1721:4:4","memberName":"code","nodeType":"MemberAccess","src":"1713:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1726:6:4","memberName":"length","nodeType":"MemberAccess","src":"1713:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1735:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1713:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":546,"id":552,"nodeType":"Return","src":"1706:30:4"}]},"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"227:1191:4","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":554,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1432:10:4","nodeType":"FunctionDefinition","parameters":{"id":543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":542,"mutability":"mutable","name":"account","nameLocation":"1451:7:4","nodeType":"VariableDeclaration","scope":554,"src":"1443:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":541,"name":"address","nodeType":"ElementaryTypeName","src":"1443:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1442:17:4"},"returnParameters":{"id":546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":554,"src":"1483:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":544,"name":"bool","nodeType":"ElementaryTypeName","src":"1483:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1482:6:4"},"scope":866,"src":"1423:320:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":587,"nodeType":"Block","src":"2729:241:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":565,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2755:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2747:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":563,"name":"address","nodeType":"ElementaryTypeName","src":"2747:7:4","typeDescriptions":{}}},"id":566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2747:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2761:7:4","memberName":"balance","nodeType":"MemberAccess","src":"2747:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":568,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2772:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2747:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2780:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":562,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2739:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":572,"nodeType":"ExpressionStatement","src":"2739:73:4"},{"assignments":[574,null],"declarations":[{"constant":false,"id":574,"mutability":"mutable","name":"success","nameLocation":"2829:7:4","nodeType":"VariableDeclaration","scope":587,"src":"2824:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":573,"name":"bool","nodeType":"ElementaryTypeName","src":"2824:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":581,"initialValue":{"arguments":[{"hexValue":"","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2872:2:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":575,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":557,"src":"2842:9:4","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:4:4","memberName":"call","nodeType":"MemberAccess","src":"2842:14:4","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":578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":577,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2864:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2842:29:4","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":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2842:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2823:52:4"},{"expression":{"arguments":[{"id":583,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"2893:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2902:60:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":582,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2885:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2885:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":586,"nodeType":"ExpressionStatement","src":"2885:78:4"}]},"documentation":{"id":555,"nodeType":"StructuredDocumentation","src":"1749:904:4","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":588,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2667:9:4","nodeType":"FunctionDefinition","parameters":{"id":560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"recipient","nameLocation":"2693:9:4","nodeType":"VariableDeclaration","scope":588,"src":"2677:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":556,"name":"address","nodeType":"ElementaryTypeName","src":"2677:15:4","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":559,"mutability":"mutable","name":"amount","nameLocation":"2712:6:4","nodeType":"VariableDeclaration","scope":588,"src":"2704:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":558,"name":"uint256","nodeType":"ElementaryTypeName","src":"2704:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:4"},"returnParameters":{"id":561,"nodeType":"ParameterList","parameters":[],"src":"2729:0:4"},"scope":866,"src":"2658:312:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":605,"nodeType":"Block","src":"3801:96:4","statements":[{"expression":{"arguments":[{"id":599,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":591,"src":"3840:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":600,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"3848:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3854:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3857:32:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":598,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"3818:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3818:72:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":597,"id":604,"nodeType":"Return","src":"3811:79:4"}]},"documentation":{"id":589,"nodeType":"StructuredDocumentation","src":"2976:731:4","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":606,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3721:12:4","nodeType":"FunctionDefinition","parameters":{"id":594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":591,"mutability":"mutable","name":"target","nameLocation":"3742:6:4","nodeType":"VariableDeclaration","scope":606,"src":"3734:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":590,"name":"address","nodeType":"ElementaryTypeName","src":"3734:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":593,"mutability":"mutable","name":"data","nameLocation":"3763:4:4","nodeType":"VariableDeclaration","scope":606,"src":"3750:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":592,"name":"bytes","nodeType":"ElementaryTypeName","src":"3750:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3733:35:4"},"returnParameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":606,"src":"3787:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":595,"name":"bytes","nodeType":"ElementaryTypeName","src":"3787:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3786:14:4"},"scope":866,"src":"3712:185:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":625,"nodeType":"Block","src":"4266:76:4","statements":[{"expression":{"arguments":[{"id":619,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"4305:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":620,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":611,"src":"4313:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4319:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":622,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"4322:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":618,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4283:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4283:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":617,"id":624,"nodeType":"Return","src":"4276:59:4"}]},"documentation":{"id":607,"nodeType":"StructuredDocumentation","src":"3903:211:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":626,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4128:12:4","nodeType":"FunctionDefinition","parameters":{"id":614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":609,"mutability":"mutable","name":"target","nameLocation":"4158:6:4","nodeType":"VariableDeclaration","scope":626,"src":"4150:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":608,"name":"address","nodeType":"ElementaryTypeName","src":"4150:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":611,"mutability":"mutable","name":"data","nameLocation":"4187:4:4","nodeType":"VariableDeclaration","scope":626,"src":"4174:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":610,"name":"bytes","nodeType":"ElementaryTypeName","src":"4174:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":613,"mutability":"mutable","name":"errorMessage","nameLocation":"4215:12:4","nodeType":"VariableDeclaration","scope":626,"src":"4201:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":612,"name":"string","nodeType":"ElementaryTypeName","src":"4201:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4140:93:4"},"returnParameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":626,"src":"4252:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":615,"name":"bytes","nodeType":"ElementaryTypeName","src":"4252:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4251:14:4"},"scope":866,"src":"4119:223:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":645,"nodeType":"Block","src":"4817:111:4","statements":[{"expression":{"arguments":[{"id":639,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":629,"src":"4856:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":640,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":631,"src":"4864:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":633,"src":"4870:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4877:43:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":638,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4834:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4834:87:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":637,"id":644,"nodeType":"Return","src":"4827:94:4"}]},"documentation":{"id":627,"nodeType":"StructuredDocumentation","src":"4348:351:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":646,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4713:21:4","nodeType":"FunctionDefinition","parameters":{"id":634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":629,"mutability":"mutable","name":"target","nameLocation":"4743:6:4","nodeType":"VariableDeclaration","scope":646,"src":"4735:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":628,"name":"address","nodeType":"ElementaryTypeName","src":"4735:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":631,"mutability":"mutable","name":"data","nameLocation":"4764:4:4","nodeType":"VariableDeclaration","scope":646,"src":"4751:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":630,"name":"bytes","nodeType":"ElementaryTypeName","src":"4751:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":633,"mutability":"mutable","name":"value","nameLocation":"4778:5:4","nodeType":"VariableDeclaration","scope":646,"src":"4770:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":632,"name":"uint256","nodeType":"ElementaryTypeName","src":"4770:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4734:50:4"},"returnParameters":{"id":637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":636,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":646,"src":"4803:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":635,"name":"bytes","nodeType":"ElementaryTypeName","src":"4803:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4802:14:4"},"scope":866,"src":"4704:224:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":689,"nodeType":"Block","src":"5355:267:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":663,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5381:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5373:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":661,"name":"address","nodeType":"ElementaryTypeName","src":"5373:7:4","typeDescriptions":{}}},"id":664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5373:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5387:7:4","memberName":"balance","nodeType":"MemberAccess","src":"5373:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":666,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5398:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5373:30:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5405:40:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":660,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5365:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5365:81:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":670,"nodeType":"ExpressionStatement","src":"5365:81:4"},{"assignments":[672,674],"declarations":[{"constant":false,"id":672,"mutability":"mutable","name":"success","nameLocation":"5462:7:4","nodeType":"VariableDeclaration","scope":689,"src":"5457:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":671,"name":"bool","nodeType":"ElementaryTypeName","src":"5457:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":674,"mutability":"mutable","name":"returndata","nameLocation":"5484:10:4","nodeType":"VariableDeclaration","scope":689,"src":"5471:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":673,"name":"bytes","nodeType":"ElementaryTypeName","src":"5471:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":681,"initialValue":{"arguments":[{"id":679,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"5524:4:4","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":675,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5498:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5505:4:4","memberName":"call","nodeType":"MemberAccess","src":"5498:11:4","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":678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5517:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5498:25:4","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":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5456:73:4"},{"expression":{"arguments":[{"id":683,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5573:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":684,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":672,"src":"5581:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":685,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":674,"src":"5590:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":686,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":655,"src":"5602:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":682,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"5546:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5546:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":659,"id":688,"nodeType":"Return","src":"5539:76:4"}]},"documentation":{"id":647,"nodeType":"StructuredDocumentation","src":"4934:237:4","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":690,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5185:21:4","nodeType":"FunctionDefinition","parameters":{"id":656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":649,"mutability":"mutable","name":"target","nameLocation":"5224:6:4","nodeType":"VariableDeclaration","scope":690,"src":"5216:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":648,"name":"address","nodeType":"ElementaryTypeName","src":"5216:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":651,"mutability":"mutable","name":"data","nameLocation":"5253:4:4","nodeType":"VariableDeclaration","scope":690,"src":"5240:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":650,"name":"bytes","nodeType":"ElementaryTypeName","src":"5240:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":653,"mutability":"mutable","name":"value","nameLocation":"5275:5:4","nodeType":"VariableDeclaration","scope":690,"src":"5267:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"5267:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":655,"mutability":"mutable","name":"errorMessage","nameLocation":"5304:12:4","nodeType":"VariableDeclaration","scope":690,"src":"5290:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":654,"name":"string","nodeType":"ElementaryTypeName","src":"5290:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5206:116:4"},"returnParameters":{"id":659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":690,"src":"5341:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":657,"name":"bytes","nodeType":"ElementaryTypeName","src":"5341:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5340:14:4"},"scope":866,"src":"5176:446:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":706,"nodeType":"Block","src":"5899:97:4","statements":[{"expression":{"arguments":[{"id":701,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"5935:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":702,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5943:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5949:39:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":700,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[707,736],"referencedDeclaration":736,"src":"5916:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5916:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":699,"id":705,"nodeType":"Return","src":"5909:80:4"}]},"documentation":{"id":691,"nodeType":"StructuredDocumentation","src":"5628:166:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":707,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5808:18:4","nodeType":"FunctionDefinition","parameters":{"id":696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":693,"mutability":"mutable","name":"target","nameLocation":"5835:6:4","nodeType":"VariableDeclaration","scope":707,"src":"5827:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"5827:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":695,"mutability":"mutable","name":"data","nameLocation":"5856:4:4","nodeType":"VariableDeclaration","scope":707,"src":"5843:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":694,"name":"bytes","nodeType":"ElementaryTypeName","src":"5843:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5826:35:4"},"returnParameters":{"id":699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":698,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":707,"src":"5885:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":697,"name":"bytes","nodeType":"ElementaryTypeName","src":"5885:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5884:14:4"},"scope":866,"src":"5799:197:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":735,"nodeType":"Block","src":"6338:168:4","statements":[{"assignments":[720,722],"declarations":[{"constant":false,"id":720,"mutability":"mutable","name":"success","nameLocation":"6354:7:4","nodeType":"VariableDeclaration","scope":735,"src":"6349:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":719,"name":"bool","nodeType":"ElementaryTypeName","src":"6349:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":722,"mutability":"mutable","name":"returndata","nameLocation":"6376:10:4","nodeType":"VariableDeclaration","scope":735,"src":"6363:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":721,"name":"bytes","nodeType":"ElementaryTypeName","src":"6363:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":727,"initialValue":{"arguments":[{"id":725,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":712,"src":"6408:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":723,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6390:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6397:10:4","memberName":"staticcall","nodeType":"MemberAccess","src":"6390:17:4","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6390:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6348:65:4"},{"expression":{"arguments":[{"id":729,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6457:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":730,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":720,"src":"6465:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":731,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":722,"src":"6474:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":732,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":714,"src":"6486:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":728,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"6430:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6430:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":718,"id":734,"nodeType":"Return","src":"6423:76:4"}]},"documentation":{"id":708,"nodeType":"StructuredDocumentation","src":"6002:173:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":736,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6189:18:4","nodeType":"FunctionDefinition","parameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":710,"mutability":"mutable","name":"target","nameLocation":"6225:6:4","nodeType":"VariableDeclaration","scope":736,"src":"6217:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":709,"name":"address","nodeType":"ElementaryTypeName","src":"6217:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":712,"mutability":"mutable","name":"data","nameLocation":"6254:4:4","nodeType":"VariableDeclaration","scope":736,"src":"6241:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":711,"name":"bytes","nodeType":"ElementaryTypeName","src":"6241:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":714,"mutability":"mutable","name":"errorMessage","nameLocation":"6282:12:4","nodeType":"VariableDeclaration","scope":736,"src":"6268:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":713,"name":"string","nodeType":"ElementaryTypeName","src":"6268:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6207:93:4"},"returnParameters":{"id":718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":717,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":736,"src":"6324:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":716,"name":"bytes","nodeType":"ElementaryTypeName","src":"6324:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6323:14:4"},"scope":866,"src":"6180:326:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":752,"nodeType":"Block","src":"6782:101:4","statements":[{"expression":{"arguments":[{"id":747,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":739,"src":"6820:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":748,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"6828:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6834:41:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":746,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[753,782],"referencedDeclaration":782,"src":"6799:20:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6799:77:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":745,"id":751,"nodeType":"Return","src":"6792:84:4"}]},"documentation":{"id":737,"nodeType":"StructuredDocumentation","src":"6512:168:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":753,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6694:20:4","nodeType":"FunctionDefinition","parameters":{"id":742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":739,"mutability":"mutable","name":"target","nameLocation":"6723:6:4","nodeType":"VariableDeclaration","scope":753,"src":"6715:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":738,"name":"address","nodeType":"ElementaryTypeName","src":"6715:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":741,"mutability":"mutable","name":"data","nameLocation":"6744:4:4","nodeType":"VariableDeclaration","scope":753,"src":"6731:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":740,"name":"bytes","nodeType":"ElementaryTypeName","src":"6731:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6714:35:4"},"returnParameters":{"id":745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":753,"src":"6768:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":743,"name":"bytes","nodeType":"ElementaryTypeName","src":"6768:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6767:14:4"},"scope":866,"src":"6685:198:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":781,"nodeType":"Block","src":"7224:170:4","statements":[{"assignments":[766,768],"declarations":[{"constant":false,"id":766,"mutability":"mutable","name":"success","nameLocation":"7240:7:4","nodeType":"VariableDeclaration","scope":781,"src":"7235:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":765,"name":"bool","nodeType":"ElementaryTypeName","src":"7235:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"returndata","nameLocation":"7262:10:4","nodeType":"VariableDeclaration","scope":781,"src":"7249:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":767,"name":"bytes","nodeType":"ElementaryTypeName","src":"7249:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":773,"initialValue":{"arguments":[{"id":771,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":758,"src":"7296:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":769,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7276:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7283:12:4","memberName":"delegatecall","nodeType":"MemberAccess","src":"7276:19:4","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7276:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7234:67:4"},{"expression":{"arguments":[{"id":775,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7345:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":776,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"7353:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":777,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"7362:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":778,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":760,"src":"7374:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":774,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"7318:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7318:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":764,"id":780,"nodeType":"Return","src":"7311:76:4"}]},"documentation":{"id":754,"nodeType":"StructuredDocumentation","src":"6889:175:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":782,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7078:20:4","nodeType":"FunctionDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"target","nameLocation":"7116:6:4","nodeType":"VariableDeclaration","scope":782,"src":"7108:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"7108:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":758,"mutability":"mutable","name":"data","nameLocation":"7145:4:4","nodeType":"VariableDeclaration","scope":782,"src":"7132:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":757,"name":"bytes","nodeType":"ElementaryTypeName","src":"7132:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":760,"mutability":"mutable","name":"errorMessage","nameLocation":"7173:12:4","nodeType":"VariableDeclaration","scope":782,"src":"7159:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":759,"name":"string","nodeType":"ElementaryTypeName","src":"7159:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7098:93:4"},"returnParameters":{"id":764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":782,"src":"7210:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":762,"name":"bytes","nodeType":"ElementaryTypeName","src":"7210:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7209:14:4"},"scope":866,"src":"7069:325:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":820,"nodeType":"Block","src":"7876:434:4","statements":[{"condition":{"id":796,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":787,"src":"7890:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":818,"nodeType":"Block","src":"8246:58:4","statements":[{"expression":{"arguments":[{"id":814,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8268:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":815,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"8280:12:4","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":813,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8260:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8260:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":817,"nodeType":"ExpressionStatement","src":"8260:33:4"}]},"id":819,"nodeType":"IfStatement","src":"7886:418:4","trueBody":{"id":812,"nodeType":"Block","src":"7899:341:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":797,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"7917:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7928:6:4","memberName":"length","nodeType":"MemberAccess","src":"7917:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7938:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7917:22:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":809,"nodeType":"IfStatement","src":"7913:286:4","trueBody":{"id":808,"nodeType":"Block","src":"7941:258:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":803,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"8143:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":802,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":554,"src":"8132:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8152:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":801,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8124:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8124:60:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":807,"nodeType":"ExpressionStatement","src":"8124:60:4"}]}},{"expression":{"id":810,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8219:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":795,"id":811,"nodeType":"Return","src":"8212:17:4"}]}}]},"documentation":{"id":783,"nodeType":"StructuredDocumentation","src":"7400:277:4","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":821,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7691:26:4","nodeType":"FunctionDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":785,"mutability":"mutable","name":"target","nameLocation":"7735:6:4","nodeType":"VariableDeclaration","scope":821,"src":"7727:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":784,"name":"address","nodeType":"ElementaryTypeName","src":"7727:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":787,"mutability":"mutable","name":"success","nameLocation":"7756:7:4","nodeType":"VariableDeclaration","scope":821,"src":"7751:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":786,"name":"bool","nodeType":"ElementaryTypeName","src":"7751:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":789,"mutability":"mutable","name":"returndata","nameLocation":"7786:10:4","nodeType":"VariableDeclaration","scope":821,"src":"7773:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":788,"name":"bytes","nodeType":"ElementaryTypeName","src":"7773:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":791,"mutability":"mutable","name":"errorMessage","nameLocation":"7820:12:4","nodeType":"VariableDeclaration","scope":821,"src":"7806:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":790,"name":"string","nodeType":"ElementaryTypeName","src":"7806:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7717:121:4"},"returnParameters":{"id":795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":794,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":821,"src":"7862:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":793,"name":"bytes","nodeType":"ElementaryTypeName","src":"7862:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7861:14:4"},"scope":866,"src":"7682:628:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":844,"nodeType":"Block","src":"8691:135:4","statements":[{"condition":{"id":833,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"8705:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":842,"nodeType":"Block","src":"8762:58:4","statements":[{"expression":{"arguments":[{"id":838,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8784:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":839,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":828,"src":"8796:12:4","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":837,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8776:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8776:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":841,"nodeType":"ExpressionStatement","src":"8776:33:4"}]},"id":843,"nodeType":"IfStatement","src":"8701:119:4","trueBody":{"id":836,"nodeType":"Block","src":"8714:42:4","statements":[{"expression":{"id":834,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8735:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":832,"id":835,"nodeType":"Return","src":"8728:17:4"}]}}]},"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"8316:210:4","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":845,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8540:16:4","nodeType":"FunctionDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"success","nameLocation":"8571:7:4","nodeType":"VariableDeclaration","scope":845,"src":"8566:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":823,"name":"bool","nodeType":"ElementaryTypeName","src":"8566:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":826,"mutability":"mutable","name":"returndata","nameLocation":"8601:10:4","nodeType":"VariableDeclaration","scope":845,"src":"8588:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":825,"name":"bytes","nodeType":"ElementaryTypeName","src":"8588:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":828,"mutability":"mutable","name":"errorMessage","nameLocation":"8635:12:4","nodeType":"VariableDeclaration","scope":845,"src":"8621:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":827,"name":"string","nodeType":"ElementaryTypeName","src":"8621:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8556:97:4"},"returnParameters":{"id":832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":831,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":845,"src":"8677:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":830,"name":"bytes","nodeType":"ElementaryTypeName","src":"8677:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8676:14:4"},"scope":866,"src":"8531:295:4","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":864,"nodeType":"Block","src":"8915:457:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":852,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"8991:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9002:6:4","memberName":"length","nodeType":"MemberAccess","src":"8991:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9011:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8991:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":862,"nodeType":"Block","src":"9321:45:4","statements":[{"expression":{"arguments":[{"id":859,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"9342:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":858,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9335:6:4","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9335:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":861,"nodeType":"ExpressionStatement","src":"9335:20:4"}]},"id":863,"nodeType":"IfStatement","src":"8987:379:4","trueBody":{"id":857,"nodeType":"Block","src":"9014:301:4","statements":[{"AST":{"nodeType":"YulBlock","src":"9172:133:4","statements":[{"nodeType":"YulVariableDeclaration","src":"9190:40:4","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9219:10:4"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9213:5:4"},"nodeType":"YulFunctionCall","src":"9213:17:4"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9194:15:4","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9258:2:4","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9262:10:4"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9254:3:4"},"nodeType":"YulFunctionCall","src":"9254:19:4"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9275:15:4"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9247:6:4"},"nodeType":"YulFunctionCall","src":"9247:44:4"},"nodeType":"YulExpressionStatement","src":"9247:44:4"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":847,"isOffset":false,"isSlot":false,"src":"9219:10:4","valueSize":1},{"declaration":847,"isOffset":false,"isSlot":false,"src":"9262:10:4","valueSize":1}],"id":856,"nodeType":"InlineAssembly","src":"9163:142:4"}]}}]},"id":865,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8841:7:4","nodeType":"FunctionDefinition","parameters":{"id":850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":847,"mutability":"mutable","name":"returndata","nameLocation":"8862:10:4","nodeType":"VariableDeclaration","scope":865,"src":"8849:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":846,"name":"bytes","nodeType":"ElementaryTypeName","src":"8849:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":849,"mutability":"mutable","name":"errorMessage","nameLocation":"8888:12:4","nodeType":"VariableDeclaration","scope":865,"src":"8874:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":848,"name":"string","nodeType":"ElementaryTypeName","src":"8874:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8848:53:4"},"returnParameters":{"id":851,"nodeType":"ParameterList","parameters":[],"src":"8915:0:4"},"scope":866,"src":"8832:540:4","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":867,"src":"194:9180:4","usedErrors":[],"usedEvents":[]}],"src":"101:9274:4"},"id":4},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408]},"id":918,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":868,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:5"},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":870,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":918,"sourceUnit":409,"src":"125:63:5","symbolAliases":[{"foreign":{"id":869,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"133:13:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":872,"name":"Initializable","nameLocations":["727:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"727:13:5"},"id":873,"nodeType":"InheritanceSpecifier","src":"727:13:5"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":871,"nodeType":"StructuredDocumentation","src":"190:496:5","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":917,"linearizedBaseContracts":[917,408],"name":"ContextUpgradeable","nameLocation":"705:18:5","nodeType":"ContractDefinition","nodes":[{"body":{"id":878,"nodeType":"Block","src":"799:7:5","statements":[]},"id":879,"implemented":true,"kind":"function","modifiers":[{"id":876,"kind":"modifierInvocation","modifierName":{"id":875,"name":"onlyInitializing","nameLocations":["782:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"782:16:5"},"nodeType":"ModifierInvocation","src":"782:16:5"}],"name":"__Context_init","nameLocation":"756:14:5","nodeType":"FunctionDefinition","parameters":{"id":874,"nodeType":"ParameterList","parameters":[],"src":"770:2:5"},"returnParameters":{"id":877,"nodeType":"ParameterList","parameters":[],"src":"799:0:5"},"scope":917,"src":"747:59:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":884,"nodeType":"Block","src":"874:7:5","statements":[]},"id":885,"implemented":true,"kind":"function","modifiers":[{"id":882,"kind":"modifierInvocation","modifierName":{"id":881,"name":"onlyInitializing","nameLocations":["857:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"857:16:5"},"nodeType":"ModifierInvocation","src":"857:16:5"}],"name":"__Context_init_unchained","nameLocation":"821:24:5","nodeType":"FunctionDefinition","parameters":{"id":880,"nodeType":"ParameterList","parameters":[],"src":"845:2:5"},"returnParameters":{"id":883,"nodeType":"ParameterList","parameters":[],"src":"874:0:5"},"scope":917,"src":"812:69:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":893,"nodeType":"Block","src":"948:34:5","statements":[{"expression":{"expression":{"id":890,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"965:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"969:6:5","memberName":"sender","nodeType":"MemberAccess","src":"965:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":889,"id":892,"nodeType":"Return","src":"958:17:5"}]},"id":894,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"895:10:5","nodeType":"FunctionDefinition","parameters":{"id":886,"nodeType":"ParameterList","parameters":[],"src":"905:2:5"},"returnParameters":{"id":889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":888,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":894,"src":"939:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":887,"name":"address","nodeType":"ElementaryTypeName","src":"939:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"938:9:5"},"scope":917,"src":"886:96:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":902,"nodeType":"Block","src":"1055:32:5","statements":[{"expression":{"expression":{"id":899,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1072:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1076:4:5","memberName":"data","nodeType":"MemberAccess","src":"1072:8:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":898,"id":901,"nodeType":"Return","src":"1065:15:5"}]},"id":903,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"997:8:5","nodeType":"FunctionDefinition","parameters":{"id":895,"nodeType":"ParameterList","parameters":[],"src":"1005:2:5"},"returnParameters":{"id":898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":897,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":903,"src":"1039:14:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":896,"name":"bytes","nodeType":"ElementaryTypeName","src":"1039:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1038:16:5"},"scope":917,"src":"988:99:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":910,"nodeType":"Block","src":"1165:25:5","statements":[{"expression":{"hexValue":"30","id":908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1182:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":907,"id":909,"nodeType":"Return","src":"1175:8:5"}]},"id":911,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1102:20:5","nodeType":"FunctionDefinition","parameters":{"id":904,"nodeType":"ParameterList","parameters":[],"src":"1122:2:5"},"returnParameters":{"id":907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":906,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"1156:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":905,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1155:9:5"},"scope":917,"src":"1093:97:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"1196:254:5","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":916,"mutability":"mutable","name":"__gap","nameLocation":"1475:5:5","nodeType":"VariableDeclaration","scope":917,"src":"1455:25:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":913,"name":"uint256","nodeType":"ElementaryTypeName","src":"1455:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":915,"length":{"hexValue":"3530","id":914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1463:2:5","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"1455:11:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":918,"src":"687:796:5","usedErrors":[],"usedEvents":[254]}],"src":"101:1383:5"},"id":5},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[995]},"id":996,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":919,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:6"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":920,"nodeType":"StructuredDocumentation","src":"131:70:6","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":995,"linearizedBaseContracts":[995],"name":"IERC20","nameLocation":"212:6:6","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":921,"nodeType":"StructuredDocumentation","src":"225:158:6","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":929,"name":"Transfer","nameLocation":"394:8:6","nodeType":"EventDefinition","parameters":{"id":928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":923,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:6","nodeType":"VariableDeclaration","scope":929,"src":"403:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":922,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":925,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:6","nodeType":"VariableDeclaration","scope":929,"src":"425:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":924,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":927,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:6","nodeType":"VariableDeclaration","scope":929,"src":"445:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":926,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:6"},"src":"388:72:6"},{"anonymous":false,"documentation":{"id":930,"nodeType":"StructuredDocumentation","src":"466:148:6","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":938,"name":"Approval","nameLocation":"625:8:6","nodeType":"EventDefinition","parameters":{"id":937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":932,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:6","nodeType":"VariableDeclaration","scope":938,"src":"634:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":931,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":934,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:6","nodeType":"VariableDeclaration","scope":938,"src":"657:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":933,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":936,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:6","nodeType":"VariableDeclaration","scope":938,"src":"682:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":935,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:6"},"src":"619:78:6"},{"documentation":{"id":939,"nodeType":"StructuredDocumentation","src":"703:66:6","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":944,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:6","nodeType":"FunctionDefinition","parameters":{"id":940,"nodeType":"ParameterList","parameters":[],"src":"794:2:6"},"returnParameters":{"id":943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":944,"src":"820:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":941,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:6"},"scope":995,"src":"774:55:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":945,"nodeType":"StructuredDocumentation","src":"835:72:6","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":952,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:6","nodeType":"FunctionDefinition","parameters":{"id":948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":947,"mutability":"mutable","name":"account","nameLocation":"939:7:6","nodeType":"VariableDeclaration","scope":952,"src":"931:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":946,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:6"},"returnParameters":{"id":951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":952,"src":"971:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":949,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:6"},"scope":995,"src":"912:68:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":953,"nodeType":"StructuredDocumentation","src":"986:202:6","text":" @dev Moves `amount` 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":962,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:6","nodeType":"FunctionDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"mutability":"mutable","name":"to","nameLocation":"1219:2:6","nodeType":"VariableDeclaration","scope":962,"src":"1211:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":957,"mutability":"mutable","name":"amount","nameLocation":"1231:6:6","nodeType":"VariableDeclaration","scope":962,"src":"1223:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:6"},"returnParameters":{"id":961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":960,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":962,"src":"1257:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":959,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:6"},"scope":995,"src":"1193:70:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"1269:264:6","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":972,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:6","nodeType":"FunctionDefinition","parameters":{"id":968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":965,"mutability":"mutable","name":"owner","nameLocation":"1565:5:6","nodeType":"VariableDeclaration","scope":972,"src":"1557:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":964,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":967,"mutability":"mutable","name":"spender","nameLocation":"1580:7:6","nodeType":"VariableDeclaration","scope":972,"src":"1572:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":966,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:6"},"returnParameters":{"id":971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":970,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":972,"src":"1612:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":969,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:6"},"scope":995,"src":"1538:83:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":973,"nodeType":"StructuredDocumentation","src":"1627:642:6","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":982,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:6","nodeType":"FunctionDefinition","parameters":{"id":978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":975,"mutability":"mutable","name":"spender","nameLocation":"2299:7:6","nodeType":"VariableDeclaration","scope":982,"src":"2291:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":974,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":977,"mutability":"mutable","name":"amount","nameLocation":"2316:6:6","nodeType":"VariableDeclaration","scope":982,"src":"2308:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":976,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:6"},"returnParameters":{"id":981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":982,"src":"2342:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":979,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:6"},"scope":995,"src":"2274:74:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":983,"nodeType":"StructuredDocumentation","src":"2354:287:6","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":994,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:6","nodeType":"FunctionDefinition","parameters":{"id":990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":985,"mutability":"mutable","name":"from","nameLocation":"2676:4:6","nodeType":"VariableDeclaration","scope":994,"src":"2668:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":984,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":987,"mutability":"mutable","name":"to","nameLocation":"2690:2:6","nodeType":"VariableDeclaration","scope":994,"src":"2682:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":986,"name":"address","nodeType":"ElementaryTypeName","src":"2682:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":989,"mutability":"mutable","name":"amount","nameLocation":"2702:6:6","nodeType":"VariableDeclaration","scope":994,"src":"2694:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":988,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:42:6"},"returnParameters":{"id":993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":994,"src":"2728:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":991,"name":"bool","nodeType":"ElementaryTypeName","src":"2728:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2727:6:6"},"scope":995,"src":"2646:88:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":996,"src":"202:2534:6","usedErrors":[],"usedEvents":[929,938]}],"src":"106:2631:6"},"id":6},"contracts/Gateway.sol":{"ast":{"absolutePath":"contracts/Gateway.sol","exportedSymbols":{"ContextUpgradeable":[917],"Gateway":[1906],"GatewaySettingManager":[2182],"IERC20":[995],"IGateway":[2337],"Initializable":[408],"PausableUpgradeable":[536]},"id":1907,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":997,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:7"},{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","id":998,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1907,"sourceUnit":537,"src":"65:78:7","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/GatewaySettingManager.sol","file":"./GatewaySettingManager.sol","id":1000,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1907,"sourceUnit":2183,"src":"145:66:7","symbolAliases":[{"foreign":{"id":999,"name":"GatewaySettingManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2182,"src":"153:21:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGateway.sol","file":"./interfaces/IGateway.sol","id":1003,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1907,"sourceUnit":2338,"src":"212:59:7","symbolAliases":[{"foreign":{"id":1001,"name":"IGateway","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2337,"src":"220:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":1002,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"230:6:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1005,"name":"IGateway","nameLocations":["410:8:7"],"nodeType":"IdentifierPath","referencedDeclaration":2337,"src":"410:8:7"},"id":1006,"nodeType":"InheritanceSpecifier","src":"410:8:7"},{"baseName":{"id":1007,"name":"GatewaySettingManager","nameLocations":["420:21:7"],"nodeType":"IdentifierPath","referencedDeclaration":2182,"src":"420:21:7"},"id":1008,"nodeType":"InheritanceSpecifier","src":"420:21:7"},{"baseName":{"id":1009,"name":"PausableUpgradeable","nameLocations":["443:19:7"],"nodeType":"IdentifierPath","referencedDeclaration":536,"src":"443:19:7"},"id":1010,"nodeType":"InheritanceSpecifier","src":"443:19:7"}],"canonicalName":"Gateway","contractDependencies":[],"contractKind":"contract","documentation":{"id":1004,"nodeType":"StructuredDocumentation","src":"273:116:7","text":" @title Gateway\n @notice This contract serves as a gateway for creating orders and managing settlements."},"fullyImplemented":true,"id":1906,"linearizedBaseContracts":[1906,536,2182,106,239,917,408,2337],"name":"Gateway","nameLocation":"399:7:7","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Gateway.fee","id":1015,"members":[{"constant":false,"id":1012,"mutability":"mutable","name":"protocolFee","nameLocation":"489:11:7","nodeType":"VariableDeclaration","scope":1015,"src":"481:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1011,"name":"uint256","nodeType":"ElementaryTypeName","src":"481:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1014,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"512:23:7","nodeType":"VariableDeclaration","scope":1015,"src":"504:31:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1013,"name":"uint256","nodeType":"ElementaryTypeName","src":"504:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"fee","nameLocation":"473:3:7","nodeType":"StructDefinition","scope":1906,"src":"466:73:7","visibility":"public"},{"constant":false,"id":1020,"mutability":"mutable","name":"order","nameLocation":"576:5:7","nodeType":"VariableDeclaration","scope":1906,"src":"542:39:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"typeName":{"id":1019,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1016,"name":"bytes32","nodeType":"ElementaryTypeName","src":"550:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"542:25:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1018,"nodeType":"UserDefinedTypeName","pathNode":{"id":1017,"name":"Order","nameLocations":["561:5:7"],"nodeType":"IdentifierPath","referencedDeclaration":2273,"src":"561:5:7"},"referencedDeclaration":2273,"src":"561:5:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage_ptr","typeString":"struct IGateway.Order"}}},"visibility":"private"},{"constant":false,"id":1024,"mutability":"mutable","name":"_nonce","nameLocation":"620:6:7","nodeType":"VariableDeclaration","scope":1906,"src":"584:42:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1023,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1021,"name":"address","nodeType":"ElementaryTypeName","src":"592:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"584:27:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1022,"name":"uint256","nodeType":"ElementaryTypeName","src":"603:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":1028,"mutability":"mutable","name":"__gap","nameLocation":"649:5:7","nodeType":"VariableDeclaration","scope":1906,"src":"629:25:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":1025,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1027,"length":{"hexValue":"3530","id":1026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"637:2:7","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"629:11:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"},{"body":{"id":1035,"nodeType":"Block","src":"722:30:7","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1032,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":389,"src":"726:20:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"726:22:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1034,"nodeType":"ExpressionStatement","src":"726:22:7"}]},"documentation":{"id":1029,"nodeType":"StructuredDocumentation","src":"658:48:7","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":1036,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1030,"nodeType":"ParameterList","parameters":[],"src":"719:2:7"},"returnParameters":{"id":1031,"nodeType":"ParameterList","parameters":[],"src":"722:0:7"},"scope":1906,"src":"708:44:7","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1052,"nodeType":"Block","src":"838:71:7","statements":[{"expression":{"id":1044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1042,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"842:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"3130305f303030","id":1043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"852:7:7","typeDescriptions":{"typeIdentifier":"t_rational_100000_by_1","typeString":"int_const 100000"},"value":"100_000"},"src":"842:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1045,"nodeType":"ExpressionStatement","src":"842:17:7"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1046,"name":"__Ownable2Step_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"863:19:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"863:21:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1048,"nodeType":"ExpressionStatement","src":"863:21:7"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1049,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":440,"src":"888:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"888:17:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1051,"nodeType":"ExpressionStatement","src":"888:17:7"}]},"documentation":{"id":1037,"nodeType":"StructuredDocumentation","src":"755:38:7","text":" @dev Initialize function."},"functionSelector":"8129fc1c","id":1053,"implemented":true,"kind":"function","modifiers":[{"id":1040,"kind":"modifierInvocation","modifierName":{"id":1039,"name":"initializer","nameLocations":["826:11:7"],"nodeType":"IdentifierPath","referencedDeclaration":310,"src":"826:11:7"},"nodeType":"ModifierInvocation","src":"826:11:7"}],"name":"initialize","nameLocation":"804:10:7","nodeType":"FunctionDefinition","parameters":{"id":1038,"nodeType":"ParameterList","parameters":[],"src":"814:2:7"},"returnParameters":{"id":1041,"nodeType":"ParameterList","parameters":[],"src":"838:0:7"},"scope":1906,"src":"795:114:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1065,"nodeType":"Block","src":"1018:72:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1057,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1030:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1034:6:7","memberName":"sender","nodeType":"MemberAccess","src":"1030:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1059,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"1044:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1030:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c7941676772656761746f72","id":1061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1064:16:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""},"value":"OnlyAggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""}],"id":1056,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1022:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1022:59:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1063,"nodeType":"ExpressionStatement","src":"1022:59:7"},{"id":1064,"nodeType":"PlaceholderStatement","src":"1085:1:7"}]},"documentation":{"id":1054,"nodeType":"StructuredDocumentation","src":"912:78:7","text":" @dev Modifier that allows only the aggregator to call a function."},"id":1066,"name":"onlyAggregator","nameLocation":"1001:14:7","nodeType":"ModifierDefinition","parameters":{"id":1055,"nodeType":"ParameterList","parameters":[],"src":"1015:2:7"},"src":"992:98:7","virtual":false,"visibility":"internal"},{"body":{"id":1075,"nodeType":"Block","src":"1361:16:7","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1072,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"1365:6:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1365:8:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1074,"nodeType":"ExpressionStatement","src":"1365:8:7"}]},"documentation":{"id":1067,"nodeType":"StructuredDocumentation","src":"1286:37:7","text":" @dev Pause the contract."},"functionSelector":"8456cb59","id":1076,"implemented":true,"kind":"function","modifiers":[{"id":1070,"kind":"modifierInvocation","modifierName":{"id":1069,"name":"onlyOwner","nameLocations":["1351:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1351:9:7"},"nodeType":"ModifierInvocation","src":"1351:9:7"}],"name":"pause","nameLocation":"1334:5:7","nodeType":"FunctionDefinition","parameters":{"id":1068,"nodeType":"ParameterList","parameters":[],"src":"1339:2:7"},"returnParameters":{"id":1071,"nodeType":"ParameterList","parameters":[],"src":"1361:0:7"},"scope":1906,"src":"1325:52:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1085,"nodeType":"Block","src":"1459:18:7","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1082,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":530,"src":"1463:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1463:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1084,"nodeType":"ExpressionStatement","src":"1463:10:7"}]},"documentation":{"id":1077,"nodeType":"StructuredDocumentation","src":"1380:39:7","text":" @dev Unpause the contract."},"functionSelector":"3f4ba83a","id":1086,"implemented":true,"kind":"function","modifiers":[{"id":1080,"kind":"modifierInvocation","modifierName":{"id":1079,"name":"onlyOwner","nameLocations":["1449:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1449:9:7"},"nodeType":"ModifierInvocation","src":"1449:9:7"}],"name":"unpause","nameLocation":"1430:7:7","nodeType":"FunctionDefinition","parameters":{"id":1078,"nodeType":"ParameterList","parameters":[],"src":"1437:2:7"},"returnParameters":{"id":1081,"nodeType":"ParameterList","parameters":[],"src":"1459:0:7"},"scope":1906,"src":"1421:56:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2293],"body":{"id":1256,"nodeType":"Block","src":"1945:1576:7","statements":[{"expression":{"arguments":[{"id":1109,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"1988:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1110,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"1996:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1111,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"2005:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1112,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1095,"src":"2021:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1113,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"2042:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1108,"name":"_handler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1313,"src":"1979:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,address,uint256) view"}},"id":1114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1979:74:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1115,"nodeType":"ExpressionStatement","src":"1979:74:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1119,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1101,"src":"2098:11:7","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2092:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1117,"name":"bytes","nodeType":"ElementaryTypeName","src":"2092:5:7","typeDescriptions":{}}},"id":1120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2111:6:7","memberName":"length","nodeType":"MemberAccess","src":"2092:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2121:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2092:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69644d65737361676548617368","id":1124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2124:20:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""},"value":"InvalidMessageHash"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""}],"id":1116,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2084:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2084:61:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1126,"nodeType":"ExpressionStatement","src":"2084:61:7"},{"expression":{"arguments":[{"expression":{"id":1131,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2226:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2230:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2226:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1135,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2246:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_Gateway_$1906","typeString":"contract Gateway"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Gateway_$1906","typeString":"contract Gateway"}],"id":1134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2238:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1133,"name":"address","nodeType":"ElementaryTypeName","src":"2238:7:7","typeDescriptions":{}}},"id":1136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2238:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1137,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"2253:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1138,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"2263:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2253:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1128,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"2205:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1127,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"2198:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2198:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2213:12:7","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":994,"src":"2198:27:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":1140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2198:76:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1141,"nodeType":"ExpressionStatement","src":"2198:76:7"},{"expression":{"id":1146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2329:20:7","subExpression":{"baseExpression":{"id":1142,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1024,"src":"2329:6:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1145,"indexExpression":{"expression":{"id":1143,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2336:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2340:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2336:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2329:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1147,"nodeType":"ExpressionStatement","src":"2329:20:7"},{"expression":{"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1148,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"2417:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":1152,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2448:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2452:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2448:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":1154,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1024,"src":"2460:6:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1157,"indexExpression":{"expression":{"id":1155,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2467:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2471:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2467:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2460:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1158,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2480:5:7","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2486:7:7","memberName":"chainid","nodeType":"MemberAccess","src":"2480:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1150,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2437:3:7","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2441:6:7","memberName":"encode","nodeType":"MemberAccess","src":"2437:10:7","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2437:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1149,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2427:9:7","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2427:68:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2417:78:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1163,"nodeType":"ExpressionStatement","src":"2417:78:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1165,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"2508:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1167,"indexExpression":{"id":1166,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"2514:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2508:14:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2523:6:7","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":2254,"src":"2508:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2541: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":1170,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2533:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1169,"name":"address","nodeType":"ElementaryTypeName","src":"2533:7:7","typeDescriptions":{}}},"id":1172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2533:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2508:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572416c7265616479457869737473","id":1174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2545:20:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""},"value":"OrderAlreadyExists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""}],"id":1164,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2500:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:66:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1176,"nodeType":"ExpressionStatement","src":"2500:66:7"},{"assignments":[1178],"declarations":[{"constant":false,"id":1178,"mutability":"mutable","name":"_protocolFee","nameLocation":"2603:12:7","nodeType":"VariableDeclaration","scope":1256,"src":"2595:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1177,"name":"uint256","nodeType":"ElementaryTypeName","src":"2595:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1179,"nodeType":"VariableDeclarationStatement","src":"2595:20:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1180,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1093,"src":"2623:5:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"313030","id":1181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2632:3:7","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"2623:12:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1220,"nodeType":"Block","src":"2748:299:7","statements":[{"assignments":[1197],"declarations":[{"constant":false,"id":1197,"mutability":"mutable","name":"settings","nameLocation":"2851:8:7","nodeType":"VariableDeclaration","scope":1220,"src":"2827:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1196,"nodeType":"UserDefinedTypeName","pathNode":{"id":1195,"name":"TokenFeeSettings","nameLocations":["2827:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":1932,"src":"2827:16:7"},"referencedDeclaration":1932,"src":"2827:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1201,"initialValue":{"baseExpression":{"id":1198,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"2862:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1200,"indexExpression":{"id":1199,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"2880:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2862:25:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2827:60:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1203,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1197,"src":"2900:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2909:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":1931,"src":"2900:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2934:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2900:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","id":1207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2937:31:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""},"value":"TokenFeeSettingsNotConfigured"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""}],"id":1202,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2892:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2892:77:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1209,"nodeType":"ExpressionStatement","src":"2892:77:7"},{"expression":{"id":1218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1210,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"2974:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1211,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"2990:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1212,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1197,"src":"3000:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1213,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3009:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":1931,"src":"3000:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2990:41:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1215,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2989:43:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1216,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"3035:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2989:53:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2974:68:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1219,"nodeType":"ExpressionStatement","src":"2974:68:7"}]},"id":1221,"nodeType":"IfStatement","src":"2619:428:7","trueBody":{"id":1194,"nodeType":"Block","src":"2637:105:7","statements":[{"expression":{"id":1185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1183,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"2674:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2689:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2674:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1186,"nodeType":"ExpressionStatement","src":"2674:16:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1188,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"2703:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2716:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2703:14:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53656e64657246656549735a65726f","id":1191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2719:17:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","typeString":"literal_string \"SenderFeeIsZero\""},"value":"SenderFeeIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","typeString":"literal_string \"SenderFeeIsZero\""}],"id":1187,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2695:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2695:42:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1193,"nodeType":"ExpressionStatement","src":"2695:42:7"}]}},{"expression":{"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1222,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"3050:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1224,"indexExpression":{"id":1223,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"3056:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3050:14:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1226,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3086:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3090:6:7","memberName":"sender","nodeType":"MemberAccess","src":"3086:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1228,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"3108:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1229,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1095,"src":"3139:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1230,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"3174:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1231,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3202:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3232:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"66616c7365","id":1233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3254:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":1234,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"3279:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1237,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"3317:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3310:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":1235,"name":"uint64","nodeType":"ElementaryTypeName","src":"3310:6:7","typeDescriptions":{}}},"id":1238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3310:15:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":1239,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"3338:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1225,"name":"Order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2273,"src":"3067:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Order_$2273_storage_ptr_$","typeString":"type(struct IGateway.Order storage pointer)"}},"id":1240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3078:6:7","3101:5:7","3119:18:7","3163:9:7","3189:11:7","3219:11:7","3242:10:7","3264:13:7","3298:10:7","3330:6:7"],"names":["sender","token","senderFeeRecipient","senderFee","protocolFee","isFulfilled","isRefunded","refundAddress","currentBPS","amount"],"nodeType":"FunctionCall","src":"3067:283:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_memory_ptr","typeString":"struct IGateway.Order memory"}},"src":"3050:300:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1242,"nodeType":"ExpressionStatement","src":"3050:300:7"},{"eventCall":{"arguments":[{"id":1244,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"3407:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1245,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"3426:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1246,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"3437:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1248,"indexExpression":{"id":1247,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"3443:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3437:14:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1249,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3452:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2272,"src":"3437:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1250,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3463:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1251,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"3480:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1252,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1093,"src":"3492:5:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":1253,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1101,"src":"3502:11:7","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1243,"name":"OrderCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2204,"src":"3390:12:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes32_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,uint256,bytes32,uint256,string memory)"}},"id":1254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3390:127:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1255,"nodeType":"EmitStatement","src":"3385:132:7"}]},"documentation":{"id":1087,"nodeType":"StructuredDocumentation","src":"1668:39:7","text":"@dev See {createOrder-IGateway}. "},"functionSelector":"809804f7","id":1257,"implemented":true,"kind":"function","modifiers":[{"id":1104,"kind":"modifierInvocation","modifierName":{"id":1103,"name":"whenNotPaused","nameLocations":["1905:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"1905:13:7"},"nodeType":"ModifierInvocation","src":"1905:13:7"}],"name":"createOrder","nameLocation":"1718:11:7","nodeType":"FunctionDefinition","parameters":{"id":1102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"mutability":"mutable","name":"_token","nameLocation":"1741:6:7","nodeType":"VariableDeclaration","scope":1257,"src":"1733:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1088,"name":"address","nodeType":"ElementaryTypeName","src":"1733:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1091,"mutability":"mutable","name":"_amount","nameLocation":"1759:7:7","nodeType":"VariableDeclaration","scope":1257,"src":"1751:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1090,"name":"uint256","nodeType":"ElementaryTypeName","src":"1751:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1093,"mutability":"mutable","name":"_rate","nameLocation":"1777:5:7","nodeType":"VariableDeclaration","scope":1257,"src":"1770:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":1092,"name":"uint96","nodeType":"ElementaryTypeName","src":"1770:6:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":1095,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"1794:19:7","nodeType":"VariableDeclaration","scope":1257,"src":"1786:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1094,"name":"address","nodeType":"ElementaryTypeName","src":"1786:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1097,"mutability":"mutable","name":"_senderFee","nameLocation":"1825:10:7","nodeType":"VariableDeclaration","scope":1257,"src":"1817:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1096,"name":"uint256","nodeType":"ElementaryTypeName","src":"1817:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1099,"mutability":"mutable","name":"_refundAddress","nameLocation":"1847:14:7","nodeType":"VariableDeclaration","scope":1257,"src":"1839:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1098,"name":"address","nodeType":"ElementaryTypeName","src":"1839:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1101,"mutability":"mutable","name":"messageHash","nameLocation":"1881:11:7","nodeType":"VariableDeclaration","scope":1257,"src":"1865:27:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1100,"name":"string","nodeType":"ElementaryTypeName","src":"1865:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1729:166:7"},"returnParameters":{"id":1107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1106,"mutability":"mutable","name":"orderId","nameLocation":"1936:7:7","nodeType":"VariableDeclaration","scope":1257,"src":"1928:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1105,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1928:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1927:17:7"},"scope":1906,"src":"1709:1812:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1312,"nodeType":"Block","src":"4065:276:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1272,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"4077:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1274,"indexExpression":{"id":1273,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1260,"src":"4095:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4077:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4106:1:7","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4077:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e4e6f74537570706f72746564","id":1277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4109:19:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""},"value":"TokenNotSupported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""}],"id":1271,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4069:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4069:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1279,"nodeType":"ExpressionStatement","src":"4069:60:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1281,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"4141:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4152:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4141:12:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e7449735a65726f","id":1284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4155:14:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""},"value":"AmountIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""}],"id":1280,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4133:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4133:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1286,"nodeType":"ExpressionStatement","src":"4133:37:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1288,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"4182:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4208: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":1290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4200:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1289,"name":"address","nodeType":"ElementaryTypeName","src":"4200:7:7","typeDescriptions":{}}},"id":1292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4200:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4182:28:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5468726f775a65726f41646472657373","id":1294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4212:18:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""},"value":"ThrowZeroAddress"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""}],"id":1287,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4174:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4174:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1296,"nodeType":"ExpressionStatement","src":"4174:57:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1297,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1268,"src":"4240:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4254:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4240:15:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1311,"nodeType":"IfStatement","src":"4236:102:7","trueBody":{"id":1310,"nodeType":"Block","src":"4257:81:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1301,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1266,"src":"4270:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4301: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":1303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4293:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1302,"name":"address","nodeType":"ElementaryTypeName","src":"4293:7:7","typeDescriptions":{}}},"id":1305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4293:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4270:33:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","id":1307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4305:27:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""},"value":"InvalidSenderFeeRecipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""}],"id":1300,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4262:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:71:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1309,"nodeType":"ExpressionStatement","src":"4262:71:7"}]}}]},"documentation":{"id":1258,"nodeType":"StructuredDocumentation","src":"3524:388:7","text":" @dev Internal function to handle order creation.\n @param _token The address of the token being traded.\n @param _amount The amount of tokens being traded.\n @param _refundAddress The address to refund the tokens in case of cancellation.\n @param _senderFeeRecipient The address of the recipient for the sender fee.\n @param _senderFee The amount of the sender fee."},"id":1313,"implemented":true,"kind":"function","modifiers":[],"name":"_handler","nameLocation":"3923:8:7","nodeType":"FunctionDefinition","parameters":{"id":1269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1260,"mutability":"mutable","name":"_token","nameLocation":"3943:6:7","nodeType":"VariableDeclaration","scope":1313,"src":"3935:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1259,"name":"address","nodeType":"ElementaryTypeName","src":"3935:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1262,"mutability":"mutable","name":"_amount","nameLocation":"3961:7:7","nodeType":"VariableDeclaration","scope":1313,"src":"3953:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1261,"name":"uint256","nodeType":"ElementaryTypeName","src":"3953:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1264,"mutability":"mutable","name":"_refundAddress","nameLocation":"3980:14:7","nodeType":"VariableDeclaration","scope":1313,"src":"3972:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1263,"name":"address","nodeType":"ElementaryTypeName","src":"3972:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1266,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"4006:19:7","nodeType":"VariableDeclaration","scope":1313,"src":"3998:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1265,"name":"address","nodeType":"ElementaryTypeName","src":"3998:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1268,"mutability":"mutable","name":"_senderFee","nameLocation":"4037:10:7","nodeType":"VariableDeclaration","scope":1313,"src":"4029:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1267,"name":"uint256","nodeType":"ElementaryTypeName","src":"4029:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3931:119:7"},"returnParameters":{"id":1270,"nodeType":"ParameterList","parameters":[],"src":"4065:0:7"},"scope":1906,"src":"3914:427:7","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[2309],"body":{"id":1531,"nodeType":"Block","src":"4761:2030:7","statements":[{"expression":{"arguments":[{"id":1336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4824:28:7","subExpression":{"expression":{"baseExpression":{"id":1332,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"4825:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1334,"indexExpression":{"id":1333,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"4831:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4825:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1335,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4841:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2264,"src":"4825:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":1337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4854:16:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":1331,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4816:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4816:55:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1339,"nodeType":"ExpressionStatement","src":"4816:55:7"},{"expression":{"arguments":[{"id":1345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4883:27:7","subExpression":{"expression":{"baseExpression":{"id":1341,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"4884:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1343,"indexExpression":{"id":1342,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"4890:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4884:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1344,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4900:10:7","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2266,"src":"4884:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":1346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4912:15:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":1340,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4875:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4875:53:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1348,"nodeType":"ExpressionStatement","src":"4875:53:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1350,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"4940:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1351,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"4958:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4940:25:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696452656261746550657263656e74","id":1353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4967:22:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325","typeString":"literal_string \"InvalidRebatePercent\""},"value":"InvalidRebatePercent"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325","typeString":"literal_string \"InvalidRebatePercent\""}],"id":1349,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4932:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4932:58:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1355,"nodeType":"ExpressionStatement","src":"4932:58:7"},{"assignments":[1357],"declarations":[{"constant":false,"id":1357,"mutability":"mutable","name":"token","nameLocation":"5035:5:7","nodeType":"VariableDeclaration","scope":1531,"src":"5027:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1356,"name":"address","nodeType":"ElementaryTypeName","src":"5027:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1362,"initialValue":{"expression":{"baseExpression":{"id":1358,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5043:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1360,"indexExpression":{"id":1359,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5049:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5043:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1361,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5059:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"5043:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5027:37:7"},{"assignments":[1364],"declarations":[{"constant":false,"id":1364,"mutability":"mutable","name":"currentOrderBPS","nameLocation":"5139:15:7","nodeType":"VariableDeclaration","scope":1531,"src":"5131:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1363,"name":"uint256","nodeType":"ElementaryTypeName","src":"5131:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1369,"initialValue":{"expression":{"baseExpression":{"id":1365,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5157:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1367,"indexExpression":{"id":1366,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5163:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5157:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1368,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5173:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2270,"src":"5157:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"VariableDeclarationStatement","src":"5131:52:7"},{"expression":{"id":1375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1370,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5187:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1372,"indexExpression":{"id":1371,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5193:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5187:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1373,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5203:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2270,"src":"5187:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1374,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5217:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5187:44:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":1376,"nodeType":"ExpressionStatement","src":"5187:44:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1377,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5240:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1379,"indexExpression":{"id":1378,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5246:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5240:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1380,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5256:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2270,"src":"5240:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5270:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5240:31:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1410,"nodeType":"IfStatement","src":"5236:296:7","trueBody":{"id":1409,"nodeType":"Block","src":"5273:259:7","statements":[{"expression":{"id":1388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1383,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5323:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1385,"indexExpression":{"id":1384,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5329:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5323:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1386,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5339:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2264,"src":"5323:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5353:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5323:34:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1389,"nodeType":"ExpressionStatement","src":"5323:34:7"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1390,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5367:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1392,"indexExpression":{"id":1391,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5373:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5367:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1393,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5383:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2260,"src":"5367:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5396:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5367:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1396,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5401:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1398,"indexExpression":{"id":1397,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5407:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5401:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5417:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2262,"src":"5401:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5432:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5401:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5367:66:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1408,"nodeType":"IfStatement","src":"5363:165:7","trueBody":{"id":1407,"nodeType":"Block","src":"5435:93:7","statements":[{"expression":{"arguments":[{"id":1404,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5513:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1403,"name":"_handleFxTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1905,"src":"5483:29:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":1405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5483:39:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1406,"nodeType":"ExpressionStatement","src":"5483:39:7"}]}}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1411,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5540:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1413,"indexExpression":{"id":1412,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5546:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5540:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1414,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5556:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2260,"src":"5540:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5569:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5540:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1417,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5574:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1419,"indexExpression":{"id":1418,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5580:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5574:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5590:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2262,"src":"5574:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5605:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5574:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5540:66:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1431,"nodeType":"IfStatement","src":"5536:200:7","trueBody":{"id":1430,"nodeType":"Block","src":"5608:128:7","statements":[{"expression":{"arguments":[{"id":1425,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5686:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1426,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1320,"src":"5696:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1427,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5716:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":1424,"name":"_handleLocalTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1813,"src":"5653:32:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$_t_uint64_$returns$__$","typeString":"function (bytes32,address,uint64)"}},"id":1428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5653:78:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1429,"nodeType":"ExpressionStatement","src":"5653:78:7"}]}},{"assignments":[1433],"declarations":[{"constant":false,"id":1433,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"5784:23:7","nodeType":"VariableDeclaration","scope":1531,"src":"5776:31:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1432,"name":"uint256","nodeType":"ElementaryTypeName","src":"5776:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1443,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1434,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5811:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1436,"indexExpression":{"id":1435,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5817:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5811:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1437,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5827:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2272,"src":"5811:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1438,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5836:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5811:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1440,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5810:41:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1441,"name":"currentOrderBPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1364,"src":"5857:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5810:62:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5776:96:7"},{"expression":{"id":1449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1444,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5876:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1446,"indexExpression":{"id":1445,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5882:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5876:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1447,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5892:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2272,"src":"5876:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1448,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"5902:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5876:49:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1450,"nodeType":"ExpressionStatement","src":"5876:49:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1451,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5934:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1453,"indexExpression":{"id":1452,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5940:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5934:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1454,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5950:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2262,"src":"5934:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5965:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5934:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1512,"nodeType":"IfStatement","src":"5930:628:7","trueBody":{"id":1511,"nodeType":"Block","src":"5968:590:7","statements":[{"assignments":[1459],"declarations":[{"constant":false,"id":1459,"mutability":"mutable","name":"settings","nameLocation":"6059:8:7","nodeType":"VariableDeclaration","scope":1511,"src":"6035:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1458,"nodeType":"UserDefinedTypeName","pathNode":{"id":1457,"name":"TokenFeeSettings","nameLocations":["6035:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":1932,"src":"6035:16:7"},"referencedDeclaration":1932,"src":"6035:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1466,"initialValue":{"baseExpression":{"id":1460,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"6070:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1465,"indexExpression":{"expression":{"baseExpression":{"id":1461,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"6088:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1463,"indexExpression":{"id":1462,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6094:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6088:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1464,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6104:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"6088:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6070:40:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6035:75:7"},{"assignments":[1468],"declarations":[{"constant":false,"id":1468,"mutability":"mutable","name":"protocolFee","nameLocation":"6123:11:7","nodeType":"VariableDeclaration","scope":1511,"src":"6115:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1467,"name":"uint256","nodeType":"ElementaryTypeName","src":"6115:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1476,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1469,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"6138:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1470,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"6164:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1471,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6173:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":1931,"src":"6164:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6138:57:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1473,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6137:59:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1474,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"6203:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6137:73:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6115:95:7"},{"expression":{"id":1479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1477,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"6215:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1478,"name":"protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1468,"src":"6242:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6215:38:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1480,"nodeType":"ExpressionStatement","src":"6215:38:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":1483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1481,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"6263:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6281:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6263:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1502,"nodeType":"IfStatement","src":"6259:209:7","trueBody":{"id":1501,"nodeType":"Block","src":"6284:184:7","statements":[{"assignments":[1485],"declarations":[{"constant":false,"id":1485,"mutability":"mutable","name":"rebateAmount","nameLocation":"6329:12:7","nodeType":"VariableDeclaration","scope":1501,"src":"6321:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1484,"name":"uint256","nodeType":"ElementaryTypeName","src":"6321:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1492,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1486,"name":"protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1468,"src":"6345:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1487,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"6359:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6345:28:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1489,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6344:30:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1490,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"6377:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6344:40:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6321:63:7"},{"expression":{"id":1495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1493,"name":"protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1468,"src":"6390:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1494,"name":"rebateAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1485,"src":"6405:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6390:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1496,"nodeType":"ExpressionStatement","src":"6390:27:7"},{"expression":{"id":1499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1497,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"6423:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1498,"name":"rebateAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1485,"src":"6450:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6423:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1500,"nodeType":"ExpressionStatement","src":"6423:39:7"}]}},{"expression":{"arguments":[{"id":1507,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"6524:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1508,"name":"protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1468,"src":"6541:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1504,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"6508:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1503,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"6501:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6501:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6515:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"6501:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6501:52:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1510,"nodeType":"ExpressionStatement","src":"6501:52:7"}]}},{"expression":{"arguments":[{"id":1517,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1320,"src":"6585:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1518,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"6605:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1514,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"6569:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1513,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"6562:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6562:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6576:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"6562:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6562:67:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1520,"nodeType":"ExpressionStatement","src":"6562:67:7"},{"eventCall":{"arguments":[{"id":1522,"name":"_splitOrderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"6680:13:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1523,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6698:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1524,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1320,"src":"6711:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1525,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"6734:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":1526,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"6753:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":1521,"name":"OrderSettled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2217,"src":"6663:12:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_address_$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (bytes32,bytes32,address,uint64,uint64)"}},"id":1527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6663:108:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1528,"nodeType":"EmitStatement","src":"6658:113:7"},{"expression":{"hexValue":"74727565","id":1529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6783:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1330,"id":1530,"nodeType":"Return","src":"6776:11:7"}]},"documentation":{"id":1314,"nodeType":"StructuredDocumentation","src":"4542:34:7","text":"@dev See {settle-IGateway}. "},"functionSelector":"df51b359","id":1532,"implemented":true,"kind":"function","modifiers":[{"id":1327,"kind":"modifierInvocation","modifierName":{"id":1326,"name":"onlyAggregator","nameLocations":["4731:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":1066,"src":"4731:14:7"},"nodeType":"ModifierInvocation","src":"4731:14:7"}],"name":"settle","nameLocation":"4587:6:7","nodeType":"FunctionDefinition","parameters":{"id":1325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1316,"mutability":"mutable","name":"_splitOrderId","nameLocation":"4605:13:7","nodeType":"VariableDeclaration","scope":1532,"src":"4597:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1315,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4597:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1318,"mutability":"mutable","name":"_orderId","nameLocation":"4630:8:7","nodeType":"VariableDeclaration","scope":1532,"src":"4622:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4622:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1320,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"4650:18:7","nodeType":"VariableDeclaration","scope":1532,"src":"4642:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1319,"name":"address","nodeType":"ElementaryTypeName","src":"4642:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1322,"mutability":"mutable","name":"_settlePercent","nameLocation":"4679:14:7","nodeType":"VariableDeclaration","scope":1532,"src":"4672:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1321,"name":"uint64","nodeType":"ElementaryTypeName","src":"4672:6:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1324,"mutability":"mutable","name":"_rebatePercent","nameLocation":"4704:14:7","nodeType":"VariableDeclaration","scope":1532,"src":"4697:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1323,"name":"uint64","nodeType":"ElementaryTypeName","src":"4697:6:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4593:128:7"},"returnParameters":{"id":1330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1329,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1532,"src":"4755:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1328,"name":"bool","nodeType":"ElementaryTypeName","src":"4755:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4754:6:7"},"scope":1906,"src":"4578:2213:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2319],"body":{"id":1637,"nodeType":"Block","src":"6917:833:7","statements":[{"expression":{"arguments":[{"id":1549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6980:28:7","subExpression":{"expression":{"baseExpression":{"id":1545,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"6981:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1547,"indexExpression":{"id":1546,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"6987:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6981:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1548,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6997:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2264,"src":"6981:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":1550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7010:16:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":1544,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6972:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6972:55:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1552,"nodeType":"ExpressionStatement","src":"6972:55:7"},{"expression":{"arguments":[{"id":1558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7039:27:7","subExpression":{"expression":{"baseExpression":{"id":1554,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7040:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1556,"indexExpression":{"id":1555,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7046:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7040:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1557,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7056:10:7","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2266,"src":"7040:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":1559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7068:15:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":1553,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7031:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7031:53:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1561,"nodeType":"ExpressionStatement","src":"7031:53:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1563,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7096:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1565,"indexExpression":{"id":1564,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7102:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7096:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1566,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7112:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2262,"src":"7096:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1567,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"7127:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7096:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4665654578636565647350726f746f636f6c466565","id":1569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7133:23:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""},"value":"FeeExceedsProtocolFee"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""}],"id":1562,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7088:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7088:69:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1571,"nodeType":"ExpressionStatement","src":"7088:69:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1572,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"7166:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7173:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7166:8:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1587,"nodeType":"IfStatement","src":"7162:127:7","trueBody":{"id":1586,"nodeType":"Block","src":"7176:113:7","statements":[{"expression":{"arguments":[{"id":1582,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"7262:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1583,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"7279:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1576,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7230:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1578,"indexExpression":{"id":1577,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7236:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7230:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1579,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7246:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"7230:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1575,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"7223:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7223:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7253:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"7223:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7223:61:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1585,"nodeType":"ExpressionStatement","src":"7223:61:7"}]}},{"expression":{"id":1593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1588,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7317:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1590,"indexExpression":{"id":1589,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7323:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7317:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1591,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7333:10:7","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2266,"src":"7317:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7346:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"7317:33:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1594,"nodeType":"ExpressionStatement","src":"7317:33:7"},{"expression":{"id":1600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1595,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7354:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1597,"indexExpression":{"id":1596,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7360:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7354:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1598,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7370:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2270,"src":"7354:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1599,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7383:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7354:30:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":1601,"nodeType":"ExpressionStatement","src":"7354:30:7"},{"assignments":[1603],"declarations":[{"constant":false,"id":1603,"mutability":"mutable","name":"refundAmount","nameLocation":"7431:12:7","nodeType":"VariableDeclaration","scope":1637,"src":"7423:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1602,"name":"uint256","nodeType":"ElementaryTypeName","src":"7423:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1610,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1604,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7446:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1606,"indexExpression":{"id":1605,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7452:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7446:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7462:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2272,"src":"7446:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1608,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"7471:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7446:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7423:52:7"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":1618,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7588:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1620,"indexExpression":{"id":1619,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7594:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7588:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7604:13:7","memberName":"refundAddress","nodeType":"MemberAccess","referencedDeclaration":2268,"src":"7588:29:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1622,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1603,"src":"7622:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":1623,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7637:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1625,"indexExpression":{"id":1624,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7643:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7637:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1626,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7653:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2260,"src":"7637:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7622:40:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1612,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7552:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1614,"indexExpression":{"id":1613,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7558:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7552:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1615,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7568:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"7552:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1611,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"7545:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7545:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7575:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"7545:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7545:121:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1629,"nodeType":"ExpressionStatement","src":"7545:121:7"},{"eventCall":{"arguments":[{"id":1631,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"7715:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1632,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"7721:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1630,"name":"OrderRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2224,"src":"7701:13:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":1633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7701:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1634,"nodeType":"EmitStatement","src":"7696:34:7"},{"expression":{"hexValue":"74727565","id":1635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7742:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1543,"id":1636,"nodeType":"Return","src":"7735:11:7"}]},"documentation":{"id":1533,"nodeType":"StructuredDocumentation","src":"6794:34:7","text":"@dev See {refund-IGateway}. "},"functionSelector":"71eedb88","id":1638,"implemented":true,"kind":"function","modifiers":[{"id":1540,"kind":"modifierInvocation","modifierName":{"id":1539,"name":"onlyAggregator","nameLocations":["6887:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":1066,"src":"6887:14:7"},"nodeType":"ModifierInvocation","src":"6887:14:7"}],"name":"refund","nameLocation":"6839:6:7","nodeType":"FunctionDefinition","parameters":{"id":1538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1535,"mutability":"mutable","name":"_fee","nameLocation":"6854:4:7","nodeType":"VariableDeclaration","scope":1638,"src":"6846:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1534,"name":"uint256","nodeType":"ElementaryTypeName","src":"6846:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1537,"mutability":"mutable","name":"_orderId","nameLocation":"6868:8:7","nodeType":"VariableDeclaration","scope":1638,"src":"6860:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1536,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6860:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6845:32:7"},"returnParameters":{"id":1543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1542,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1638,"src":"6911:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1541,"name":"bool","nodeType":"ElementaryTypeName","src":"6911:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6910:6:7"},"scope":1906,"src":"6830:920:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2336],"body":{"id":1651,"nodeType":"Block","src":"8060:30:7","statements":[{"expression":{"baseExpression":{"id":1647,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8071:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1649,"indexExpression":{"id":1648,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1641,"src":"8077:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8071:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"functionReturnParameters":1646,"id":1650,"nodeType":"Return","src":"8064:22:7"}]},"documentation":{"id":1639,"nodeType":"StructuredDocumentation","src":"7941:40:7","text":"@dev See {getOrderInfo-IGateway}. "},"functionSelector":"768c6ec0","id":1652,"implemented":true,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"7992:12:7","nodeType":"FunctionDefinition","parameters":{"id":1642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1641,"mutability":"mutable","name":"_orderId","nameLocation":"8013:8:7","nodeType":"VariableDeclaration","scope":1652,"src":"8005:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1640,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8005:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8004:18:7"},"returnParameters":{"id":1646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1652,"src":"8046:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":1644,"nodeType":"UserDefinedTypeName","pathNode":{"id":1643,"name":"Order","nameLocations":["8046:5:7"],"nodeType":"IdentifierPath","referencedDeclaration":2273,"src":"8046:5:7"},"referencedDeclaration":2273,"src":"8046:5:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"8045:14:7"},"scope":1906,"src":"7983:107:7","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[2327],"body":{"id":1670,"nodeType":"Block","src":"8210:71:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1660,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"8218:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1662,"indexExpression":{"id":1661,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1655,"src":"8236:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8218:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8247:1:7","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8218:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1667,"nodeType":"IfStatement","src":"8214:47:7","trueBody":{"expression":{"hexValue":"74727565","id":1665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8257:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1659,"id":1666,"nodeType":"Return","src":"8250:11:7"}},{"expression":{"hexValue":"66616c7365","id":1668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8272:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":1659,"id":1669,"nodeType":"Return","src":"8265:12:7"}]},"documentation":{"id":1653,"nodeType":"StructuredDocumentation","src":"8093:44:7","text":"@dev See {isTokenSupported-IGateway}. "},"functionSelector":"75151b63","id":1671,"implemented":true,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"8148:16:7","nodeType":"FunctionDefinition","parameters":{"id":1656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1655,"mutability":"mutable","name":"_token","nameLocation":"8173:6:7","nodeType":"VariableDeclaration","scope":1671,"src":"8165:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1654,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8164:16:7"},"returnParameters":{"id":1659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1671,"src":"8204:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1657,"name":"bool","nodeType":"ElementaryTypeName","src":"8204:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8203:6:7"},"scope":1906,"src":"8139:142:7","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1812,"nodeType":"Block","src":"8624:1309:7","statements":[{"assignments":[1683],"declarations":[{"constant":false,"id":1683,"mutability":"mutable","name":"settings","nameLocation":"8652:8:7","nodeType":"VariableDeclaration","scope":1812,"src":"8628:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1682,"nodeType":"UserDefinedTypeName","pathNode":{"id":1681,"name":"TokenFeeSettings","nameLocations":["8628:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":1932,"src":"8628:16:7"},"referencedDeclaration":1932,"src":"8628:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1690,"initialValue":{"baseExpression":{"id":1684,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"8663:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1689,"indexExpression":{"expression":{"baseExpression":{"id":1685,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8681:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1687,"indexExpression":{"id":1686,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"8687:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8681:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1688,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8697:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"8681:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8663:40:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"8628:75:7"},{"assignments":[1692],"declarations":[{"constant":false,"id":1692,"mutability":"mutable","name":"senderFee","nameLocation":"8715:9:7","nodeType":"VariableDeclaration","scope":1812,"src":"8707:17:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1691,"name":"uint256","nodeType":"ElementaryTypeName","src":"8707:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1697,"initialValue":{"expression":{"baseExpression":{"id":1693,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8727:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1695,"indexExpression":{"id":1694,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"8733:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8727:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1696,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8743:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2260,"src":"8727:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8707:45:7"},{"assignments":[1699],"declarations":[{"constant":false,"id":1699,"mutability":"mutable","name":"providerAmount","nameLocation":"8803:14:7","nodeType":"VariableDeclaration","scope":1812,"src":"8795:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1698,"name":"uint256","nodeType":"ElementaryTypeName","src":"8795:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1707,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1700,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1692,"src":"8821:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1701,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1683,"src":"8833:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1702,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8842:16:7","memberName":"senderToProvider","nodeType":"MemberAccess","referencedDeclaration":1925,"src":"8833:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8821:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1704,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8820:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1705,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"8862:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8820:49:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8795:74:7"},{"assignments":[1709],"declarations":[{"constant":false,"id":1709,"mutability":"mutable","name":"currentProviderAmount","nameLocation":"8881:21:7","nodeType":"VariableDeclaration","scope":1812,"src":"8873:29:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1708,"name":"uint256","nodeType":"ElementaryTypeName","src":"8873:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1716,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1710,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1699,"src":"8906:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1711,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1678,"src":"8923:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"8906:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1713,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8905:33:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1714,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"8941:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8905:43:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8873:75:7"},{"assignments":[1718],"declarations":[{"constant":false,"id":1718,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"8960:16:7","nodeType":"VariableDeclaration","scope":1812,"src":"8952:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1717,"name":"uint256","nodeType":"ElementaryTypeName","src":"8952:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1726,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1719,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1709,"src":"8980:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1720,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1683,"src":"9004:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1721,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9013:20:7","memberName":"providerToAggregator","nodeType":"MemberAccess","referencedDeclaration":1927,"src":"9004:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8980:53:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1723,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8979:55:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1724,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"9040:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8979:68:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8952:95:7"},{"assignments":[1728],"declarations":[{"constant":false,"id":1728,"mutability":"mutable","name":"senderAmount","nameLocation":"9059:12:7","nodeType":"VariableDeclaration","scope":1812,"src":"9051:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1727,"name":"uint256","nodeType":"ElementaryTypeName","src":"9051:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1732,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1729,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1692,"src":"9074:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1730,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1699,"src":"9086:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9074:26:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9051:49:7"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1733,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1728,"src":"9138:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9154:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9138:17:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1736,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9159:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1738,"indexExpression":{"id":1737,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9165:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9159:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9175:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2270,"src":"9159:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9189:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9159:31:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9138:52:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1758,"nodeType":"IfStatement","src":"9134:169:7","trueBody":{"id":1757,"nodeType":"Block","src":"9192:111:7","statements":[{"expression":{"arguments":[{"expression":{"baseExpression":{"id":1750,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9241:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1752,"indexExpression":{"id":1751,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9247:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9241:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1753,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9257:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2258,"src":"9241:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1754,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1728,"src":"9281:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1744,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9204:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1746,"indexExpression":{"id":1745,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9210:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9204:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1747,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9220:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"9204:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1743,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"9197:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9197:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9227:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"9197:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9197:101:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1756,"nodeType":"ExpressionStatement","src":"9197:101:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1759,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"9356:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1760,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9376:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9356:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1774,"nodeType":"IfStatement","src":"9352:110:7","trueBody":{"id":1773,"nodeType":"Block","src":"9379:83:7","statements":[{"expression":{"arguments":[{"id":1769,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"9423:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1770,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"9440:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1763,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9391:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1765,"indexExpression":{"id":1764,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9397:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9391:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1766,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9407:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"9391:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1762,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"9384:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9384:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9414:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"9384:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9384:73:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1772,"nodeType":"ExpressionStatement","src":"9384:73:7"}]}},{"expression":{"id":1779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1775,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1709,"src":"9547:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1776,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1709,"src":"9571:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1777,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"9595:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9571:40:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9547:64:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1780,"nodeType":"ExpressionStatement","src":"9547:64:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1781,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1709,"src":"9619:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9644:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9619:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1796,"nodeType":"IfStatement","src":"9615:123:7","trueBody":{"id":1795,"nodeType":"Block","src":"9647:91:7","statements":[{"expression":{"arguments":[{"id":1791,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1676,"src":"9691:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1792,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1709,"src":"9711:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1785,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9659:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1787,"indexExpression":{"id":1786,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9665:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9659:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1788,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9675:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"9659:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1784,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"9652:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9652:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9682:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"9652:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9652:81:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1794,"nodeType":"ExpressionStatement","src":"9652:81:7"}]}},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":1798,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9785:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1800,"indexExpression":{"id":1799,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9791:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9785:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1801,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9801:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2258,"src":"9785:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1802,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1728,"src":"9821:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1797,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2231,"src":"9764:20:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":1803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9764:70:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1804,"nodeType":"EmitStatement","src":"9759:75:7"},{"eventCall":{"arguments":[{"id":1806,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1674,"src":"9865:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1807,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1728,"src":"9875:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1808,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1709,"src":"9889:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1809,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"9912:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1805,"name":"LocalTransferFeeSplit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2242,"src":"9843:21:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,uint256,uint256)"}},"id":1810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9843:86:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1811,"nodeType":"EmitStatement","src":"9838:91:7"}]},"documentation":{"id":1672,"nodeType":"StructuredDocumentation","src":"8284:209:7","text":" @dev Handles fee splitting for local transfers (rate = 1).\n @param _orderId The order ID to process.\n @param _liquidityProvider The address of the liquidity provider who fulfilled the order."},"id":1813,"implemented":true,"kind":"function","modifiers":[],"name":"_handleLocalTransferFeeSplitting","nameLocation":"8504:32:7","nodeType":"FunctionDefinition","parameters":{"id":1679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1674,"mutability":"mutable","name":"_orderId","nameLocation":"8548:8:7","nodeType":"VariableDeclaration","scope":1813,"src":"8540:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1673,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8540:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1676,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"8568:18:7","nodeType":"VariableDeclaration","scope":1813,"src":"8560:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1675,"name":"address","nodeType":"ElementaryTypeName","src":"8560:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1678,"mutability":"mutable","name":"_settlePercent","nameLocation":"8597:14:7","nodeType":"VariableDeclaration","scope":1813,"src":"8590:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1677,"name":"uint64","nodeType":"ElementaryTypeName","src":"8590:6:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8536:78:7"},"returnParameters":{"id":1680,"nodeType":"ParameterList","parameters":[],"src":"8624:0:7"},"scope":1906,"src":"8495:1438:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1904,"nodeType":"Block","src":"10118:834:7","statements":[{"assignments":[1821],"declarations":[{"constant":false,"id":1821,"mutability":"mutable","name":"settings","nameLocation":"10146:8:7","nodeType":"VariableDeclaration","scope":1904,"src":"10122:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1820,"nodeType":"UserDefinedTypeName","pathNode":{"id":1819,"name":"TokenFeeSettings","nameLocations":["10122:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":1932,"src":"10122:16:7"},"referencedDeclaration":1932,"src":"10122:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1828,"initialValue":{"baseExpression":{"id":1822,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"10157:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1827,"indexExpression":{"expression":{"baseExpression":{"id":1823,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10175:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1825,"indexExpression":{"id":1824,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10181:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10175:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1826,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10191:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"10175:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10157:40:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10122:75:7"},{"assignments":[1830],"declarations":[{"constant":false,"id":1830,"mutability":"mutable","name":"senderFee","nameLocation":"10209:9:7","nodeType":"VariableDeclaration","scope":1904,"src":"10201:17:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1829,"name":"uint256","nodeType":"ElementaryTypeName","src":"10201:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1835,"initialValue":{"expression":{"baseExpression":{"id":1831,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10221:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1833,"indexExpression":{"id":1832,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10227:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10221:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1834,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10237:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2260,"src":"10221:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10201:45:7"},{"assignments":[1837],"declarations":[{"constant":false,"id":1837,"mutability":"mutable","name":"senderAmount","nameLocation":"10325:12:7","nodeType":"VariableDeclaration","scope":1904,"src":"10317:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1836,"name":"uint256","nodeType":"ElementaryTypeName","src":"10317:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1848,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1838,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"10341:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1839,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"10354:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":1840,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1821,"src":"10364:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1841,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10373:18:7","memberName":"senderToAggregator","nodeType":"MemberAccess","referencedDeclaration":1929,"src":"10364:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10354:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1843,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10353:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10341:51:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1845,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10340:53:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1846,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"10396:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10340:63:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10317:86:7"},{"assignments":[1850],"declarations":[{"constant":false,"id":1850,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"10415:16:7","nodeType":"VariableDeclaration","scope":1904,"src":"10407:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1849,"name":"uint256","nodeType":"ElementaryTypeName","src":"10407:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1854,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1851,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1830,"src":"10434:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1852,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1837,"src":"10446:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10434:24:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10407:51:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1855,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1837,"src":"10496:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10511:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10496:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1873,"nodeType":"IfStatement","src":"10492:133:7","trueBody":{"id":1872,"nodeType":"Block","src":"10514:111:7","statements":[{"expression":{"arguments":[{"expression":{"baseExpression":{"id":1865,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10563:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1867,"indexExpression":{"id":1866,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10569:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10563:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1868,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10579:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2258,"src":"10563:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1869,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1837,"src":"10603:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1859,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10526:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1861,"indexExpression":{"id":1860,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10532:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10526:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1862,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10542:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"10526:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1858,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"10519:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10519:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10549:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"10519:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1870,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10519:101:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1871,"nodeType":"ExpressionStatement","src":"10519:101:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1874,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1850,"src":"10678:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10697:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10678:20:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1889,"nodeType":"IfStatement","src":"10674:109:7","trueBody":{"id":1888,"nodeType":"Block","src":"10700:83:7","statements":[{"expression":{"arguments":[{"id":1884,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"10744:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1885,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1850,"src":"10761:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1878,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10712:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1880,"indexExpression":{"id":1879,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10718:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10712:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1881,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10728:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2256,"src":"10712:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1877,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"10705:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10705:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10735:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"10705:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10705:73:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1887,"nodeType":"ExpressionStatement","src":"10705:73:7"}]}},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":1891,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10830:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2273_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1893,"indexExpression":{"id":1892,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10836:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10830:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage","typeString":"struct IGateway.Order storage ref"}},"id":1894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10846:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2258,"src":"10830:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1895,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1837,"src":"10866:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1890,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2231,"src":"10809:20:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":1896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10809:70:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1897,"nodeType":"EmitStatement","src":"10804:75:7"},{"eventCall":{"arguments":[{"id":1899,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1816,"src":"10907:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1900,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1837,"src":"10917:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1901,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1850,"src":"10931:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1898,"name":"FxTransferFeeSplit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2251,"src":"10888:18:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,uint256)"}},"id":1902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10888:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1903,"nodeType":"EmitStatement","src":"10883:65:7"}]},"documentation":{"id":1814,"nodeType":"StructuredDocumentation","src":"9936:114:7","text":" @dev Handles fee splitting for FX transfers (rate != 1).\n @param _orderId The order ID to process."},"id":1905,"implemented":true,"kind":"function","modifiers":[],"name":"_handleFxTransferFeeSplitting","nameLocation":"10061:29:7","nodeType":"FunctionDefinition","parameters":{"id":1817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1816,"mutability":"mutable","name":"_orderId","nameLocation":"10099:8:7","nodeType":"VariableDeclaration","scope":1905,"src":"10091:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1815,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10091:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10090:18:7"},"returnParameters":{"id":1818,"nodeType":"ParameterList","parameters":[],"src":"10118:0:7"},"scope":1906,"src":"10052:900:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":1907,"src":"390:10564:7","usedErrors":[],"usedEvents":[17,124,254,423,428,1949,1955,1959,1971,2204,2217,2224,2231,2242,2251]}],"src":"39:10916:7"},"id":7},"contracts/GatewaySettingManager.sol":{"ast":{"absolutePath":"contracts/GatewaySettingManager.sol","exportedSymbols":{"ContextUpgradeable":[917],"GatewaySettingManager":[2182],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":2183,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":1908,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"168:24:8"},{"absolutePath":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","id":1909,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2183,"sourceUnit":107,"src":"194:80:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1910,"name":"Ownable2StepUpgradeable","nameLocations":["310:23:8"],"nodeType":"IdentifierPath","referencedDeclaration":106,"src":"310:23:8"},"id":1911,"nodeType":"InheritanceSpecifier","src":"310:23:8"}],"canonicalName":"GatewaySettingManager","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":2182,"linearizedBaseContracts":[2182,106,239,917,408],"name":"GatewaySettingManager","nameLocation":"285:21:8","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":1913,"mutability":"mutable","name":"MAX_BPS","nameLocation":"354:7:8","nodeType":"VariableDeclaration","scope":2182,"src":"337:24:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1912,"name":"uint256","nodeType":"ElementaryTypeName","src":"337:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1915,"mutability":"mutable","name":"protocolFeePercent","nameLocation":"380:18:8","nodeType":"VariableDeclaration","scope":2182,"src":"364:34:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1914,"name":"uint64","nodeType":"ElementaryTypeName","src":"364:6:8","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1917,"mutability":"mutable","name":"treasuryAddress","nameLocation":"418:15:8","nodeType":"VariableDeclaration","scope":2182,"src":"401:32:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1916,"name":"address","nodeType":"ElementaryTypeName","src":"401:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1919,"mutability":"mutable","name":"_aggregatorAddress","nameLocation":"453:18:8","nodeType":"VariableDeclaration","scope":2182,"src":"436:35:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1918,"name":"address","nodeType":"ElementaryTypeName","src":"436:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1923,"mutability":"mutable","name":"_isTokenSupported","nameLocation":"511:17:8","nodeType":"VariableDeclaration","scope":2182,"src":"474:54:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1922,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1920,"name":"address","nodeType":"ElementaryTypeName","src":"482:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"474:27:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1921,"name":"uint256","nodeType":"ElementaryTypeName","src":"493:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"canonicalName":"GatewaySettingManager.TokenFeeSettings","id":1932,"members":[{"constant":false,"id":1925,"mutability":"mutable","name":"senderToProvider","nameLocation":"600:16:8","nodeType":"VariableDeclaration","scope":1932,"src":"592:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1924,"name":"uint256","nodeType":"ElementaryTypeName","src":"592:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1927,"mutability":"mutable","name":"providerToAggregator","nameLocation":"682:20:8","nodeType":"VariableDeclaration","scope":1932,"src":"674:28:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1926,"name":"uint256","nodeType":"ElementaryTypeName","src":"674:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1929,"mutability":"mutable","name":"senderToAggregator","nameLocation":"776:18:8","nodeType":"VariableDeclaration","scope":1932,"src":"768:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1928,"name":"uint256","nodeType":"ElementaryTypeName","src":"768:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1931,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"859:22:8","nodeType":"VariableDeclaration","scope":1932,"src":"851:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1930,"name":"uint256","nodeType":"ElementaryTypeName","src":"851:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"TokenFeeSettings","nameLocation":"571:16:8","nodeType":"StructDefinition","scope":2182,"src":"564:386:8","visibility":"public"},{"constant":false,"id":1937,"mutability":"mutable","name":"_tokenFeeSettings","nameLocation":"999:17:8","nodeType":"VariableDeclaration","scope":2182,"src":"953:63:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"typeName":{"id":1936,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1933,"name":"address","nodeType":"ElementaryTypeName","src":"961:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"953:36:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1935,"nodeType":"UserDefinedTypeName","pathNode":{"id":1934,"name":"TokenFeeSettings","nameLocations":["972:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":1932,"src":"972:16:8"},"referencedDeclaration":1932,"src":"972:16:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}}},"visibility":"internal"},{"constant":false,"id":1941,"mutability":"mutable","name":"__gap","nameLocation":"1040:5:8","nodeType":"VariableDeclaration","scope":2182,"src":"1020:25:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":1938,"name":"uint256","nodeType":"ElementaryTypeName","src":"1020:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1940,"length":{"hexValue":"3439","id":1939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1028:2:8","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"1020:11:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"},{"anonymous":false,"eventSelector":"cfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c","id":1949,"name":"SettingManagerBool","nameLocation":"1055:18:8","nodeType":"EventDefinition","parameters":{"id":1948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1943,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1090:4:8","nodeType":"VariableDeclaration","scope":1949,"src":"1074:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1942,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1074:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1945,"indexed":true,"mutability":"mutable","name":"value","nameLocation":"1112:5:8","nodeType":"VariableDeclaration","scope":1949,"src":"1096:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1944,"name":"address","nodeType":"ElementaryTypeName","src":"1096:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1947,"indexed":false,"mutability":"mutable","name":"status","nameLocation":"1127:6:8","nodeType":"VariableDeclaration","scope":1949,"src":"1119:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1946,"name":"uint256","nodeType":"ElementaryTypeName","src":"1119:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1073:61:8"},"src":"1049:86:8"},{"anonymous":false,"eventSelector":"bbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4","id":1955,"name":"ProtocolAddressUpdated","nameLocation":"1143:22:8","nodeType":"EventDefinition","parameters":{"id":1954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1951,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1182:4:8","nodeType":"VariableDeclaration","scope":1955,"src":"1166:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1950,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1166:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1953,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1204:15:8","nodeType":"VariableDeclaration","scope":1955,"src":"1188:31:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1952,"name":"address","nodeType":"ElementaryTypeName","src":"1188:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1165:55:8"},"src":"1137:84:8"},{"anonymous":false,"eventSelector":"2e979f80fe4d43055c584cf4a8467c55875ea36728fc37176c05acd784eb7a73","id":1959,"name":"SetFeeRecipient","nameLocation":"1229:15:8","nodeType":"EventDefinition","parameters":{"id":1958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1957,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1261:15:8","nodeType":"VariableDeclaration","scope":1959,"src":"1245:31:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1956,"name":"address","nodeType":"ElementaryTypeName","src":"1245:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1244:33:8"},"src":"1223:55:8"},{"anonymous":false,"eventSelector":"d4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c","id":1971,"name":"TokenFeeSettingsUpdated","nameLocation":"1286:23:8","nodeType":"EventDefinition","parameters":{"id":1970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1961,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"1329:5:8","nodeType":"VariableDeclaration","scope":1971,"src":"1313:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1960,"name":"address","nodeType":"ElementaryTypeName","src":"1313:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1963,"indexed":false,"mutability":"mutable","name":"senderToProvider","nameLocation":"1346:16:8","nodeType":"VariableDeclaration","scope":1971,"src":"1338:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1962,"name":"uint256","nodeType":"ElementaryTypeName","src":"1338:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1965,"indexed":false,"mutability":"mutable","name":"providerToAggregator","nameLocation":"1374:20:8","nodeType":"VariableDeclaration","scope":1971,"src":"1366:28:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1964,"name":"uint256","nodeType":"ElementaryTypeName","src":"1366:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1967,"indexed":false,"mutability":"mutable","name":"senderToAggregator","nameLocation":"1406:18:8","nodeType":"VariableDeclaration","scope":1971,"src":"1398:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1966,"name":"uint256","nodeType":"ElementaryTypeName","src":"1398:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1969,"indexed":false,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"1436:22:8","nodeType":"VariableDeclaration","scope":1971,"src":"1428:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1968,"name":"uint256","nodeType":"ElementaryTypeName","src":"1428:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1309:152:8"},"src":"1280:182:8"},{"body":{"id":2021,"nodeType":"Block","src":"2036:243:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1984,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"2048:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2065:1:8","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":1986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2057:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1985,"name":"address","nodeType":"ElementaryTypeName","src":"2057:7:8","typeDescriptions":{}}},"id":1988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2057:10:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2048:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":1990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2069:23:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":1983,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2040:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2040:53:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1992,"nodeType":"ExpressionStatement","src":"2040:53:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1994,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"2105:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1995,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2115:1:8","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2105:11:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1997,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"2120:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":1998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2130:1:8","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2120:11:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2105:26:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c696420737461747573","id":2001,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2133:25:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""},"value":"Gateway: invalid status"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""}],"id":1993,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2097:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2097:62:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2003,"nodeType":"ExpressionStatement","src":"2097:62:8"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2004,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1974,"src":"2167:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"746f6b656e","id":2005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2175:7:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_9b9b0454cadcb5884dd3faa6ba975da4d2459aa3f11d31291a25a8358f84946d","typeString":"literal_string \"token\""},"value":"token"},"src":"2167:15:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2020,"nodeType":"IfStatement","src":"2163:113:8","trueBody":{"id":2019,"nodeType":"Block","src":"2184:92:8","statements":[{"expression":{"id":2011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2007,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"2189:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2009,"indexExpression":{"id":2008,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"2207:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2189:24:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2010,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"2216:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2189:33:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2012,"nodeType":"ExpressionStatement","src":"2189:33:8"},{"eventCall":{"arguments":[{"id":2014,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1974,"src":"2251:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"2257:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2016,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"2264:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2013,"name":"SettingManagerBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"2232:18:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":2017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2232:39:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2018,"nodeType":"EmitStatement","src":"2227:44:8"}]}}]},"documentation":{"id":1972,"nodeType":"StructuredDocumentation","src":"1659:283:8","text":" @dev Sets the boolean value for a specific setting.\n @param what The setting to be updated.\n @param value The address or value associated with the setting.\n @param status The boolean value to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"cd992400","id":2022,"implemented":true,"kind":"function","modifiers":[{"id":1981,"kind":"modifierInvocation","modifierName":{"id":1980,"name":"onlyOwner","nameLocations":["2026:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2026:9:8"},"nodeType":"ModifierInvocation","src":"2026:9:8"}],"name":"settingManagerBool","nameLocation":"1953:18:8","nodeType":"FunctionDefinition","parameters":{"id":1979,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1974,"mutability":"mutable","name":"what","nameLocation":"1980:4:8","nodeType":"VariableDeclaration","scope":2022,"src":"1972:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1973,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1972:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1976,"mutability":"mutable","name":"value","nameLocation":"1994:5:8","nodeType":"VariableDeclaration","scope":2022,"src":"1986:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1975,"name":"address","nodeType":"ElementaryTypeName","src":"1986:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1978,"mutability":"mutable","name":"status","nameLocation":"2009:6:8","nodeType":"VariableDeclaration","scope":2022,"src":"2001:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1977,"name":"uint256","nodeType":"ElementaryTypeName","src":"2001:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1971:45:8"},"returnParameters":{"id":1982,"nodeType":"ParameterList","parameters":[],"src":"2036:0:8"},"scope":2182,"src":"1944:335:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2093,"nodeType":"Block","src":"2587:472:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2027,"src":"2599:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2616:1:8","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":2035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2608:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2034,"name":"address","nodeType":"ElementaryTypeName","src":"2608:7:8","typeDescriptions":{}}},"id":2037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2608:10:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2599:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2620:23:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2032,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2591:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2591:53:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2041,"nodeType":"ExpressionStatement","src":"2591:53:8"},{"assignments":[2043],"declarations":[{"constant":false,"id":2043,"mutability":"mutable","name":"updated","nameLocation":"2653:7:8","nodeType":"VariableDeclaration","scope":2093,"src":"2648:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2042,"name":"bool","nodeType":"ElementaryTypeName","src":"2648:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2044,"nodeType":"VariableDeclarationStatement","src":"2648:12:8"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2045,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2025,"src":"2668:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"7472656173757279","id":2046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2676:10:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_cbd818ad4dd6f1ff9338c2bb62480241424dd9a65f9f3284101a01cd099ad8ac","typeString":"literal_string \"treasury\""},"value":"treasury"},"src":"2668:18:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2064,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2025,"src":"2829:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"61676772656761746f72","id":2065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2837:12:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_e124d7cc79a19705865fa21b784ba187cd393559e960c0c071132cb60354d1a3","typeString":"literal_string \"aggregator\""},"value":"aggregator"},"src":"2829:20:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2083,"nodeType":"IfStatement","src":"2825:165:8","trueBody":{"id":2082,"nodeType":"Block","src":"2851:139:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2068,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"2864:18:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2069,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2027,"src":"2886:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2864:27:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c726561647920736574","id":2071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2893:41:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""},"value":"Gateway: aggregator address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""}],"id":2067,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2856:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2856:79:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2073,"nodeType":"ExpressionStatement","src":"2856:79:8"},{"expression":{"id":2076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2074,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"2940:18:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2075,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2027,"src":"2961:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2940:26:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2077,"nodeType":"ExpressionStatement","src":"2940:26:8"},{"expression":{"id":2080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2078,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2043,"src":"2971:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2981:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2971:14:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2081,"nodeType":"ExpressionStatement","src":"2971:14:8"}]}},"id":2084,"nodeType":"IfStatement","src":"2664:326:8","trueBody":{"id":2063,"nodeType":"Block","src":"2688:131:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2049,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"2701:15:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2027,"src":"2720:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2701:24:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207472656173757279206164647265737320616c726561647920736574","id":2052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2727:39:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""},"value":"Gateway: treasury address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""}],"id":2048,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2693:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2693:74:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2054,"nodeType":"ExpressionStatement","src":"2693:74:8"},{"expression":{"id":2057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2055,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"2772:15:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2056,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2027,"src":"2790:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2772:23:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2058,"nodeType":"ExpressionStatement","src":"2772:23:8"},{"expression":{"id":2061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2059,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2043,"src":"2800:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2810:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2800:14:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2062,"nodeType":"ExpressionStatement","src":"2800:14:8"}]}},{"condition":{"id":2085,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2043,"src":"2997:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2092,"nodeType":"IfStatement","src":"2993:63:8","trueBody":{"id":2091,"nodeType":"Block","src":"3006:50:8","statements":[{"eventCall":{"arguments":[{"id":2087,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2025,"src":"3039:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2088,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2027,"src":"3045:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2086,"name":"ProtocolAddressUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1955,"src":"3016:22:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3016:35:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2090,"nodeType":"EmitStatement","src":"3011:40:8"}]}}]},"documentation":{"id":2023,"nodeType":"StructuredDocumentation","src":"2282:224:8","text":" @dev Updates a protocol address.\n @param what The address type to be updated (treasury or aggregator).\n @param value The new address to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"40ebc677","id":2094,"implemented":true,"kind":"function","modifiers":[{"id":2030,"kind":"modifierInvocation","modifierName":{"id":2029,"name":"onlyOwner","nameLocations":["2577:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2577:9:8"},"nodeType":"ModifierInvocation","src":"2577:9:8"}],"name":"updateProtocolAddress","nameLocation":"2517:21:8","nodeType":"FunctionDefinition","parameters":{"id":2028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2025,"mutability":"mutable","name":"what","nameLocation":"2547:4:8","nodeType":"VariableDeclaration","scope":2094,"src":"2539:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2024,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2539:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2027,"mutability":"mutable","name":"value","nameLocation":"2561:5:8","nodeType":"VariableDeclaration","scope":2094,"src":"2553:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2026,"name":"address","nodeType":"ElementaryTypeName","src":"2553:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2538:29:8"},"returnParameters":{"id":2031,"nodeType":"ParameterList","parameters":[],"src":"2587:0:8"},"scope":2182,"src":"2508:551:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2166,"nodeType":"Block","src":"3862:796:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2111,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"3874:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2113,"indexExpression":{"id":2112,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2097,"src":"3892:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3874:24:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3902:1:8","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3874:29:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","id":2116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3905:30:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""},"value":"Gateway: token not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""}],"id":2110,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3866:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3866:70:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2118,"nodeType":"ExpressionStatement","src":"3866:70:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2120,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2099,"src":"3948:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2121,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"3968:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3948:27:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669646572","id":2123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3977:37:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""},"value":"Gateway: invalid sender to provider"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""}],"id":2119,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3940:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3940:75:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2125,"nodeType":"ExpressionStatement","src":"3940:75:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2127,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2101,"src":"4027:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2128,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"4051:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4027:31:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72","id":2130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4060:41:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""},"value":"Gateway: invalid provider to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""}],"id":2126,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4019:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4019:83:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2132,"nodeType":"ExpressionStatement","src":"4019:83:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2134,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2103,"src":"4114:18:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2135,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"4136:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4114:29:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2061676772656761746f72","id":2137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4145:39:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""},"value":"Gateway: invalid sender to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""}],"id":2133,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4106:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4106:79:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2139,"nodeType":"ExpressionStatement","src":"4106:79:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2141,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2105,"src":"4197:22:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2142,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1913,"src":"4223:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4197:33:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72206678","id":2144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4232:44:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""},"value":"Gateway: invalid provider to aggregator fx"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""}],"id":2140,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4189:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4189:88:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2146,"nodeType":"ExpressionStatement","src":"4189:88:8"},{"expression":{"id":2156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2147,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"4282:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2149,"indexExpression":{"id":2148,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2097,"src":"4300:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4282:24:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2151,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2099,"src":"4349:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2152,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2101,"src":"4392:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2153,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2103,"src":"4437:18:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2154,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2105,"src":"4484:22:8","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"}],"id":2150,"name":"TokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1932,"src":"4309:16:8","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TokenFeeSettings_$1932_storage_ptr_$","typeString":"type(struct GatewaySettingManager.TokenFeeSettings storage pointer)"}},"id":2155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4331:16:8","4370:20:8","4417:18:8","4460:22:8"],"names":["senderToProvider","providerToAggregator","senderToAggregator","providerToAggregatorFx"],"nodeType":"FunctionCall","src":"4309:202:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"src":"4282:229:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"id":2157,"nodeType":"ExpressionStatement","src":"4282:229:8"},{"eventCall":{"arguments":[{"id":2159,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2097,"src":"4549:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2160,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2099,"src":"4559:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2161,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2101,"src":"4580:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2162,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2103,"src":"4605:18:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2163,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2105,"src":"4628:22:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2158,"name":"TokenFeeSettingsUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"4521:23:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,uint256)"}},"id":2164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4521:133:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2165,"nodeType":"EmitStatement","src":"4516:138:8"}]},"documentation":{"id":2095,"nodeType":"StructuredDocumentation","src":"3062:606:8","text":" @dev Sets token-specific fee settings for stablecoins.\n @param token The token address to configure.\n @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n Requirements:\n - The token must be supported.\n - Fee percentages must be within valid ranges."},"functionSelector":"898861b0","id":2167,"implemented":true,"kind":"function","modifiers":[{"id":2108,"kind":"modifierInvocation","modifierName":{"id":2107,"name":"onlyOwner","nameLocations":["3852:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"3852:9:8"},"nodeType":"ModifierInvocation","src":"3852:9:8"}],"name":"setTokenFeeSettings","nameLocation":"3679:19:8","nodeType":"FunctionDefinition","parameters":{"id":2106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2097,"mutability":"mutable","name":"token","nameLocation":"3710:5:8","nodeType":"VariableDeclaration","scope":2167,"src":"3702:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2096,"name":"address","nodeType":"ElementaryTypeName","src":"3702:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2099,"mutability":"mutable","name":"senderToProvider","nameLocation":"3727:16:8","nodeType":"VariableDeclaration","scope":2167,"src":"3719:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2098,"name":"uint256","nodeType":"ElementaryTypeName","src":"3719:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2101,"mutability":"mutable","name":"providerToAggregator","nameLocation":"3755:20:8","nodeType":"VariableDeclaration","scope":2167,"src":"3747:28:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2100,"name":"uint256","nodeType":"ElementaryTypeName","src":"3747:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2103,"mutability":"mutable","name":"senderToAggregator","nameLocation":"3787:18:8","nodeType":"VariableDeclaration","scope":2167,"src":"3779:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2102,"name":"uint256","nodeType":"ElementaryTypeName","src":"3779:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2105,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"3817:22:8","nodeType":"VariableDeclaration","scope":2167,"src":"3809:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2104,"name":"uint256","nodeType":"ElementaryTypeName","src":"3809:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3698:144:8"},"returnParameters":{"id":2109,"nodeType":"ParameterList","parameters":[],"src":"3862:0:8"},"scope":2182,"src":"3670:988:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2180,"nodeType":"Block","src":"4930:39:8","statements":[{"expression":{"baseExpression":{"id":2176,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"4941:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$1932_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2178,"indexExpression":{"id":2177,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2170,"src":"4959:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4941:24:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"functionReturnParameters":2175,"id":2179,"nodeType":"Return","src":"4934:31:8"}]},"documentation":{"id":2168,"nodeType":"StructuredDocumentation","src":"4661:175:8","text":" @dev Gets token-specific fee settings.\n @param token The token address to query.\n @return TokenFeeSettings struct containing all fee settings for the token."},"functionSelector":"8bfa0549","id":2181,"implemented":true,"kind":"function","modifiers":[],"name":"getTokenFeeSettings","nameLocation":"4847:19:8","nodeType":"FunctionDefinition","parameters":{"id":2171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2170,"mutability":"mutable","name":"token","nameLocation":"4875:5:8","nodeType":"VariableDeclaration","scope":2181,"src":"4867:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2169,"name":"address","nodeType":"ElementaryTypeName","src":"4867:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4866:15:8"},"returnParameters":{"id":2175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2174,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2181,"src":"4905:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2173,"nodeType":"UserDefinedTypeName","pathNode":{"id":2172,"name":"TokenFeeSettings","nameLocations":["4905:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":1932,"src":"4905:16:8"},"referencedDeclaration":1932,"src":"4905:16:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$1932_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"src":"4904:25:8"},"scope":2182,"src":"4838:131:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2183,"src":"276:4695:8","usedErrors":[],"usedEvents":[17,124,254,1949,1955,1959,1971]}],"src":"168:4804:8"},"id":8},"contracts/interfaces/IGateway.sol":{"ast":{"absolutePath":"contracts/interfaces/IGateway.sol","exportedSymbols":{"IERC20":[995],"IGateway":[2337]},"id":2338,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2184,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:9"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":2186,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2338,"sourceUnit":996,"src":"65:70:9","symbolAliases":[{"foreign":{"id":2185,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"73:6:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGateway","contractDependencies":[],"contractKind":"interface","documentation":{"id":2187,"nodeType":"StructuredDocumentation","src":"137:73:9","text":" @title IGateway\n @notice Interface for the Gateway contract."},"fullyImplemented":false,"id":2337,"linearizedBaseContracts":[2337],"name":"IGateway","nameLocation":"221:8:9","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":2188,"nodeType":"StructuredDocumentation","src":"417:335:9","text":" @dev Emitted when a deposit is made.\n @param sender The address of the sender.\n @param token The address of the deposited token.\n @param amount The amount of the deposit.\n @param orderId The ID of the order.\n @param rate The rate at which the deposit is made.\n @param messageHash The hash of the message."},"eventSelector":"40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a137","id":2204,"name":"OrderCreated","nameLocation":"760:12:9","nodeType":"EventDefinition","parameters":{"id":2203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2190,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"792:6:9","nodeType":"VariableDeclaration","scope":2204,"src":"776:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2189,"name":"address","nodeType":"ElementaryTypeName","src":"776:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2192,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"818:5:9","nodeType":"VariableDeclaration","scope":2204,"src":"802:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2191,"name":"address","nodeType":"ElementaryTypeName","src":"802:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2194,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"843:6:9","nodeType":"VariableDeclaration","scope":2204,"src":"827:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2193,"name":"uint256","nodeType":"ElementaryTypeName","src":"827:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2196,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"861:11:9","nodeType":"VariableDeclaration","scope":2204,"src":"853:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2195,"name":"uint256","nodeType":"ElementaryTypeName","src":"853:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2198,"indexed":false,"mutability":"mutable","name":"orderId","nameLocation":"884:7:9","nodeType":"VariableDeclaration","scope":2204,"src":"876:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2197,"name":"bytes32","nodeType":"ElementaryTypeName","src":"876:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2200,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"903:4:9","nodeType":"VariableDeclaration","scope":2204,"src":"895:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2199,"name":"uint256","nodeType":"ElementaryTypeName","src":"895:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2202,"indexed":false,"mutability":"mutable","name":"messageHash","nameLocation":"918:11:9","nodeType":"VariableDeclaration","scope":2204,"src":"911:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2201,"name":"string","nodeType":"ElementaryTypeName","src":"911:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"772:160:9"},"src":"754:179:9"},{"anonymous":false,"documentation":{"id":2205,"nodeType":"StructuredDocumentation","src":"936:401:9","text":" @dev Emitted when an aggregator settles a transaction.\n @param splitOrderId The ID of the split order.\n @param orderId The ID of the order.\n @param liquidityProvider The address of the liquidity provider.\n @param settlePercent The percentage at which the transaction is settled.\n @param rebatePercent The percentage of the aggregator fee that is given back to the provider."},"eventSelector":"57c683de2e7c8263c7f57fd108416b9bdaa7a6e7f2e4e7102c3b6f9e37f1cc37","id":2217,"name":"OrderSettled","nameLocation":"1345:12:9","nodeType":"EventDefinition","parameters":{"id":2216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2207,"indexed":false,"mutability":"mutable","name":"splitOrderId","nameLocation":"1369:12:9","nodeType":"VariableDeclaration","scope":2217,"src":"1361:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2206,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1361:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2209,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1401:7:9","nodeType":"VariableDeclaration","scope":2217,"src":"1385:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2208,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1385:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2211,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1428:17:9","nodeType":"VariableDeclaration","scope":2217,"src":"1412:33:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2210,"name":"address","nodeType":"ElementaryTypeName","src":"1412:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2213,"indexed":false,"mutability":"mutable","name":"settlePercent","nameLocation":"1456:13:9","nodeType":"VariableDeclaration","scope":2217,"src":"1449:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2212,"name":"uint64","nodeType":"ElementaryTypeName","src":"1449:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2215,"indexed":false,"mutability":"mutable","name":"rebatePercent","nameLocation":"1480:13:9","nodeType":"VariableDeclaration","scope":2217,"src":"1473:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2214,"name":"uint64","nodeType":"ElementaryTypeName","src":"1473:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1357:139:9"},"src":"1339:158:9"},{"anonymous":false,"documentation":{"id":2218,"nodeType":"StructuredDocumentation","src":"1500:163:9","text":" @dev Emitted when an aggregator refunds a transaction.\n @param fee The fee deducted from the refund amount.\n @param orderId The ID of the order."},"eventSelector":"0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e","id":2224,"name":"OrderRefunded","nameLocation":"1671:13:9","nodeType":"EventDefinition","parameters":{"id":2223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2220,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"1693:3:9","nodeType":"VariableDeclaration","scope":2224,"src":"1685:11:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2219,"name":"uint256","nodeType":"ElementaryTypeName","src":"1685:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2222,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1714:7:9","nodeType":"VariableDeclaration","scope":2224,"src":"1698:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2221,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1698:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1684:38:9"},"src":"1665:58:9"},{"anonymous":false,"documentation":{"id":2225,"nodeType":"StructuredDocumentation","src":"1726:161:9","text":" @dev Emitted when the sender's fee is transferred.\n @param sender The address of the sender.\n @param amount The amount of the fee transferred."},"eventSelector":"44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c2501","id":2231,"name":"SenderFeeTransferred","nameLocation":"1895:20:9","nodeType":"EventDefinition","parameters":{"id":2230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1932:6:9","nodeType":"VariableDeclaration","scope":2231,"src":"1916:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2226,"name":"address","nodeType":"ElementaryTypeName","src":"1916:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2229,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"1956:6:9","nodeType":"VariableDeclaration","scope":2231,"src":"1940:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2228,"name":"uint256","nodeType":"ElementaryTypeName","src":"1940:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1915:48:9"},"src":"1889:75:9"},{"anonymous":false,"documentation":{"id":2232,"nodeType":"StructuredDocumentation","src":"1967:293:9","text":" @dev Emitted when a local transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param providerAmount The amount that goes to the provider.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4","id":2242,"name":"LocalTransferFeeSplit","nameLocation":"2268:21:9","nodeType":"EventDefinition","parameters":{"id":2241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2234,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2309:7:9","nodeType":"VariableDeclaration","scope":2242,"src":"2293:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2233,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2293:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2236,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"2328:12:9","nodeType":"VariableDeclaration","scope":2242,"src":"2320:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2235,"name":"uint256","nodeType":"ElementaryTypeName","src":"2320:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2238,"indexed":false,"mutability":"mutable","name":"providerAmount","nameLocation":"2352:14:9","nodeType":"VariableDeclaration","scope":2242,"src":"2344:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2237,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2240,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"2378:16:9","nodeType":"VariableDeclaration","scope":2242,"src":"2370:24:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2239,"name":"uint256","nodeType":"ElementaryTypeName","src":"2370:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2289:108:9"},"src":"2262:136:9"},{"anonymous":false,"documentation":{"id":2243,"nodeType":"StructuredDocumentation","src":"2401:227:9","text":" @dev Emitted when an FX transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a","id":2251,"name":"FxTransferFeeSplit","nameLocation":"2636:18:9","nodeType":"EventDefinition","parameters":{"id":2250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2245,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2674:7:9","nodeType":"VariableDeclaration","scope":2251,"src":"2658:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2244,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2658:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2247,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"2693:12:9","nodeType":"VariableDeclaration","scope":2251,"src":"2685:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2246,"name":"uint256","nodeType":"ElementaryTypeName","src":"2685:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2249,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"2717:16:9","nodeType":"VariableDeclaration","scope":2251,"src":"2709:24:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2248,"name":"uint256","nodeType":"ElementaryTypeName","src":"2709:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2654:82:9"},"src":"2630:107:9"},{"canonicalName":"IGateway.Order","documentation":{"id":2252,"nodeType":"StructuredDocumentation","src":"2925:592:9","text":" @dev Struct representing an order.\n @param sender The address of the sender.\n @param token The address of the token.\n @param senderFeeRecipient The address of the sender fee recipient.\n @param senderFee The fee to be paid to the sender fee recipient.\n @param protocolFee The protocol fee to be paid.\n @param isFulfilled Whether the order is fulfilled.\n @param isRefunded Whether the order is refunded.\n @param refundAddress The address to which the refund is made.\n @param currentBPS The current basis points.\n @param amount The amount of the order."},"id":2273,"members":[{"constant":false,"id":2254,"mutability":"mutable","name":"sender","nameLocation":"3544:6:9","nodeType":"VariableDeclaration","scope":2273,"src":"3536:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2253,"name":"address","nodeType":"ElementaryTypeName","src":"3536:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2256,"mutability":"mutable","name":"token","nameLocation":"3562:5:9","nodeType":"VariableDeclaration","scope":2273,"src":"3554:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2255,"name":"address","nodeType":"ElementaryTypeName","src":"3554:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2258,"mutability":"mutable","name":"senderFeeRecipient","nameLocation":"3579:18:9","nodeType":"VariableDeclaration","scope":2273,"src":"3571:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2257,"name":"address","nodeType":"ElementaryTypeName","src":"3571:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2260,"mutability":"mutable","name":"senderFee","nameLocation":"3609:9:9","nodeType":"VariableDeclaration","scope":2273,"src":"3601:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2259,"name":"uint256","nodeType":"ElementaryTypeName","src":"3601:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2262,"mutability":"mutable","name":"protocolFee","nameLocation":"3630:11:9","nodeType":"VariableDeclaration","scope":2273,"src":"3622:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2261,"name":"uint256","nodeType":"ElementaryTypeName","src":"3622:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2264,"mutability":"mutable","name":"isFulfilled","nameLocation":"3650:11:9","nodeType":"VariableDeclaration","scope":2273,"src":"3645:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2263,"name":"bool","nodeType":"ElementaryTypeName","src":"3645:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2266,"mutability":"mutable","name":"isRefunded","nameLocation":"3670:10:9","nodeType":"VariableDeclaration","scope":2273,"src":"3665:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2265,"name":"bool","nodeType":"ElementaryTypeName","src":"3665:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2268,"mutability":"mutable","name":"refundAddress","nameLocation":"3692:13:9","nodeType":"VariableDeclaration","scope":2273,"src":"3684:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2267,"name":"address","nodeType":"ElementaryTypeName","src":"3684:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2270,"mutability":"mutable","name":"currentBPS","nameLocation":"3716:10:9","nodeType":"VariableDeclaration","scope":2273,"src":"3709:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2269,"name":"uint96","nodeType":"ElementaryTypeName","src":"3709:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2272,"mutability":"mutable","name":"amount","nameLocation":"3738:6:9","nodeType":"VariableDeclaration","scope":2273,"src":"3730:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2271,"name":"uint256","nodeType":"ElementaryTypeName","src":"3730:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Order","nameLocation":"3526:5:9","nodeType":"StructDefinition","scope":2337,"src":"3519:229:9","visibility":"public"},{"documentation":{"id":2274,"nodeType":"StructuredDocumentation","src":"3943:964:9","text":" @notice Locks the sender's amount of token into Gateway.\n @dev Requirements:\n - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n - `_token` must be an acceptable token. See {isTokenSupported}.\n - `amount` must be greater than minimum.\n - `_refundAddress` refund address must not be zero address.\n @param _token The address of the token.\n @param _amount The amount in the decimal of `_token` to be locked.\n @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n @param messageHash The hash of the message.\n @return _orderId The ID of the order."},"functionSelector":"809804f7","id":2293,"implemented":false,"kind":"function","modifiers":[],"name":"createOrder","nameLocation":"4918:11:9","nodeType":"FunctionDefinition","parameters":{"id":2289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2276,"mutability":"mutable","name":"_token","nameLocation":"4941:6:9","nodeType":"VariableDeclaration","scope":2293,"src":"4933:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2275,"name":"address","nodeType":"ElementaryTypeName","src":"4933:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2278,"mutability":"mutable","name":"_amount","nameLocation":"4959:7:9","nodeType":"VariableDeclaration","scope":2293,"src":"4951:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2277,"name":"uint256","nodeType":"ElementaryTypeName","src":"4951:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2280,"mutability":"mutable","name":"_rate","nameLocation":"4977:5:9","nodeType":"VariableDeclaration","scope":2293,"src":"4970:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2279,"name":"uint96","nodeType":"ElementaryTypeName","src":"4970:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2282,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"4994:19:9","nodeType":"VariableDeclaration","scope":2293,"src":"4986:27:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2281,"name":"address","nodeType":"ElementaryTypeName","src":"4986:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2284,"mutability":"mutable","name":"_senderFee","nameLocation":"5025:10:9","nodeType":"VariableDeclaration","scope":2293,"src":"5017:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2283,"name":"uint256","nodeType":"ElementaryTypeName","src":"5017:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2286,"mutability":"mutable","name":"_refundAddress","nameLocation":"5047:14:9","nodeType":"VariableDeclaration","scope":2293,"src":"5039:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2285,"name":"address","nodeType":"ElementaryTypeName","src":"5039:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2288,"mutability":"mutable","name":"messageHash","nameLocation":"5081:11:9","nodeType":"VariableDeclaration","scope":2293,"src":"5065:27:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2287,"name":"string","nodeType":"ElementaryTypeName","src":"5065:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4929:166:9"},"returnParameters":{"id":2292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2291,"mutability":"mutable","name":"_orderId","nameLocation":"5122:8:9","nodeType":"VariableDeclaration","scope":2293,"src":"5114:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2290,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5114:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5113:18:9"},"scope":2337,"src":"4909:223:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2294,"nodeType":"StructuredDocumentation","src":"5135:465:9","text":" @notice Settles a transaction and distributes rewards accordingly.\n @param _splitOrderId The ID of the split order.\n @param _orderId The ID of the transaction.\n @param _liquidityProvider The address of the liquidity provider.\n @param _settlePercent The rate at which the transaction is settled.\n @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n @return bool the settlement is successful."},"functionSelector":"df51b359","id":2309,"implemented":false,"kind":"function","modifiers":[],"name":"settle","nameLocation":"5611:6:9","nodeType":"FunctionDefinition","parameters":{"id":2305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2296,"mutability":"mutable","name":"_splitOrderId","nameLocation":"5629:13:9","nodeType":"VariableDeclaration","scope":2309,"src":"5621:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2295,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5621:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2298,"mutability":"mutable","name":"_orderId","nameLocation":"5654:8:9","nodeType":"VariableDeclaration","scope":2309,"src":"5646:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2297,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5646:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2300,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"5674:18:9","nodeType":"VariableDeclaration","scope":2309,"src":"5666:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2299,"name":"address","nodeType":"ElementaryTypeName","src":"5666:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2302,"mutability":"mutable","name":"_settlePercent","nameLocation":"5703:14:9","nodeType":"VariableDeclaration","scope":2309,"src":"5696:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2301,"name":"uint64","nodeType":"ElementaryTypeName","src":"5696:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2304,"mutability":"mutable","name":"_rebatePercent","nameLocation":"5728:14:9","nodeType":"VariableDeclaration","scope":2309,"src":"5721:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2303,"name":"uint64","nodeType":"ElementaryTypeName","src":"5721:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5617:128:9"},"returnParameters":{"id":2308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2307,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2309,"src":"5764:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2306,"name":"bool","nodeType":"ElementaryTypeName","src":"5764:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5763:6:9"},"scope":2337,"src":"5602:168:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2310,"nodeType":"StructuredDocumentation","src":"5773:299:9","text":" @notice Refunds to the specified refundable address.\n @dev Requirements:\n - Only aggregators can call this function.\n @param _fee The amount to be deducted from the amount to be refunded.\n @param _orderId The ID of the transaction.\n @return bool the refund is successful."},"functionSelector":"71eedb88","id":2319,"implemented":false,"kind":"function","modifiers":[],"name":"refund","nameLocation":"6083:6:9","nodeType":"FunctionDefinition","parameters":{"id":2315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2312,"mutability":"mutable","name":"_fee","nameLocation":"6098:4:9","nodeType":"VariableDeclaration","scope":2319,"src":"6090:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2311,"name":"uint256","nodeType":"ElementaryTypeName","src":"6090:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2314,"mutability":"mutable","name":"_orderId","nameLocation":"6112:8:9","nodeType":"VariableDeclaration","scope":2319,"src":"6104:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2313,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6104:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6089:32:9"},"returnParameters":{"id":2318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2317,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2319,"src":"6140:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2316,"name":"bool","nodeType":"ElementaryTypeName","src":"6140:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6139:6:9"},"scope":2337,"src":"6074:72:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2320,"nodeType":"StructuredDocumentation","src":"6149:157:9","text":" @notice Checks if a token is supported by Gateway.\n @param _token The address of the token to check.\n @return bool the token is supported."},"functionSelector":"75151b63","id":2327,"implemented":false,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"6317:16:9","nodeType":"FunctionDefinition","parameters":{"id":2323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2322,"mutability":"mutable","name":"_token","nameLocation":"6342:6:9","nodeType":"VariableDeclaration","scope":2327,"src":"6334:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2321,"name":"address","nodeType":"ElementaryTypeName","src":"6334:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6333:16:9"},"returnParameters":{"id":2326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2325,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2327,"src":"6373:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2324,"name":"bool","nodeType":"ElementaryTypeName","src":"6373:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6372:6:9"},"scope":2337,"src":"6308:71:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2328,"nodeType":"StructuredDocumentation","src":"6382:128:9","text":" @notice Gets the details of an order.\n @param _orderId The ID of the order.\n @return Order The order details."},"functionSelector":"768c6ec0","id":2336,"implemented":false,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"6521:12:9","nodeType":"FunctionDefinition","parameters":{"id":2331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2330,"mutability":"mutable","name":"_orderId","nameLocation":"6542:8:9","nodeType":"VariableDeclaration","scope":2336,"src":"6534:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2329,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6534:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6533:18:9"},"returnParameters":{"id":2335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2334,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2336,"src":"6575:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":2333,"nodeType":"UserDefinedTypeName","pathNode":{"id":2332,"name":"Order","nameLocations":["6575:5:9"],"nodeType":"IdentifierPath","referencedDeclaration":2273,"src":"6575:5:9"},"referencedDeclaration":2273,"src":"6575:5:9","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2273_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"6574:14:9"},"scope":2337,"src":"6512:77:9","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2338,"src":"211:6380:9","usedErrors":[],"usedEvents":[2204,2217,2224,2231,2242,2251]}],"src":"39:6553:9"},"id":9}},"contracts":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"Ownable2StepUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"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."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"acceptOwnership()":"79ba5097","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"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. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":\"Ownable2StepUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"OwnableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"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. By default, the owner account will be the one that deploys the contract. 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.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"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."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"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\":\"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. By default, the owner account will be the one that deploys the contract. 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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":\"OwnableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"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] ```","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{},"stateVariables":{"_initialized":{"custom:oz-retyped-from":"bool","details":"Indicates that the contract has been initialized."},"_initializing":{"details":"Indicates that the contract is in the process of being initialized."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"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] ```\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_initialized\":{\"custom:oz-retyped-from\":\"bool\",\"details\":\"Indicates that the contract has been initialized.\"},\"_initializing\":{\"details\":\"Indicates that the contract is in the process of being initialized.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol:Initializable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol:Initializable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"}],"types":{"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"PausableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"devdoc":{"details":"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"paused()":{"details":"Returns true if the contract is paused, and false otherwise."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"paused()":"5c975abb"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":\"PausableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":430,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_paused","offset":0,"slot":"51","type":"t_bool"},{"astId":535,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"}],"types":{"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"AddressUpgradeable":{"abi":[],"devdoc":{"details":"Collection of functions related to the address type","kind":"dev","methods":{},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220f6ddb883a482100c4d67fab9837ea78e63b163c19355bca0994abe06e37084bc64736f6c63430008140033","opcodes":"PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xDD 0xB8 DUP4 LOG4 DUP3 LT 0xC 0x4D PUSH8 0xFAB9837EA78E63B1 PUSH4 0xC19355BC LOG0 SWAP10 0x4A 0xBE MOD 0xE3 PUSH17 0x84BC64736F6C6343000814003300000000 ","sourceMap":"194:9180:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220f6ddb883a482100c4d67fab9837ea78e63b163c19355bca0994abe06e37084bc64736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xDD 0xB8 DUP4 LOG4 DUP3 LT 0xC 0x4D PUSH8 0xFAB9837EA78E63B1 PUSH4 0xC19355BC LOG0 SWAP10 0x4A 0xBE MOD 0xE3 PUSH17 0x84BC64736F6C6343000814003300000000 ","sourceMap":"194:9180:4:-:0;;;;;;;;"},"gasEstimates":{"creation":{"codeDepositCost":"17000","executionCost":"92","totalCost":"17092"},"internal":{"_revert(bytes memory,string memory)":"infinite","functionCall(address,bytes memory)":"infinite","functionCall(address,bytes memory,string memory)":"infinite","functionCallWithValue(address,bytes memory,uint256)":"infinite","functionCallWithValue(address,bytes memory,uint256,string memory)":"infinite","functionDelegateCall(address,bytes memory)":"infinite","functionDelegateCall(address,bytes memory,string memory)":"infinite","functionStaticCall(address,bytes memory)":"infinite","functionStaticCall(address,bytes memory,string memory)":"infinite","isContract(address)":"infinite","sendValue(address payable,uint256)":"infinite","verifyCallResult(bool,bytes memory,string memory)":"infinite","verifyCallResultFromTarget(address,bool,bytes memory,string memory)":"infinite"}},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":\"AddressUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"}],"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.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"}],"types":{"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Interface of the ERC20 standard as defined in the EIP.","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."},"approve(address,uint256)":{"details":"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."},"balanceOf(address)":{"details":"Returns the amount of tokens owned by `account`."},"totalSupply()":{"details":"Returns the amount of tokens in existence."},"transfer(address,uint256)":{"details":"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."},"transferFrom(address,address,uint256)":{"details":"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/Gateway.sol":{"Gateway":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"FxTransferFeeSplit(bytes32,uint256,uint256)":{"details":"Emitted when an FX transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","senderAmount":"The amount that goes to the sender."}},"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)":{"details":"Emitted when a local transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","providerAmount":"The amount that goes to the provider.","senderAmount":"The amount that goes to the sender."}},"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint64,uint64)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","rebatePercent":"The percentage of the aggregator fee that is given back to the provider.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"constructor":{"custom:oz-upgrades-unsafe-allow":"constructor"},"createOrder(address,uint256,uint96,address,uint256,address,string)":{"details":"See {createOrder-IGateway}. "},"getOrderInfo(bytes32)":{"details":"See {getOrderInfo-IGateway}. "},"getTokenFeeSettings(address)":{"details":"Gets token-specific fee settings.","params":{"token":"The token address to query."},"returns":{"_0":"TokenFeeSettings struct containing all fee settings for the token."}},"initialize()":{"details":"Initialize function."},"isTokenSupported(address)":{"details":"See {isTokenSupported-IGateway}. "},"owner()":{"details":"Returns the address of the current owner."},"pause()":{"details":"Pause the contract."},"paused()":{"details":"Returns true if the contract is paused, and false otherwise."},"pendingOwner()":{"details":"Returns the address of the pending owner."},"refund(uint256,bytes32)":{"details":"See {refund-IGateway}. "},"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."},"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":{"details":"Sets token-specific fee settings for stablecoins.","params":{"providerToAggregator":"Percentage of provider's share that goes to aggregator (local mode).","providerToAggregatorFx":"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.","senderToAggregator":"Percentage of sender fee that goes to aggregator (fx mode).","senderToProvider":"Percentage of sender fee that goes to provider (local mode).","token":"The token address to configure."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"settle(bytes32,bytes32,address,uint64,uint64)":{"details":"See {settle-IGateway}. "},"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."},"unpause()":{"details":"Unpause the contract."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}}},"title":"Gateway","version":1},"evm":{"bytecode":{"functionDebugData":{"@_1036":{"entryPoint":null,"id":1036,"parameterSlots":0,"returnSlots":0},"@_disableInitializers_389":{"entryPoint":39,"id":389,"parameterSlots":0,"returnSlots":0},"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack":{"entryPoint":328,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":410,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":366,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":427,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":234,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":398,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a":{"entryPoint":250,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:1638:10","statements":[{"body":{"nodeType":"YulBlock","src":"103:73:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"120:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"125:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"113:6:10"},"nodeType":"YulFunctionCall","src":"113:19:10"},"nodeType":"YulExpressionStatement","src":"113:19:10"},{"nodeType":"YulAssignment","src":"141:29:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"160:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"165:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"156:3:10"},"nodeType":"YulFunctionCall","src":"156:14:10"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"141:11:10"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"75:3:10","type":""},{"name":"length","nodeType":"YulTypedName","src":"80:6:10","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"91:11:10","type":""}],"src":"7:169:10"},{"body":{"nodeType":"YulBlock","src":"288:120:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"310:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"318:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"306:3:10"},"nodeType":"YulFunctionCall","src":"306:14:10"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469","kind":"string","nodeType":"YulLiteral","src":"322:34:10","type":"","value":"Initializable: contract is initi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"299:6:10"},"nodeType":"YulFunctionCall","src":"299:58:10"},"nodeType":"YulExpressionStatement","src":"299:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"378:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"386:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"374:3:10"},"nodeType":"YulFunctionCall","src":"374:15:10"},{"hexValue":"616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"391:9:10","type":"","value":"alizing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"367:6:10"},"nodeType":"YulFunctionCall","src":"367:34:10"},"nodeType":"YulExpressionStatement","src":"367:34:10"}]},"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"280:6:10","type":""}],"src":"182:226:10"},{"body":{"nodeType":"YulBlock","src":"560:220:10","statements":[{"nodeType":"YulAssignment","src":"570:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"636:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"641:2:10","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"577:58:10"},"nodeType":"YulFunctionCall","src":"577:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"570:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"742:3:10"}],"functionName":{"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulIdentifier","src":"653:88:10"},"nodeType":"YulFunctionCall","src":"653:93:10"},"nodeType":"YulExpressionStatement","src":"653:93:10"},{"nodeType":"YulAssignment","src":"755:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"766:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"771:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"762:3:10"},"nodeType":"YulFunctionCall","src":"762:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"755:3:10"}]}]},"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"548:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"556:3:10","type":""}],"src":"414:366:10"},{"body":{"nodeType":"YulBlock","src":"957:248:10","statements":[{"nodeType":"YulAssignment","src":"967:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"979:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"990:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"975:3:10"},"nodeType":"YulFunctionCall","src":"975:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"967:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1014:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1025:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1010:3:10"},"nodeType":"YulFunctionCall","src":"1010:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1033:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1039:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1029:3:10"},"nodeType":"YulFunctionCall","src":"1029:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1003:6:10"},"nodeType":"YulFunctionCall","src":"1003:47:10"},"nodeType":"YulExpressionStatement","src":"1003:47:10"},{"nodeType":"YulAssignment","src":"1059:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1193:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1067:124:10"},"nodeType":"YulFunctionCall","src":"1067:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1059:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"937:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"952:4:10","type":""}],"src":"786:419:10"},{"body":{"nodeType":"YulBlock","src":"1254:43:10","statements":[{"nodeType":"YulAssignment","src":"1264:27:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1279:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"1286:4:10","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1275:3:10"},"nodeType":"YulFunctionCall","src":"1275:16:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1264:7:10"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1236:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1246:7:10","type":""}],"src":"1211:86:10"},{"body":{"nodeType":"YulBlock","src":"1364:51:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1381:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1402:5:10"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"1386:15:10"},"nodeType":"YulFunctionCall","src":"1386:22:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1374:6:10"},"nodeType":"YulFunctionCall","src":"1374:35:10"},"nodeType":"YulExpressionStatement","src":"1374:35:10"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1352:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1359:3:10","type":""}],"src":"1303:112:10"},{"body":{"nodeType":"YulBlock","src":"1515:120:10","statements":[{"nodeType":"YulAssignment","src":"1525:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1537:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1548:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1533:3:10"},"nodeType":"YulFunctionCall","src":"1533:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1525:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1601:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1614:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1625:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1610:3:10"},"nodeType":"YulFunctionCall","src":"1610:17:10"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"1561:39:10"},"nodeType":"YulFunctionCall","src":"1561:67:10"},"nodeType":"YulExpressionStatement","src":"1561:67:10"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1487:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1499:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1510:4:10","type":""}],"src":"1421:214:10"}]},"contents":"{\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is initi\")\n\n mstore(add(memPtr, 32), \"alizing\")\n\n }\n\n function abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n","id":10,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b50620000216200002760201b60201c565b620001c6565b5f60019054906101000a900460ff161562000079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000070906200016e565b60405180910390fd5b60ff80165f8054906101000a900460ff1660ff1614620000e85760ff5f806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000df9190620001ab565b60405180910390a15b565b5f82825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e6974695f8201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b5f62000156602783620000ea565b91506200016382620000fa565b604082019050919050565b5f6020820190508181035f830152620001878162000148565b9050919050565b5f60ff82169050919050565b620001a5816200018e565b82525050565b5f602082019050620001c05f8301846200019a565b92915050565b6148fb80620001d45f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638129fc1c116100a05780638da5cb5b1161006f5780638da5cb5b14610290578063cd992400146102ae578063df51b359146102ca578063e30c3978146102fa578063f2fde38b1461031857610114565b80638129fc1c146102305780638456cb591461023a578063898861b0146102445780638bfa05491461026057610114565b806371eedb88116100e757806371eedb881461016657806375151b6314610196578063768c6ec0146101c657806379ba5097146101f6578063809804f71461020057610114565b80633f4ba83a1461011857806340ebc677146101225780635c975abb1461013e578063715018a61461015c575b5f80fd5b610120610334565b005b61013c6004803603810190610137919061313c565b610346565b005b61014661060a565b6040516101539190613194565b60405180910390f35b61016461061f565b005b610180600480360381019061017b91906131e0565b610632565b60405161018d9190613194565b60405180910390f35b6101b060048036038101906101ab919061321e565b610a8d565b6040516101bd9190613194565b60405180910390f35b6101e060048036038101906101db9190613249565b610ae5565b6040516101ed9190613391565b60405180910390f35b6101fe610cf5565b005b61021a60048036038101906102159190613436565b610d81565b6040516102279190613502565b60405180910390f35b610238611408565b005b610242611552565b005b61025e6004803603810190610259919061351b565b611564565b005b61027a6004803603810190610275919061321e565b6117e2565b60405161028791906135e5565b60405180910390f35b610298611860565b6040516102a5919061360d565b60405180910390f35b6102c860048036038101906102c39190613626565b611888565b005b6102e460048036038101906102df91906136b3565b611a0a565b6040516102f19190613194565b60405180910390f35b6103026120b3565b60405161030f919061360d565b60405180910390f35b610332600480360381019061032d919061321e565b6120db565b005b61033c612187565b610344612205565b565b61034e612187565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b390613784565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036104be578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046b90613812565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506105ba565b7f61676772656761746f720000000000000000000000000000000000000000000083036105b9578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056b906138a0565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610605578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b5f60cd5f9054906101000a900460ff16905090565b610627612187565b6106305f612266565b565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b990613908565b60405180910390fd5b60ff5f8381526020019081526020015f206005015f9054906101000a900460ff1615610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90613970565b60405180910390fd5b60ff5f8381526020019081526020015f2060050160019054906101000a900460ff1615610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906139d8565b60405180910390fd5b8260ff5f8481526020019081526020015f206004015410156107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390613a40565b60405180910390fd5b5f8311156108b65760ff5f8381526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610874929190613a6d565b6020604051808303815f875af1158015610890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b49190613abe565b505b600160ff5f8481526020019081526020015f2060050160016101000a81548160ff0219169083151502179055505f60ff5f8481526020019081526020015f206006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f8360ff5f8581526020019081526020015f20600701546109469190613b16565b905060ff5f8481526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8681526020019081526020015f2060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660ff5f8781526020019081526020015f2060030154846109ec9190613b49565b6040518363ffffffff1660e01b8152600401610a09929190613a6d565b6020604051808303815f875af1158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190613abe565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610a7a9190613b7c565b60405180910390a2600191505092915050565b5f6001609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610adc5760019050610ae0565b5f90505b919050565b610aed612fd0565b60ff5f8381526020019081526020015f20604051806101400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820154815260200160048201548152602001600582015f9054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600682015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b5f610cfe612296565b90508073ffffffffffffffffffffffffffffffffffffffff16610d1f6120b3565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613c05565b60405180910390fd5b610d7e81612266565b50565b5f610d8a61229d565b610d9789898689896122e7565b5f8383905003610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613c6d565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888c610e069190613b49565b6040518463ffffffff1660e01b8152600401610e2493929190613c8b565b6020604051808303815f875af1158015610e40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e649190613abe565b506101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190610eb390613cc0565b9190505550336101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205446604051602001610f0b93929190613d07565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff1660ff5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613d86565b60405180910390fd5b5f6064886bffffffffffffffffffffffff1603611024575f90505f861161101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613dee565b60405180910390fd5b6110fd565b5f609b5f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f8160600151116110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390613e56565b60405180910390fd5b60975481606001518b6110ef9190613e74565b6110f99190613ee2565b9150505b6040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018b73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020015f151581526020015f151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff1681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610100820151816006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a6040516113f3959493929190613f95565b60405180910390a45098975050505050505050565b5f8060019054906101000a900460ff16159050808015611437575060015f8054906101000a900460ff1660ff16105b80611463575061144630612494565b158015611462575060015f8054906101000a900460ff1660ff16145b5b6114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614051565b60405180910390fd5b60015f806101000a81548160ff021916908360ff16021790555080156114dd5760015f60016101000a81548160ff0219169083151502179055505b620186a06097819055506114ef6124b6565b6114f761250e565b801561154f575f8060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161154691906140b4565b60405180910390a15b50565b61155a612187565b611562612566565b565b61156c612187565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390614117565b60405180910390fd5b609754841115611631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611628906141a5565b60405180910390fd5b609754831115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614233565b60405180910390fd5b6097548211156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906142c1565b60405180910390fd5b609754811115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061434f565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516117d3949392919061436d565b60405180910390a25050505050565b6117ea613083565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611890612187565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613784565b60405180910390fd5b600181148061190d5750600281145b61194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906143fa565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611a055780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516119fc9190613b7c565b60405180910390a35b505050565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190613908565b60405180910390fd5b60ff5f8681526020019081526020015f206005015f9054906101000a900460ff1615611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613970565b60405180910390fd5b60ff5f8681526020019081526020015f2060050160019054906101000a900460ff1615611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906139d8565b60405180910390fd5b6097548267ffffffffffffffff161115611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614462565b60405180910390fd5b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f60ff5f8881526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690508467ffffffffffffffff1660ff5f8981526020019081526020015f206006015f8282829054906101000a90046bffffffffffffffffffffffff16611c649190614480565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f60ff5f8981526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d4657600160ff5f8981526020019081526020015f206005015f6101000a81548160ff0219169083151502179055505f60ff5f8981526020019081526020015f206003015414158015611d3657505f60ff5f8981526020019081526020015f206004015414155b15611d4557611d44876125c8565b5b5b5f60ff5f8981526020019081526020015f206003015414158015611d7d57505f60ff5f8981526020019081526020015f2060040154145b15611d8e57611d8d87878761293e565b5b5f818667ffffffffffffffff1660ff5f8b81526020019081526020015f2060070154611dba9190613e74565b611dc49190613ee2565b90508060ff5f8a81526020019081526020015f206007015f828254611de99190613b16565b925050819055505f60ff5f8a81526020019081526020015f206004015414611fd4575f609b5f60ff5f8c81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f609754826060015184611ec49190613e74565b611ece9190613ee2565b90508083611edc9190613b16565b92505f8767ffffffffffffffff1614611f33575f6097548867ffffffffffffffff1683611f099190613e74565b611f139190613ee2565b90508082611f219190613b16565b91508084611f2f9190613b49565b9350505b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611f90929190613a6d565b6020604051808303815f875af1158015611fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd09190613abe565b5050505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb88836040518363ffffffff1660e01b815260040161200f929190613a6d565b6020604051808303815f875af115801561202b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204f9190613abe565b508673ffffffffffffffffffffffffffffffffffffffff16887f57c683de2e7c8263c7f57fd108416b9bdaa7a6e7f2e4e7102c3b6f9e37f1cc378b898960405161209b939291906144ce565b60405180910390a36001935050505095945050505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120e3612187565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16612142611860565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61218f612296565b73ffffffffffffffffffffffffffffffffffffffff166121ad611860565b73ffffffffffffffffffffffffffffffffffffffff1614612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa9061454d565b60405180910390fd5b565b61220d612dfb565b5f60cd5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61224f612296565b60405161225c919061360d565b60405180910390a1565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561229381612e44565b50565b5f33905090565b6122a561060a565b156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906145b5565b60405180910390fd5b565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e9061461d565b60405180910390fd5b5f84036123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614685565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e906146ed565b60405180910390fd5b5f811461248d575f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614755565b60405180910390fd5b5b5050505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f60019054906101000a900460ff16612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb906147e3565b60405180910390fd5b61250c612f07565b565b5f60019054906101000a900460ff1661255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906147e3565b60405180910390fd5b612564612f67565b565b61256e61229d565b600160cd5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125b1612296565b6040516125be919061360d565b60405180910390a1565b5f609b5f60ff5f8581526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8481526020019081526020015f206003015490505f609754836040015160975461269b9190613b16565b836126a69190613e74565b6126b09190613ee2565b90505f81836126bf9190613b16565b90505f8211156127ac5760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8881526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161276a929190613a6d565b6020604051808303815f875af1158015612786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127aa9190613abe565b505b5f8111156128865760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612844929190613a6d565b6020604051808303815f875af1158015612860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128849190613abe565b505b8160ff5f8781526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3847f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a838360405161292f929190614801565b60405180910390a25050505050565b5f609b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8681526020019081526020015f206003015490505f609754835f015183612a0e9190613e74565b612a189190613ee2565b90505f6097548567ffffffffffffffff1683612a349190613e74565b612a3e9190613ee2565b90505f609754856020015183612a549190613e74565b612a5e9190613ee2565b90505f8385612a6d9190613b16565b90505f8114158015612ab757505f60ff5f8b81526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16145b15612b9f5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8c81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612b5d929190613a6d565b6020604051808303815f875af1158015612b79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b9d9190613abe565b505b5f8214612c785760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612c36929190613a6d565b6020604051808303815f875af1158015612c52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c769190613abe565b505b8183612c849190613b16565b92505f8314612d3d5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb89856040518363ffffffff1660e01b8152600401612cfb929190613a6d565b6020604051808303815f875af1158015612d17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d3b9190613abe565b505b8060ff5f8b81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3887f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4828585604051612de893929190614828565b60405180910390a2505050505050505050565b612e0361060a565b612e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e39906148a7565b60405180910390fd5b565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60019054906101000a900460ff16612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c906147e3565b60405180910390fd5b612f65612f60612296565b612266565b565b5f60019054906101000a900460ff16612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac906147e3565b60405180910390fd5b5f60cd5f6101000a81548160ff021916908315150217905550565b6040518061014001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f151581526020015f151581526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f6bffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f819050919050565b6130c1816130af565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61310b826130e2565b9050919050565b61311b81613101565b8114613125575f80fd5b50565b5f8135905061313681613112565b92915050565b5f8060408385031215613152576131516130a7565b5b5f61315f858286016130ce565b925050602061317085828601613128565b9150509250929050565b5f8115159050919050565b61318e8161317a565b82525050565b5f6020820190506131a75f830184613185565b92915050565b5f819050919050565b6131bf816131ad565b81146131c9575f80fd5b50565b5f813590506131da816131b6565b92915050565b5f80604083850312156131f6576131f56130a7565b5b5f613203858286016131cc565b9250506020613214858286016130ce565b9150509250929050565b5f60208284031215613233576132326130a7565b5b5f61324084828501613128565b91505092915050565b5f6020828403121561325e5761325d6130a7565b5b5f61326b848285016130ce565b91505092915050565b61327d81613101565b82525050565b61328c816131ad565b82525050565b61329b8161317a565b82525050565b5f6bffffffffffffffffffffffff82169050919050565b6132c1816132a1565b82525050565b61014082015f8201516132dc5f850182613274565b5060208201516132ef6020850182613274565b5060408201516133026040850182613274565b5060608201516133156060850182613283565b5060808201516133286080850182613283565b5060a082015161333b60a0850182613292565b5060c082015161334e60c0850182613292565b5060e082015161336160e0850182613274565b506101008201516133766101008501826132b8565b5061012082015161338b610120850182613283565b50505050565b5f610140820190506133a55f8301846132c7565b92915050565b6133b4816132a1565b81146133be575f80fd5b50565b5f813590506133cf816133ab565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133f6576133f56133d5565b5b8235905067ffffffffffffffff811115613413576134126133d9565b5b60208301915083600182028301111561342f5761342e6133dd565b5b9250929050565b5f805f805f805f8060e0898b031215613452576134516130a7565b5b5f61345f8b828c01613128565b98505060206134708b828c016131cc565b97505060406134818b828c016133c1565b96505060606134928b828c01613128565b95505060806134a38b828c016131cc565b94505060a06134b48b828c01613128565b93505060c089013567ffffffffffffffff8111156134d5576134d46130ab565b5b6134e18b828c016133e1565b92509250509295985092959890939650565b6134fc816130af565b82525050565b5f6020820190506135155f8301846134f3565b92915050565b5f805f805f60a08688031215613534576135336130a7565b5b5f61354188828901613128565b9550506020613552888289016131cc565b9450506040613563888289016131cc565b9350506060613574888289016131cc565b9250506080613585888289016131cc565b9150509295509295909350565b608082015f8201516135a65f850182613283565b5060208201516135b96020850182613283565b5060408201516135cc6040850182613283565b5060608201516135df6060850182613283565b50505050565b5f6080820190506135f85f830184613592565b92915050565b61360781613101565b82525050565b5f6020820190506136205f8301846135fe565b92915050565b5f805f6060848603121561363d5761363c6130a7565b5b5f61364a868287016130ce565b935050602061365b86828701613128565b925050604061366c868287016131cc565b9150509250925092565b5f67ffffffffffffffff82169050919050565b61369281613676565b811461369c575f80fd5b50565b5f813590506136ad81613689565b92915050565b5f805f805f60a086880312156136cc576136cb6130a7565b5b5f6136d9888289016130ce565b95505060206136ea888289016130ce565b94505060406136fb88828901613128565b935050606061370c8882890161369f565b925050608061371d8882890161369f565b9150509295509295909350565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f61376e60158361372a565b91506137798261373a565b602082019050919050565b5f6020820190508181035f83015261379b81613762565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f6137fc60258361372a565b9150613807826137a2565b604082019050919050565b5f6020820190508181035f830152613829816137f0565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f61388a60278361372a565b915061389582613830565b604082019050919050565b5f6020820190508181035f8301526138b78161387e565b9050919050565b7f4f6e6c7941676772656761746f720000000000000000000000000000000000005f82015250565b5f6138f2600e8361372a565b91506138fd826138be565b602082019050919050565b5f6020820190508181035f83015261391f816138e6565b9050919050565b7f4f7264657246756c66696c6c65640000000000000000000000000000000000005f82015250565b5f61395a600e8361372a565b915061396582613926565b602082019050919050565b5f6020820190508181035f8301526139878161394e565b9050919050565b7f4f72646572526566756e646564000000000000000000000000000000000000005f82015250565b5f6139c2600d8361372a565b91506139cd8261398e565b602082019050919050565b5f6020820190508181035f8301526139ef816139b6565b9050919050565b7f4665654578636565647350726f746f636f6c46656500000000000000000000005f82015250565b5f613a2a60158361372a565b9150613a35826139f6565b602082019050919050565b5f6020820190508181035f830152613a5781613a1e565b9050919050565b613a67816131ad565b82525050565b5f604082019050613a805f8301856135fe565b613a8d6020830184613a5e565b9392505050565b613a9d8161317a565b8114613aa7575f80fd5b50565b5f81519050613ab881613a94565b92915050565b5f60208284031215613ad357613ad26130a7565b5b5f613ae084828501613aaa565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b20826131ad565b9150613b2b836131ad565b9250828203905081811115613b4357613b42613ae9565b5b92915050565b5f613b53826131ad565b9150613b5e836131ad565b9250828201905080821115613b7657613b75613ae9565b5b92915050565b5f602082019050613b8f5f830184613a5e565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613bef60298361372a565b9150613bfa82613b95565b604082019050919050565b5f6020820190508181035f830152613c1c81613be3565b9050919050565b7f496e76616c69644d6573736167654861736800000000000000000000000000005f82015250565b5f613c5760128361372a565b9150613c6282613c23565b602082019050919050565b5f6020820190508181035f830152613c8481613c4b565b9050919050565b5f606082019050613c9e5f8301866135fe565b613cab60208301856135fe565b613cb86040830184613a5e565b949350505050565b5f613cca826131ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cfc57613cfb613ae9565b5b600182019050919050565b5f606082019050613d1a5f8301866135fe565b613d276020830185613a5e565b613d346040830184613a5e565b949350505050565b7f4f72646572416c726561647945786973747300000000000000000000000000005f82015250565b5f613d7060128361372a565b9150613d7b82613d3c565b602082019050919050565b5f6020820190508181035f830152613d9d81613d64565b9050919050565b7f53656e64657246656549735a65726f00000000000000000000000000000000005f82015250565b5f613dd8600f8361372a565b9150613de382613da4565b602082019050919050565b5f6020820190508181035f830152613e0581613dcc565b9050919050565b7f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000005f82015250565b5f613e40601d8361372a565b9150613e4b82613e0c565b602082019050919050565b5f6020820190508181035f830152613e6d81613e34565b9050919050565b5f613e7e826131ad565b9150613e89836131ad565b9250828202613e97816131ad565b91508282048414831517613eae57613ead613ae9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613eec826131ad565b9150613ef7836131ad565b925082613f0757613f06613eb5565b5b828204905092915050565b5f819050919050565b5f613f35613f30613f2b846132a1565b613f12565b6131ad565b9050919050565b613f4581613f1b565b82525050565b828183375f83830152505050565b5f601f19601f8301169050919050565b5f613f74838561372a565b9350613f81838584613f4b565b613f8a83613f59565b840190509392505050565b5f608082019050613fa85f830188613a5e565b613fb560208301876134f3565b613fc26040830186613f3c565b8181036060830152613fd5818486613f69565b90509695505050505050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f61403b602e8361372a565b915061404682613fe1565b604082019050919050565b5f6020820190508181035f8301526140688161402f565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f61409e6140996140948461406f565b613f12565b614078565b9050919050565b6140ae81614084565b82525050565b5f6020820190506140c75f8301846140a5565b92915050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f614101601c8361372a565b915061410c826140cd565b602082019050919050565b5f6020820190508181035f83015261412e816140f5565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f61418f60238361372a565b915061419a82614135565b604082019050919050565b5f6020820190508181035f8301526141bc81614183565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f61421d60278361372a565b9150614228826141c3565b604082019050919050565b5f6020820190508181035f83015261424a81614211565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f6142ab60258361372a565b91506142b682614251565b604082019050919050565b5f6020820190508181035f8301526142d88161429f565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f614339602a8361372a565b9150614344826142df565b604082019050919050565b5f6020820190508181035f8301526143668161432d565b9050919050565b5f6080820190506143805f830187613a5e565b61438d6020830186613a5e565b61439a6040830185613a5e565b6143a76060830184613a5e565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6143e460178361372a565b91506143ef826143b0565b602082019050919050565b5f6020820190508181035f830152614411816143d8565b9050919050565b7f496e76616c696452656261746550657263656e740000000000000000000000005f82015250565b5f61444c60148361372a565b915061445782614418565b602082019050919050565b5f6020820190508181035f83015261447981614440565b9050919050565b5f61448a826132a1565b9150614495836132a1565b925082820390506bffffffffffffffffffffffff8111156144b9576144b8613ae9565b5b92915050565b6144c881613676565b82525050565b5f6060820190506144e15f8301866134f3565b6144ee60208301856144bf565b6144fb60408301846144bf565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61453760208361372a565b915061454282614503565b602082019050919050565b5f6020820190508181035f8301526145648161452b565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61459f60108361372a565b91506145aa8261456b565b602082019050919050565b5f6020820190508181035f8301526145cc81614593565b9050919050565b7f546f6b656e4e6f74537570706f727465640000000000000000000000000000005f82015250565b5f61460760118361372a565b9150614612826145d3565b602082019050919050565b5f6020820190508181035f830152614634816145fb565b9050919050565b7f416d6f756e7449735a65726f00000000000000000000000000000000000000005f82015250565b5f61466f600c8361372a565b915061467a8261463b565b602082019050919050565b5f6020820190508181035f83015261469c81614663565b9050919050565b7f5468726f775a65726f41646472657373000000000000000000000000000000005f82015250565b5f6146d760108361372a565b91506146e2826146a3565b602082019050919050565b5f6020820190508181035f830152614704816146cb565b9050919050565b7f496e76616c696453656e646572466565526563697069656e74000000000000005f82015250565b5f61473f60198361372a565b915061474a8261470b565b602082019050919050565b5f6020820190508181035f83015261476c81614733565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f6147cd602b8361372a565b91506147d882614773565b604082019050919050565b5f6020820190508181035f8301526147fa816147c1565b9050919050565b5f6040820190506148145f830185613a5e565b6148216020830184613a5e565b9392505050565b5f60608201905061483b5f830186613a5e565b6148486020830185613a5e565b6148556040830184613a5e565b949350505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f61489160148361372a565b915061489c8261485d565b602082019050919050565b5f6020820190508181035f8301526148be81614885565b905091905056fea2646970667358221220039a17c0ebb0f09c3837d6bfd7843968f1541a8d63bc2784f173950574c7bec164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH3 0x21 PUSH3 0x27 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1C6 JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x79 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x70 SWAP1 PUSH3 0x16E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF DUP1 AND PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ PUSH3 0xE8 JUMPI PUSH1 0xFF PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0xFF PUSH1 0x40 MLOAD PUSH3 0xDF SWAP2 SWAP1 PUSH3 0x1AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320696E697469 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C697A696E6700000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH3 0x156 PUSH1 0x27 DUP4 PUSH3 0xEA JUMP JUMPDEST SWAP2 POP PUSH3 0x163 DUP3 PUSH3 0xFA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH3 0x187 DUP2 PUSH3 0x148 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1A5 DUP2 PUSH3 0x18E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1C0 PUSH0 DUP4 ADD DUP5 PUSH3 0x19A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x48FB DUP1 PUSH3 0x1D4 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x114 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8129FC1C GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x290 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x2AE JUMPI DUP1 PUSH4 0xDF51B359 EQ PUSH2 0x2CA JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x318 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0x260 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x71EEDB88 GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0x809804F7 EQ PUSH2 0x200 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x15C JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x120 PUSH2 0x334 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x313C JUMP JUMPDEST PUSH2 0x346 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x146 PUSH2 0x60A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x153 SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x164 PUSH2 0x61F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x31E0 JUMP JUMPDEST PUSH2 0x632 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x321E JUMP JUMPDEST PUSH2 0xA8D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x3249 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1ED SWAP2 SWAP1 PUSH2 0x3391 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH2 0xCF5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x3436 JUMP JUMPDEST PUSH2 0xD81 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x3502 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x238 PUSH2 0x1408 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x242 PUSH2 0x1552 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x259 SWAP2 SWAP1 PUSH2 0x351B JUMP JUMPDEST PUSH2 0x1564 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x27A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x275 SWAP2 SWAP1 PUSH2 0x321E JUMP JUMPDEST PUSH2 0x17E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x287 SWAP2 SWAP1 PUSH2 0x35E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x298 PUSH2 0x1860 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A5 SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C3 SWAP2 SWAP1 PUSH2 0x3626 JUMP JUMPDEST PUSH2 0x1888 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DF SWAP2 SWAP1 PUSH2 0x36B3 JUMP JUMPDEST PUSH2 0x1A0A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F1 SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x302 PUSH2 0x20B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30F SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x332 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32D SWAP2 SWAP1 PUSH2 0x321E JUMP JUMPDEST PUSH2 0x20DB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x33C PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x344 PUSH2 0x2205 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x34E PUSH2 0x2187 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3BC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B3 SWAP1 PUSH2 0x3784 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x4BE JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x474 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x46B SWAP1 PUSH2 0x3812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x5BA JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x5B9 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x574 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x56B SWAP1 PUSH2 0x38A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x605 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x627 PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x630 PUSH0 PUSH2 0x2266 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6C2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6B9 SWAP1 PUSH2 0x3908 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x723 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x71A SWAP1 PUSH2 0x3970 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x785 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x77C SWAP1 PUSH2 0x39D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0x7DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7D3 SWAP1 PUSH2 0x3A40 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 GT ISZERO PUSH2 0x8B6 JUMPI PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x874 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x890 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x8B4 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 DUP4 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x946 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP1 POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0x9EC SWAP2 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA09 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA25 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xA49 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xA7A SWAP2 SWAP1 PUSH2 0x3B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SUB PUSH2 0xADC JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xAE0 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAED PUSH2 0x2FD0 JUMP JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCFE PUSH2 0x2296 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD1F PUSH2 0x20B3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD75 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD6C SWAP1 PUSH2 0x3C05 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD7E DUP2 PUSH2 0x2266 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xD8A PUSH2 0x229D JUMP JUMPDEST PUSH2 0xD97 DUP10 DUP10 DUP7 DUP10 DUP10 PUSH2 0x22E7 JUMP JUMPDEST PUSH0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0xDDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD3 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP13 PUSH2 0xE06 SWAP2 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE24 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3C8B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE40 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xE64 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xEB3 SWAP1 PUSH2 0x3CC0 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD CHAINID PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF0B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3D07 JUMP JUMPDEST 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFC3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFBA SWAP1 PUSH2 0x3D86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x64 DUP9 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1024 JUMPI PUSH0 SWAP1 POP PUSH0 DUP7 GT PUSH2 0x101F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1016 SWAP1 PUSH2 0x3DEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x10FD JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 DUP2 PUSH1 0x60 ADD MLOAD GT PUSH2 0x10DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10D3 SWAP1 PUSH2 0x3E56 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 PUSH1 0x60 ADD MLOAD DUP12 PUSH2 0x10EF SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x10F9 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x40CCD1CEB111A3C186EF9911E1B876DC1F789ED331B86097B3B8851055B6A137 DUP5 DUP7 DUP14 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x13F3 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1437 JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x1463 JUMPI POP PUSH2 0x1446 ADDRESS PUSH2 0x2494 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1462 JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x14A2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1499 SWAP1 PUSH2 0x4051 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x14DD JUMPI PUSH1 0x1 PUSH0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x14EF PUSH2 0x24B6 JUMP JUMPDEST PUSH2 0x14F7 PUSH2 0x250E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x154F JUMPI PUSH0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1546 SWAP2 SWAP1 PUSH2 0x40B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x155A PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x1562 PUSH2 0x2566 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x156C PUSH2 0x2187 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x15EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15E3 SWAP1 PUSH2 0x4117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x1631 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1628 SWAP1 PUSH2 0x41A5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x1676 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x166D SWAP1 PUSH2 0x4233 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x16BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16B2 SWAP1 PUSH2 0x42C1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x1700 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16F7 SWAP1 PUSH2 0x434F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x17D3 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x436D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x17EA PUSH2 0x3083 JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1890 PUSH2 0x2187 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x18FE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18F5 SWAP1 PUSH2 0x3784 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x190D JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x194C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1943 SWAP1 PUSH2 0x43FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1A05 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x19FC SWAP2 SWAP1 PUSH2 0x3B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A91 SWAP1 PUSH2 0x3908 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1AFB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AF2 SWAP1 PUSH2 0x3970 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B5D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B54 SWAP1 PUSH2 0x39D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1BAC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BA3 SWAP1 PUSH2 0x4462 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP5 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C64 SWAP2 SWAP1 PUSH2 0x4480 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1D46 JUMPI PUSH1 0x1 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ ISZERO DUP1 ISZERO PUSH2 0x1D36 JUMPI POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ ISZERO JUMPDEST ISZERO PUSH2 0x1D45 JUMPI PUSH2 0x1D44 DUP8 PUSH2 0x25C8 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ ISZERO DUP1 ISZERO PUSH2 0x1D7D JUMPI POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ JUMPDEST ISZERO PUSH2 0x1D8E JUMPI PUSH2 0x1D8D DUP8 DUP8 DUP8 PUSH2 0x293E JUMP JUMPDEST JUMPDEST PUSH0 DUP2 DUP7 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1DBA SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x1DC4 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1DE9 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ PUSH2 0x1FD4 JUMPI PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP13 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP3 PUSH1 0x60 ADD MLOAD DUP5 PUSH2 0x1EC4 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x1ECE SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 PUSH2 0x1EDC SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP3 POP PUSH0 DUP8 PUSH8 0xFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F33 JUMPI PUSH0 PUSH1 0x97 SLOAD DUP9 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x1F09 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x1F13 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 PUSH2 0x1F21 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP2 POP DUP1 DUP5 PUSH2 0x1F2F SWAP2 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F90 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FAC JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1FD0 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP POP POP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP9 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x200F SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x202B JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x204F SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP9 PUSH32 0x57C683DE2E7C8263C7F57FD108416B9BDAA7A6E7F2E4E7102C3B6F9E37F1CC37 DUP12 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH2 0x209B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x44CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP4 POP POP POP POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x20E3 PUSH2 0x2187 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2142 PUSH2 0x1860 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x218F PUSH2 0x2296 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x21AD PUSH2 0x1860 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2203 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21FA SWAP1 PUSH2 0x454D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x220D PUSH2 0x2DFB JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x224F PUSH2 0x2296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x225C SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x2293 DUP2 PUSH2 0x2E44 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x22A5 PUSH2 0x60A JUMP JUMPDEST ISZERO PUSH2 0x22E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22DC SWAP1 PUSH2 0x45B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x2367 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x235E SWAP1 PUSH2 0x461D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP5 SUB PUSH2 0x23A9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23A0 SWAP1 PUSH2 0x4685 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2417 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x240E SWAP1 PUSH2 0x46ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 EQ PUSH2 0x248D JUMPI PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x248C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2483 SWAP1 PUSH2 0x4755 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2504 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24FB SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x250C PUSH2 0x2F07 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x255C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2553 SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2564 PUSH2 0x2F67 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x256E PUSH2 0x229D JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x25B1 PUSH2 0x2296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25BE SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH1 0x97 SLOAD PUSH2 0x269B SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST DUP4 PUSH2 0x26A6 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x26B0 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 DUP4 PUSH2 0x26BF SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP1 POP PUSH0 DUP3 GT ISZERO PUSH2 0x27AC JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x276A SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2786 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x27AA SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST PUSH0 DUP2 GT ISZERO PUSH2 0x2886 JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2844 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2860 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2884 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST DUP2 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 PUSH32 0x88592047496A7850992DC5E8CD92A9B633CEF0D191A4F5E87FD745C7D382630A DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x292F SWAP3 SWAP2 SWAP1 PUSH2 0x4801 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH0 ADD MLOAD DUP4 PUSH2 0x2A0E SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x2A18 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP6 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x2A34 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x2A3E SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP6 PUSH1 0x20 ADD MLOAD DUP4 PUSH2 0x2A54 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x2A5E SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 DUP4 DUP6 PUSH2 0x2A6D SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 EQ ISZERO DUP1 ISZERO PUSH2 0x2AB7 JUMPI POP PUSH0 PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST ISZERO PUSH2 0x2B9F JUMPI PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP13 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B5D SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B79 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2B9D SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 EQ PUSH2 0x2C78 JUMPI PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C36 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2C52 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2C76 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST DUP2 DUP4 PUSH2 0x2C84 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP3 POP PUSH0 DUP4 EQ PUSH2 0x2D3D JUMPI PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP10 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CFB SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D17 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2D3B SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST DUP1 PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP9 PUSH32 0x831C7CC0006D91462607C476603366C48469D125DE6228C0791A7090EFD7F7A4 DUP3 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x2DE8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4828 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2E03 PUSH2 0x60A JUMP JUMPDEST PUSH2 0x2E42 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E39 SWAP1 PUSH2 0x48A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2F55 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F4C SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2F65 PUSH2 0x2F60 PUSH2 0x2296 JUMP JUMPDEST PUSH2 0x2266 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2FB5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2FAC SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x30C1 DUP2 PUSH2 0x30AF JUMP JUMPDEST DUP2 EQ PUSH2 0x30CB JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30DC DUP2 PUSH2 0x30B8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x310B DUP3 PUSH2 0x30E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x311B DUP2 PUSH2 0x3101 JUMP JUMPDEST DUP2 EQ PUSH2 0x3125 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3136 DUP2 PUSH2 0x3112 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3152 JUMPI PUSH2 0x3151 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x315F DUP6 DUP3 DUP7 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3170 DUP6 DUP3 DUP7 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x318E DUP2 PUSH2 0x317A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x31A7 PUSH0 DUP4 ADD DUP5 PUSH2 0x3185 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31BF DUP2 PUSH2 0x31AD JUMP JUMPDEST DUP2 EQ PUSH2 0x31C9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x31DA DUP2 PUSH2 0x31B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31F6 JUMPI PUSH2 0x31F5 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3203 DUP6 DUP3 DUP7 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3214 DUP6 DUP3 DUP7 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3233 JUMPI PUSH2 0x3232 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3240 DUP5 DUP3 DUP6 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x325E JUMPI PUSH2 0x325D PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x326B DUP5 DUP3 DUP6 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x327D DUP2 PUSH2 0x3101 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x328C DUP2 PUSH2 0x31AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x329B DUP2 PUSH2 0x317A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x32C1 DUP2 PUSH2 0x32A1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x32DC PUSH0 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x32EF PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x3302 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x3315 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x3328 PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x333B PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x3292 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x334E PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x3292 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x3361 PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x3376 PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x32B8 JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x338B PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x33A5 PUSH0 DUP4 ADD DUP5 PUSH2 0x32C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x33B4 DUP2 PUSH2 0x32A1 JUMP JUMPDEST DUP2 EQ PUSH2 0x33BE JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33CF DUP2 PUSH2 0x33AB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x33F6 JUMPI PUSH2 0x33F5 PUSH2 0x33D5 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3413 JUMPI PUSH2 0x3412 PUSH2 0x33D9 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x342F JUMPI PUSH2 0x342E PUSH2 0x33DD JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xE0 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x3452 JUMPI PUSH2 0x3451 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x345F DUP12 DUP3 DUP13 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x20 PUSH2 0x3470 DUP12 DUP3 DUP13 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP8 POP POP PUSH1 0x40 PUSH2 0x3481 DUP12 DUP3 DUP13 ADD PUSH2 0x33C1 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x60 PUSH2 0x3492 DUP12 DUP3 DUP13 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x80 PUSH2 0x34A3 DUP12 DUP3 DUP13 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP5 POP POP PUSH1 0xA0 PUSH2 0x34B4 DUP12 DUP3 DUP13 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xC0 DUP10 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x34D5 JUMPI PUSH2 0x34D4 PUSH2 0x30AB JUMP JUMPDEST JUMPDEST PUSH2 0x34E1 DUP12 DUP3 DUP13 ADD PUSH2 0x33E1 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 SWAP1 SWAP4 SWAP7 POP JUMP JUMPDEST PUSH2 0x34FC DUP2 PUSH2 0x30AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3515 PUSH0 DUP4 ADD DUP5 PUSH2 0x34F3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3534 JUMPI PUSH2 0x3533 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3541 DUP9 DUP3 DUP10 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x3552 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x3563 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x3574 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x3585 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x35A6 PUSH0 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x35B9 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x35CC PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x35DF PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x35F8 PUSH0 DUP4 ADD DUP5 PUSH2 0x3592 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3607 DUP2 PUSH2 0x3101 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3620 PUSH0 DUP4 ADD DUP5 PUSH2 0x35FE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x363D JUMPI PUSH2 0x363C PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x364A DUP7 DUP3 DUP8 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x365B DUP7 DUP3 DUP8 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x366C DUP7 DUP3 DUP8 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3692 DUP2 PUSH2 0x3676 JUMP JUMPDEST DUP2 EQ PUSH2 0x369C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x36AD DUP2 PUSH2 0x3689 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x36CC JUMPI PUSH2 0x36CB PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x36D9 DUP9 DUP3 DUP10 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x36EA DUP9 DUP3 DUP10 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x36FB DUP9 DUP3 DUP10 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x370C DUP9 DUP3 DUP10 ADD PUSH2 0x369F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x371D DUP9 DUP3 DUP10 ADD PUSH2 0x369F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x376E PUSH1 0x15 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3779 DUP3 PUSH2 0x373A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x379B DUP2 PUSH2 0x3762 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x37FC PUSH1 0x25 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3807 DUP3 PUSH2 0x37A2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3829 DUP2 PUSH2 0x37F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x388A PUSH1 0x27 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3895 DUP3 PUSH2 0x3830 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x38B7 DUP2 PUSH2 0x387E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x38F2 PUSH1 0xE DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x38FD DUP3 PUSH2 0x38BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x391F DUP2 PUSH2 0x38E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x395A PUSH1 0xE DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3965 DUP3 PUSH2 0x3926 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3987 DUP2 PUSH2 0x394E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x39C2 PUSH1 0xD DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x39CD DUP3 PUSH2 0x398E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x39EF DUP2 PUSH2 0x39B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3A2A PUSH1 0x15 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3A35 DUP3 PUSH2 0x39F6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3A57 DUP2 PUSH2 0x3A1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A67 DUP2 PUSH2 0x31AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3A80 PUSH0 DUP4 ADD DUP6 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3A8D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x3A9D DUP2 PUSH2 0x317A JUMP JUMPDEST DUP2 EQ PUSH2 0x3AA7 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x3AB8 DUP2 PUSH2 0x3A94 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3AD3 JUMPI PUSH2 0x3AD2 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3AE0 DUP5 DUP3 DUP6 ADD PUSH2 0x3AAA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3B20 DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3B2B DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3B43 JUMPI PUSH2 0x3B42 PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3B53 DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3B5E DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3B76 JUMPI PUSH2 0x3B75 PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3B8F PUSH0 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3BEF PUSH1 0x29 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3BFA DUP3 PUSH2 0x3B95 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3C1C DUP2 PUSH2 0x3BE3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3C57 PUSH1 0x12 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3C62 DUP3 PUSH2 0x3C23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3C84 DUP2 PUSH2 0x3C4B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3C9E PUSH0 DUP4 ADD DUP7 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3CAB PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3CB8 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3CCA DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3CFC JUMPI PUSH2 0x3CFB PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3D1A PUSH0 DUP4 ADD DUP7 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3D27 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x3D34 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F72646572416C72656164794578697374730000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3D70 PUSH1 0x12 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3D7B DUP3 PUSH2 0x3D3C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3D9D DUP2 PUSH2 0x3D64 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x53656E64657246656549735A65726F0000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3DD8 PUSH1 0xF DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3DE3 DUP3 PUSH2 0x3DA4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3E05 DUP2 PUSH2 0x3DCC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3E40 PUSH1 0x1D DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3E4B DUP3 PUSH2 0x3E0C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3E6D DUP2 PUSH2 0x3E34 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3E7E DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3E89 DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3E97 DUP2 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x3EAE JUMPI PUSH2 0x3EAD PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3EEC DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3EF7 DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3F07 JUMPI PUSH2 0x3F06 PUSH2 0x3EB5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3F35 PUSH2 0x3F30 PUSH2 0x3F2B DUP5 PUSH2 0x32A1 JUMP JUMPDEST PUSH2 0x3F12 JUMP JUMPDEST PUSH2 0x31AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F45 DUP2 PUSH2 0x3F1B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3F74 DUP4 DUP6 PUSH2 0x372A JUMP JUMPDEST SWAP4 POP PUSH2 0x3F81 DUP4 DUP6 DUP5 PUSH2 0x3F4B JUMP JUMPDEST PUSH2 0x3F8A DUP4 PUSH2 0x3F59 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3FA8 PUSH0 DUP4 ADD DUP9 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x3FB5 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x3FC2 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x3F3C JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3FD5 DUP2 DUP5 DUP7 PUSH2 0x3F69 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x403B PUSH1 0x2E DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4046 DUP3 PUSH2 0x3FE1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4068 DUP2 PUSH2 0x402F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x409E PUSH2 0x4099 PUSH2 0x4094 DUP5 PUSH2 0x406F JUMP JUMPDEST PUSH2 0x3F12 JUMP JUMPDEST PUSH2 0x4078 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x40AE DUP2 PUSH2 0x4084 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x40C7 PUSH0 DUP4 ADD DUP5 PUSH2 0x40A5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4101 PUSH1 0x1C DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x410C DUP3 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x412E DUP2 PUSH2 0x40F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x418F PUSH1 0x23 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x419A DUP3 PUSH2 0x4135 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x41BC DUP2 PUSH2 0x4183 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x421D PUSH1 0x27 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4228 DUP3 PUSH2 0x41C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x424A DUP2 PUSH2 0x4211 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x42AB PUSH1 0x25 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x42B6 DUP3 PUSH2 0x4251 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x42D8 DUP2 PUSH2 0x429F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4339 PUSH1 0x2A DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4344 DUP3 PUSH2 0x42DF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4366 DUP2 PUSH2 0x432D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x4380 PUSH0 DUP4 ADD DUP8 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x438D PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x439A PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x43A7 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x43E4 PUSH1 0x17 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x43EF DUP3 PUSH2 0x43B0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4411 DUP2 PUSH2 0x43D8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696452656261746550657263656E74000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x444C PUSH1 0x14 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4457 DUP3 PUSH2 0x4418 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4479 DUP2 PUSH2 0x4440 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x448A DUP3 PUSH2 0x32A1 JUMP JUMPDEST SWAP2 POP PUSH2 0x4495 DUP4 PUSH2 0x32A1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44B9 JUMPI PUSH2 0x44B8 PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x44C8 DUP2 PUSH2 0x3676 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x44E1 PUSH0 DUP4 ADD DUP7 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x44EE PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x44BF JUMP JUMPDEST PUSH2 0x44FB PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x44BF JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4537 PUSH1 0x20 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4542 DUP3 PUSH2 0x4503 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4564 DUP2 PUSH2 0x452B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x459F PUSH1 0x10 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x45AA DUP3 PUSH2 0x456B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x45CC DUP2 PUSH2 0x4593 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4607 PUSH1 0x11 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4612 DUP3 PUSH2 0x45D3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4634 DUP2 PUSH2 0x45FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x466F PUSH1 0xC DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x467A DUP3 PUSH2 0x463B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x469C DUP2 PUSH2 0x4663 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x46D7 PUSH1 0x10 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x46E2 DUP3 PUSH2 0x46A3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4704 DUP2 PUSH2 0x46CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x473F PUSH1 0x19 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x474A DUP3 PUSH2 0x470B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x476C DUP2 PUSH2 0x4733 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x47CD PUSH1 0x2B DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x47D8 DUP3 PUSH2 0x4773 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x47FA DUP2 PUSH2 0x47C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x4814 PUSH0 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x4821 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x483B PUSH0 DUP4 ADD DUP7 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x4848 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x4855 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4891 PUSH1 0x14 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x489C DUP3 PUSH2 0x485D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x48BE DUP2 PUSH2 0x4885 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SUB SWAP11 OR 0xC0 0xEB 0xB0 CREATE SWAP13 CODESIZE CALLDATACOPY 0xD6 0xBF 0xD7 DUP5 CODECOPY PUSH9 0xF1541A8D63BC2784F1 PUSH20 0x950574C7BEC164736F6C63430008140033000000 ","sourceMap":"390:10564:7:-:0;;;708:44;;;;;;;;;;726:22;:20;;;:22;;:::i;:::-;390:10564;;5939:280:2;6007:13;;;;;;;;;;;6006:14;5998:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6094:15;6078:31;;:12;;;;;;;;;;:31;;;6074:139;;6140:15;6125:12;;:30;;;;;;;;;;;;;;;;;;6174:28;6186:15;6174:28;;;;;;:::i;:::-;;;;;;;;6074:139;5939:280::o;7:169:10:-;91:11;125:6;120:3;113:19;165:4;160:3;156:14;141:29;;7:169;;;;:::o;182:226::-;322:34;318:1;310:6;306:14;299:58;391:9;386:2;378:6;374:15;367:34;182:226;:::o;414:366::-;556:3;577:67;641:2;636:3;577:67;:::i;:::-;570:74;;653:93;742:3;653:93;:::i;:::-;771:2;766:3;762:12;755:19;;414:366;;;:::o;786:419::-;952:4;990:2;979:9;975:18;967:26;;1039:9;1033:4;1029:20;1025:1;1014:9;1010:17;1003:47;1067:131;1193:4;1067:131;:::i;:::-;1059:139;;786:419;;;:::o;1211:86::-;1246:7;1286:4;1279:5;1275:16;1264:27;;1211:86;;;:::o;1303:112::-;1386:22;1402:5;1386:22;:::i;:::-;1381:3;1374:35;1303:112;;:::o;1421:214::-;1510:4;1548:2;1537:9;1533:18;1525:26;;1561:67;1625:1;1614:9;1610:17;1601:6;1561:67;:::i;:::-;1421:214;;;;:::o;390:10564:7:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@__Ownable2Step_init_26":{"entryPoint":9398,"id":26,"parameterSlots":0,"returnSlots":0},"@__Ownable_init_unchained_145":{"entryPoint":12039,"id":145,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_440":{"entryPoint":9486,"id":440,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_unchained_450":{"entryPoint":12135,"id":450,"parameterSlots":0,"returnSlots":0},"@_checkOwner_176":{"entryPoint":8583,"id":176,"parameterSlots":0,"returnSlots":0},"@_handleFxTransferFeeSplitting_1905":{"entryPoint":9672,"id":1905,"parameterSlots":1,"returnSlots":0},"@_handleLocalTransferFeeSplitting_1813":{"entryPoint":10558,"id":1813,"parameterSlots":3,"returnSlots":0},"@_handler_1313":{"entryPoint":8935,"id":1313,"parameterSlots":5,"returnSlots":0},"@_msgSender_894":{"entryPoint":8854,"id":894,"parameterSlots":0,"returnSlots":1},"@_pause_514":{"entryPoint":9574,"id":514,"parameterSlots":0,"returnSlots":0},"@_requireNotPaused_487":{"entryPoint":8861,"id":487,"parameterSlots":0,"returnSlots":0},"@_requirePaused_498":{"entryPoint":11771,"id":498,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_233":{"entryPoint":11844,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":8806,"id":78,"parameterSlots":1,"returnSlots":0},"@_unpause_530":{"entryPoint":8709,"id":530,"parameterSlots":0,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":3317,"id":100,"parameterSlots":0,"returnSlots":0},"@createOrder_1257":{"entryPoint":3457,"id":1257,"parameterSlots":8,"returnSlots":1},"@getOrderInfo_1652":{"entryPoint":2789,"id":1652,"parameterSlots":1,"returnSlots":1},"@getTokenFeeSettings_2181":{"entryPoint":6114,"id":2181,"parameterSlots":1,"returnSlots":1},"@initialize_1053":{"entryPoint":5128,"id":1053,"parameterSlots":0,"returnSlots":0},"@isContract_554":{"entryPoint":9364,"id":554,"parameterSlots":1,"returnSlots":1},"@isTokenSupported_1671":{"entryPoint":2701,"id":1671,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":6240,"id":162,"parameterSlots":0,"returnSlots":1},"@pause_1076":{"entryPoint":5458,"id":1076,"parameterSlots":0,"returnSlots":0},"@paused_475":{"entryPoint":1546,"id":475,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":8371,"id":41,"parameterSlots":0,"returnSlots":1},"@refund_1638":{"entryPoint":1586,"id":1638,"parameterSlots":2,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":1567,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_2167":{"entryPoint":5476,"id":2167,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_2022":{"entryPoint":6280,"id":2022,"parameterSlots":3,"returnSlots":0},"@settle_1532":{"entryPoint":6666,"id":1532,"parameterSlots":5,"returnSlots":1},"@transferOwnership_61":{"entryPoint":8411,"id":61,"parameterSlots":1,"returnSlots":0},"@unpause_1086":{"entryPoint":820,"id":1086,"parameterSlots":0,"returnSlots":0},"@updateProtocolAddress_2094":{"entryPoint":838,"id":2094,"parameterSlots":2,"returnSlots":0},"abi_decode_t_address":{"entryPoint":12584,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bool_fromMemory":{"entryPoint":15018,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":12494,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_string_calldata_ptr":{"entryPoint":13281,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_t_uint256":{"entryPoint":12748,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint64":{"entryPoint":13983,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint96":{"entryPoint":13249,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":12830,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":13595,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr":{"entryPoint":13366,"id":null,"parameterSlots":2,"returnSlots":8},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":15038,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32":{"entryPoint":12873,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":12604,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":13862,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64t_uint64":{"entryPoint":14003,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_uint256t_bytes32":{"entryPoint":12768,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_t_address_to_t_address":{"entryPoint":12916,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":13822,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bool_to_t_bool":{"entryPoint":12946,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":12677,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bytes32_to_t_bytes32_fromStack":{"entryPoint":13555,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack":{"entryPoint":16549,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":16233,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack":{"entryPoint":14774,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack":{"entryPoint":18565,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":14178,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack":{"entryPoint":16913,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c_to_t_string_memory_ptr_fromStack":{"entryPoint":15820,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":15331,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack":{"entryPoint":15716,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack":{"entryPoint":17197,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack":{"entryPoint":16629,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack":{"entryPoint":18019,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack":{"entryPoint":16771,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack":{"entryPoint":17811,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack":{"entryPoint":16431,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":17368,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack":{"entryPoint":14670,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":17707,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack":{"entryPoint":17055,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325_to_t_string_memory_ptr_fromStack":{"entryPoint":17472,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":14320,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack":{"entryPoint":15924,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack":{"entryPoint":14878,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack":{"entryPoint":18123,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack":{"entryPoint":15435,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack":{"entryPoint":17915,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack":{"entryPoint":18369,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":14462,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack":{"entryPoint":14566,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack":{"entryPoint":18227,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_Order_$2273_memory_ptr_to_t_struct$_Order_$2273_memory_ptr_fromStack":{"entryPoint":12999,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack":{"entryPoint":13714,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256":{"entryPoint":12931,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":14942,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint64_fromStack":{"entryPoint":17599,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint256_fromStack":{"entryPoint":16188,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint96":{"entryPoint":12984,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":13837,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":15499,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":14957,"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":15623,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":12692,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":13570,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint64_t_uint64__to_t_bytes32_t_uint64_t_uint64__fromStack_reversed":{"entryPoint":17614,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed":{"entryPoint":16564,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14808,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18599,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14212,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16947,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15854,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15365,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15750,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17231,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16663,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18053,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16805,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17845,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16465,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17402,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14704,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17741,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17089,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17506,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14354,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15958,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14912,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18157,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15469,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17949,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18403,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14496,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14600,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18261,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_Order_$2273_memory_ptr__to_t_struct$_Order_$2273_memory_ptr__fromStack_reversed":{"entryPoint":13201,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$1932_memory_ptr__to_t_struct$_TokenFeeSettings_$1932_memory_ptr__fromStack_reversed":{"entryPoint":13797,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":15228,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16277,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":18433,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":18472,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":17261,"id":null,"parameterSlots":5,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":14122,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":15177,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":16098,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":15988,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":15126,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint96":{"entryPoint":17536,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":12545,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":12666,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":12463,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_rational_1_by_1":{"entryPoint":16495,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":12514,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":12717,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint64":{"entryPoint":13942,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":16504,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint96":{"entryPoint":12961,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_rational_1_by_1_to_t_uint8":{"entryPoint":16516,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint96_to_t_uint256":{"entryPoint":16155,"id":null,"parameterSlots":1,"returnSlots":1},"copy_calldata_to_memory_with_cleanup":{"entryPoint":16203,"id":null,"parameterSlots":3,"returnSlots":0},"identity":{"entryPoint":16146,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint256":{"entryPoint":15552,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":15081,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":16053,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490":{"entryPoint":13273,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":13269,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef":{"entryPoint":13277,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":12459,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":12455,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":16217,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd":{"entryPoint":14734,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a":{"entryPoint":18525,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":14138,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b":{"entryPoint":16835,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c":{"entryPoint":15780,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":15253,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe":{"entryPoint":15676,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029":{"entryPoint":17119,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c":{"entryPoint":16589,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2":{"entryPoint":17979,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8":{"entryPoint":16693,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a":{"entryPoint":17771,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759":{"entryPoint":16353,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":17328,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5":{"entryPoint":14630,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":17667,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d":{"entryPoint":16977,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325":{"entryPoint":17432,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":14242,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934":{"entryPoint":15884,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de":{"entryPoint":14838,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7":{"entryPoint":18083,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4":{"entryPoint":15395,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1":{"entryPoint":17875,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b":{"entryPoint":18291,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":14384,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243":{"entryPoint":14526,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8":{"entryPoint":18187,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":12562,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bool":{"entryPoint":14996,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":12472,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":12726,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint64":{"entryPoint":13961,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint96":{"entryPoint":13227,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:50278:10","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:10","statements":[{"nodeType":"YulAssignment","src":"57:19:10","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:10","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:10"},"nodeType":"YulFunctionCall","src":"67:9:10"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:10"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:10","type":""}],"src":"7:75:10"},{"body":{"nodeType":"YulBlock","src":"177:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:10"},"nodeType":"YulFunctionCall","src":"187:12:10"},"nodeType":"YulExpressionStatement","src":"187:12:10"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:10"},{"body":{"nodeType":"YulBlock","src":"300:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:10"},"nodeType":"YulFunctionCall","src":"310:12:10"},"nodeType":"YulExpressionStatement","src":"310:12:10"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:10"},{"body":{"nodeType":"YulBlock","src":"379:32:10","statements":[{"nodeType":"YulAssignment","src":"389:16:10","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:10"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:10","type":""}],"src":"334:77:10"},{"body":{"nodeType":"YulBlock","src":"460:79:10","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:10"},"nodeType":"YulFunctionCall","src":"519:12:10"},"nodeType":"YulExpressionStatement","src":"519:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:10"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:10"},"nodeType":"YulFunctionCall","src":"490:24:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:10"},"nodeType":"YulFunctionCall","src":"480:35:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:10"},"nodeType":"YulFunctionCall","src":"473:43:10"},"nodeType":"YulIf","src":"470:63:10"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:10","type":""}],"src":"417:122:10"},{"body":{"nodeType":"YulBlock","src":"597:87:10","statements":[{"nodeType":"YulAssignment","src":"607:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:10"},"nodeType":"YulFunctionCall","src":"616:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:10"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:10"},"nodeType":"YulFunctionCall","src":"645:33:10"},"nodeType":"YulExpressionStatement","src":"645:33:10"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:10","type":""}],"src":"545:139:10"},{"body":{"nodeType":"YulBlock","src":"735:81:10","statements":[{"nodeType":"YulAssignment","src":"745:65:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"760:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"767:42:10","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"756:3:10"},"nodeType":"YulFunctionCall","src":"756:54:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"745:7:10"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"717:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"727:7:10","type":""}],"src":"690:126:10"},{"body":{"nodeType":"YulBlock","src":"867:51:10","statements":[{"nodeType":"YulAssignment","src":"877:35:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"906:5:10"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"888:17:10"},"nodeType":"YulFunctionCall","src":"888:24:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"877:7:10"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"849:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"859:7:10","type":""}],"src":"822:96:10"},{"body":{"nodeType":"YulBlock","src":"967:79:10","statements":[{"body":{"nodeType":"YulBlock","src":"1024:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1033:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1036:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1026:6:10"},"nodeType":"YulFunctionCall","src":"1026:12:10"},"nodeType":"YulExpressionStatement","src":"1026:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"990:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1015:5:10"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"997:17:10"},"nodeType":"YulFunctionCall","src":"997:24:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"987:2:10"},"nodeType":"YulFunctionCall","src":"987:35:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"980:6:10"},"nodeType":"YulFunctionCall","src":"980:43:10"},"nodeType":"YulIf","src":"977:63:10"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"960:5:10","type":""}],"src":"924:122:10"},{"body":{"nodeType":"YulBlock","src":"1104:87:10","statements":[{"nodeType":"YulAssignment","src":"1114:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1136:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1123:12:10"},"nodeType":"YulFunctionCall","src":"1123:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1114:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1179:5:10"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"1152:26:10"},"nodeType":"YulFunctionCall","src":"1152:33:10"},"nodeType":"YulExpressionStatement","src":"1152:33:10"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1082:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"1090:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1098:5:10","type":""}],"src":"1052:139:10"},{"body":{"nodeType":"YulBlock","src":"1280:391:10","statements":[{"body":{"nodeType":"YulBlock","src":"1326:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"1328:77:10"},"nodeType":"YulFunctionCall","src":"1328:79:10"},"nodeType":"YulExpressionStatement","src":"1328:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1301:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1310:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1297:3:10"},"nodeType":"YulFunctionCall","src":"1297:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"1322:2:10","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1293:3:10"},"nodeType":"YulFunctionCall","src":"1293:32:10"},"nodeType":"YulIf","src":"1290:119:10"},{"nodeType":"YulBlock","src":"1419:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"1434:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"1448:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1438:6:10","type":""}]},{"nodeType":"YulAssignment","src":"1463:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1498:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"1509:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:10"},"nodeType":"YulFunctionCall","src":"1494:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1518:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"1473:20:10"},"nodeType":"YulFunctionCall","src":"1473:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1463:6:10"}]}]},{"nodeType":"YulBlock","src":"1546:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"1561:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"1575:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1565:6:10","type":""}]},{"nodeType":"YulAssignment","src":"1591:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1626:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"1637:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1622:3:10"},"nodeType":"YulFunctionCall","src":"1622:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1646:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"1601:20:10"},"nodeType":"YulFunctionCall","src":"1601:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1591:6:10"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1242:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1253:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1265:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1273:6:10","type":""}],"src":"1197:474:10"},{"body":{"nodeType":"YulBlock","src":"1719:48:10","statements":[{"nodeType":"YulAssignment","src":"1729:32:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1754:5:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1747:6:10"},"nodeType":"YulFunctionCall","src":"1747:13:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1740:6:10"},"nodeType":"YulFunctionCall","src":"1740:21:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1729:7:10"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1701:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1711:7:10","type":""}],"src":"1677:90:10"},{"body":{"nodeType":"YulBlock","src":"1832:50:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1849:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1869:5:10"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"1854:14:10"},"nodeType":"YulFunctionCall","src":"1854:21:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1842:6:10"},"nodeType":"YulFunctionCall","src":"1842:34:10"},"nodeType":"YulExpressionStatement","src":"1842:34:10"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1820:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1827:3:10","type":""}],"src":"1773:109:10"},{"body":{"nodeType":"YulBlock","src":"1980:118:10","statements":[{"nodeType":"YulAssignment","src":"1990:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2002:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2013:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1998:3:10"},"nodeType":"YulFunctionCall","src":"1998:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1990:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2064:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2077:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2088:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2073:3:10"},"nodeType":"YulFunctionCall","src":"2073:17:10"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"2026:37:10"},"nodeType":"YulFunctionCall","src":"2026:65:10"},"nodeType":"YulExpressionStatement","src":"2026:65:10"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1952:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1964:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1975:4:10","type":""}],"src":"1888:210:10"},{"body":{"nodeType":"YulBlock","src":"2149:32:10","statements":[{"nodeType":"YulAssignment","src":"2159:16:10","value":{"name":"value","nodeType":"YulIdentifier","src":"2170:5:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"2159:7:10"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2131:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"2141:7:10","type":""}],"src":"2104:77:10"},{"body":{"nodeType":"YulBlock","src":"2230:79:10","statements":[{"body":{"nodeType":"YulBlock","src":"2287:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2296:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2299:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2289:6:10"},"nodeType":"YulFunctionCall","src":"2289:12:10"},"nodeType":"YulExpressionStatement","src":"2289:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2253:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2278:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"2260:17:10"},"nodeType":"YulFunctionCall","src":"2260:24:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2250:2:10"},"nodeType":"YulFunctionCall","src":"2250:35:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2243:6:10"},"nodeType":"YulFunctionCall","src":"2243:43:10"},"nodeType":"YulIf","src":"2240:63:10"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2223:5:10","type":""}],"src":"2187:122:10"},{"body":{"nodeType":"YulBlock","src":"2367:87:10","statements":[{"nodeType":"YulAssignment","src":"2377:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2399:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2386:12:10"},"nodeType":"YulFunctionCall","src":"2386:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2377:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2442:5:10"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"2415:26:10"},"nodeType":"YulFunctionCall","src":"2415:33:10"},"nodeType":"YulExpressionStatement","src":"2415:33:10"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2345:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"2353:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2361:5:10","type":""}],"src":"2315:139:10"},{"body":{"nodeType":"YulBlock","src":"2543:391:10","statements":[{"body":{"nodeType":"YulBlock","src":"2589:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2591:77:10"},"nodeType":"YulFunctionCall","src":"2591:79:10"},"nodeType":"YulExpressionStatement","src":"2591:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2564:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"2573:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2560:3:10"},"nodeType":"YulFunctionCall","src":"2560:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"2585:2:10","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2556:3:10"},"nodeType":"YulFunctionCall","src":"2556:32:10"},"nodeType":"YulIf","src":"2553:119:10"},{"nodeType":"YulBlock","src":"2682:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2697:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2711:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2701:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2726:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2761:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2772:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2757:3:10"},"nodeType":"YulFunctionCall","src":"2757:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2781:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2736:20:10"},"nodeType":"YulFunctionCall","src":"2736:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2726:6:10"}]}]},{"nodeType":"YulBlock","src":"2809:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2824:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2838:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2828:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2854:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2889:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2900:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2885:3:10"},"nodeType":"YulFunctionCall","src":"2885:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2909:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"2864:20:10"},"nodeType":"YulFunctionCall","src":"2864:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2854:6:10"}]}]}]},"name":"abi_decode_tuple_t_uint256t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2505:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2516:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2528:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2536:6:10","type":""}],"src":"2460:474:10"},{"body":{"nodeType":"YulBlock","src":"3006:263:10","statements":[{"body":{"nodeType":"YulBlock","src":"3052:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3054:77:10"},"nodeType":"YulFunctionCall","src":"3054:79:10"},"nodeType":"YulExpressionStatement","src":"3054:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3027:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"3036:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3023:3:10"},"nodeType":"YulFunctionCall","src":"3023:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"3048:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3019:3:10"},"nodeType":"YulFunctionCall","src":"3019:32:10"},"nodeType":"YulIf","src":"3016:119:10"},{"nodeType":"YulBlock","src":"3145:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"3160:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"3174:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3164:6:10","type":""}]},{"nodeType":"YulAssignment","src":"3189:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3224:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"3235:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3220:3:10"},"nodeType":"YulFunctionCall","src":"3220:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3244:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"3199:20:10"},"nodeType":"YulFunctionCall","src":"3199:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3189:6:10"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2976:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2987:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2999:6:10","type":""}],"src":"2940:329:10"},{"body":{"nodeType":"YulBlock","src":"3341:263:10","statements":[{"body":{"nodeType":"YulBlock","src":"3387:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3389:77:10"},"nodeType":"YulFunctionCall","src":"3389:79:10"},"nodeType":"YulExpressionStatement","src":"3389:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3362:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"3371:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3358:3:10"},"nodeType":"YulFunctionCall","src":"3358:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"3383:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3354:3:10"},"nodeType":"YulFunctionCall","src":"3354:32:10"},"nodeType":"YulIf","src":"3351:119:10"},{"nodeType":"YulBlock","src":"3480:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"3495:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"3509:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3499:6:10","type":""}]},{"nodeType":"YulAssignment","src":"3524:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3559:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"3570:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3555:3:10"},"nodeType":"YulFunctionCall","src":"3555:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3579:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"3534:20:10"},"nodeType":"YulFunctionCall","src":"3534:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3524:6:10"}]}]}]},"name":"abi_decode_tuple_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3311:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3322:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3334:6:10","type":""}],"src":"3275:329:10"},{"body":{"nodeType":"YulBlock","src":"3665:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3682:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3705:5:10"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"3687:17:10"},"nodeType":"YulFunctionCall","src":"3687:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3675:6:10"},"nodeType":"YulFunctionCall","src":"3675:37:10"},"nodeType":"YulExpressionStatement","src":"3675:37:10"}]},"name":"abi_encode_t_address_to_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3653:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3660:3:10","type":""}],"src":"3610:108:10"},{"body":{"nodeType":"YulBlock","src":"3779:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3796:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3819:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3801:17:10"},"nodeType":"YulFunctionCall","src":"3801:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3789:6:10"},"nodeType":"YulFunctionCall","src":"3789:37:10"},"nodeType":"YulExpressionStatement","src":"3789:37:10"}]},"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3767:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3774:3:10","type":""}],"src":"3724:108:10"},{"body":{"nodeType":"YulBlock","src":"3887:50:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3904:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3924:5:10"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"3909:14:10"},"nodeType":"YulFunctionCall","src":"3909:21:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3897:6:10"},"nodeType":"YulFunctionCall","src":"3897:34:10"},"nodeType":"YulExpressionStatement","src":"3897:34:10"}]},"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3875:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3882:3:10","type":""}],"src":"3838:99:10"},{"body":{"nodeType":"YulBlock","src":"3987:65:10","statements":[{"nodeType":"YulAssignment","src":"3997:49:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4012:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4019:26:10","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4008:3:10"},"nodeType":"YulFunctionCall","src":"4008:38:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"3997:7:10"}]}]},"name":"cleanup_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3969:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"3979:7:10","type":""}],"src":"3943:109:10"},{"body":{"nodeType":"YulBlock","src":"4111:52:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4128:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4150:5:10"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"4133:16:10"},"nodeType":"YulFunctionCall","src":"4133:23:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4121:6:10"},"nodeType":"YulFunctionCall","src":"4121:36:10"},"nodeType":"YulExpressionStatement","src":"4121:36:10"}]},"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4099:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4106:3:10","type":""}],"src":"4058:105:10"},{"body":{"nodeType":"YulBlock","src":"4335:1838:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4345:28:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4361:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4366:6:10","type":"","value":"0x0140"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4357:3:10"},"nodeType":"YulFunctionCall","src":"4357:16:10"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"4349:4:10","type":""}]},{"nodeType":"YulBlock","src":"4383:166:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4420:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4450:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4457:4:10","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4446:3:10"},"nodeType":"YulFunctionCall","src":"4446:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4440:5:10"},"nodeType":"YulFunctionCall","src":"4440:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4424:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4510:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4528:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4533:4:10","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4524:3:10"},"nodeType":"YulFunctionCall","src":"4524:14:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"4476:33:10"},"nodeType":"YulFunctionCall","src":"4476:63:10"},"nodeType":"YulExpressionStatement","src":"4476:63:10"}]},{"nodeType":"YulBlock","src":"4559:165:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4595:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4625:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4632:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4621:3:10"},"nodeType":"YulFunctionCall","src":"4621:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4615:5:10"},"nodeType":"YulFunctionCall","src":"4615:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4599:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4685:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4703:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4708:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4699:3:10"},"nodeType":"YulFunctionCall","src":"4699:14:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"4651:33:10"},"nodeType":"YulFunctionCall","src":"4651:63:10"},"nodeType":"YulExpressionStatement","src":"4651:63:10"}]},{"nodeType":"YulBlock","src":"4734:178:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4783:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4813:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4820:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4809:3:10"},"nodeType":"YulFunctionCall","src":"4809:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4803:5:10"},"nodeType":"YulFunctionCall","src":"4803:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4787:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4873:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4891:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4896:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4887:3:10"},"nodeType":"YulFunctionCall","src":"4887:14:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"4839:33:10"},"nodeType":"YulFunctionCall","src":"4839:63:10"},"nodeType":"YulExpressionStatement","src":"4839:63:10"}]},{"nodeType":"YulBlock","src":"4922:169:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4962:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4992:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4999:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4988:3:10"},"nodeType":"YulFunctionCall","src":"4988:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4982:5:10"},"nodeType":"YulFunctionCall","src":"4982:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4966:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5052:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5070:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5075:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5066:3:10"},"nodeType":"YulFunctionCall","src":"5066:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5018:33:10"},"nodeType":"YulFunctionCall","src":"5018:63:10"},"nodeType":"YulExpressionStatement","src":"5018:63:10"}]},{"nodeType":"YulBlock","src":"5101:171:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5143:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5173:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"5180:4:10","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5169:3:10"},"nodeType":"YulFunctionCall","src":"5169:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5163:5:10"},"nodeType":"YulFunctionCall","src":"5163:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5147:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5233:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5251:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5256:4:10","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5247:3:10"},"nodeType":"YulFunctionCall","src":"5247:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5199:33:10"},"nodeType":"YulFunctionCall","src":"5199:63:10"},"nodeType":"YulExpressionStatement","src":"5199:63:10"}]},{"nodeType":"YulBlock","src":"5282:165:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5324:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5354:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"5361:4:10","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5350:3:10"},"nodeType":"YulFunctionCall","src":"5350:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5344:5:10"},"nodeType":"YulFunctionCall","src":"5344:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5328:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5408:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5426:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5431:4:10","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5422:3:10"},"nodeType":"YulFunctionCall","src":"5422:14:10"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"5380:27:10"},"nodeType":"YulFunctionCall","src":"5380:57:10"},"nodeType":"YulExpressionStatement","src":"5380:57:10"}]},{"nodeType":"YulBlock","src":"5457:164:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5498:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5528:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"5535:4:10","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5524:3:10"},"nodeType":"YulFunctionCall","src":"5524:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5518:5:10"},"nodeType":"YulFunctionCall","src":"5518:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5502:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5582:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5600:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5605:4:10","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5596:3:10"},"nodeType":"YulFunctionCall","src":"5596:14:10"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"5554:27:10"},"nodeType":"YulFunctionCall","src":"5554:57:10"},"nodeType":"YulExpressionStatement","src":"5554:57:10"}]},{"nodeType":"YulBlock","src":"5631:173:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5675:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5705:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"5712:4:10","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5701:3:10"},"nodeType":"YulFunctionCall","src":"5701:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5695:5:10"},"nodeType":"YulFunctionCall","src":"5695:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5679:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5765:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5783:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5788:4:10","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5779:3:10"},"nodeType":"YulFunctionCall","src":"5779:14:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"5731:33:10"},"nodeType":"YulFunctionCall","src":"5731:63:10"},"nodeType":"YulExpressionStatement","src":"5731:63:10"}]},{"nodeType":"YulBlock","src":"5814:172:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5855:45:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5885:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"5892:6:10","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5881:3:10"},"nodeType":"YulFunctionCall","src":"5881:18:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5875:5:10"},"nodeType":"YulFunctionCall","src":"5875:25:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5859:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5945:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5963:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5968:6:10","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5959:3:10"},"nodeType":"YulFunctionCall","src":"5959:16:10"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulIdentifier","src":"5913:31:10"},"nodeType":"YulFunctionCall","src":"5913:63:10"},"nodeType":"YulExpressionStatement","src":"5913:63:10"}]},{"nodeType":"YulBlock","src":"5996:170:10","statements":[{"nodeType":"YulVariableDeclaration","src":"6033:45:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6063:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"6070:6:10","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6059:3:10"},"nodeType":"YulFunctionCall","src":"6059:18:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6053:5:10"},"nodeType":"YulFunctionCall","src":"6053:25:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"6037:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"6125:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6143:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"6148:6:10","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6139:3:10"},"nodeType":"YulFunctionCall","src":"6139:16:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"6091:33:10"},"nodeType":"YulFunctionCall","src":"6091:65:10"},"nodeType":"YulExpressionStatement","src":"6091:65:10"}]}]},"name":"abi_encode_t_struct$_Order_$2273_memory_ptr_to_t_struct$_Order_$2273_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4322:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4329:3:10","type":""}],"src":"4223:1950:10"},{"body":{"nodeType":"YulBlock","src":"6323:171:10","statements":[{"nodeType":"YulAssignment","src":"6333:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6345:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6356:3:10","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6341:3:10"},"nodeType":"YulFunctionCall","src":"6341:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6333:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6460:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6473:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6484:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6469:3:10"},"nodeType":"YulFunctionCall","src":"6469:17:10"}],"functionName":{"name":"abi_encode_t_struct$_Order_$2273_memory_ptr_to_t_struct$_Order_$2273_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6370:89:10"},"nodeType":"YulFunctionCall","src":"6370:117:10"},"nodeType":"YulExpressionStatement","src":"6370:117:10"}]},"name":"abi_encode_tuple_t_struct$_Order_$2273_memory_ptr__to_t_struct$_Order_$2273_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6295:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6307:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6318:4:10","type":""}],"src":"6179:315:10"},{"body":{"nodeType":"YulBlock","src":"6542:78:10","statements":[{"body":{"nodeType":"YulBlock","src":"6598:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6607:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6610:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6600:6:10"},"nodeType":"YulFunctionCall","src":"6600:12:10"},"nodeType":"YulExpressionStatement","src":"6600:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6565:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6589:5:10"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"6572:16:10"},"nodeType":"YulFunctionCall","src":"6572:23:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6562:2:10"},"nodeType":"YulFunctionCall","src":"6562:34:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6555:6:10"},"nodeType":"YulFunctionCall","src":"6555:42:10"},"nodeType":"YulIf","src":"6552:62:10"}]},"name":"validator_revert_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6535:5:10","type":""}],"src":"6500:120:10"},{"body":{"nodeType":"YulBlock","src":"6677:86:10","statements":[{"nodeType":"YulAssignment","src":"6687:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6709:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6696:12:10"},"nodeType":"YulFunctionCall","src":"6696:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"6687:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6751:5:10"}],"functionName":{"name":"validator_revert_t_uint96","nodeType":"YulIdentifier","src":"6725:25:10"},"nodeType":"YulFunctionCall","src":"6725:32:10"},"nodeType":"YulExpressionStatement","src":"6725:32:10"}]},"name":"abi_decode_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"6655:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"6663:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"6671:5:10","type":""}],"src":"6626:137:10"},{"body":{"nodeType":"YulBlock","src":"6858:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6875:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6878:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6868:6:10"},"nodeType":"YulFunctionCall","src":"6868:12:10"},"nodeType":"YulExpressionStatement","src":"6868:12:10"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"6769:117:10"},{"body":{"nodeType":"YulBlock","src":"6981:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6998:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7001:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6991:6:10"},"nodeType":"YulFunctionCall","src":"6991:12:10"},"nodeType":"YulExpressionStatement","src":"6991:12:10"}]},"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulFunctionDefinition","src":"6892:117:10"},{"body":{"nodeType":"YulBlock","src":"7104:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7121:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7124:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7114:6:10"},"nodeType":"YulFunctionCall","src":"7114:12:10"},"nodeType":"YulExpressionStatement","src":"7114:12:10"}]},"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulFunctionDefinition","src":"7015:117:10"},{"body":{"nodeType":"YulBlock","src":"7227:478:10","statements":[{"body":{"nodeType":"YulBlock","src":"7276:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"7278:77:10"},"nodeType":"YulFunctionCall","src":"7278:79:10"},"nodeType":"YulExpressionStatement","src":"7278:79:10"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7255:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"7263:4:10","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7251:3:10"},"nodeType":"YulFunctionCall","src":"7251:17:10"},{"name":"end","nodeType":"YulIdentifier","src":"7270:3:10"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7247:3:10"},"nodeType":"YulFunctionCall","src":"7247:27:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7240:6:10"},"nodeType":"YulFunctionCall","src":"7240:35:10"},"nodeType":"YulIf","src":"7237:122:10"},{"nodeType":"YulAssignment","src":"7368:30:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7391:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7378:12:10"},"nodeType":"YulFunctionCall","src":"7378:20:10"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"7368:6:10"}]},{"body":{"nodeType":"YulBlock","src":"7441:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulIdentifier","src":"7443:77:10"},"nodeType":"YulFunctionCall","src":"7443:79:10"},"nodeType":"YulExpressionStatement","src":"7443:79:10"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"7413:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"7421:18:10","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7410:2:10"},"nodeType":"YulFunctionCall","src":"7410:30:10"},"nodeType":"YulIf","src":"7407:117:10"},{"nodeType":"YulAssignment","src":"7533:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7549:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"7557:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7545:3:10"},"nodeType":"YulFunctionCall","src":"7545:17:10"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"7533:8:10"}]},{"body":{"nodeType":"YulBlock","src":"7616:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"7618:77:10"},"nodeType":"YulFunctionCall","src":"7618:79:10"},"nodeType":"YulExpressionStatement","src":"7618:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"7581:8:10"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"7595:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"7603:4:10","type":"","value":"0x01"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"7591:3:10"},"nodeType":"YulFunctionCall","src":"7591:17:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7577:3:10"},"nodeType":"YulFunctionCall","src":"7577:32:10"},{"name":"end","nodeType":"YulIdentifier","src":"7611:3:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7574:2:10"},"nodeType":"YulFunctionCall","src":"7574:41:10"},"nodeType":"YulIf","src":"7571:128:10"}]},"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"7194:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"7202:3:10","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"7210:8:10","type":""},{"name":"length","nodeType":"YulTypedName","src":"7220:6:10","type":""}],"src":"7152:553:10"},{"body":{"nodeType":"YulBlock","src":"7898:1214:10","statements":[{"body":{"nodeType":"YulBlock","src":"7945:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"7947:77:10"},"nodeType":"YulFunctionCall","src":"7947:79:10"},"nodeType":"YulExpressionStatement","src":"7947:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7919:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"7928:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7915:3:10"},"nodeType":"YulFunctionCall","src":"7915:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"7940:3:10","type":"","value":"224"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7911:3:10"},"nodeType":"YulFunctionCall","src":"7911:33:10"},"nodeType":"YulIf","src":"7908:120:10"},{"nodeType":"YulBlock","src":"8038:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8053:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8067:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8057:6:10","type":""}]},{"nodeType":"YulAssignment","src":"8082:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8117:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"8128:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8113:3:10"},"nodeType":"YulFunctionCall","src":"8113:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8137:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8092:20:10"},"nodeType":"YulFunctionCall","src":"8092:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8082:6:10"}]}]},{"nodeType":"YulBlock","src":"8165:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8180:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8194:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8184:6:10","type":""}]},{"nodeType":"YulAssignment","src":"8210:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8245:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"8256:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8241:3:10"},"nodeType":"YulFunctionCall","src":"8241:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8265:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"8220:20:10"},"nodeType":"YulFunctionCall","src":"8220:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"8210:6:10"}]}]},{"nodeType":"YulBlock","src":"8293:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8308:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8322:2:10","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8312:6:10","type":""}]},{"nodeType":"YulAssignment","src":"8338:62:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8372:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"8383:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8368:3:10"},"nodeType":"YulFunctionCall","src":"8368:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8392:7:10"}],"functionName":{"name":"abi_decode_t_uint96","nodeType":"YulIdentifier","src":"8348:19:10"},"nodeType":"YulFunctionCall","src":"8348:52:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"8338:6:10"}]}]},{"nodeType":"YulBlock","src":"8420:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8435:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8449:2:10","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8439:6:10","type":""}]},{"nodeType":"YulAssignment","src":"8465:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8500:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"8511:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8496:3:10"},"nodeType":"YulFunctionCall","src":"8496:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8520:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8475:20:10"},"nodeType":"YulFunctionCall","src":"8475:53:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"8465:6:10"}]}]},{"nodeType":"YulBlock","src":"8548:119:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8563:17:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8577:3:10","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8567:6:10","type":""}]},{"nodeType":"YulAssignment","src":"8594:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8629:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"8640:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8625:3:10"},"nodeType":"YulFunctionCall","src":"8625:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8649:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"8604:20:10"},"nodeType":"YulFunctionCall","src":"8604:53:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"8594:6:10"}]}]},{"nodeType":"YulBlock","src":"8677:119:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8692:17:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8706:3:10","type":"","value":"160"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8696:6:10","type":""}]},{"nodeType":"YulAssignment","src":"8723:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8758:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"8769:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8754:3:10"},"nodeType":"YulFunctionCall","src":"8754:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8778:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8733:20:10"},"nodeType":"YulFunctionCall","src":"8733:53:10"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"8723:6:10"}]}]},{"nodeType":"YulBlock","src":"8806:299:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8821:47:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8852:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8863:3:10","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8848:3:10"},"nodeType":"YulFunctionCall","src":"8848:19:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8835:12:10"},"nodeType":"YulFunctionCall","src":"8835:33:10"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8825:6:10","type":""}]},{"body":{"nodeType":"YulBlock","src":"8915:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"8917:77:10"},"nodeType":"YulFunctionCall","src":"8917:79:10"},"nodeType":"YulExpressionStatement","src":"8917:79:10"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8887:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"8895:18:10","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8884:2:10"},"nodeType":"YulFunctionCall","src":"8884:30:10"},"nodeType":"YulIf","src":"8881:117:10"},{"nodeType":"YulAssignment","src":"9012:83:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9067:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"9078:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9063:3:10"},"nodeType":"YulFunctionCall","src":"9063:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9087:7:10"}],"functionName":{"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulIdentifier","src":"9030:32:10"},"nodeType":"YulFunctionCall","src":"9030:65:10"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"9012:6:10"},{"name":"value7","nodeType":"YulIdentifier","src":"9020:6:10"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7812:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7823:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7835:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7843:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7851:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"7859:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"7867:6:10","type":""},{"name":"value5","nodeType":"YulTypedName","src":"7875:6:10","type":""},{"name":"value6","nodeType":"YulTypedName","src":"7883:6:10","type":""},{"name":"value7","nodeType":"YulTypedName","src":"7891:6:10","type":""}],"src":"7711:1401:10"},{"body":{"nodeType":"YulBlock","src":"9183:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9200:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9223:5:10"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"9205:17:10"},"nodeType":"YulFunctionCall","src":"9205:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9193:6:10"},"nodeType":"YulFunctionCall","src":"9193:37:10"},"nodeType":"YulExpressionStatement","src":"9193:37:10"}]},"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9171:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"9178:3:10","type":""}],"src":"9118:118:10"},{"body":{"nodeType":"YulBlock","src":"9340:124:10","statements":[{"nodeType":"YulAssignment","src":"9350:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9362:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"9373:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9358:3:10"},"nodeType":"YulFunctionCall","src":"9358:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9350:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9430:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9443:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"9454:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:10"},"nodeType":"YulFunctionCall","src":"9439:17:10"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"9386:43:10"},"nodeType":"YulFunctionCall","src":"9386:71:10"},"nodeType":"YulExpressionStatement","src":"9386:71:10"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9312:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9324:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9335:4:10","type":""}],"src":"9242:222:10"},{"body":{"nodeType":"YulBlock","src":"9604:777:10","statements":[{"body":{"nodeType":"YulBlock","src":"9651:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"9653:77:10"},"nodeType":"YulFunctionCall","src":"9653:79:10"},"nodeType":"YulExpressionStatement","src":"9653:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9625:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"9634:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9621:3:10"},"nodeType":"YulFunctionCall","src":"9621:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"9646:3:10","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9617:3:10"},"nodeType":"YulFunctionCall","src":"9617:33:10"},"nodeType":"YulIf","src":"9614:120:10"},{"nodeType":"YulBlock","src":"9744:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"9759:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"9773:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9763:6:10","type":""}]},{"nodeType":"YulAssignment","src":"9788:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9823:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"9834:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9819:3:10"},"nodeType":"YulFunctionCall","src":"9819:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9843:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"9798:20:10"},"nodeType":"YulFunctionCall","src":"9798:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"9788:6:10"}]}]},{"nodeType":"YulBlock","src":"9871:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"9886:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"9900:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9890:6:10","type":""}]},{"nodeType":"YulAssignment","src":"9916:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9951:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"9962:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9947:3:10"},"nodeType":"YulFunctionCall","src":"9947:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9971:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"9926:20:10"},"nodeType":"YulFunctionCall","src":"9926:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"9916:6:10"}]}]},{"nodeType":"YulBlock","src":"9999:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"10014:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"10028:2:10","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10018:6:10","type":""}]},{"nodeType":"YulAssignment","src":"10044:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10079:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"10090:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10075:3:10"},"nodeType":"YulFunctionCall","src":"10075:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10099:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"10054:20:10"},"nodeType":"YulFunctionCall","src":"10054:53:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"10044:6:10"}]}]},{"nodeType":"YulBlock","src":"10127:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"10142:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"10156:2:10","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10146:6:10","type":""}]},{"nodeType":"YulAssignment","src":"10172:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10207:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"10218:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10203:3:10"},"nodeType":"YulFunctionCall","src":"10203:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10227:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"10182:20:10"},"nodeType":"YulFunctionCall","src":"10182:53:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"10172:6:10"}]}]},{"nodeType":"YulBlock","src":"10255:119:10","statements":[{"nodeType":"YulVariableDeclaration","src":"10270:17:10","value":{"kind":"number","nodeType":"YulLiteral","src":"10284:3:10","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10274:6:10","type":""}]},{"nodeType":"YulAssignment","src":"10301:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10336:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"10347:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10332:3:10"},"nodeType":"YulFunctionCall","src":"10332:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10356:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"10311:20:10"},"nodeType":"YulFunctionCall","src":"10311:53:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"10301:6:10"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9542:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9553:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9565:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9573:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"9581:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"9589:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"9597:6:10","type":""}],"src":"9470:911:10"},{"body":{"nodeType":"YulBlock","src":"10623:799:10","statements":[{"nodeType":"YulVariableDeclaration","src":"10633:26:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10649:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"10654:4:10","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10645:3:10"},"nodeType":"YulFunctionCall","src":"10645:14:10"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"10637:4:10","type":""}]},{"nodeType":"YulBlock","src":"10669:176:10","statements":[{"nodeType":"YulVariableDeclaration","src":"10716:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10746:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"10753:4:10","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10742:3:10"},"nodeType":"YulFunctionCall","src":"10742:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10736:5:10"},"nodeType":"YulFunctionCall","src":"10736:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10720:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10806:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10824:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"10829:4:10","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10820:3:10"},"nodeType":"YulFunctionCall","src":"10820:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"10772:33:10"},"nodeType":"YulFunctionCall","src":"10772:63:10"},"nodeType":"YulExpressionStatement","src":"10772:63:10"}]},{"nodeType":"YulBlock","src":"10855:180:10","statements":[{"nodeType":"YulVariableDeclaration","src":"10906:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10936:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"10943:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10932:3:10"},"nodeType":"YulFunctionCall","src":"10932:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10926:5:10"},"nodeType":"YulFunctionCall","src":"10926:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10910:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10996:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11014:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"11019:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11010:3:10"},"nodeType":"YulFunctionCall","src":"11010:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"10962:33:10"},"nodeType":"YulFunctionCall","src":"10962:63:10"},"nodeType":"YulExpressionStatement","src":"10962:63:10"}]},{"nodeType":"YulBlock","src":"11045:178:10","statements":[{"nodeType":"YulVariableDeclaration","src":"11094:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11124:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"11131:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11120:3:10"},"nodeType":"YulFunctionCall","src":"11120:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11114:5:10"},"nodeType":"YulFunctionCall","src":"11114:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"11098:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"11184:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11202:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"11207:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11198:3:10"},"nodeType":"YulFunctionCall","src":"11198:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"11150:33:10"},"nodeType":"YulFunctionCall","src":"11150:63:10"},"nodeType":"YulExpressionStatement","src":"11150:63:10"}]},{"nodeType":"YulBlock","src":"11233:182:10","statements":[{"nodeType":"YulVariableDeclaration","src":"11286:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11316:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"11323:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11312:3:10"},"nodeType":"YulFunctionCall","src":"11312:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11306:5:10"},"nodeType":"YulFunctionCall","src":"11306:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"11290:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"11376:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11394:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"11399:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11390:3:10"},"nodeType":"YulFunctionCall","src":"11390:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"11342:33:10"},"nodeType":"YulFunctionCall","src":"11342:63:10"},"nodeType":"YulExpressionStatement","src":"11342:63:10"}]}]},"name":"abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10610:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"10617:3:10","type":""}],"src":"10489:933:10"},{"body":{"nodeType":"YulBlock","src":"11594:193:10","statements":[{"nodeType":"YulAssignment","src":"11604:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11616:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11627:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11612:3:10"},"nodeType":"YulFunctionCall","src":"11612:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11604:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11753:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11766:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11777:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11762:3:10"},"nodeType":"YulFunctionCall","src":"11762:17:10"}],"functionName":{"name":"abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11641:111:10"},"nodeType":"YulFunctionCall","src":"11641:139:10"},"nodeType":"YulExpressionStatement","src":"11641:139:10"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$1932_memory_ptr__to_t_struct$_TokenFeeSettings_$1932_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11566:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11578:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11589:4:10","type":""}],"src":"11428:359:10"},{"body":{"nodeType":"YulBlock","src":"11858:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11875:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11898:5:10"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"11880:17:10"},"nodeType":"YulFunctionCall","src":"11880:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11868:6:10"},"nodeType":"YulFunctionCall","src":"11868:37:10"},"nodeType":"YulExpressionStatement","src":"11868:37:10"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11846:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11853:3:10","type":""}],"src":"11793:118:10"},{"body":{"nodeType":"YulBlock","src":"12015:124:10","statements":[{"nodeType":"YulAssignment","src":"12025:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12037:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12048:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12033:3:10"},"nodeType":"YulFunctionCall","src":"12033:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12025:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12105:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12118:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12129:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12114:3:10"},"nodeType":"YulFunctionCall","src":"12114:17:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"12061:43:10"},"nodeType":"YulFunctionCall","src":"12061:71:10"},"nodeType":"YulExpressionStatement","src":"12061:71:10"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11987:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11999:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12010:4:10","type":""}],"src":"11917:222:10"},{"body":{"nodeType":"YulBlock","src":"12245:519:10","statements":[{"body":{"nodeType":"YulBlock","src":"12291:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"12293:77:10"},"nodeType":"YulFunctionCall","src":"12293:79:10"},"nodeType":"YulExpressionStatement","src":"12293:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"12266:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"12275:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12262:3:10"},"nodeType":"YulFunctionCall","src":"12262:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"12287:2:10","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"12258:3:10"},"nodeType":"YulFunctionCall","src":"12258:32:10"},"nodeType":"YulIf","src":"12255:119:10"},{"nodeType":"YulBlock","src":"12384:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"12399:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"12413:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12403:6:10","type":""}]},{"nodeType":"YulAssignment","src":"12428:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12463:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"12474:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12459:3:10"},"nodeType":"YulFunctionCall","src":"12459:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12483:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"12438:20:10"},"nodeType":"YulFunctionCall","src":"12438:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"12428:6:10"}]}]},{"nodeType":"YulBlock","src":"12511:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"12526:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"12540:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12530:6:10","type":""}]},{"nodeType":"YulAssignment","src":"12556:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12591:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"12602:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12587:3:10"},"nodeType":"YulFunctionCall","src":"12587:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12611:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"12566:20:10"},"nodeType":"YulFunctionCall","src":"12566:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"12556:6:10"}]}]},{"nodeType":"YulBlock","src":"12639:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"12654:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"12668:2:10","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12658:6:10","type":""}]},{"nodeType":"YulAssignment","src":"12684:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12719:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"12730:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12715:3:10"},"nodeType":"YulFunctionCall","src":"12715:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12739:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"12694:20:10"},"nodeType":"YulFunctionCall","src":"12694:53:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"12684:6:10"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12199:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"12210:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"12222:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12230:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"12238:6:10","type":""}],"src":"12145:619:10"},{"body":{"nodeType":"YulBlock","src":"12814:57:10","statements":[{"nodeType":"YulAssignment","src":"12824:41:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12839:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"12846:18:10","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12835:3:10"},"nodeType":"YulFunctionCall","src":"12835:30:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"12824:7:10"}]}]},"name":"cleanup_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12796:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"12806:7:10","type":""}],"src":"12770:101:10"},{"body":{"nodeType":"YulBlock","src":"12919:78:10","statements":[{"body":{"nodeType":"YulBlock","src":"12975:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12984:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"12987:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"12977:6:10"},"nodeType":"YulFunctionCall","src":"12977:12:10"},"nodeType":"YulExpressionStatement","src":"12977:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12942:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12966:5:10"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"12949:16:10"},"nodeType":"YulFunctionCall","src":"12949:23:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"12939:2:10"},"nodeType":"YulFunctionCall","src":"12939:34:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"12932:6:10"},"nodeType":"YulFunctionCall","src":"12932:42:10"},"nodeType":"YulIf","src":"12929:62:10"}]},"name":"validator_revert_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12912:5:10","type":""}],"src":"12877:120:10"},{"body":{"nodeType":"YulBlock","src":"13054:86:10","statements":[{"nodeType":"YulAssignment","src":"13064:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"13086:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"13073:12:10"},"nodeType":"YulFunctionCall","src":"13073:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"13064:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13128:5:10"}],"functionName":{"name":"validator_revert_t_uint64","nodeType":"YulIdentifier","src":"13102:25:10"},"nodeType":"YulFunctionCall","src":"13102:32:10"},"nodeType":"YulExpressionStatement","src":"13102:32:10"}]},"name":"abi_decode_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"13032:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"13040:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"13048:5:10","type":""}],"src":"13003:137:10"},{"body":{"nodeType":"YulBlock","src":"13278:775:10","statements":[{"body":{"nodeType":"YulBlock","src":"13325:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"13327:77:10"},"nodeType":"YulFunctionCall","src":"13327:79:10"},"nodeType":"YulExpressionStatement","src":"13327:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"13299:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"13308:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13295:3:10"},"nodeType":"YulFunctionCall","src":"13295:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"13320:3:10","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"13291:3:10"},"nodeType":"YulFunctionCall","src":"13291:33:10"},"nodeType":"YulIf","src":"13288:120:10"},{"nodeType":"YulBlock","src":"13418:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"13433:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"13447:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13437:6:10","type":""}]},{"nodeType":"YulAssignment","src":"13462:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13497:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"13508:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13493:3:10"},"nodeType":"YulFunctionCall","src":"13493:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13517:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"13472:20:10"},"nodeType":"YulFunctionCall","src":"13472:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"13462:6:10"}]}]},{"nodeType":"YulBlock","src":"13545:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"13560:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"13574:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13564:6:10","type":""}]},{"nodeType":"YulAssignment","src":"13590:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13625:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"13636:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13621:3:10"},"nodeType":"YulFunctionCall","src":"13621:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13645:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"13600:20:10"},"nodeType":"YulFunctionCall","src":"13600:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"13590:6:10"}]}]},{"nodeType":"YulBlock","src":"13673:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"13688:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"13702:2:10","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13692:6:10","type":""}]},{"nodeType":"YulAssignment","src":"13718:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13753:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"13764:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13749:3:10"},"nodeType":"YulFunctionCall","src":"13749:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13773:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"13728:20:10"},"nodeType":"YulFunctionCall","src":"13728:53:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"13718:6:10"}]}]},{"nodeType":"YulBlock","src":"13801:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"13816:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"13830:2:10","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13820:6:10","type":""}]},{"nodeType":"YulAssignment","src":"13846:62:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13880:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"13891:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13876:3:10"},"nodeType":"YulFunctionCall","src":"13876:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13900:7:10"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"13856:19:10"},"nodeType":"YulFunctionCall","src":"13856:52:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"13846:6:10"}]}]},{"nodeType":"YulBlock","src":"13928:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"13943:17:10","value":{"kind":"number","nodeType":"YulLiteral","src":"13957:3:10","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13947:6:10","type":""}]},{"nodeType":"YulAssignment","src":"13974:62:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14008:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"14019:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14004:3:10"},"nodeType":"YulFunctionCall","src":"14004:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14028:7:10"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"13984:19:10"},"nodeType":"YulFunctionCall","src":"13984:52:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"13974:6:10"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13216:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"13227:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"13239:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"13247:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"13255:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"13263:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"13271:6:10","type":""}],"src":"13146:907:10"},{"body":{"nodeType":"YulBlock","src":"14155:73:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14172:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"14177:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14165:6:10"},"nodeType":"YulFunctionCall","src":"14165:19:10"},"nodeType":"YulExpressionStatement","src":"14165:19:10"},{"nodeType":"YulAssignment","src":"14193:29:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14212:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"14217:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14208:3:10"},"nodeType":"YulFunctionCall","src":"14208:14:10"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"14193:11:10"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14127:3:10","type":""},{"name":"length","nodeType":"YulTypedName","src":"14132:6:10","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"14143:11:10","type":""}],"src":"14059:169:10"},{"body":{"nodeType":"YulBlock","src":"14340:65:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14362:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"14370:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14358:3:10"},"nodeType":"YulFunctionCall","src":"14358:14:10"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"14374:23:10","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14351:6:10"},"nodeType":"YulFunctionCall","src":"14351:47:10"},"nodeType":"YulExpressionStatement","src":"14351:47:10"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14332:6:10","type":""}],"src":"14234:171:10"},{"body":{"nodeType":"YulBlock","src":"14557:220:10","statements":[{"nodeType":"YulAssignment","src":"14567:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14633:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"14638:2:10","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14574:58:10"},"nodeType":"YulFunctionCall","src":"14574:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"14567:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14739:3:10"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"14650:88:10"},"nodeType":"YulFunctionCall","src":"14650:93:10"},"nodeType":"YulExpressionStatement","src":"14650:93:10"},{"nodeType":"YulAssignment","src":"14752:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14763:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"14768:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14759:3:10"},"nodeType":"YulFunctionCall","src":"14759:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14752:3:10"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14545:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14553:3:10","type":""}],"src":"14411:366:10"},{"body":{"nodeType":"YulBlock","src":"14954:248:10","statements":[{"nodeType":"YulAssignment","src":"14964:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14976:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14987:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14972:3:10"},"nodeType":"YulFunctionCall","src":"14972:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14964:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15011:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15022:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15007:3:10"},"nodeType":"YulFunctionCall","src":"15007:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15030:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"15036:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15026:3:10"},"nodeType":"YulFunctionCall","src":"15026:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15000:6:10"},"nodeType":"YulFunctionCall","src":"15000:47:10"},"nodeType":"YulExpressionStatement","src":"15000:47:10"},{"nodeType":"YulAssignment","src":"15056:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15190:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15064:124:10"},"nodeType":"YulFunctionCall","src":"15064:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15056:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14934:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14949:4:10","type":""}],"src":"14783:419:10"},{"body":{"nodeType":"YulBlock","src":"15314:118:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15336:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"15344:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15332:3:10"},"nodeType":"YulFunctionCall","src":"15332:14:10"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"15348:34:10","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15325:6:10"},"nodeType":"YulFunctionCall","src":"15325:58:10"},"nodeType":"YulExpressionStatement","src":"15325:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15404:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"15412:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15400:3:10"},"nodeType":"YulFunctionCall","src":"15400:15:10"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"15417:7:10","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15393:6:10"},"nodeType":"YulFunctionCall","src":"15393:32:10"},"nodeType":"YulExpressionStatement","src":"15393:32:10"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15306:6:10","type":""}],"src":"15208:224:10"},{"body":{"nodeType":"YulBlock","src":"15584:220:10","statements":[{"nodeType":"YulAssignment","src":"15594:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15660:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"15665:2:10","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15601:58:10"},"nodeType":"YulFunctionCall","src":"15601:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"15594:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15766:3:10"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"15677:88:10"},"nodeType":"YulFunctionCall","src":"15677:93:10"},"nodeType":"YulExpressionStatement","src":"15677:93:10"},{"nodeType":"YulAssignment","src":"15779:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15790:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"15795:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15786:3:10"},"nodeType":"YulFunctionCall","src":"15786:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"15779:3:10"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"15572:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"15580:3:10","type":""}],"src":"15438:366:10"},{"body":{"nodeType":"YulBlock","src":"15981:248:10","statements":[{"nodeType":"YulAssignment","src":"15991:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16003:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16014:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15999:3:10"},"nodeType":"YulFunctionCall","src":"15999:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15991:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16038:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16049:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16034:3:10"},"nodeType":"YulFunctionCall","src":"16034:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16057:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"16063:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16053:3:10"},"nodeType":"YulFunctionCall","src":"16053:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16027:6:10"},"nodeType":"YulFunctionCall","src":"16027:47:10"},"nodeType":"YulExpressionStatement","src":"16027:47:10"},{"nodeType":"YulAssignment","src":"16083:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16217:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16091:124:10"},"nodeType":"YulFunctionCall","src":"16091:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16083:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15961:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15976:4:10","type":""}],"src":"15810:419:10"},{"body":{"nodeType":"YulBlock","src":"16341:120:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16363:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"16371:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16359:3:10"},"nodeType":"YulFunctionCall","src":"16359:14:10"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"16375:34:10","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16352:6:10"},"nodeType":"YulFunctionCall","src":"16352:58:10"},"nodeType":"YulExpressionStatement","src":"16352:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16431:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"16439:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16427:3:10"},"nodeType":"YulFunctionCall","src":"16427:15:10"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"16444:9:10","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16420:6:10"},"nodeType":"YulFunctionCall","src":"16420:34:10"},"nodeType":"YulExpressionStatement","src":"16420:34:10"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"16333:6:10","type":""}],"src":"16235:226:10"},{"body":{"nodeType":"YulBlock","src":"16613:220:10","statements":[{"nodeType":"YulAssignment","src":"16623:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16689:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"16694:2:10","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16630:58:10"},"nodeType":"YulFunctionCall","src":"16630:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16623:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16795:3:10"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"16706:88:10"},"nodeType":"YulFunctionCall","src":"16706:93:10"},"nodeType":"YulExpressionStatement","src":"16706:93:10"},{"nodeType":"YulAssignment","src":"16808:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16819:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"16824:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16815:3:10"},"nodeType":"YulFunctionCall","src":"16815:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16808:3:10"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16601:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16609:3:10","type":""}],"src":"16467:366:10"},{"body":{"nodeType":"YulBlock","src":"17010:248:10","statements":[{"nodeType":"YulAssignment","src":"17020:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17032:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17043:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17028:3:10"},"nodeType":"YulFunctionCall","src":"17028:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17020:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17067:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17078:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17063:3:10"},"nodeType":"YulFunctionCall","src":"17063:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17086:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"17092:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17082:3:10"},"nodeType":"YulFunctionCall","src":"17082:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17056:6:10"},"nodeType":"YulFunctionCall","src":"17056:47:10"},"nodeType":"YulExpressionStatement","src":"17056:47:10"},{"nodeType":"YulAssignment","src":"17112:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17246:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17120:124:10"},"nodeType":"YulFunctionCall","src":"17120:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17112:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16990:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17005:4:10","type":""}],"src":"16839:419:10"},{"body":{"nodeType":"YulBlock","src":"17370:58:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"17392:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"17400:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17388:3:10"},"nodeType":"YulFunctionCall","src":"17388:14:10"},{"hexValue":"4f6e6c7941676772656761746f72","kind":"string","nodeType":"YulLiteral","src":"17404:16:10","type":"","value":"OnlyAggregator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17381:6:10"},"nodeType":"YulFunctionCall","src":"17381:40:10"},"nodeType":"YulExpressionStatement","src":"17381:40:10"}]},"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"17362:6:10","type":""}],"src":"17264:164:10"},{"body":{"nodeType":"YulBlock","src":"17580:220:10","statements":[{"nodeType":"YulAssignment","src":"17590:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17656:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"17661:2:10","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17597:58:10"},"nodeType":"YulFunctionCall","src":"17597:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17590:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17762:3:10"}],"functionName":{"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulIdentifier","src":"17673:88:10"},"nodeType":"YulFunctionCall","src":"17673:93:10"},"nodeType":"YulExpressionStatement","src":"17673:93:10"},{"nodeType":"YulAssignment","src":"17775:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17786:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"17791:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17782:3:10"},"nodeType":"YulFunctionCall","src":"17782:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17775:3:10"}]}]},"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17568:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17576:3:10","type":""}],"src":"17434:366:10"},{"body":{"nodeType":"YulBlock","src":"17977:248:10","statements":[{"nodeType":"YulAssignment","src":"17987:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17999:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18010:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17995:3:10"},"nodeType":"YulFunctionCall","src":"17995:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17987:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18034:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18045:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18030:3:10"},"nodeType":"YulFunctionCall","src":"18030:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18053:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"18059:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18049:3:10"},"nodeType":"YulFunctionCall","src":"18049:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18023:6:10"},"nodeType":"YulFunctionCall","src":"18023:47:10"},"nodeType":"YulExpressionStatement","src":"18023:47:10"},{"nodeType":"YulAssignment","src":"18079:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18213:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18087:124:10"},"nodeType":"YulFunctionCall","src":"18087:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18079:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17957:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17972:4:10","type":""}],"src":"17806:419:10"},{"body":{"nodeType":"YulBlock","src":"18337:58:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"18359:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"18367:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18355:3:10"},"nodeType":"YulFunctionCall","src":"18355:14:10"},{"hexValue":"4f7264657246756c66696c6c6564","kind":"string","nodeType":"YulLiteral","src":"18371:16:10","type":"","value":"OrderFulfilled"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18348:6:10"},"nodeType":"YulFunctionCall","src":"18348:40:10"},"nodeType":"YulExpressionStatement","src":"18348:40:10"}]},"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"18329:6:10","type":""}],"src":"18231:164:10"},{"body":{"nodeType":"YulBlock","src":"18547:220:10","statements":[{"nodeType":"YulAssignment","src":"18557:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18623:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"18628:2:10","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18564:58:10"},"nodeType":"YulFunctionCall","src":"18564:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"18557:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18729:3:10"}],"functionName":{"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulIdentifier","src":"18640:88:10"},"nodeType":"YulFunctionCall","src":"18640:93:10"},"nodeType":"YulExpressionStatement","src":"18640:93:10"},{"nodeType":"YulAssignment","src":"18742:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18753:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"18758:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18749:3:10"},"nodeType":"YulFunctionCall","src":"18749:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"18742:3:10"}]}]},"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"18535:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"18543:3:10","type":""}],"src":"18401:366:10"},{"body":{"nodeType":"YulBlock","src":"18944:248:10","statements":[{"nodeType":"YulAssignment","src":"18954:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18966:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18977:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18962:3:10"},"nodeType":"YulFunctionCall","src":"18962:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18954:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19001:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19012:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18997:3:10"},"nodeType":"YulFunctionCall","src":"18997:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"19020:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"19026:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"19016:3:10"},"nodeType":"YulFunctionCall","src":"19016:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18990:6:10"},"nodeType":"YulFunctionCall","src":"18990:47:10"},"nodeType":"YulExpressionStatement","src":"18990:47:10"},{"nodeType":"YulAssignment","src":"19046:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"19180:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"19054:124:10"},"nodeType":"YulFunctionCall","src":"19054:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19046:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18924:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18939:4:10","type":""}],"src":"18773:419:10"},{"body":{"nodeType":"YulBlock","src":"19304:57:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"19326:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"19334:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19322:3:10"},"nodeType":"YulFunctionCall","src":"19322:14:10"},{"hexValue":"4f72646572526566756e646564","kind":"string","nodeType":"YulLiteral","src":"19338:15:10","type":"","value":"OrderRefunded"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19315:6:10"},"nodeType":"YulFunctionCall","src":"19315:39:10"},"nodeType":"YulExpressionStatement","src":"19315:39:10"}]},"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"19296:6:10","type":""}],"src":"19198:163:10"},{"body":{"nodeType":"YulBlock","src":"19513:220:10","statements":[{"nodeType":"YulAssignment","src":"19523:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19589:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"19594:2:10","type":"","value":"13"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"19530:58:10"},"nodeType":"YulFunctionCall","src":"19530:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"19523:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19695:3:10"}],"functionName":{"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulIdentifier","src":"19606:88:10"},"nodeType":"YulFunctionCall","src":"19606:93:10"},"nodeType":"YulExpressionStatement","src":"19606:93:10"},{"nodeType":"YulAssignment","src":"19708:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19719:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"19724:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19715:3:10"},"nodeType":"YulFunctionCall","src":"19715:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"19708:3:10"}]}]},"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"19501:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"19509:3:10","type":""}],"src":"19367:366:10"},{"body":{"nodeType":"YulBlock","src":"19910:248:10","statements":[{"nodeType":"YulAssignment","src":"19920:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19932:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19943:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19928:3:10"},"nodeType":"YulFunctionCall","src":"19928:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19920:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19967:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19978:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19963:3:10"},"nodeType":"YulFunctionCall","src":"19963:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"19986:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"19992:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"19982:3:10"},"nodeType":"YulFunctionCall","src":"19982:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19956:6:10"},"nodeType":"YulFunctionCall","src":"19956:47:10"},"nodeType":"YulExpressionStatement","src":"19956:47:10"},{"nodeType":"YulAssignment","src":"20012:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"20146:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"20020:124:10"},"nodeType":"YulFunctionCall","src":"20020:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20012:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19890:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19905:4:10","type":""}],"src":"19739:419:10"},{"body":{"nodeType":"YulBlock","src":"20270:65:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"20292:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"20300:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20288:3:10"},"nodeType":"YulFunctionCall","src":"20288:14:10"},{"hexValue":"4665654578636565647350726f746f636f6c466565","kind":"string","nodeType":"YulLiteral","src":"20304:23:10","type":"","value":"FeeExceedsProtocolFee"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20281:6:10"},"nodeType":"YulFunctionCall","src":"20281:47:10"},"nodeType":"YulExpressionStatement","src":"20281:47:10"}]},"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"20262:6:10","type":""}],"src":"20164:171:10"},{"body":{"nodeType":"YulBlock","src":"20487:220:10","statements":[{"nodeType":"YulAssignment","src":"20497:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20563:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"20568:2:10","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"20504:58:10"},"nodeType":"YulFunctionCall","src":"20504:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"20497:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20669:3:10"}],"functionName":{"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulIdentifier","src":"20580:88:10"},"nodeType":"YulFunctionCall","src":"20580:93:10"},"nodeType":"YulExpressionStatement","src":"20580:93:10"},{"nodeType":"YulAssignment","src":"20682:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20693:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"20698:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20689:3:10"},"nodeType":"YulFunctionCall","src":"20689:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"20682:3:10"}]}]},"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"20475:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"20483:3:10","type":""}],"src":"20341:366:10"},{"body":{"nodeType":"YulBlock","src":"20884:248:10","statements":[{"nodeType":"YulAssignment","src":"20894:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20906:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20917:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20902:3:10"},"nodeType":"YulFunctionCall","src":"20902:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20894:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20941:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20952:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20937:3:10"},"nodeType":"YulFunctionCall","src":"20937:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"20960:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"20966:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20956:3:10"},"nodeType":"YulFunctionCall","src":"20956:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20930:6:10"},"nodeType":"YulFunctionCall","src":"20930:47:10"},"nodeType":"YulExpressionStatement","src":"20930:47:10"},{"nodeType":"YulAssignment","src":"20986:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"21120:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"20994:124:10"},"nodeType":"YulFunctionCall","src":"20994:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20986:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20864:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20879:4:10","type":""}],"src":"20713:419:10"},{"body":{"nodeType":"YulBlock","src":"21203:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21220:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21243:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"21225:17:10"},"nodeType":"YulFunctionCall","src":"21225:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21213:6:10"},"nodeType":"YulFunctionCall","src":"21213:37:10"},"nodeType":"YulExpressionStatement","src":"21213:37:10"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21191:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"21198:3:10","type":""}],"src":"21138:118:10"},{"body":{"nodeType":"YulBlock","src":"21388:206:10","statements":[{"nodeType":"YulAssignment","src":"21398:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21410:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21421:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21406:3:10"},"nodeType":"YulFunctionCall","src":"21406:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21398:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"21478:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21491:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21502:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21487:3:10"},"nodeType":"YulFunctionCall","src":"21487:17:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"21434:43:10"},"nodeType":"YulFunctionCall","src":"21434:71:10"},"nodeType":"YulExpressionStatement","src":"21434:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"21559:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21572:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21583:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21568:3:10"},"nodeType":"YulFunctionCall","src":"21568:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"21515:43:10"},"nodeType":"YulFunctionCall","src":"21515:72:10"},"nodeType":"YulExpressionStatement","src":"21515:72:10"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21352:9:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"21364:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"21372:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21383:4:10","type":""}],"src":"21262:332:10"},{"body":{"nodeType":"YulBlock","src":"21640:76:10","statements":[{"body":{"nodeType":"YulBlock","src":"21694:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21703:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21706:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21696:6:10"},"nodeType":"YulFunctionCall","src":"21696:12:10"},"nodeType":"YulExpressionStatement","src":"21696:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21663:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21685:5:10"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"21670:14:10"},"nodeType":"YulFunctionCall","src":"21670:21:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"21660:2:10"},"nodeType":"YulFunctionCall","src":"21660:32:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"21653:6:10"},"nodeType":"YulFunctionCall","src":"21653:40:10"},"nodeType":"YulIf","src":"21650:60:10"}]},"name":"validator_revert_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21633:5:10","type":""}],"src":"21600:116:10"},{"body":{"nodeType":"YulBlock","src":"21782:77:10","statements":[{"nodeType":"YulAssignment","src":"21792:22:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"21807:6:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"21801:5:10"},"nodeType":"YulFunctionCall","src":"21801:13:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"21792:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21847:5:10"}],"functionName":{"name":"validator_revert_t_bool","nodeType":"YulIdentifier","src":"21823:23:10"},"nodeType":"YulFunctionCall","src":"21823:30:10"},"nodeType":"YulExpressionStatement","src":"21823:30:10"}]},"name":"abi_decode_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"21760:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"21768:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"21776:5:10","type":""}],"src":"21722:137:10"},{"body":{"nodeType":"YulBlock","src":"21939:271:10","statements":[{"body":{"nodeType":"YulBlock","src":"21985:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"21987:77:10"},"nodeType":"YulFunctionCall","src":"21987:79:10"},"nodeType":"YulExpressionStatement","src":"21987:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"21960:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"21969:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21956:3:10"},"nodeType":"YulFunctionCall","src":"21956:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"21981:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"21952:3:10"},"nodeType":"YulFunctionCall","src":"21952:32:10"},"nodeType":"YulIf","src":"21949:119:10"},{"nodeType":"YulBlock","src":"22078:125:10","statements":[{"nodeType":"YulVariableDeclaration","src":"22093:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"22107:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"22097:6:10","type":""}]},{"nodeType":"YulAssignment","src":"22122:71:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22165:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"22176:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22161:3:10"},"nodeType":"YulFunctionCall","src":"22161:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"22185:7:10"}],"functionName":{"name":"abi_decode_t_bool_fromMemory","nodeType":"YulIdentifier","src":"22132:28:10"},"nodeType":"YulFunctionCall","src":"22132:61:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"22122:6:10"}]}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21909:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"21920:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"21932:6:10","type":""}],"src":"21865:345:10"},{"body":{"nodeType":"YulBlock","src":"22244:152:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22261:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22264:77:10","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22254:6:10"},"nodeType":"YulFunctionCall","src":"22254:88:10"},"nodeType":"YulExpressionStatement","src":"22254:88:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22358:1:10","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"22361:4:10","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22351:6:10"},"nodeType":"YulFunctionCall","src":"22351:15:10"},"nodeType":"YulExpressionStatement","src":"22351:15:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22382:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22385:4:10","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22375:6:10"},"nodeType":"YulFunctionCall","src":"22375:15:10"},"nodeType":"YulExpressionStatement","src":"22375:15:10"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"22216:180:10"},{"body":{"nodeType":"YulBlock","src":"22447:149:10","statements":[{"nodeType":"YulAssignment","src":"22457:25:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22480:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22462:17:10"},"nodeType":"YulFunctionCall","src":"22462:20:10"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"22457:1:10"}]},{"nodeType":"YulAssignment","src":"22491:25:10","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"22514:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22496:17:10"},"nodeType":"YulFunctionCall","src":"22496:20:10"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"22491:1:10"}]},{"nodeType":"YulAssignment","src":"22525:17:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22537:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"22540:1:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22533:3:10"},"nodeType":"YulFunctionCall","src":"22533:9:10"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"22525:4:10"}]},{"body":{"nodeType":"YulBlock","src":"22567:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"22569:16:10"},"nodeType":"YulFunctionCall","src":"22569:18:10"},"nodeType":"YulExpressionStatement","src":"22569:18:10"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"22558:4:10"},{"name":"x","nodeType":"YulIdentifier","src":"22564:1:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"22555:2:10"},"nodeType":"YulFunctionCall","src":"22555:11:10"},"nodeType":"YulIf","src":"22552:37:10"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"22433:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"22436:1:10","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"22442:4:10","type":""}],"src":"22402:194:10"},{"body":{"nodeType":"YulBlock","src":"22646:147:10","statements":[{"nodeType":"YulAssignment","src":"22656:25:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22679:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22661:17:10"},"nodeType":"YulFunctionCall","src":"22661:20:10"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"22656:1:10"}]},{"nodeType":"YulAssignment","src":"22690:25:10","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"22713:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22695:17:10"},"nodeType":"YulFunctionCall","src":"22695:20:10"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"22690:1:10"}]},{"nodeType":"YulAssignment","src":"22724:16:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22735:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"22738:1:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22731:3:10"},"nodeType":"YulFunctionCall","src":"22731:9:10"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"22724:3:10"}]},{"body":{"nodeType":"YulBlock","src":"22764:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"22766:16:10"},"nodeType":"YulFunctionCall","src":"22766:18:10"},"nodeType":"YulExpressionStatement","src":"22766:18:10"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22756:1:10"},{"name":"sum","nodeType":"YulIdentifier","src":"22759:3:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"22753:2:10"},"nodeType":"YulFunctionCall","src":"22753:10:10"},"nodeType":"YulIf","src":"22750:36:10"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"22633:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"22636:1:10","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"22642:3:10","type":""}],"src":"22602:191:10"},{"body":{"nodeType":"YulBlock","src":"22897:124:10","statements":[{"nodeType":"YulAssignment","src":"22907:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22919:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22930:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22915:3:10"},"nodeType":"YulFunctionCall","src":"22915:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22907:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"22987:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23000:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"23011:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22996:3:10"},"nodeType":"YulFunctionCall","src":"22996:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"22943:43:10"},"nodeType":"YulFunctionCall","src":"22943:71:10"},"nodeType":"YulExpressionStatement","src":"22943:71:10"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22869:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"22881:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22892:4:10","type":""}],"src":"22799:222:10"},{"body":{"nodeType":"YulBlock","src":"23133:122:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"23155:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"23163:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23151:3:10"},"nodeType":"YulFunctionCall","src":"23151:14:10"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"23167:34:10","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23144:6:10"},"nodeType":"YulFunctionCall","src":"23144:58:10"},"nodeType":"YulExpressionStatement","src":"23144:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"23223:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"23231:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23219:3:10"},"nodeType":"YulFunctionCall","src":"23219:15:10"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"23236:11:10","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23212:6:10"},"nodeType":"YulFunctionCall","src":"23212:36:10"},"nodeType":"YulExpressionStatement","src":"23212:36:10"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"23125:6:10","type":""}],"src":"23027:228:10"},{"body":{"nodeType":"YulBlock","src":"23407:220:10","statements":[{"nodeType":"YulAssignment","src":"23417:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23483:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"23488:2:10","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"23424:58:10"},"nodeType":"YulFunctionCall","src":"23424:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"23417:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23589:3:10"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"23500:88:10"},"nodeType":"YulFunctionCall","src":"23500:93:10"},"nodeType":"YulExpressionStatement","src":"23500:93:10"},{"nodeType":"YulAssignment","src":"23602:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23613:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"23618:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23609:3:10"},"nodeType":"YulFunctionCall","src":"23609:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"23602:3:10"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"23395:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"23403:3:10","type":""}],"src":"23261:366:10"},{"body":{"nodeType":"YulBlock","src":"23804:248:10","statements":[{"nodeType":"YulAssignment","src":"23814:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23826:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"23837:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23822:3:10"},"nodeType":"YulFunctionCall","src":"23822:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23814:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23861:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"23872:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23857:3:10"},"nodeType":"YulFunctionCall","src":"23857:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"23880:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"23886:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"23876:3:10"},"nodeType":"YulFunctionCall","src":"23876:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23850:6:10"},"nodeType":"YulFunctionCall","src":"23850:47:10"},"nodeType":"YulExpressionStatement","src":"23850:47:10"},{"nodeType":"YulAssignment","src":"23906:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24040:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"23914:124:10"},"nodeType":"YulFunctionCall","src":"23914:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23906:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23784:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23799:4:10","type":""}],"src":"23633:419:10"},{"body":{"nodeType":"YulBlock","src":"24164:62:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"24186:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"24194:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24182:3:10"},"nodeType":"YulFunctionCall","src":"24182:14:10"},{"hexValue":"496e76616c69644d65737361676548617368","kind":"string","nodeType":"YulLiteral","src":"24198:20:10","type":"","value":"InvalidMessageHash"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24175:6:10"},"nodeType":"YulFunctionCall","src":"24175:44:10"},"nodeType":"YulExpressionStatement","src":"24175:44:10"}]},"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"24156:6:10","type":""}],"src":"24058:168:10"},{"body":{"nodeType":"YulBlock","src":"24378:220:10","statements":[{"nodeType":"YulAssignment","src":"24388:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24454:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"24459:2:10","type":"","value":"18"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24395:58:10"},"nodeType":"YulFunctionCall","src":"24395:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"24388:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24560:3:10"}],"functionName":{"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulIdentifier","src":"24471:88:10"},"nodeType":"YulFunctionCall","src":"24471:93:10"},"nodeType":"YulExpressionStatement","src":"24471:93:10"},{"nodeType":"YulAssignment","src":"24573:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24584:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"24589:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24580:3:10"},"nodeType":"YulFunctionCall","src":"24580:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"24573:3:10"}]}]},"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"24366:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"24374:3:10","type":""}],"src":"24232:366:10"},{"body":{"nodeType":"YulBlock","src":"24775:248:10","statements":[{"nodeType":"YulAssignment","src":"24785:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24797:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"24808:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24793:3:10"},"nodeType":"YulFunctionCall","src":"24793:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24785:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24832:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"24843:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24828:3:10"},"nodeType":"YulFunctionCall","src":"24828:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24851:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"24857:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"24847:3:10"},"nodeType":"YulFunctionCall","src":"24847:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24821:6:10"},"nodeType":"YulFunctionCall","src":"24821:47:10"},"nodeType":"YulExpressionStatement","src":"24821:47:10"},{"nodeType":"YulAssignment","src":"24877:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25011:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24885:124:10"},"nodeType":"YulFunctionCall","src":"24885:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24877:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24755:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24770:4:10","type":""}],"src":"24604:419:10"},{"body":{"nodeType":"YulBlock","src":"25183:288:10","statements":[{"nodeType":"YulAssignment","src":"25193:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25205:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"25216:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25201:3:10"},"nodeType":"YulFunctionCall","src":"25201:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25193:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"25273:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25286:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"25297:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25282:3:10"},"nodeType":"YulFunctionCall","src":"25282:17:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"25229:43:10"},"nodeType":"YulFunctionCall","src":"25229:71:10"},"nodeType":"YulExpressionStatement","src":"25229:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"25354:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25367:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"25378:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25363:3:10"},"nodeType":"YulFunctionCall","src":"25363:18:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"25310:43:10"},"nodeType":"YulFunctionCall","src":"25310:72:10"},"nodeType":"YulExpressionStatement","src":"25310:72:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"25436:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25449:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"25460:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25445:3:10"},"nodeType":"YulFunctionCall","src":"25445:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"25392:43:10"},"nodeType":"YulFunctionCall","src":"25392:72:10"},"nodeType":"YulExpressionStatement","src":"25392:72:10"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25139:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"25151:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"25159:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"25167:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25178:4:10","type":""}],"src":"25029:442:10"},{"body":{"nodeType":"YulBlock","src":"25520:190:10","statements":[{"nodeType":"YulAssignment","src":"25530:33:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"25557:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"25539:17:10"},"nodeType":"YulFunctionCall","src":"25539:24:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"25530:5:10"}]},{"body":{"nodeType":"YulBlock","src":"25653:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"25655:16:10"},"nodeType":"YulFunctionCall","src":"25655:18:10"},"nodeType":"YulExpressionStatement","src":"25655:18:10"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"25578:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"25585:66:10","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"25575:2:10"},"nodeType":"YulFunctionCall","src":"25575:77:10"},"nodeType":"YulIf","src":"25572:103:10"},{"nodeType":"YulAssignment","src":"25684:20:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"25695:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"25702:1:10","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25691:3:10"},"nodeType":"YulFunctionCall","src":"25691:13:10"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"25684:3:10"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"25506:5:10","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"25516:3:10","type":""}],"src":"25477:233:10"},{"body":{"nodeType":"YulBlock","src":"25870:288:10","statements":[{"nodeType":"YulAssignment","src":"25880:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25892:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"25903:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25888:3:10"},"nodeType":"YulFunctionCall","src":"25888:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25880:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"25960:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25973:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"25984:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25969:3:10"},"nodeType":"YulFunctionCall","src":"25969:17:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"25916:43:10"},"nodeType":"YulFunctionCall","src":"25916:71:10"},"nodeType":"YulExpressionStatement","src":"25916:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"26041:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26054:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"26065:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26050:3:10"},"nodeType":"YulFunctionCall","src":"26050:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"25997:43:10"},"nodeType":"YulFunctionCall","src":"25997:72:10"},"nodeType":"YulExpressionStatement","src":"25997:72:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"26123:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26136:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"26147:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26132:3:10"},"nodeType":"YulFunctionCall","src":"26132:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"26079:43:10"},"nodeType":"YulFunctionCall","src":"26079:72:10"},"nodeType":"YulExpressionStatement","src":"26079:72:10"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25826:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"25838:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"25846:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"25854:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25865:4:10","type":""}],"src":"25716:442:10"},{"body":{"nodeType":"YulBlock","src":"26270:62:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"26292:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"26300:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26288:3:10"},"nodeType":"YulFunctionCall","src":"26288:14:10"},{"hexValue":"4f72646572416c7265616479457869737473","kind":"string","nodeType":"YulLiteral","src":"26304:20:10","type":"","value":"OrderAlreadyExists"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26281:6:10"},"nodeType":"YulFunctionCall","src":"26281:44:10"},"nodeType":"YulExpressionStatement","src":"26281:44:10"}]},"name":"store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"26262:6:10","type":""}],"src":"26164:168:10"},{"body":{"nodeType":"YulBlock","src":"26484:220:10","statements":[{"nodeType":"YulAssignment","src":"26494:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26560:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"26565:2:10","type":"","value":"18"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26501:58:10"},"nodeType":"YulFunctionCall","src":"26501:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"26494:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26666:3:10"}],"functionName":{"name":"store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","nodeType":"YulIdentifier","src":"26577:88:10"},"nodeType":"YulFunctionCall","src":"26577:93:10"},"nodeType":"YulExpressionStatement","src":"26577:93:10"},{"nodeType":"YulAssignment","src":"26679:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26690:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"26695:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26686:3:10"},"nodeType":"YulFunctionCall","src":"26686:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"26679:3:10"}]}]},"name":"abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"26472:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"26480:3:10","type":""}],"src":"26338:366:10"},{"body":{"nodeType":"YulBlock","src":"26881:248:10","statements":[{"nodeType":"YulAssignment","src":"26891:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26903:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"26914:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26899:3:10"},"nodeType":"YulFunctionCall","src":"26899:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26891:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26938:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"26949:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26934:3:10"},"nodeType":"YulFunctionCall","src":"26934:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"26957:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"26963:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"26953:3:10"},"nodeType":"YulFunctionCall","src":"26953:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26927:6:10"},"nodeType":"YulFunctionCall","src":"26927:47:10"},"nodeType":"YulExpressionStatement","src":"26927:47:10"},{"nodeType":"YulAssignment","src":"26983:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27117:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26991:124:10"},"nodeType":"YulFunctionCall","src":"26991:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26983:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26861:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26876:4:10","type":""}],"src":"26710:419:10"},{"body":{"nodeType":"YulBlock","src":"27241:59:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"27263:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"27271:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27259:3:10"},"nodeType":"YulFunctionCall","src":"27259:14:10"},{"hexValue":"53656e64657246656549735a65726f","kind":"string","nodeType":"YulLiteral","src":"27275:17:10","type":"","value":"SenderFeeIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27252:6:10"},"nodeType":"YulFunctionCall","src":"27252:41:10"},"nodeType":"YulExpressionStatement","src":"27252:41:10"}]},"name":"store_literal_in_memory_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"27233:6:10","type":""}],"src":"27135:165:10"},{"body":{"nodeType":"YulBlock","src":"27452:220:10","statements":[{"nodeType":"YulAssignment","src":"27462:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27528:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"27533:2:10","type":"","value":"15"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27469:58:10"},"nodeType":"YulFunctionCall","src":"27469:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"27462:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27634:3:10"}],"functionName":{"name":"store_literal_in_memory_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","nodeType":"YulIdentifier","src":"27545:88:10"},"nodeType":"YulFunctionCall","src":"27545:93:10"},"nodeType":"YulExpressionStatement","src":"27545:93:10"},{"nodeType":"YulAssignment","src":"27647:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27658:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"27663:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27654:3:10"},"nodeType":"YulFunctionCall","src":"27654:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"27647:3:10"}]}]},"name":"abi_encode_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"27440:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"27448:3:10","type":""}],"src":"27306:366:10"},{"body":{"nodeType":"YulBlock","src":"27849:248:10","statements":[{"nodeType":"YulAssignment","src":"27859:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27871:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"27882:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27867:3:10"},"nodeType":"YulFunctionCall","src":"27867:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27859:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27906:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"27917:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27902:3:10"},"nodeType":"YulFunctionCall","src":"27902:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27925:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"27931:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"27921:3:10"},"nodeType":"YulFunctionCall","src":"27921:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27895:6:10"},"nodeType":"YulFunctionCall","src":"27895:47:10"},"nodeType":"YulExpressionStatement","src":"27895:47:10"},{"nodeType":"YulAssignment","src":"27951:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"28085:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27959:124:10"},"nodeType":"YulFunctionCall","src":"27959:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27951:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27829:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27844:4:10","type":""}],"src":"27678:419:10"},{"body":{"nodeType":"YulBlock","src":"28209:73:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"28231:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"28239:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28227:3:10"},"nodeType":"YulFunctionCall","src":"28227:14:10"},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","kind":"string","nodeType":"YulLiteral","src":"28243:31:10","type":"","value":"TokenFeeSettingsNotConfigured"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28220:6:10"},"nodeType":"YulFunctionCall","src":"28220:55:10"},"nodeType":"YulExpressionStatement","src":"28220:55:10"}]},"name":"store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"28201:6:10","type":""}],"src":"28103:179:10"},{"body":{"nodeType":"YulBlock","src":"28434:220:10","statements":[{"nodeType":"YulAssignment","src":"28444:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"28510:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"28515:2:10","type":"","value":"29"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"28451:58:10"},"nodeType":"YulFunctionCall","src":"28451:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"28444:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"28616:3:10"}],"functionName":{"name":"store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","nodeType":"YulIdentifier","src":"28527:88:10"},"nodeType":"YulFunctionCall","src":"28527:93:10"},"nodeType":"YulExpressionStatement","src":"28527:93:10"},{"nodeType":"YulAssignment","src":"28629:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"28640:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"28645:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28636:3:10"},"nodeType":"YulFunctionCall","src":"28636:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"28629:3:10"}]}]},"name":"abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"28422:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"28430:3:10","type":""}],"src":"28288:366:10"},{"body":{"nodeType":"YulBlock","src":"28831:248:10","statements":[{"nodeType":"YulAssignment","src":"28841:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28853:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"28864:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28849:3:10"},"nodeType":"YulFunctionCall","src":"28849:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28841:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28888:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"28899:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28884:3:10"},"nodeType":"YulFunctionCall","src":"28884:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"28907:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"28913:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"28903:3:10"},"nodeType":"YulFunctionCall","src":"28903:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28877:6:10"},"nodeType":"YulFunctionCall","src":"28877:47:10"},"nodeType":"YulExpressionStatement","src":"28877:47:10"},{"nodeType":"YulAssignment","src":"28933:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"29067:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"28941:124:10"},"nodeType":"YulFunctionCall","src":"28941:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28933:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28811:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28826:4:10","type":""}],"src":"28660:419:10"},{"body":{"nodeType":"YulBlock","src":"29133:362:10","statements":[{"nodeType":"YulAssignment","src":"29143:25:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29166:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29148:17:10"},"nodeType":"YulFunctionCall","src":"29148:20:10"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"29143:1:10"}]},{"nodeType":"YulAssignment","src":"29177:25:10","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29200:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29182:17:10"},"nodeType":"YulFunctionCall","src":"29182:20:10"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"29177:1:10"}]},{"nodeType":"YulVariableDeclaration","src":"29211:28:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29234:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"29237:1:10"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"29230:3:10"},"nodeType":"YulFunctionCall","src":"29230:9:10"},"variables":[{"name":"product_raw","nodeType":"YulTypedName","src":"29215:11:10","type":""}]},{"nodeType":"YulAssignment","src":"29248:41:10","value":{"arguments":[{"name":"product_raw","nodeType":"YulIdentifier","src":"29277:11:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29259:17:10"},"nodeType":"YulFunctionCall","src":"29259:30:10"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"29248:7:10"}]},{"body":{"nodeType":"YulBlock","src":"29466:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"29468:16:10"},"nodeType":"YulFunctionCall","src":"29468:18:10"},"nodeType":"YulExpressionStatement","src":"29468:18:10"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29399:1:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"29392:6:10"},"nodeType":"YulFunctionCall","src":"29392:9:10"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29422:1:10"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"29429:7:10"},{"name":"x","nodeType":"YulIdentifier","src":"29438:1:10"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"29425:3:10"},"nodeType":"YulFunctionCall","src":"29425:15:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"29419:2:10"},"nodeType":"YulFunctionCall","src":"29419:22:10"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"29372:2:10"},"nodeType":"YulFunctionCall","src":"29372:83:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"29352:6:10"},"nodeType":"YulFunctionCall","src":"29352:113:10"},"nodeType":"YulIf","src":"29349:139:10"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"29116:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"29119:1:10","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"29125:7:10","type":""}],"src":"29085:410:10"},{"body":{"nodeType":"YulBlock","src":"29529:152:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"29546:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"29549:77:10","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29539:6:10"},"nodeType":"YulFunctionCall","src":"29539:88:10"},"nodeType":"YulExpressionStatement","src":"29539:88:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"29643:1:10","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"29646:4:10","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29636:6:10"},"nodeType":"YulFunctionCall","src":"29636:15:10"},"nodeType":"YulExpressionStatement","src":"29636:15:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"29667:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"29670:4:10","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"29660:6:10"},"nodeType":"YulFunctionCall","src":"29660:15:10"},"nodeType":"YulExpressionStatement","src":"29660:15:10"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"29501:180:10"},{"body":{"nodeType":"YulBlock","src":"29729:143:10","statements":[{"nodeType":"YulAssignment","src":"29739:25:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29762:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29744:17:10"},"nodeType":"YulFunctionCall","src":"29744:20:10"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"29739:1:10"}]},{"nodeType":"YulAssignment","src":"29773:25:10","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29796:1:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29778:17:10"},"nodeType":"YulFunctionCall","src":"29778:20:10"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"29773:1:10"}]},{"body":{"nodeType":"YulBlock","src":"29820:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"29822:16:10"},"nodeType":"YulFunctionCall","src":"29822:18:10"},"nodeType":"YulExpressionStatement","src":"29822:18:10"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29817:1:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"29810:6:10"},"nodeType":"YulFunctionCall","src":"29810:9:10"},"nodeType":"YulIf","src":"29807:35:10"},{"nodeType":"YulAssignment","src":"29852:14:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29861:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"29864:1:10"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"29857:3:10"},"nodeType":"YulFunctionCall","src":"29857:9:10"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"29852:1:10"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"29718:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"29721:1:10","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"29727:1:10","type":""}],"src":"29687:185:10"},{"body":{"nodeType":"YulBlock","src":"29910:28:10","statements":[{"nodeType":"YulAssignment","src":"29920:12:10","value":{"name":"value","nodeType":"YulIdentifier","src":"29927:5:10"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"29920:3:10"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"29896:5:10","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"29906:3:10","type":""}],"src":"29878:60:10"},{"body":{"nodeType":"YulBlock","src":"30003:81:10","statements":[{"nodeType":"YulAssignment","src":"30013:65:10","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"30070:5:10"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"30053:16:10"},"nodeType":"YulFunctionCall","src":"30053:23:10"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"30044:8:10"},"nodeType":"YulFunctionCall","src":"30044:33:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"30026:17:10"},"nodeType":"YulFunctionCall","src":"30026:52:10"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"30013:9:10"}]}]},"name":"convert_t_uint96_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"29983:5:10","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"29993:9:10","type":""}],"src":"29944:140:10"},{"body":{"nodeType":"YulBlock","src":"30154:65:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30171:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"30206:5:10"}],"functionName":{"name":"convert_t_uint96_to_t_uint256","nodeType":"YulIdentifier","src":"30176:29:10"},"nodeType":"YulFunctionCall","src":"30176:36:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30164:6:10"},"nodeType":"YulFunctionCall","src":"30164:49:10"},"nodeType":"YulExpressionStatement","src":"30164:49:10"}]},"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"30142:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"30149:3:10","type":""}],"src":"30090:129:10"},{"body":{"nodeType":"YulBlock","src":"30289:82:10","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"30312:3:10"},{"name":"src","nodeType":"YulIdentifier","src":"30317:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"30322:6:10"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"30299:12:10"},"nodeType":"YulFunctionCall","src":"30299:30:10"},"nodeType":"YulExpressionStatement","src":"30299:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"30349:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"30354:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30345:3:10"},"nodeType":"YulFunctionCall","src":"30345:16:10"},{"kind":"number","nodeType":"YulLiteral","src":"30363:1:10","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30338:6:10"},"nodeType":"YulFunctionCall","src":"30338:27:10"},"nodeType":"YulExpressionStatement","src":"30338:27:10"}]},"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"30271:3:10","type":""},{"name":"dst","nodeType":"YulTypedName","src":"30276:3:10","type":""},{"name":"length","nodeType":"YulTypedName","src":"30281:6:10","type":""}],"src":"30225:146:10"},{"body":{"nodeType":"YulBlock","src":"30425:54:10","statements":[{"nodeType":"YulAssignment","src":"30435:38:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"30453:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"30460:2:10","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30449:3:10"},"nodeType":"YulFunctionCall","src":"30449:14:10"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"30469:2:10","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"30465:3:10"},"nodeType":"YulFunctionCall","src":"30465:7:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"30445:3:10"},"nodeType":"YulFunctionCall","src":"30445:28:10"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"30435:6:10"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"30408:5:10","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"30418:6:10","type":""}],"src":"30377:102:10"},{"body":{"nodeType":"YulBlock","src":"30611:215:10","statements":[{"nodeType":"YulAssignment","src":"30621:78:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30687:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"30692:6:10"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"30628:58:10"},"nodeType":"YulFunctionCall","src":"30628:71:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"30621:3:10"}]},{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"30746:5:10"},{"name":"pos","nodeType":"YulIdentifier","src":"30753:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"30758:6:10"}],"functionName":{"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"30709:36:10"},"nodeType":"YulFunctionCall","src":"30709:56:10"},"nodeType":"YulExpressionStatement","src":"30709:56:10"},{"nodeType":"YulAssignment","src":"30774:46:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30785:3:10"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"30812:6:10"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"30790:21:10"},"nodeType":"YulFunctionCall","src":"30790:29:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30781:3:10"},"nodeType":"YulFunctionCall","src":"30781:39:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"30774:3:10"}]}]},"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"30584:5:10","type":""},{"name":"length","nodeType":"YulTypedName","src":"30591:6:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"30599:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"30607:3:10","type":""}],"src":"30509:317:10"},{"body":{"nodeType":"YulBlock","src":"31043:451:10","statements":[{"nodeType":"YulAssignment","src":"31053:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31065:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"31076:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31061:3:10"},"nodeType":"YulFunctionCall","src":"31061:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31053:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"31134:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31147:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"31158:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31143:3:10"},"nodeType":"YulFunctionCall","src":"31143:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"31090:43:10"},"nodeType":"YulFunctionCall","src":"31090:71:10"},"nodeType":"YulExpressionStatement","src":"31090:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"31215:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31228:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"31239:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31224:3:10"},"nodeType":"YulFunctionCall","src":"31224:18:10"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"31171:43:10"},"nodeType":"YulFunctionCall","src":"31171:72:10"},"nodeType":"YulExpressionStatement","src":"31171:72:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"31296:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31309:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"31320:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31305:3:10"},"nodeType":"YulFunctionCall","src":"31305:18:10"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"31253:42:10"},"nodeType":"YulFunctionCall","src":"31253:71:10"},"nodeType":"YulExpressionStatement","src":"31253:71:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31345:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"31356:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31341:3:10"},"nodeType":"YulFunctionCall","src":"31341:18:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31365:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"31371:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"31361:3:10"},"nodeType":"YulFunctionCall","src":"31361:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31334:6:10"},"nodeType":"YulFunctionCall","src":"31334:48:10"},"nodeType":"YulExpressionStatement","src":"31334:48:10"},{"nodeType":"YulAssignment","src":"31391:96:10","value":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"31465:6:10"},{"name":"value4","nodeType":"YulIdentifier","src":"31473:6:10"},{"name":"tail","nodeType":"YulIdentifier","src":"31482:4:10"}],"functionName":{"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31399:65:10"},"nodeType":"YulFunctionCall","src":"31399:88:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31391:4:10"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"30983:9:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"30995:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"31003:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"31011:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"31019:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"31027:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31038:4:10","type":""}],"src":"30832:662:10"},{"body":{"nodeType":"YulBlock","src":"31606:127:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"31628:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"31636:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31624:3:10"},"nodeType":"YulFunctionCall","src":"31624:14:10"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561","kind":"string","nodeType":"YulLiteral","src":"31640:34:10","type":"","value":"Initializable: contract is alrea"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31617:6:10"},"nodeType":"YulFunctionCall","src":"31617:58:10"},"nodeType":"YulExpressionStatement","src":"31617:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"31696:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"31704:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31692:3:10"},"nodeType":"YulFunctionCall","src":"31692:15:10"},{"hexValue":"647920696e697469616c697a6564","kind":"string","nodeType":"YulLiteral","src":"31709:16:10","type":"","value":"dy initialized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31685:6:10"},"nodeType":"YulFunctionCall","src":"31685:41:10"},"nodeType":"YulExpressionStatement","src":"31685:41:10"}]},"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"31598:6:10","type":""}],"src":"31500:233:10"},{"body":{"nodeType":"YulBlock","src":"31885:220:10","statements":[{"nodeType":"YulAssignment","src":"31895:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31961:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"31966:2:10","type":"","value":"46"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31902:58:10"},"nodeType":"YulFunctionCall","src":"31902:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"31895:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"32067:3:10"}],"functionName":{"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulIdentifier","src":"31978:88:10"},"nodeType":"YulFunctionCall","src":"31978:93:10"},"nodeType":"YulExpressionStatement","src":"31978:93:10"},{"nodeType":"YulAssignment","src":"32080:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"32091:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"32096:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32087:3:10"},"nodeType":"YulFunctionCall","src":"32087:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"32080:3:10"}]}]},"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"31873:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"31881:3:10","type":""}],"src":"31739:366:10"},{"body":{"nodeType":"YulBlock","src":"32282:248:10","statements":[{"nodeType":"YulAssignment","src":"32292:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32304:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"32315:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32300:3:10"},"nodeType":"YulFunctionCall","src":"32300:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"32292:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32339:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"32350:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32335:3:10"},"nodeType":"YulFunctionCall","src":"32335:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"32358:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"32364:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"32354:3:10"},"nodeType":"YulFunctionCall","src":"32354:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32328:6:10"},"nodeType":"YulFunctionCall","src":"32328:47:10"},"nodeType":"YulExpressionStatement","src":"32328:47:10"},{"nodeType":"YulAssignment","src":"32384:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"32518:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"32392:124:10"},"nodeType":"YulFunctionCall","src":"32392:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"32384:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"32262:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"32277:4:10","type":""}],"src":"32111:419:10"},{"body":{"nodeType":"YulBlock","src":"32589:32:10","statements":[{"nodeType":"YulAssignment","src":"32599:16:10","value":{"name":"value","nodeType":"YulIdentifier","src":"32610:5:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"32599:7:10"}]}]},"name":"cleanup_t_rational_1_by_1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32571:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"32581:7:10","type":""}],"src":"32536:85:10"},{"body":{"nodeType":"YulBlock","src":"32670:43:10","statements":[{"nodeType":"YulAssignment","src":"32680:27:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32695:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"32702:4:10","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"32691:3:10"},"nodeType":"YulFunctionCall","src":"32691:16:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"32680:7:10"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32652:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"32662:7:10","type":""}],"src":"32627:86:10"},{"body":{"nodeType":"YulBlock","src":"32785:88:10","statements":[{"nodeType":"YulAssignment","src":"32795:72:10","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32859:5:10"}],"functionName":{"name":"cleanup_t_rational_1_by_1","nodeType":"YulIdentifier","src":"32833:25:10"},"nodeType":"YulFunctionCall","src":"32833:32:10"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"32824:8:10"},"nodeType":"YulFunctionCall","src":"32824:42:10"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"32808:15:10"},"nodeType":"YulFunctionCall","src":"32808:59:10"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"32795:9:10"}]}]},"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32765:5:10","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"32775:9:10","type":""}],"src":"32719:154:10"},{"body":{"nodeType":"YulBlock","src":"32950:72:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"32967:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"33009:5:10"}],"functionName":{"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulIdentifier","src":"32972:36:10"},"nodeType":"YulFunctionCall","src":"32972:43:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32960:6:10"},"nodeType":"YulFunctionCall","src":"32960:56:10"},"nodeType":"YulExpressionStatement","src":"32960:56:10"}]},"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32938:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"32945:3:10","type":""}],"src":"32879:143:10"},{"body":{"nodeType":"YulBlock","src":"33132:130:10","statements":[{"nodeType":"YulAssignment","src":"33142:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33154:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"33165:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33150:3:10"},"nodeType":"YulFunctionCall","src":"33150:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"33142:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"33228:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33241:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"33252:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33237:3:10"},"nodeType":"YulFunctionCall","src":"33237:17:10"}],"functionName":{"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"33178:49:10"},"nodeType":"YulFunctionCall","src":"33178:77:10"},"nodeType":"YulExpressionStatement","src":"33178:77:10"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"33104:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"33116:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"33127:4:10","type":""}],"src":"33028:234:10"},{"body":{"nodeType":"YulBlock","src":"33374:72:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"33396:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"33404:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33392:3:10"},"nodeType":"YulFunctionCall","src":"33392:14:10"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"33408:30:10","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33385:6:10"},"nodeType":"YulFunctionCall","src":"33385:54:10"},"nodeType":"YulExpressionStatement","src":"33385:54:10"}]},"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"33366:6:10","type":""}],"src":"33268:178:10"},{"body":{"nodeType":"YulBlock","src":"33598:220:10","statements":[{"nodeType":"YulAssignment","src":"33608:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33674:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"33679:2:10","type":"","value":"28"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"33615:58:10"},"nodeType":"YulFunctionCall","src":"33615:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"33608:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33780:3:10"}],"functionName":{"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulIdentifier","src":"33691:88:10"},"nodeType":"YulFunctionCall","src":"33691:93:10"},"nodeType":"YulExpressionStatement","src":"33691:93:10"},{"nodeType":"YulAssignment","src":"33793:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33804:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"33809:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33800:3:10"},"nodeType":"YulFunctionCall","src":"33800:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"33793:3:10"}]}]},"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"33586:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"33594:3:10","type":""}],"src":"33452:366:10"},{"body":{"nodeType":"YulBlock","src":"33995:248:10","statements":[{"nodeType":"YulAssignment","src":"34005:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34017:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"34028:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34013:3:10"},"nodeType":"YulFunctionCall","src":"34013:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34005:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34052:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"34063:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34048:3:10"},"nodeType":"YulFunctionCall","src":"34048:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34071:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"34077:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"34067:3:10"},"nodeType":"YulFunctionCall","src":"34067:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34041:6:10"},"nodeType":"YulFunctionCall","src":"34041:47:10"},"nodeType":"YulExpressionStatement","src":"34041:47:10"},{"nodeType":"YulAssignment","src":"34097:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34231:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"34105:124:10"},"nodeType":"YulFunctionCall","src":"34105:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34097:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"33975:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"33990:4:10","type":""}],"src":"33824:419:10"},{"body":{"nodeType":"YulBlock","src":"34355:116:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"34377:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"34385:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34373:3:10"},"nodeType":"YulFunctionCall","src":"34373:14:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"34389:34:10","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34366:6:10"},"nodeType":"YulFunctionCall","src":"34366:58:10"},"nodeType":"YulExpressionStatement","src":"34366:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"34445:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"34453:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34441:3:10"},"nodeType":"YulFunctionCall","src":"34441:15:10"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"34458:5:10","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34434:6:10"},"nodeType":"YulFunctionCall","src":"34434:30:10"},"nodeType":"YulExpressionStatement","src":"34434:30:10"}]},"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"34347:6:10","type":""}],"src":"34249:222:10"},{"body":{"nodeType":"YulBlock","src":"34623:220:10","statements":[{"nodeType":"YulAssignment","src":"34633:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34699:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"34704:2:10","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"34640:58:10"},"nodeType":"YulFunctionCall","src":"34640:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"34633:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34805:3:10"}],"functionName":{"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulIdentifier","src":"34716:88:10"},"nodeType":"YulFunctionCall","src":"34716:93:10"},"nodeType":"YulExpressionStatement","src":"34716:93:10"},{"nodeType":"YulAssignment","src":"34818:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34829:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"34834:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34825:3:10"},"nodeType":"YulFunctionCall","src":"34825:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"34818:3:10"}]}]},"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"34611:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"34619:3:10","type":""}],"src":"34477:366:10"},{"body":{"nodeType":"YulBlock","src":"35020:248:10","statements":[{"nodeType":"YulAssignment","src":"35030:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"35042:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"35053:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35038:3:10"},"nodeType":"YulFunctionCall","src":"35038:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"35030:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"35077:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"35088:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35073:3:10"},"nodeType":"YulFunctionCall","src":"35073:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"35096:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"35102:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"35092:3:10"},"nodeType":"YulFunctionCall","src":"35092:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35066:6:10"},"nodeType":"YulFunctionCall","src":"35066:47:10"},"nodeType":"YulExpressionStatement","src":"35066:47:10"},{"nodeType":"YulAssignment","src":"35122:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"35256:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"35130:124:10"},"nodeType":"YulFunctionCall","src":"35130:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"35122:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"35000:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"35015:4:10","type":""}],"src":"34849:419:10"},{"body":{"nodeType":"YulBlock","src":"35380:120:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"35402:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"35410:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35398:3:10"},"nodeType":"YulFunctionCall","src":"35398:14:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"35414:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35391:6:10"},"nodeType":"YulFunctionCall","src":"35391:58:10"},"nodeType":"YulExpressionStatement","src":"35391:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"35470:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"35478:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35466:3:10"},"nodeType":"YulFunctionCall","src":"35466:15:10"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"35483:9:10","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35459:6:10"},"nodeType":"YulFunctionCall","src":"35459:34:10"},"nodeType":"YulExpressionStatement","src":"35459:34:10"}]},"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"35372:6:10","type":""}],"src":"35274:226:10"},{"body":{"nodeType":"YulBlock","src":"35652:220:10","statements":[{"nodeType":"YulAssignment","src":"35662:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35728:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"35733:2:10","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"35669:58:10"},"nodeType":"YulFunctionCall","src":"35669:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"35662:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35834:3:10"}],"functionName":{"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulIdentifier","src":"35745:88:10"},"nodeType":"YulFunctionCall","src":"35745:93:10"},"nodeType":"YulExpressionStatement","src":"35745:93:10"},{"nodeType":"YulAssignment","src":"35847:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35858:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"35863:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35854:3:10"},"nodeType":"YulFunctionCall","src":"35854:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"35847:3:10"}]}]},"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"35640:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"35648:3:10","type":""}],"src":"35506:366:10"},{"body":{"nodeType":"YulBlock","src":"36049:248:10","statements":[{"nodeType":"YulAssignment","src":"36059:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36071:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"36082:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36067:3:10"},"nodeType":"YulFunctionCall","src":"36067:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"36059:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36106:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"36117:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36102:3:10"},"nodeType":"YulFunctionCall","src":"36102:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"36125:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"36131:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"36121:3:10"},"nodeType":"YulFunctionCall","src":"36121:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36095:6:10"},"nodeType":"YulFunctionCall","src":"36095:47:10"},"nodeType":"YulExpressionStatement","src":"36095:47:10"},{"nodeType":"YulAssignment","src":"36151:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"36285:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"36159:124:10"},"nodeType":"YulFunctionCall","src":"36159:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"36151:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"36029:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"36044:4:10","type":""}],"src":"35878:419:10"},{"body":{"nodeType":"YulBlock","src":"36409:118:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"36431:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"36439:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36427:3:10"},"nodeType":"YulFunctionCall","src":"36427:14:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"36443:34:10","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36420:6:10"},"nodeType":"YulFunctionCall","src":"36420:58:10"},"nodeType":"YulExpressionStatement","src":"36420:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"36499:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"36507:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36495:3:10"},"nodeType":"YulFunctionCall","src":"36495:15:10"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"36512:7:10","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36488:6:10"},"nodeType":"YulFunctionCall","src":"36488:32:10"},"nodeType":"YulExpressionStatement","src":"36488:32:10"}]},"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"36401:6:10","type":""}],"src":"36303:224:10"},{"body":{"nodeType":"YulBlock","src":"36679:220:10","statements":[{"nodeType":"YulAssignment","src":"36689:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36755:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"36760:2:10","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"36696:58:10"},"nodeType":"YulFunctionCall","src":"36696:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"36689:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36861:3:10"}],"functionName":{"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulIdentifier","src":"36772:88:10"},"nodeType":"YulFunctionCall","src":"36772:93:10"},"nodeType":"YulExpressionStatement","src":"36772:93:10"},{"nodeType":"YulAssignment","src":"36874:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36885:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"36890:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36881:3:10"},"nodeType":"YulFunctionCall","src":"36881:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"36874:3:10"}]}]},"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"36667:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"36675:3:10","type":""}],"src":"36533:366:10"},{"body":{"nodeType":"YulBlock","src":"37076:248:10","statements":[{"nodeType":"YulAssignment","src":"37086:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37098:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"37109:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37094:3:10"},"nodeType":"YulFunctionCall","src":"37094:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37086:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37133:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"37144:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37129:3:10"},"nodeType":"YulFunctionCall","src":"37129:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37152:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"37158:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"37148:3:10"},"nodeType":"YulFunctionCall","src":"37148:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37122:6:10"},"nodeType":"YulFunctionCall","src":"37122:47:10"},"nodeType":"YulExpressionStatement","src":"37122:47:10"},{"nodeType":"YulAssignment","src":"37178:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37312:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37186:124:10"},"nodeType":"YulFunctionCall","src":"37186:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37178:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"37056:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"37071:4:10","type":""}],"src":"36905:419:10"},{"body":{"nodeType":"YulBlock","src":"37436:123:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"37458:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"37466:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37454:3:10"},"nodeType":"YulFunctionCall","src":"37454:14:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"37470:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37447:6:10"},"nodeType":"YulFunctionCall","src":"37447:58:10"},"nodeType":"YulExpressionStatement","src":"37447:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"37526:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"37534:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37522:3:10"},"nodeType":"YulFunctionCall","src":"37522:15:10"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"37539:12:10","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37515:6:10"},"nodeType":"YulFunctionCall","src":"37515:37:10"},"nodeType":"YulExpressionStatement","src":"37515:37:10"}]},"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"37428:6:10","type":""}],"src":"37330:229:10"},{"body":{"nodeType":"YulBlock","src":"37711:220:10","statements":[{"nodeType":"YulAssignment","src":"37721:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37787:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"37792:2:10","type":"","value":"42"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37728:58:10"},"nodeType":"YulFunctionCall","src":"37728:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"37721:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37893:3:10"}],"functionName":{"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulIdentifier","src":"37804:88:10"},"nodeType":"YulFunctionCall","src":"37804:93:10"},"nodeType":"YulExpressionStatement","src":"37804:93:10"},{"nodeType":"YulAssignment","src":"37906:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37917:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"37922:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37913:3:10"},"nodeType":"YulFunctionCall","src":"37913:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"37906:3:10"}]}]},"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"37699:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"37707:3:10","type":""}],"src":"37565:366:10"},{"body":{"nodeType":"YulBlock","src":"38108:248:10","statements":[{"nodeType":"YulAssignment","src":"38118:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38130:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38141:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38126:3:10"},"nodeType":"YulFunctionCall","src":"38126:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38118:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38165:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38176:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38161:3:10"},"nodeType":"YulFunctionCall","src":"38161:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"38184:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"38190:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"38180:3:10"},"nodeType":"YulFunctionCall","src":"38180:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"38154:6:10"},"nodeType":"YulFunctionCall","src":"38154:47:10"},"nodeType":"YulExpressionStatement","src":"38154:47:10"},{"nodeType":"YulAssignment","src":"38210:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"38344:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"38218:124:10"},"nodeType":"YulFunctionCall","src":"38218:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38210:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"38088:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"38103:4:10","type":""}],"src":"37937:419:10"},{"body":{"nodeType":"YulBlock","src":"38544:371:10","statements":[{"nodeType":"YulAssignment","src":"38554:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38566:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38577:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38562:3:10"},"nodeType":"YulFunctionCall","src":"38562:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38554:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"38635:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38648:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38659:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38644:3:10"},"nodeType":"YulFunctionCall","src":"38644:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38591:43:10"},"nodeType":"YulFunctionCall","src":"38591:71:10"},"nodeType":"YulExpressionStatement","src":"38591:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"38716:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38729:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38740:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38725:3:10"},"nodeType":"YulFunctionCall","src":"38725:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38672:43:10"},"nodeType":"YulFunctionCall","src":"38672:72:10"},"nodeType":"YulExpressionStatement","src":"38672:72:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"38798:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38811:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38822:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38807:3:10"},"nodeType":"YulFunctionCall","src":"38807:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38754:43:10"},"nodeType":"YulFunctionCall","src":"38754:72:10"},"nodeType":"YulExpressionStatement","src":"38754:72:10"},{"expression":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"38880:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38893:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"38904:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38889:3:10"},"nodeType":"YulFunctionCall","src":"38889:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38836:43:10"},"nodeType":"YulFunctionCall","src":"38836:72:10"},"nodeType":"YulExpressionStatement","src":"38836:72:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"38492:9:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"38504:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"38512:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"38520:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"38528:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"38539:4:10","type":""}],"src":"38362:553:10"},{"body":{"nodeType":"YulBlock","src":"39027:67:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"39049:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"39057:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39045:3:10"},"nodeType":"YulFunctionCall","src":"39045:14:10"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"39061:25:10","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39038:6:10"},"nodeType":"YulFunctionCall","src":"39038:49:10"},"nodeType":"YulExpressionStatement","src":"39038:49:10"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"39019:6:10","type":""}],"src":"38921:173:10"},{"body":{"nodeType":"YulBlock","src":"39246:220:10","statements":[{"nodeType":"YulAssignment","src":"39256:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39322:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"39327:2:10","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"39263:58:10"},"nodeType":"YulFunctionCall","src":"39263:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"39256:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39428:3:10"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"39339:88:10"},"nodeType":"YulFunctionCall","src":"39339:93:10"},"nodeType":"YulExpressionStatement","src":"39339:93:10"},{"nodeType":"YulAssignment","src":"39441:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39452:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"39457:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39448:3:10"},"nodeType":"YulFunctionCall","src":"39448:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"39441:3:10"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"39234:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"39242:3:10","type":""}],"src":"39100:366:10"},{"body":{"nodeType":"YulBlock","src":"39643:248:10","statements":[{"nodeType":"YulAssignment","src":"39653:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39665:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"39676:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39661:3:10"},"nodeType":"YulFunctionCall","src":"39661:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"39653:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39700:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"39711:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39696:3:10"},"nodeType":"YulFunctionCall","src":"39696:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"39719:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"39725:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"39715:3:10"},"nodeType":"YulFunctionCall","src":"39715:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39689:6:10"},"nodeType":"YulFunctionCall","src":"39689:47:10"},"nodeType":"YulExpressionStatement","src":"39689:47:10"},{"nodeType":"YulAssignment","src":"39745:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"39879:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"39753:124:10"},"nodeType":"YulFunctionCall","src":"39753:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"39745:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"39623:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"39638:4:10","type":""}],"src":"39472:419:10"},{"body":{"nodeType":"YulBlock","src":"40003:64:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"40025:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"40033:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40021:3:10"},"nodeType":"YulFunctionCall","src":"40021:14:10"},{"hexValue":"496e76616c696452656261746550657263656e74","kind":"string","nodeType":"YulLiteral","src":"40037:22:10","type":"","value":"InvalidRebatePercent"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40014:6:10"},"nodeType":"YulFunctionCall","src":"40014:46:10"},"nodeType":"YulExpressionStatement","src":"40014:46:10"}]},"name":"store_literal_in_memory_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"39995:6:10","type":""}],"src":"39897:170:10"},{"body":{"nodeType":"YulBlock","src":"40219:220:10","statements":[{"nodeType":"YulAssignment","src":"40229:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40295:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"40300:2:10","type":"","value":"20"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40236:58:10"},"nodeType":"YulFunctionCall","src":"40236:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"40229:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40401:3:10"}],"functionName":{"name":"store_literal_in_memory_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325","nodeType":"YulIdentifier","src":"40312:88:10"},"nodeType":"YulFunctionCall","src":"40312:93:10"},"nodeType":"YulExpressionStatement","src":"40312:93:10"},{"nodeType":"YulAssignment","src":"40414:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40425:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"40430:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40421:3:10"},"nodeType":"YulFunctionCall","src":"40421:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"40414:3:10"}]}]},"name":"abi_encode_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"40207:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"40215:3:10","type":""}],"src":"40073:366:10"},{"body":{"nodeType":"YulBlock","src":"40616:248:10","statements":[{"nodeType":"YulAssignment","src":"40626:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40638:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"40649:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40634:3:10"},"nodeType":"YulFunctionCall","src":"40634:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40626:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40673:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"40684:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40669:3:10"},"nodeType":"YulFunctionCall","src":"40669:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"40692:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"40698:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"40688:3:10"},"nodeType":"YulFunctionCall","src":"40688:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40662:6:10"},"nodeType":"YulFunctionCall","src":"40662:47:10"},"nodeType":"YulExpressionStatement","src":"40662:47:10"},{"nodeType":"YulAssignment","src":"40718:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"40852:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40726:124:10"},"nodeType":"YulFunctionCall","src":"40726:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40718:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"40596:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"40611:4:10","type":""}],"src":"40445:419:10"},{"body":{"nodeType":"YulBlock","src":"40914:172:10","statements":[{"nodeType":"YulAssignment","src":"40924:24:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"40946:1:10"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"40929:16:10"},"nodeType":"YulFunctionCall","src":"40929:19:10"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"40924:1:10"}]},{"nodeType":"YulAssignment","src":"40957:24:10","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"40979:1:10"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"40962:16:10"},"nodeType":"YulFunctionCall","src":"40962:19:10"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"40957:1:10"}]},{"nodeType":"YulAssignment","src":"40990:17:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"41002:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"41005:1:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"40998:3:10"},"nodeType":"YulFunctionCall","src":"40998:9:10"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"40990:4:10"}]},{"body":{"nodeType":"YulBlock","src":"41057:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"41059:16:10"},"nodeType":"YulFunctionCall","src":"41059:18:10"},"nodeType":"YulExpressionStatement","src":"41059:18:10"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"41023:4:10"},{"kind":"number","nodeType":"YulLiteral","src":"41029:26:10","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"41020:2:10"},"nodeType":"YulFunctionCall","src":"41020:36:10"},"nodeType":"YulIf","src":"41017:62:10"}]},"name":"checked_sub_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"40900:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"40903:1:10","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"40909:4:10","type":""}],"src":"40870:216:10"},{"body":{"nodeType":"YulBlock","src":"41155:52:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41172:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"41194:5:10"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"41177:16:10"},"nodeType":"YulFunctionCall","src":"41177:23:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41165:6:10"},"nodeType":"YulFunctionCall","src":"41165:36:10"},"nodeType":"YulExpressionStatement","src":"41165:36:10"}]},"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"41143:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"41150:3:10","type":""}],"src":"41092:115:10"},{"body":{"nodeType":"YulBlock","src":"41363:284:10","statements":[{"nodeType":"YulAssignment","src":"41373:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41385:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"41396:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41381:3:10"},"nodeType":"YulFunctionCall","src":"41381:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"41373:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"41453:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41466:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"41477:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41462:3:10"},"nodeType":"YulFunctionCall","src":"41462:17:10"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"41409:43:10"},"nodeType":"YulFunctionCall","src":"41409:71:10"},"nodeType":"YulExpressionStatement","src":"41409:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"41532:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41545:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"41556:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41541:3:10"},"nodeType":"YulFunctionCall","src":"41541:18:10"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"41490:41:10"},"nodeType":"YulFunctionCall","src":"41490:70:10"},"nodeType":"YulExpressionStatement","src":"41490:70:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"41612:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41625:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"41636:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41621:3:10"},"nodeType":"YulFunctionCall","src":"41621:18:10"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"41570:41:10"},"nodeType":"YulFunctionCall","src":"41570:70:10"},"nodeType":"YulExpressionStatement","src":"41570:70:10"}]},"name":"abi_encode_tuple_t_bytes32_t_uint64_t_uint64__to_t_bytes32_t_uint64_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"41319:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"41331:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"41339:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"41347:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"41358:4:10","type":""}],"src":"41213:434:10"},{"body":{"nodeType":"YulBlock","src":"41759:76:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"41781:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"41789:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41777:3:10"},"nodeType":"YulFunctionCall","src":"41777:14:10"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"41793:34:10","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41770:6:10"},"nodeType":"YulFunctionCall","src":"41770:58:10"},"nodeType":"YulExpressionStatement","src":"41770:58:10"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"41751:6:10","type":""}],"src":"41653:182:10"},{"body":{"nodeType":"YulBlock","src":"41987:220:10","statements":[{"nodeType":"YulAssignment","src":"41997:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42063:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"42068:2:10","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42004:58:10"},"nodeType":"YulFunctionCall","src":"42004:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"41997:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42169:3:10"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"42080:88:10"},"nodeType":"YulFunctionCall","src":"42080:93:10"},"nodeType":"YulExpressionStatement","src":"42080:93:10"},{"nodeType":"YulAssignment","src":"42182:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42193:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"42198:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42189:3:10"},"nodeType":"YulFunctionCall","src":"42189:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"42182:3:10"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"41975:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"41983:3:10","type":""}],"src":"41841:366:10"},{"body":{"nodeType":"YulBlock","src":"42384:248:10","statements":[{"nodeType":"YulAssignment","src":"42394:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42406:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"42417:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42402:3:10"},"nodeType":"YulFunctionCall","src":"42402:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42394:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42441:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"42452:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42437:3:10"},"nodeType":"YulFunctionCall","src":"42437:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42460:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"42466:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"42456:3:10"},"nodeType":"YulFunctionCall","src":"42456:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42430:6:10"},"nodeType":"YulFunctionCall","src":"42430:47:10"},"nodeType":"YulExpressionStatement","src":"42430:47:10"},{"nodeType":"YulAssignment","src":"42486:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42620:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42494:124:10"},"nodeType":"YulFunctionCall","src":"42494:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42486:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"42364:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"42379:4:10","type":""}],"src":"42213:419:10"},{"body":{"nodeType":"YulBlock","src":"42744:60:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"42766:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"42774:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42762:3:10"},"nodeType":"YulFunctionCall","src":"42762:14:10"},{"hexValue":"5061757361626c653a20706175736564","kind":"string","nodeType":"YulLiteral","src":"42778:18:10","type":"","value":"Pausable: paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42755:6:10"},"nodeType":"YulFunctionCall","src":"42755:42:10"},"nodeType":"YulExpressionStatement","src":"42755:42:10"}]},"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"42736:6:10","type":""}],"src":"42638:166:10"},{"body":{"nodeType":"YulBlock","src":"42956:220:10","statements":[{"nodeType":"YulAssignment","src":"42966:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43032:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"43037:2:10","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42973:58:10"},"nodeType":"YulFunctionCall","src":"42973:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"42966:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43138:3:10"}],"functionName":{"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulIdentifier","src":"43049:88:10"},"nodeType":"YulFunctionCall","src":"43049:93:10"},"nodeType":"YulExpressionStatement","src":"43049:93:10"},{"nodeType":"YulAssignment","src":"43151:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43162:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"43167:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43158:3:10"},"nodeType":"YulFunctionCall","src":"43158:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"43151:3:10"}]}]},"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"42944:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"42952:3:10","type":""}],"src":"42810:366:10"},{"body":{"nodeType":"YulBlock","src":"43353:248:10","statements":[{"nodeType":"YulAssignment","src":"43363:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43375:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"43386:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43371:3:10"},"nodeType":"YulFunctionCall","src":"43371:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43363:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43410:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"43421:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43406:3:10"},"nodeType":"YulFunctionCall","src":"43406:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43429:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"43435:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"43425:3:10"},"nodeType":"YulFunctionCall","src":"43425:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43399:6:10"},"nodeType":"YulFunctionCall","src":"43399:47:10"},"nodeType":"YulExpressionStatement","src":"43399:47:10"},{"nodeType":"YulAssignment","src":"43455:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43589:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43463:124:10"},"nodeType":"YulFunctionCall","src":"43463:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43455:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"43333:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"43348:4:10","type":""}],"src":"43182:419:10"},{"body":{"nodeType":"YulBlock","src":"43713:61:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"43735:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"43743:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43731:3:10"},"nodeType":"YulFunctionCall","src":"43731:14:10"},{"hexValue":"546f6b656e4e6f74537570706f72746564","kind":"string","nodeType":"YulLiteral","src":"43747:19:10","type":"","value":"TokenNotSupported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43724:6:10"},"nodeType":"YulFunctionCall","src":"43724:43:10"},"nodeType":"YulExpressionStatement","src":"43724:43:10"}]},"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"43705:6:10","type":""}],"src":"43607:167:10"},{"body":{"nodeType":"YulBlock","src":"43926:220:10","statements":[{"nodeType":"YulAssignment","src":"43936:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44002:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"44007:2:10","type":"","value":"17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43943:58:10"},"nodeType":"YulFunctionCall","src":"43943:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"43936:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44108:3:10"}],"functionName":{"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulIdentifier","src":"44019:88:10"},"nodeType":"YulFunctionCall","src":"44019:93:10"},"nodeType":"YulExpressionStatement","src":"44019:93:10"},{"nodeType":"YulAssignment","src":"44121:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44132:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"44137:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44128:3:10"},"nodeType":"YulFunctionCall","src":"44128:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"44121:3:10"}]}]},"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"43914:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"43922:3:10","type":""}],"src":"43780:366:10"},{"body":{"nodeType":"YulBlock","src":"44323:248:10","statements":[{"nodeType":"YulAssignment","src":"44333:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44345:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"44356:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44341:3:10"},"nodeType":"YulFunctionCall","src":"44341:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44333:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44380:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"44391:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44376:3:10"},"nodeType":"YulFunctionCall","src":"44376:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44399:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"44405:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"44395:3:10"},"nodeType":"YulFunctionCall","src":"44395:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44369:6:10"},"nodeType":"YulFunctionCall","src":"44369:47:10"},"nodeType":"YulExpressionStatement","src":"44369:47:10"},{"nodeType":"YulAssignment","src":"44425:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44559:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44433:124:10"},"nodeType":"YulFunctionCall","src":"44433:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44425:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"44303:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"44318:4:10","type":""}],"src":"44152:419:10"},{"body":{"nodeType":"YulBlock","src":"44683:56:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"44705:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"44713:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44701:3:10"},"nodeType":"YulFunctionCall","src":"44701:14:10"},{"hexValue":"416d6f756e7449735a65726f","kind":"string","nodeType":"YulLiteral","src":"44717:14:10","type":"","value":"AmountIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44694:6:10"},"nodeType":"YulFunctionCall","src":"44694:38:10"},"nodeType":"YulExpressionStatement","src":"44694:38:10"}]},"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"44675:6:10","type":""}],"src":"44577:162:10"},{"body":{"nodeType":"YulBlock","src":"44891:220:10","statements":[{"nodeType":"YulAssignment","src":"44901:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44967:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"44972:2:10","type":"","value":"12"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44908:58:10"},"nodeType":"YulFunctionCall","src":"44908:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"44901:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45073:3:10"}],"functionName":{"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulIdentifier","src":"44984:88:10"},"nodeType":"YulFunctionCall","src":"44984:93:10"},"nodeType":"YulExpressionStatement","src":"44984:93:10"},{"nodeType":"YulAssignment","src":"45086:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45097:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"45102:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45093:3:10"},"nodeType":"YulFunctionCall","src":"45093:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"45086:3:10"}]}]},"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"44879:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"44887:3:10","type":""}],"src":"44745:366:10"},{"body":{"nodeType":"YulBlock","src":"45288:248:10","statements":[{"nodeType":"YulAssignment","src":"45298:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45310:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"45321:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45306:3:10"},"nodeType":"YulFunctionCall","src":"45306:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45298:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45345:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"45356:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45341:3:10"},"nodeType":"YulFunctionCall","src":"45341:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45364:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"45370:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"45360:3:10"},"nodeType":"YulFunctionCall","src":"45360:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45334:6:10"},"nodeType":"YulFunctionCall","src":"45334:47:10"},"nodeType":"YulExpressionStatement","src":"45334:47:10"},{"nodeType":"YulAssignment","src":"45390:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45524:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45398:124:10"},"nodeType":"YulFunctionCall","src":"45398:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45390:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"45268:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"45283:4:10","type":""}],"src":"45117:419:10"},{"body":{"nodeType":"YulBlock","src":"45648:60:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"45670:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"45678:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45666:3:10"},"nodeType":"YulFunctionCall","src":"45666:14:10"},{"hexValue":"5468726f775a65726f41646472657373","kind":"string","nodeType":"YulLiteral","src":"45682:18:10","type":"","value":"ThrowZeroAddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45659:6:10"},"nodeType":"YulFunctionCall","src":"45659:42:10"},"nodeType":"YulExpressionStatement","src":"45659:42:10"}]},"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"45640:6:10","type":""}],"src":"45542:166:10"},{"body":{"nodeType":"YulBlock","src":"45860:220:10","statements":[{"nodeType":"YulAssignment","src":"45870:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45936:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"45941:2:10","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45877:58:10"},"nodeType":"YulFunctionCall","src":"45877:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"45870:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46042:3:10"}],"functionName":{"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulIdentifier","src":"45953:88:10"},"nodeType":"YulFunctionCall","src":"45953:93:10"},"nodeType":"YulExpressionStatement","src":"45953:93:10"},{"nodeType":"YulAssignment","src":"46055:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46066:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"46071:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46062:3:10"},"nodeType":"YulFunctionCall","src":"46062:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"46055:3:10"}]}]},"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"45848:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"45856:3:10","type":""}],"src":"45714:366:10"},{"body":{"nodeType":"YulBlock","src":"46257:248:10","statements":[{"nodeType":"YulAssignment","src":"46267:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46279:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"46290:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46275:3:10"},"nodeType":"YulFunctionCall","src":"46275:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46267:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46314:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"46325:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46310:3:10"},"nodeType":"YulFunctionCall","src":"46310:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46333:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"46339:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"46329:3:10"},"nodeType":"YulFunctionCall","src":"46329:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46303:6:10"},"nodeType":"YulFunctionCall","src":"46303:47:10"},"nodeType":"YulExpressionStatement","src":"46303:47:10"},{"nodeType":"YulAssignment","src":"46359:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46493:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46367:124:10"},"nodeType":"YulFunctionCall","src":"46367:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46359:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"46237:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"46252:4:10","type":""}],"src":"46086:419:10"},{"body":{"nodeType":"YulBlock","src":"46617:69:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"46639:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"46647:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46635:3:10"},"nodeType":"YulFunctionCall","src":"46635:14:10"},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","kind":"string","nodeType":"YulLiteral","src":"46651:27:10","type":"","value":"InvalidSenderFeeRecipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46628:6:10"},"nodeType":"YulFunctionCall","src":"46628:51:10"},"nodeType":"YulExpressionStatement","src":"46628:51:10"}]},"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"46609:6:10","type":""}],"src":"46511:175:10"},{"body":{"nodeType":"YulBlock","src":"46838:220:10","statements":[{"nodeType":"YulAssignment","src":"46848:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46914:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"46919:2:10","type":"","value":"25"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46855:58:10"},"nodeType":"YulFunctionCall","src":"46855:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"46848:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"47020:3:10"}],"functionName":{"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulIdentifier","src":"46931:88:10"},"nodeType":"YulFunctionCall","src":"46931:93:10"},"nodeType":"YulExpressionStatement","src":"46931:93:10"},{"nodeType":"YulAssignment","src":"47033:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"47044:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"47049:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47040:3:10"},"nodeType":"YulFunctionCall","src":"47040:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"47033:3:10"}]}]},"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"46826:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"46834:3:10","type":""}],"src":"46692:366:10"},{"body":{"nodeType":"YulBlock","src":"47235:248:10","statements":[{"nodeType":"YulAssignment","src":"47245:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47257:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"47268:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47253:3:10"},"nodeType":"YulFunctionCall","src":"47253:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47245:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47292:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"47303:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47288:3:10"},"nodeType":"YulFunctionCall","src":"47288:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"47311:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"47317:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"47307:3:10"},"nodeType":"YulFunctionCall","src":"47307:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"47281:6:10"},"nodeType":"YulFunctionCall","src":"47281:47:10"},"nodeType":"YulExpressionStatement","src":"47281:47:10"},{"nodeType":"YulAssignment","src":"47337:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"47471:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"47345:124:10"},"nodeType":"YulFunctionCall","src":"47345:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47337:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"47215:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"47230:4:10","type":""}],"src":"47064:419:10"},{"body":{"nodeType":"YulBlock","src":"47595:124:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"47617:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"47625:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47613:3:10"},"nodeType":"YulFunctionCall","src":"47613:14:10"},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069","kind":"string","nodeType":"YulLiteral","src":"47629:34:10","type":"","value":"Initializable: contract is not i"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"47606:6:10"},"nodeType":"YulFunctionCall","src":"47606:58:10"},"nodeType":"YulExpressionStatement","src":"47606:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"47685:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"47693:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47681:3:10"},"nodeType":"YulFunctionCall","src":"47681:15:10"},{"hexValue":"6e697469616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"47698:13:10","type":"","value":"nitializing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"47674:6:10"},"nodeType":"YulFunctionCall","src":"47674:38:10"},"nodeType":"YulExpressionStatement","src":"47674:38:10"}]},"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"47587:6:10","type":""}],"src":"47489:230:10"},{"body":{"nodeType":"YulBlock","src":"47871:220:10","statements":[{"nodeType":"YulAssignment","src":"47881:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"47947:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"47952:2:10","type":"","value":"43"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"47888:58:10"},"nodeType":"YulFunctionCall","src":"47888:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"47881:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48053:3:10"}],"functionName":{"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulIdentifier","src":"47964:88:10"},"nodeType":"YulFunctionCall","src":"47964:93:10"},"nodeType":"YulExpressionStatement","src":"47964:93:10"},{"nodeType":"YulAssignment","src":"48066:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48077:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"48082:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48073:3:10"},"nodeType":"YulFunctionCall","src":"48073:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"48066:3:10"}]}]},"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"47859:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"47867:3:10","type":""}],"src":"47725:366:10"},{"body":{"nodeType":"YulBlock","src":"48268:248:10","statements":[{"nodeType":"YulAssignment","src":"48278:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48290:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"48301:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48286:3:10"},"nodeType":"YulFunctionCall","src":"48286:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48278:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48325:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"48336:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48321:3:10"},"nodeType":"YulFunctionCall","src":"48321:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"48344:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"48350:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"48340:3:10"},"nodeType":"YulFunctionCall","src":"48340:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"48314:6:10"},"nodeType":"YulFunctionCall","src":"48314:47:10"},"nodeType":"YulExpressionStatement","src":"48314:47:10"},{"nodeType":"YulAssignment","src":"48370:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"48504:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"48378:124:10"},"nodeType":"YulFunctionCall","src":"48378:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48370:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"48248:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"48263:4:10","type":""}],"src":"48097:419:10"},{"body":{"nodeType":"YulBlock","src":"48648:206:10","statements":[{"nodeType":"YulAssignment","src":"48658:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48670:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"48681:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48666:3:10"},"nodeType":"YulFunctionCall","src":"48666:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48658:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"48738:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48751:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"48762:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48747:3:10"},"nodeType":"YulFunctionCall","src":"48747:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"48694:43:10"},"nodeType":"YulFunctionCall","src":"48694:71:10"},"nodeType":"YulExpressionStatement","src":"48694:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"48819:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48832:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"48843:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48828:3:10"},"nodeType":"YulFunctionCall","src":"48828:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"48775:43:10"},"nodeType":"YulFunctionCall","src":"48775:72:10"},"nodeType":"YulExpressionStatement","src":"48775:72:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"48612:9:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"48624:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"48632:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"48643:4:10","type":""}],"src":"48522:332:10"},{"body":{"nodeType":"YulBlock","src":"49014:288:10","statements":[{"nodeType":"YulAssignment","src":"49024:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"49036:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"49047:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49032:3:10"},"nodeType":"YulFunctionCall","src":"49032:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"49024:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"49104:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"49117:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"49128:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49113:3:10"},"nodeType":"YulFunctionCall","src":"49113:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"49060:43:10"},"nodeType":"YulFunctionCall","src":"49060:71:10"},"nodeType":"YulExpressionStatement","src":"49060:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"49185:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"49198:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"49209:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49194:3:10"},"nodeType":"YulFunctionCall","src":"49194:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"49141:43:10"},"nodeType":"YulFunctionCall","src":"49141:72:10"},"nodeType":"YulExpressionStatement","src":"49141:72:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"49267:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"49280:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"49291:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49276:3:10"},"nodeType":"YulFunctionCall","src":"49276:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"49223:43:10"},"nodeType":"YulFunctionCall","src":"49223:72:10"},"nodeType":"YulExpressionStatement","src":"49223:72:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"48970:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"48982:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"48990:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"48998:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"49009:4:10","type":""}],"src":"48860:442:10"},{"body":{"nodeType":"YulBlock","src":"49414:64:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"49436:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"49444:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49432:3:10"},"nodeType":"YulFunctionCall","src":"49432:14:10"},{"hexValue":"5061757361626c653a206e6f7420706175736564","kind":"string","nodeType":"YulLiteral","src":"49448:22:10","type":"","value":"Pausable: not paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"49425:6:10"},"nodeType":"YulFunctionCall","src":"49425:46:10"},"nodeType":"YulExpressionStatement","src":"49425:46:10"}]},"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"49406:6:10","type":""}],"src":"49308:170:10"},{"body":{"nodeType":"YulBlock","src":"49630:220:10","statements":[{"nodeType":"YulAssignment","src":"49640:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"49706:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"49711:2:10","type":"","value":"20"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"49647:58:10"},"nodeType":"YulFunctionCall","src":"49647:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"49640:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"49812:3:10"}],"functionName":{"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulIdentifier","src":"49723:88:10"},"nodeType":"YulFunctionCall","src":"49723:93:10"},"nodeType":"YulExpressionStatement","src":"49723:93:10"},{"nodeType":"YulAssignment","src":"49825:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"49836:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"49841:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49832:3:10"},"nodeType":"YulFunctionCall","src":"49832:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"49825:3:10"}]}]},"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"49618:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"49626:3:10","type":""}],"src":"49484:366:10"},{"body":{"nodeType":"YulBlock","src":"50027:248:10","statements":[{"nodeType":"YulAssignment","src":"50037:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"50049:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"50060:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"50045:3:10"},"nodeType":"YulFunctionCall","src":"50045:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"50037:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"50084:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"50095:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"50080:3:10"},"nodeType":"YulFunctionCall","src":"50080:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"50103:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"50109:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"50099:3:10"},"nodeType":"YulFunctionCall","src":"50099:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"50073:6:10"},"nodeType":"YulFunctionCall","src":"50073:47:10"},"nodeType":"YulExpressionStatement","src":"50073:47:10"},{"nodeType":"YulAssignment","src":"50129:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"50263:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"50137:124:10"},"nodeType":"YulFunctionCall","src":"50137:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"50129:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"50007:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"50022:4:10","type":""}],"src":"49856:419:10"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_bytes32(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_bool_to_t_bool(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function cleanup_t_uint96(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffff)\n }\n\n function abi_encode_t_uint96_to_t_uint96(value, pos) {\n mstore(pos, cleanup_t_uint96(value))\n }\n\n // struct IGateway.Order -> struct IGateway.Order\n function abi_encode_t_struct$_Order_$2273_memory_ptr_to_t_struct$_Order_$2273_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x0140)\n\n {\n // sender\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x00))\n }\n\n {\n // token\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderFeeRecipient\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x40))\n }\n\n {\n // senderFee\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // protocolFee\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n {\n // isFulfilled\n\n let memberValue0 := mload(add(value, 0xa0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xa0))\n }\n\n {\n // isRefunded\n\n let memberValue0 := mload(add(value, 0xc0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xc0))\n }\n\n {\n // refundAddress\n\n let memberValue0 := mload(add(value, 0xe0))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0xe0))\n }\n\n {\n // currentBPS\n\n let memberValue0 := mload(add(value, 0x0100))\n abi_encode_t_uint96_to_t_uint96(memberValue0, add(pos, 0x0100))\n }\n\n {\n // amount\n\n let memberValue0 := mload(add(value, 0x0120))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x0120))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_Order_$2273_memory_ptr__to_t_struct$_Order_$2273_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 320)\n\n abi_encode_t_struct$_Order_$2273_memory_ptr_to_t_struct$_Order_$2273_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_uint96(value) {\n if iszero(eq(value, cleanup_t_uint96(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint96(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint96(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n // string\n function abi_decode_t_string_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7 {\n if slt(sub(dataEnd, headStart), 224) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint96(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 192))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value6, value7 := abi_decode_t_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n // struct GatewaySettingManager.TokenFeeSettings -> struct GatewaySettingManager.TokenFeeSettings\n function abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x80)\n\n {\n // senderToProvider\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // providerToAggregator\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderToAggregator\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x40))\n }\n\n {\n // providerToAggregatorFx\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_TokenFeeSettings_$1932_memory_ptr__to_t_struct$_TokenFeeSettings_$1932_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function validator_revert_t_uint64(value) {\n if iszero(eq(value, cleanup_t_uint64(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint64(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint64(value)\n }\n\n function abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64t_uint64(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(memPtr) {\n\n mstore(add(memPtr, 0), \"OnlyAggregator\")\n\n }\n\n function abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderFulfilled\")\n\n }\n\n function abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderRefunded\")\n\n }\n\n function abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 13)\n store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(memPtr) {\n\n mstore(add(memPtr, 0), \"FeeExceedsProtocolFee\")\n\n }\n\n function abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidMessageHash\")\n\n }\n\n function abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\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 tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderAlreadyExists\")\n\n }\n\n function abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c(memPtr) {\n\n mstore(add(memPtr, 0), \"SenderFeeIsZero\")\n\n }\n\n function abi_encode_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n store_literal_in_memory_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenFeeSettingsNotConfigured\")\n\n }\n\n function abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint96_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint96(value)))\n }\n\n function abi_encode_t_uint96_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_uint96_to_t_uint256(value))\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n // string -> string\n function abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n\n copy_calldata_to_memory_with_cleanup(start, pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint96_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(value3, value4, tail)\n\n }\n\n function store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is alrea\")\n\n mstore(add(memPtr, 32), \"dy initialized\")\n\n }\n\n function abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_rational_1_by_1(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function convert_t_rational_1_by_1_to_t_uint8(value) -> converted {\n converted := cleanup_t_uint8(identity(cleanup_t_rational_1_by_1(value)))\n }\n\n function abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_rational_1_by_1_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: token not supported\")\n\n }\n\n function abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to provi\")\n\n mstore(add(memPtr, 32), \"der\")\n\n }\n\n function abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator\")\n\n }\n\n function abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to aggre\")\n\n mstore(add(memPtr, 32), \"gator\")\n\n }\n\n function abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator fx\")\n\n }\n\n function abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidRebatePercent\")\n\n }\n\n function abi_encode_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_sub_t_uint96(x, y) -> diff {\n x := cleanup_t_uint96(x)\n y := cleanup_t_uint96(y)\n diff := sub(x, y)\n\n if gt(diff, 0xffffffffffffffffffffffff) { panic_error_0x11() }\n\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_tuple_t_bytes32_t_uint64_t_uint64__to_t_bytes32_t_uint64_t_uint64__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value2, add(headStart, 64))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenNotSupported\")\n\n }\n\n function abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 17)\n store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(memPtr) {\n\n mstore(add(memPtr, 0), \"AmountIsZero\")\n\n }\n\n function abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 12)\n store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(memPtr) {\n\n mstore(add(memPtr, 0), \"ThrowZeroAddress\")\n\n }\n\n function abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidSenderFeeRecipient\")\n\n }\n\n function abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is not i\")\n\n mstore(add(memPtr, 32), \"nitializing\")\n\n }\n\n function abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":10,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638129fc1c116100a05780638da5cb5b1161006f5780638da5cb5b14610290578063cd992400146102ae578063df51b359146102ca578063e30c3978146102fa578063f2fde38b1461031857610114565b80638129fc1c146102305780638456cb591461023a578063898861b0146102445780638bfa05491461026057610114565b806371eedb88116100e757806371eedb881461016657806375151b6314610196578063768c6ec0146101c657806379ba5097146101f6578063809804f71461020057610114565b80633f4ba83a1461011857806340ebc677146101225780635c975abb1461013e578063715018a61461015c575b5f80fd5b610120610334565b005b61013c6004803603810190610137919061313c565b610346565b005b61014661060a565b6040516101539190613194565b60405180910390f35b61016461061f565b005b610180600480360381019061017b91906131e0565b610632565b60405161018d9190613194565b60405180910390f35b6101b060048036038101906101ab919061321e565b610a8d565b6040516101bd9190613194565b60405180910390f35b6101e060048036038101906101db9190613249565b610ae5565b6040516101ed9190613391565b60405180910390f35b6101fe610cf5565b005b61021a60048036038101906102159190613436565b610d81565b6040516102279190613502565b60405180910390f35b610238611408565b005b610242611552565b005b61025e6004803603810190610259919061351b565b611564565b005b61027a6004803603810190610275919061321e565b6117e2565b60405161028791906135e5565b60405180910390f35b610298611860565b6040516102a5919061360d565b60405180910390f35b6102c860048036038101906102c39190613626565b611888565b005b6102e460048036038101906102df91906136b3565b611a0a565b6040516102f19190613194565b60405180910390f35b6103026120b3565b60405161030f919061360d565b60405180910390f35b610332600480360381019061032d919061321e565b6120db565b005b61033c612187565b610344612205565b565b61034e612187565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b390613784565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036104be578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046b90613812565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506105ba565b7f61676772656761746f720000000000000000000000000000000000000000000083036105b9578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056b906138a0565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610605578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b5f60cd5f9054906101000a900460ff16905090565b610627612187565b6106305f612266565b565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b990613908565b60405180910390fd5b60ff5f8381526020019081526020015f206005015f9054906101000a900460ff1615610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90613970565b60405180910390fd5b60ff5f8381526020019081526020015f2060050160019054906101000a900460ff1615610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906139d8565b60405180910390fd5b8260ff5f8481526020019081526020015f206004015410156107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390613a40565b60405180910390fd5b5f8311156108b65760ff5f8381526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610874929190613a6d565b6020604051808303815f875af1158015610890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b49190613abe565b505b600160ff5f8481526020019081526020015f2060050160016101000a81548160ff0219169083151502179055505f60ff5f8481526020019081526020015f206006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f8360ff5f8581526020019081526020015f20600701546109469190613b16565b905060ff5f8481526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8681526020019081526020015f2060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660ff5f8781526020019081526020015f2060030154846109ec9190613b49565b6040518363ffffffff1660e01b8152600401610a09929190613a6d565b6020604051808303815f875af1158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190613abe565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610a7a9190613b7c565b60405180910390a2600191505092915050565b5f6001609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610adc5760019050610ae0565b5f90505b919050565b610aed612fd0565b60ff5f8381526020019081526020015f20604051806101400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820154815260200160048201548152602001600582015f9054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600682015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b5f610cfe612296565b90508073ffffffffffffffffffffffffffffffffffffffff16610d1f6120b3565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613c05565b60405180910390fd5b610d7e81612266565b50565b5f610d8a61229d565b610d9789898689896122e7565b5f8383905003610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613c6d565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888c610e069190613b49565b6040518463ffffffff1660e01b8152600401610e2493929190613c8b565b6020604051808303815f875af1158015610e40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e649190613abe565b506101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190610eb390613cc0565b9190505550336101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205446604051602001610f0b93929190613d07565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff1660ff5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613d86565b60405180910390fd5b5f6064886bffffffffffffffffffffffff1603611024575f90505f861161101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613dee565b60405180910390fd5b6110fd565b5f609b5f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f8160600151116110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390613e56565b60405180910390fd5b60975481606001518b6110ef9190613e74565b6110f99190613ee2565b9150505b6040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018b73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020015f151581526020015f151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff1681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610100820151816006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a6040516113f3959493929190613f95565b60405180910390a45098975050505050505050565b5f8060019054906101000a900460ff16159050808015611437575060015f8054906101000a900460ff1660ff16105b80611463575061144630612494565b158015611462575060015f8054906101000a900460ff1660ff16145b5b6114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614051565b60405180910390fd5b60015f806101000a81548160ff021916908360ff16021790555080156114dd5760015f60016101000a81548160ff0219169083151502179055505b620186a06097819055506114ef6124b6565b6114f761250e565b801561154f575f8060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161154691906140b4565b60405180910390a15b50565b61155a612187565b611562612566565b565b61156c612187565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390614117565b60405180910390fd5b609754841115611631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611628906141a5565b60405180910390fd5b609754831115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614233565b60405180910390fd5b6097548211156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906142c1565b60405180910390fd5b609754811115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061434f565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516117d3949392919061436d565b60405180910390a25050505050565b6117ea613083565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611890612187565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613784565b60405180910390fd5b600181148061190d5750600281145b61194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906143fa565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611a055780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516119fc9190613b7c565b60405180910390a35b505050565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190613908565b60405180910390fd5b60ff5f8681526020019081526020015f206005015f9054906101000a900460ff1615611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613970565b60405180910390fd5b60ff5f8681526020019081526020015f2060050160019054906101000a900460ff1615611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906139d8565b60405180910390fd5b6097548267ffffffffffffffff161115611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614462565b60405180910390fd5b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f60ff5f8881526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690508467ffffffffffffffff1660ff5f8981526020019081526020015f206006015f8282829054906101000a90046bffffffffffffffffffffffff16611c649190614480565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f60ff5f8981526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d4657600160ff5f8981526020019081526020015f206005015f6101000a81548160ff0219169083151502179055505f60ff5f8981526020019081526020015f206003015414158015611d3657505f60ff5f8981526020019081526020015f206004015414155b15611d4557611d44876125c8565b5b5b5f60ff5f8981526020019081526020015f206003015414158015611d7d57505f60ff5f8981526020019081526020015f2060040154145b15611d8e57611d8d87878761293e565b5b5f818667ffffffffffffffff1660ff5f8b81526020019081526020015f2060070154611dba9190613e74565b611dc49190613ee2565b90508060ff5f8a81526020019081526020015f206007015f828254611de99190613b16565b925050819055505f60ff5f8a81526020019081526020015f206004015414611fd4575f609b5f60ff5f8c81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f609754826060015184611ec49190613e74565b611ece9190613ee2565b90508083611edc9190613b16565b92505f8767ffffffffffffffff1614611f33575f6097548867ffffffffffffffff1683611f099190613e74565b611f139190613ee2565b90508082611f219190613b16565b91508084611f2f9190613b49565b9350505b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611f90929190613a6d565b6020604051808303815f875af1158015611fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd09190613abe565b5050505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb88836040518363ffffffff1660e01b815260040161200f929190613a6d565b6020604051808303815f875af115801561202b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204f9190613abe565b508673ffffffffffffffffffffffffffffffffffffffff16887f57c683de2e7c8263c7f57fd108416b9bdaa7a6e7f2e4e7102c3b6f9e37f1cc378b898960405161209b939291906144ce565b60405180910390a36001935050505095945050505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120e3612187565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16612142611860565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61218f612296565b73ffffffffffffffffffffffffffffffffffffffff166121ad611860565b73ffffffffffffffffffffffffffffffffffffffff1614612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa9061454d565b60405180910390fd5b565b61220d612dfb565b5f60cd5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61224f612296565b60405161225c919061360d565b60405180910390a1565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561229381612e44565b50565b5f33905090565b6122a561060a565b156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906145b5565b60405180910390fd5b565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e9061461d565b60405180910390fd5b5f84036123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614685565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e906146ed565b60405180910390fd5b5f811461248d575f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614755565b60405180910390fd5b5b5050505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f60019054906101000a900460ff16612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb906147e3565b60405180910390fd5b61250c612f07565b565b5f60019054906101000a900460ff1661255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906147e3565b60405180910390fd5b612564612f67565b565b61256e61229d565b600160cd5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125b1612296565b6040516125be919061360d565b60405180910390a1565b5f609b5f60ff5f8581526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8481526020019081526020015f206003015490505f609754836040015160975461269b9190613b16565b836126a69190613e74565b6126b09190613ee2565b90505f81836126bf9190613b16565b90505f8211156127ac5760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8881526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161276a929190613a6d565b6020604051808303815f875af1158015612786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127aa9190613abe565b505b5f8111156128865760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612844929190613a6d565b6020604051808303815f875af1158015612860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128849190613abe565b505b8160ff5f8781526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3847f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a838360405161292f929190614801565b60405180910390a25050505050565b5f609b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8681526020019081526020015f206003015490505f609754835f015183612a0e9190613e74565b612a189190613ee2565b90505f6097548567ffffffffffffffff1683612a349190613e74565b612a3e9190613ee2565b90505f609754856020015183612a549190613e74565b612a5e9190613ee2565b90505f8385612a6d9190613b16565b90505f8114158015612ab757505f60ff5f8b81526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16145b15612b9f5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8c81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612b5d929190613a6d565b6020604051808303815f875af1158015612b79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b9d9190613abe565b505b5f8214612c785760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612c36929190613a6d565b6020604051808303815f875af1158015612c52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c769190613abe565b505b8183612c849190613b16565b92505f8314612d3d5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb89856040518363ffffffff1660e01b8152600401612cfb929190613a6d565b6020604051808303815f875af1158015612d17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d3b9190613abe565b505b8060ff5f8b81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3887f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4828585604051612de893929190614828565b60405180910390a2505050505050505050565b612e0361060a565b612e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e39906148a7565b60405180910390fd5b565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60019054906101000a900460ff16612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c906147e3565b60405180910390fd5b612f65612f60612296565b612266565b565b5f60019054906101000a900460ff16612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac906147e3565b60405180910390fd5b5f60cd5f6101000a81548160ff021916908315150217905550565b6040518061014001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f151581526020015f151581526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f6bffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f819050919050565b6130c1816130af565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61310b826130e2565b9050919050565b61311b81613101565b8114613125575f80fd5b50565b5f8135905061313681613112565b92915050565b5f8060408385031215613152576131516130a7565b5b5f61315f858286016130ce565b925050602061317085828601613128565b9150509250929050565b5f8115159050919050565b61318e8161317a565b82525050565b5f6020820190506131a75f830184613185565b92915050565b5f819050919050565b6131bf816131ad565b81146131c9575f80fd5b50565b5f813590506131da816131b6565b92915050565b5f80604083850312156131f6576131f56130a7565b5b5f613203858286016131cc565b9250506020613214858286016130ce565b9150509250929050565b5f60208284031215613233576132326130a7565b5b5f61324084828501613128565b91505092915050565b5f6020828403121561325e5761325d6130a7565b5b5f61326b848285016130ce565b91505092915050565b61327d81613101565b82525050565b61328c816131ad565b82525050565b61329b8161317a565b82525050565b5f6bffffffffffffffffffffffff82169050919050565b6132c1816132a1565b82525050565b61014082015f8201516132dc5f850182613274565b5060208201516132ef6020850182613274565b5060408201516133026040850182613274565b5060608201516133156060850182613283565b5060808201516133286080850182613283565b5060a082015161333b60a0850182613292565b5060c082015161334e60c0850182613292565b5060e082015161336160e0850182613274565b506101008201516133766101008501826132b8565b5061012082015161338b610120850182613283565b50505050565b5f610140820190506133a55f8301846132c7565b92915050565b6133b4816132a1565b81146133be575f80fd5b50565b5f813590506133cf816133ab565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133f6576133f56133d5565b5b8235905067ffffffffffffffff811115613413576134126133d9565b5b60208301915083600182028301111561342f5761342e6133dd565b5b9250929050565b5f805f805f805f8060e0898b031215613452576134516130a7565b5b5f61345f8b828c01613128565b98505060206134708b828c016131cc565b97505060406134818b828c016133c1565b96505060606134928b828c01613128565b95505060806134a38b828c016131cc565b94505060a06134b48b828c01613128565b93505060c089013567ffffffffffffffff8111156134d5576134d46130ab565b5b6134e18b828c016133e1565b92509250509295985092959890939650565b6134fc816130af565b82525050565b5f6020820190506135155f8301846134f3565b92915050565b5f805f805f60a08688031215613534576135336130a7565b5b5f61354188828901613128565b9550506020613552888289016131cc565b9450506040613563888289016131cc565b9350506060613574888289016131cc565b9250506080613585888289016131cc565b9150509295509295909350565b608082015f8201516135a65f850182613283565b5060208201516135b96020850182613283565b5060408201516135cc6040850182613283565b5060608201516135df6060850182613283565b50505050565b5f6080820190506135f85f830184613592565b92915050565b61360781613101565b82525050565b5f6020820190506136205f8301846135fe565b92915050565b5f805f6060848603121561363d5761363c6130a7565b5b5f61364a868287016130ce565b935050602061365b86828701613128565b925050604061366c868287016131cc565b9150509250925092565b5f67ffffffffffffffff82169050919050565b61369281613676565b811461369c575f80fd5b50565b5f813590506136ad81613689565b92915050565b5f805f805f60a086880312156136cc576136cb6130a7565b5b5f6136d9888289016130ce565b95505060206136ea888289016130ce565b94505060406136fb88828901613128565b935050606061370c8882890161369f565b925050608061371d8882890161369f565b9150509295509295909350565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f61376e60158361372a565b91506137798261373a565b602082019050919050565b5f6020820190508181035f83015261379b81613762565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f6137fc60258361372a565b9150613807826137a2565b604082019050919050565b5f6020820190508181035f830152613829816137f0565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f61388a60278361372a565b915061389582613830565b604082019050919050565b5f6020820190508181035f8301526138b78161387e565b9050919050565b7f4f6e6c7941676772656761746f720000000000000000000000000000000000005f82015250565b5f6138f2600e8361372a565b91506138fd826138be565b602082019050919050565b5f6020820190508181035f83015261391f816138e6565b9050919050565b7f4f7264657246756c66696c6c65640000000000000000000000000000000000005f82015250565b5f61395a600e8361372a565b915061396582613926565b602082019050919050565b5f6020820190508181035f8301526139878161394e565b9050919050565b7f4f72646572526566756e646564000000000000000000000000000000000000005f82015250565b5f6139c2600d8361372a565b91506139cd8261398e565b602082019050919050565b5f6020820190508181035f8301526139ef816139b6565b9050919050565b7f4665654578636565647350726f746f636f6c46656500000000000000000000005f82015250565b5f613a2a60158361372a565b9150613a35826139f6565b602082019050919050565b5f6020820190508181035f830152613a5781613a1e565b9050919050565b613a67816131ad565b82525050565b5f604082019050613a805f8301856135fe565b613a8d6020830184613a5e565b9392505050565b613a9d8161317a565b8114613aa7575f80fd5b50565b5f81519050613ab881613a94565b92915050565b5f60208284031215613ad357613ad26130a7565b5b5f613ae084828501613aaa565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b20826131ad565b9150613b2b836131ad565b9250828203905081811115613b4357613b42613ae9565b5b92915050565b5f613b53826131ad565b9150613b5e836131ad565b9250828201905080821115613b7657613b75613ae9565b5b92915050565b5f602082019050613b8f5f830184613a5e565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613bef60298361372a565b9150613bfa82613b95565b604082019050919050565b5f6020820190508181035f830152613c1c81613be3565b9050919050565b7f496e76616c69644d6573736167654861736800000000000000000000000000005f82015250565b5f613c5760128361372a565b9150613c6282613c23565b602082019050919050565b5f6020820190508181035f830152613c8481613c4b565b9050919050565b5f606082019050613c9e5f8301866135fe565b613cab60208301856135fe565b613cb86040830184613a5e565b949350505050565b5f613cca826131ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cfc57613cfb613ae9565b5b600182019050919050565b5f606082019050613d1a5f8301866135fe565b613d276020830185613a5e565b613d346040830184613a5e565b949350505050565b7f4f72646572416c726561647945786973747300000000000000000000000000005f82015250565b5f613d7060128361372a565b9150613d7b82613d3c565b602082019050919050565b5f6020820190508181035f830152613d9d81613d64565b9050919050565b7f53656e64657246656549735a65726f00000000000000000000000000000000005f82015250565b5f613dd8600f8361372a565b9150613de382613da4565b602082019050919050565b5f6020820190508181035f830152613e0581613dcc565b9050919050565b7f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000005f82015250565b5f613e40601d8361372a565b9150613e4b82613e0c565b602082019050919050565b5f6020820190508181035f830152613e6d81613e34565b9050919050565b5f613e7e826131ad565b9150613e89836131ad565b9250828202613e97816131ad565b91508282048414831517613eae57613ead613ae9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613eec826131ad565b9150613ef7836131ad565b925082613f0757613f06613eb5565b5b828204905092915050565b5f819050919050565b5f613f35613f30613f2b846132a1565b613f12565b6131ad565b9050919050565b613f4581613f1b565b82525050565b828183375f83830152505050565b5f601f19601f8301169050919050565b5f613f74838561372a565b9350613f81838584613f4b565b613f8a83613f59565b840190509392505050565b5f608082019050613fa85f830188613a5e565b613fb560208301876134f3565b613fc26040830186613f3c565b8181036060830152613fd5818486613f69565b90509695505050505050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f61403b602e8361372a565b915061404682613fe1565b604082019050919050565b5f6020820190508181035f8301526140688161402f565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f61409e6140996140948461406f565b613f12565b614078565b9050919050565b6140ae81614084565b82525050565b5f6020820190506140c75f8301846140a5565b92915050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f614101601c8361372a565b915061410c826140cd565b602082019050919050565b5f6020820190508181035f83015261412e816140f5565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f61418f60238361372a565b915061419a82614135565b604082019050919050565b5f6020820190508181035f8301526141bc81614183565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f61421d60278361372a565b9150614228826141c3565b604082019050919050565b5f6020820190508181035f83015261424a81614211565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f6142ab60258361372a565b91506142b682614251565b604082019050919050565b5f6020820190508181035f8301526142d88161429f565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f614339602a8361372a565b9150614344826142df565b604082019050919050565b5f6020820190508181035f8301526143668161432d565b9050919050565b5f6080820190506143805f830187613a5e565b61438d6020830186613a5e565b61439a6040830185613a5e565b6143a76060830184613a5e565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6143e460178361372a565b91506143ef826143b0565b602082019050919050565b5f6020820190508181035f830152614411816143d8565b9050919050565b7f496e76616c696452656261746550657263656e740000000000000000000000005f82015250565b5f61444c60148361372a565b915061445782614418565b602082019050919050565b5f6020820190508181035f83015261447981614440565b9050919050565b5f61448a826132a1565b9150614495836132a1565b925082820390506bffffffffffffffffffffffff8111156144b9576144b8613ae9565b5b92915050565b6144c881613676565b82525050565b5f6060820190506144e15f8301866134f3565b6144ee60208301856144bf565b6144fb60408301846144bf565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61453760208361372a565b915061454282614503565b602082019050919050565b5f6020820190508181035f8301526145648161452b565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61459f60108361372a565b91506145aa8261456b565b602082019050919050565b5f6020820190508181035f8301526145cc81614593565b9050919050565b7f546f6b656e4e6f74537570706f727465640000000000000000000000000000005f82015250565b5f61460760118361372a565b9150614612826145d3565b602082019050919050565b5f6020820190508181035f830152614634816145fb565b9050919050565b7f416d6f756e7449735a65726f00000000000000000000000000000000000000005f82015250565b5f61466f600c8361372a565b915061467a8261463b565b602082019050919050565b5f6020820190508181035f83015261469c81614663565b9050919050565b7f5468726f775a65726f41646472657373000000000000000000000000000000005f82015250565b5f6146d760108361372a565b91506146e2826146a3565b602082019050919050565b5f6020820190508181035f830152614704816146cb565b9050919050565b7f496e76616c696453656e646572466565526563697069656e74000000000000005f82015250565b5f61473f60198361372a565b915061474a8261470b565b602082019050919050565b5f6020820190508181035f83015261476c81614733565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f6147cd602b8361372a565b91506147d882614773565b604082019050919050565b5f6020820190508181035f8301526147fa816147c1565b9050919050565b5f6040820190506148145f830185613a5e565b6148216020830184613a5e565b9392505050565b5f60608201905061483b5f830186613a5e565b6148486020830185613a5e565b6148556040830184613a5e565b949350505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f61489160148361372a565b915061489c8261485d565b602082019050919050565b5f6020820190508181035f8301526148be81614885565b905091905056fea2646970667358221220039a17c0ebb0f09c3837d6bfd7843968f1541a8d63bc2784f173950574c7bec164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x114 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8129FC1C GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x290 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x2AE JUMPI DUP1 PUSH4 0xDF51B359 EQ PUSH2 0x2CA JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x318 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0x260 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x71EEDB88 GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0x809804F7 EQ PUSH2 0x200 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x15C JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x120 PUSH2 0x334 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x313C JUMP JUMPDEST PUSH2 0x346 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x146 PUSH2 0x60A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x153 SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x164 PUSH2 0x61F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x31E0 JUMP JUMPDEST PUSH2 0x632 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x321E JUMP JUMPDEST PUSH2 0xA8D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x3249 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1ED SWAP2 SWAP1 PUSH2 0x3391 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH2 0xCF5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x3436 JUMP JUMPDEST PUSH2 0xD81 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x3502 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x238 PUSH2 0x1408 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x242 PUSH2 0x1552 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x259 SWAP2 SWAP1 PUSH2 0x351B JUMP JUMPDEST PUSH2 0x1564 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x27A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x275 SWAP2 SWAP1 PUSH2 0x321E JUMP JUMPDEST PUSH2 0x17E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x287 SWAP2 SWAP1 PUSH2 0x35E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x298 PUSH2 0x1860 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A5 SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C3 SWAP2 SWAP1 PUSH2 0x3626 JUMP JUMPDEST PUSH2 0x1888 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DF SWAP2 SWAP1 PUSH2 0x36B3 JUMP JUMPDEST PUSH2 0x1A0A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F1 SWAP2 SWAP1 PUSH2 0x3194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x302 PUSH2 0x20B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30F SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x332 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32D SWAP2 SWAP1 PUSH2 0x321E JUMP JUMPDEST PUSH2 0x20DB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x33C PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x344 PUSH2 0x2205 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x34E PUSH2 0x2187 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3BC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B3 SWAP1 PUSH2 0x3784 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x4BE JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x474 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x46B SWAP1 PUSH2 0x3812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x5BA JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x5B9 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x574 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x56B SWAP1 PUSH2 0x38A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x605 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x627 PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x630 PUSH0 PUSH2 0x2266 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6C2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6B9 SWAP1 PUSH2 0x3908 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x723 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x71A SWAP1 PUSH2 0x3970 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x785 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x77C SWAP1 PUSH2 0x39D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0x7DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7D3 SWAP1 PUSH2 0x3A40 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 GT ISZERO PUSH2 0x8B6 JUMPI PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x874 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x890 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x8B4 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 DUP4 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x946 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP1 POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0x9EC SWAP2 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA09 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA25 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xA49 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xA7A SWAP2 SWAP1 PUSH2 0x3B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SUB PUSH2 0xADC JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xAE0 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAED PUSH2 0x2FD0 JUMP JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCFE PUSH2 0x2296 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD1F PUSH2 0x20B3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD75 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD6C SWAP1 PUSH2 0x3C05 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD7E DUP2 PUSH2 0x2266 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xD8A PUSH2 0x229D JUMP JUMPDEST PUSH2 0xD97 DUP10 DUP10 DUP7 DUP10 DUP10 PUSH2 0x22E7 JUMP JUMPDEST PUSH0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0xDDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD3 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP13 PUSH2 0xE06 SWAP2 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE24 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3C8B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE40 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xE64 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xEB3 SWAP1 PUSH2 0x3CC0 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD CHAINID PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF0B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3D07 JUMP JUMPDEST 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFC3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFBA SWAP1 PUSH2 0x3D86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x64 DUP9 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1024 JUMPI PUSH0 SWAP1 POP PUSH0 DUP7 GT PUSH2 0x101F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1016 SWAP1 PUSH2 0x3DEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x10FD JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 DUP2 PUSH1 0x60 ADD MLOAD GT PUSH2 0x10DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10D3 SWAP1 PUSH2 0x3E56 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 PUSH1 0x60 ADD MLOAD DUP12 PUSH2 0x10EF SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x10F9 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x40CCD1CEB111A3C186EF9911E1B876DC1F789ED331B86097B3B8851055B6A137 DUP5 DUP7 DUP14 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x13F3 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1437 JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x1463 JUMPI POP PUSH2 0x1446 ADDRESS PUSH2 0x2494 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1462 JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x14A2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1499 SWAP1 PUSH2 0x4051 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x14DD JUMPI PUSH1 0x1 PUSH0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x14EF PUSH2 0x24B6 JUMP JUMPDEST PUSH2 0x14F7 PUSH2 0x250E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x154F JUMPI PUSH0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1546 SWAP2 SWAP1 PUSH2 0x40B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x155A PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x1562 PUSH2 0x2566 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x156C PUSH2 0x2187 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x15EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15E3 SWAP1 PUSH2 0x4117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x1631 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1628 SWAP1 PUSH2 0x41A5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x1676 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x166D SWAP1 PUSH2 0x4233 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x16BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16B2 SWAP1 PUSH2 0x42C1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x1700 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16F7 SWAP1 PUSH2 0x434F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x17D3 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x436D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x17EA PUSH2 0x3083 JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1890 PUSH2 0x2187 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x18FE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18F5 SWAP1 PUSH2 0x3784 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x190D JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x194C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1943 SWAP1 PUSH2 0x43FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1A05 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x19FC SWAP2 SWAP1 PUSH2 0x3B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A91 SWAP1 PUSH2 0x3908 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1AFB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AF2 SWAP1 PUSH2 0x3970 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B5D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B54 SWAP1 PUSH2 0x39D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1BAC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BA3 SWAP1 PUSH2 0x4462 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP5 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C64 SWAP2 SWAP1 PUSH2 0x4480 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1D46 JUMPI PUSH1 0x1 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ ISZERO DUP1 ISZERO PUSH2 0x1D36 JUMPI POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ ISZERO JUMPDEST ISZERO PUSH2 0x1D45 JUMPI PUSH2 0x1D44 DUP8 PUSH2 0x25C8 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ ISZERO DUP1 ISZERO PUSH2 0x1D7D JUMPI POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ JUMPDEST ISZERO PUSH2 0x1D8E JUMPI PUSH2 0x1D8D DUP8 DUP8 DUP8 PUSH2 0x293E JUMP JUMPDEST JUMPDEST PUSH0 DUP2 DUP7 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1DBA SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x1DC4 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1DE9 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ PUSH2 0x1FD4 JUMPI PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP13 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP3 PUSH1 0x60 ADD MLOAD DUP5 PUSH2 0x1EC4 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x1ECE SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 PUSH2 0x1EDC SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP3 POP PUSH0 DUP8 PUSH8 0xFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F33 JUMPI PUSH0 PUSH1 0x97 SLOAD DUP9 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x1F09 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x1F13 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 PUSH2 0x1F21 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP2 POP DUP1 DUP5 PUSH2 0x1F2F SWAP2 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F90 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FAC JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1FD0 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP POP POP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP9 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x200F SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x202B JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x204F SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP9 PUSH32 0x57C683DE2E7C8263C7F57FD108416B9BDAA7A6E7F2E4E7102C3B6F9E37F1CC37 DUP12 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH2 0x209B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x44CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP4 POP POP POP POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x20E3 PUSH2 0x2187 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2142 PUSH2 0x1860 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x218F PUSH2 0x2296 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x21AD PUSH2 0x1860 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2203 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21FA SWAP1 PUSH2 0x454D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x220D PUSH2 0x2DFB JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x224F PUSH2 0x2296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x225C SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x2293 DUP2 PUSH2 0x2E44 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x22A5 PUSH2 0x60A JUMP JUMPDEST ISZERO PUSH2 0x22E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22DC SWAP1 PUSH2 0x45B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x2367 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x235E SWAP1 PUSH2 0x461D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP5 SUB PUSH2 0x23A9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23A0 SWAP1 PUSH2 0x4685 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2417 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x240E SWAP1 PUSH2 0x46ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 EQ PUSH2 0x248D JUMPI PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x248C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2483 SWAP1 PUSH2 0x4755 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2504 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24FB SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x250C PUSH2 0x2F07 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x255C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2553 SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2564 PUSH2 0x2F67 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x256E PUSH2 0x229D JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x25B1 PUSH2 0x2296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25BE SWAP2 SWAP1 PUSH2 0x360D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH1 0x97 SLOAD PUSH2 0x269B SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST DUP4 PUSH2 0x26A6 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x26B0 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 DUP4 PUSH2 0x26BF SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP1 POP PUSH0 DUP3 GT ISZERO PUSH2 0x27AC JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x276A SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2786 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x27AA SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST PUSH0 DUP2 GT ISZERO PUSH2 0x2886 JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2844 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2860 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2884 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST DUP2 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 PUSH32 0x88592047496A7850992DC5E8CD92A9B633CEF0D191A4F5E87FD745C7D382630A DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x292F SWAP3 SWAP2 SWAP1 PUSH2 0x4801 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH0 ADD MLOAD DUP4 PUSH2 0x2A0E SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x2A18 SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP6 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x2A34 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x2A3E SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP6 PUSH1 0x20 ADD MLOAD DUP4 PUSH2 0x2A54 SWAP2 SWAP1 PUSH2 0x3E74 JUMP JUMPDEST PUSH2 0x2A5E SWAP2 SWAP1 PUSH2 0x3EE2 JUMP JUMPDEST SWAP1 POP PUSH0 DUP4 DUP6 PUSH2 0x2A6D SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 EQ ISZERO DUP1 ISZERO PUSH2 0x2AB7 JUMPI POP PUSH0 PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST ISZERO PUSH2 0x2B9F JUMPI PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP13 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B5D SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B79 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2B9D SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 EQ PUSH2 0x2C78 JUMPI PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C36 SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2C52 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2C76 SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST DUP2 DUP4 PUSH2 0x2C84 SWAP2 SWAP1 PUSH2 0x3B16 JUMP JUMPDEST SWAP3 POP PUSH0 DUP4 EQ PUSH2 0x2D3D JUMPI PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP10 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CFB SWAP3 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D17 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2D3B SWAP2 SWAP1 PUSH2 0x3ABE JUMP JUMPDEST POP JUMPDEST DUP1 PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP9 PUSH32 0x831C7CC0006D91462607C476603366C48469D125DE6228C0791A7090EFD7F7A4 DUP3 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x2DE8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4828 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2E03 PUSH2 0x60A JUMP JUMPDEST PUSH2 0x2E42 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E39 SWAP1 PUSH2 0x48A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2F55 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F4C SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2F65 PUSH2 0x2F60 PUSH2 0x2296 JUMP JUMPDEST PUSH2 0x2266 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2FB5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2FAC SWAP1 PUSH2 0x47E3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x30C1 DUP2 PUSH2 0x30AF JUMP JUMPDEST DUP2 EQ PUSH2 0x30CB JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30DC DUP2 PUSH2 0x30B8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x310B DUP3 PUSH2 0x30E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x311B DUP2 PUSH2 0x3101 JUMP JUMPDEST DUP2 EQ PUSH2 0x3125 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3136 DUP2 PUSH2 0x3112 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3152 JUMPI PUSH2 0x3151 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x315F DUP6 DUP3 DUP7 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3170 DUP6 DUP3 DUP7 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x318E DUP2 PUSH2 0x317A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x31A7 PUSH0 DUP4 ADD DUP5 PUSH2 0x3185 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31BF DUP2 PUSH2 0x31AD JUMP JUMPDEST DUP2 EQ PUSH2 0x31C9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x31DA DUP2 PUSH2 0x31B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31F6 JUMPI PUSH2 0x31F5 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3203 DUP6 DUP3 DUP7 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3214 DUP6 DUP3 DUP7 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3233 JUMPI PUSH2 0x3232 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3240 DUP5 DUP3 DUP6 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x325E JUMPI PUSH2 0x325D PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x326B DUP5 DUP3 DUP6 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x327D DUP2 PUSH2 0x3101 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x328C DUP2 PUSH2 0x31AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x329B DUP2 PUSH2 0x317A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x32C1 DUP2 PUSH2 0x32A1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x32DC PUSH0 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x32EF PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x3302 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x3315 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x3328 PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x333B PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x3292 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x334E PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x3292 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x3361 PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x3274 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x3376 PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x32B8 JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x338B PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x33A5 PUSH0 DUP4 ADD DUP5 PUSH2 0x32C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x33B4 DUP2 PUSH2 0x32A1 JUMP JUMPDEST DUP2 EQ PUSH2 0x33BE JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33CF DUP2 PUSH2 0x33AB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x33F6 JUMPI PUSH2 0x33F5 PUSH2 0x33D5 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3413 JUMPI PUSH2 0x3412 PUSH2 0x33D9 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x342F JUMPI PUSH2 0x342E PUSH2 0x33DD JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xE0 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x3452 JUMPI PUSH2 0x3451 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x345F DUP12 DUP3 DUP13 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x20 PUSH2 0x3470 DUP12 DUP3 DUP13 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP8 POP POP PUSH1 0x40 PUSH2 0x3481 DUP12 DUP3 DUP13 ADD PUSH2 0x33C1 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x60 PUSH2 0x3492 DUP12 DUP3 DUP13 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x80 PUSH2 0x34A3 DUP12 DUP3 DUP13 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP5 POP POP PUSH1 0xA0 PUSH2 0x34B4 DUP12 DUP3 DUP13 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xC0 DUP10 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x34D5 JUMPI PUSH2 0x34D4 PUSH2 0x30AB JUMP JUMPDEST JUMPDEST PUSH2 0x34E1 DUP12 DUP3 DUP13 ADD PUSH2 0x33E1 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 SWAP1 SWAP4 SWAP7 POP JUMP JUMPDEST PUSH2 0x34FC DUP2 PUSH2 0x30AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3515 PUSH0 DUP4 ADD DUP5 PUSH2 0x34F3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3534 JUMPI PUSH2 0x3533 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3541 DUP9 DUP3 DUP10 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x3552 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x3563 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x3574 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x3585 DUP9 DUP3 DUP10 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x35A6 PUSH0 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x35B9 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x35CC PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x35DF PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3283 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x35F8 PUSH0 DUP4 ADD DUP5 PUSH2 0x3592 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3607 DUP2 PUSH2 0x3101 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3620 PUSH0 DUP4 ADD DUP5 PUSH2 0x35FE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x363D JUMPI PUSH2 0x363C PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x364A DUP7 DUP3 DUP8 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x365B DUP7 DUP3 DUP8 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x366C DUP7 DUP3 DUP8 ADD PUSH2 0x31CC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3692 DUP2 PUSH2 0x3676 JUMP JUMPDEST DUP2 EQ PUSH2 0x369C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x36AD DUP2 PUSH2 0x3689 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x36CC JUMPI PUSH2 0x36CB PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x36D9 DUP9 DUP3 DUP10 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x36EA DUP9 DUP3 DUP10 ADD PUSH2 0x30CE JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x36FB DUP9 DUP3 DUP10 ADD PUSH2 0x3128 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x370C DUP9 DUP3 DUP10 ADD PUSH2 0x369F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x371D DUP9 DUP3 DUP10 ADD PUSH2 0x369F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x376E PUSH1 0x15 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3779 DUP3 PUSH2 0x373A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x379B DUP2 PUSH2 0x3762 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x37FC PUSH1 0x25 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3807 DUP3 PUSH2 0x37A2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3829 DUP2 PUSH2 0x37F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x388A PUSH1 0x27 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3895 DUP3 PUSH2 0x3830 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x38B7 DUP2 PUSH2 0x387E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x38F2 PUSH1 0xE DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x38FD DUP3 PUSH2 0x38BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x391F DUP2 PUSH2 0x38E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x395A PUSH1 0xE DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3965 DUP3 PUSH2 0x3926 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3987 DUP2 PUSH2 0x394E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x39C2 PUSH1 0xD DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x39CD DUP3 PUSH2 0x398E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x39EF DUP2 PUSH2 0x39B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3A2A PUSH1 0x15 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3A35 DUP3 PUSH2 0x39F6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3A57 DUP2 PUSH2 0x3A1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A67 DUP2 PUSH2 0x31AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3A80 PUSH0 DUP4 ADD DUP6 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3A8D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x3A9D DUP2 PUSH2 0x317A JUMP JUMPDEST DUP2 EQ PUSH2 0x3AA7 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x3AB8 DUP2 PUSH2 0x3A94 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3AD3 JUMPI PUSH2 0x3AD2 PUSH2 0x30A7 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3AE0 DUP5 DUP3 DUP6 ADD PUSH2 0x3AAA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3B20 DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3B2B DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3B43 JUMPI PUSH2 0x3B42 PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3B53 DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3B5E DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3B76 JUMPI PUSH2 0x3B75 PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3B8F PUSH0 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3BEF PUSH1 0x29 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3BFA DUP3 PUSH2 0x3B95 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3C1C DUP2 PUSH2 0x3BE3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3C57 PUSH1 0x12 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3C62 DUP3 PUSH2 0x3C23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3C84 DUP2 PUSH2 0x3C4B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3C9E PUSH0 DUP4 ADD DUP7 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3CAB PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3CB8 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3CCA DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3CFC JUMPI PUSH2 0x3CFB PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3D1A PUSH0 DUP4 ADD DUP7 PUSH2 0x35FE JUMP JUMPDEST PUSH2 0x3D27 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x3D34 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F72646572416C72656164794578697374730000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3D70 PUSH1 0x12 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3D7B DUP3 PUSH2 0x3D3C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3D9D DUP2 PUSH2 0x3D64 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x53656E64657246656549735A65726F0000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3DD8 PUSH1 0xF DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3DE3 DUP3 PUSH2 0x3DA4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3E05 DUP2 PUSH2 0x3DCC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3E40 PUSH1 0x1D DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x3E4B DUP3 PUSH2 0x3E0C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3E6D DUP2 PUSH2 0x3E34 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3E7E DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3E89 DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3E97 DUP2 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x3EAE JUMPI PUSH2 0x3EAD PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3EEC DUP3 PUSH2 0x31AD JUMP JUMPDEST SWAP2 POP PUSH2 0x3EF7 DUP4 PUSH2 0x31AD JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3F07 JUMPI PUSH2 0x3F06 PUSH2 0x3EB5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3F35 PUSH2 0x3F30 PUSH2 0x3F2B DUP5 PUSH2 0x32A1 JUMP JUMPDEST PUSH2 0x3F12 JUMP JUMPDEST PUSH2 0x31AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F45 DUP2 PUSH2 0x3F1B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3F74 DUP4 DUP6 PUSH2 0x372A JUMP JUMPDEST SWAP4 POP PUSH2 0x3F81 DUP4 DUP6 DUP5 PUSH2 0x3F4B JUMP JUMPDEST PUSH2 0x3F8A DUP4 PUSH2 0x3F59 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3FA8 PUSH0 DUP4 ADD DUP9 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x3FB5 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x3FC2 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x3F3C JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3FD5 DUP2 DUP5 DUP7 PUSH2 0x3F69 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x403B PUSH1 0x2E DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4046 DUP3 PUSH2 0x3FE1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4068 DUP2 PUSH2 0x402F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x409E PUSH2 0x4099 PUSH2 0x4094 DUP5 PUSH2 0x406F JUMP JUMPDEST PUSH2 0x3F12 JUMP JUMPDEST PUSH2 0x4078 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x40AE DUP2 PUSH2 0x4084 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x40C7 PUSH0 DUP4 ADD DUP5 PUSH2 0x40A5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4101 PUSH1 0x1C DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x410C DUP3 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x412E DUP2 PUSH2 0x40F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x418F PUSH1 0x23 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x419A DUP3 PUSH2 0x4135 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x41BC DUP2 PUSH2 0x4183 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x421D PUSH1 0x27 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4228 DUP3 PUSH2 0x41C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x424A DUP2 PUSH2 0x4211 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x42AB PUSH1 0x25 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x42B6 DUP3 PUSH2 0x4251 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x42D8 DUP2 PUSH2 0x429F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4339 PUSH1 0x2A DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4344 DUP3 PUSH2 0x42DF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4366 DUP2 PUSH2 0x432D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x4380 PUSH0 DUP4 ADD DUP8 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x438D PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x439A PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x43A7 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x43E4 PUSH1 0x17 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x43EF DUP3 PUSH2 0x43B0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4411 DUP2 PUSH2 0x43D8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696452656261746550657263656E74000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x444C PUSH1 0x14 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4457 DUP3 PUSH2 0x4418 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4479 DUP2 PUSH2 0x4440 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x448A DUP3 PUSH2 0x32A1 JUMP JUMPDEST SWAP2 POP PUSH2 0x4495 DUP4 PUSH2 0x32A1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44B9 JUMPI PUSH2 0x44B8 PUSH2 0x3AE9 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x44C8 DUP2 PUSH2 0x3676 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x44E1 PUSH0 DUP4 ADD DUP7 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x44EE PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x44BF JUMP JUMPDEST PUSH2 0x44FB PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x44BF JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4537 PUSH1 0x20 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4542 DUP3 PUSH2 0x4503 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4564 DUP2 PUSH2 0x452B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x459F PUSH1 0x10 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x45AA DUP3 PUSH2 0x456B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x45CC DUP2 PUSH2 0x4593 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4607 PUSH1 0x11 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x4612 DUP3 PUSH2 0x45D3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4634 DUP2 PUSH2 0x45FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x466F PUSH1 0xC DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x467A DUP3 PUSH2 0x463B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x469C DUP2 PUSH2 0x4663 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x46D7 PUSH1 0x10 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x46E2 DUP3 PUSH2 0x46A3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4704 DUP2 PUSH2 0x46CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x473F PUSH1 0x19 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x474A DUP3 PUSH2 0x470B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x476C DUP2 PUSH2 0x4733 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x47CD PUSH1 0x2B DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x47D8 DUP3 PUSH2 0x4773 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x47FA DUP2 PUSH2 0x47C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x4814 PUSH0 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x4821 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x483B PUSH0 DUP4 ADD DUP7 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x4848 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3A5E JUMP JUMPDEST PUSH2 0x4855 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A5E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4891 PUSH1 0x14 DUP4 PUSH2 0x372A JUMP JUMPDEST SWAP2 POP PUSH2 0x489C DUP3 PUSH2 0x485D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x48BE DUP2 PUSH2 0x4885 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SUB SWAP11 OR 0xC0 0xEB 0xB0 CREATE SWAP13 CODESIZE CALLDATACOPY 0xD6 0xBF 0xD7 DUP5 CODECOPY PUSH9 0xF1541A8D63BC2784F1 PUSH20 0x950574C7BEC164736F6C63430008140033000000 ","sourceMap":"390:10564:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421:56;;;:::i;:::-;;2508:551:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1879:84:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2085:101:1;;;:::i;:::-;;6830:920:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8139:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7983:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2031:212:0;;;:::i;:::-;;1709:1812:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;795:114;;;:::i;:::-;;1325:52;;;:::i;:::-;;3670:988:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4838:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1944:335:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4578:2213:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1421:56:7;1355:13:1;:11;:13::i;:::-;1463:10:7::1;:8;:10::i;:::-;1421:56::o:0;2508:551:8:-;1355:13:1;:11;:13::i;:::-;2616:1:8::1;2599:19;;:5;:19;;::::0;2591:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2648:12;2668:18;:4;:18:::0;2664:326:::1;;2720:5;2701:24;;:15;;;;;;;;;;;:24;;::::0;2693:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2790:5;2772:15;;:23;;;;;;;;;;;;;;;;;;2810:4;2800:14;;2664:326;;;2829:20;:4;:20:::0;2825:165:::1;;2886:5;2864:27;;:18;;;;;;;;;;;:27;;::::0;2856:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2961:5;2940:18;;:26;;;;;;;;;;;;;;;;;;2981:4;2971:14;;2825:165;2664:326;2997:7;2993:63;;;3045:5;3016:35;;3039:4;3016:35;;;;;;;;;;2993:63;2587:472;2508:551:::0;;:::o;1879:84:3:-;1926:4;1949:7;;;;;;;;;;;1942:14;;1879:84;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;6830:920:7:-;6911:4;1044:18;;;;;;;;;;;1030:32;;:10;:32;;;1022:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;6981:5:::1;:15;6987:8;6981:15;;;;;;;;;;;:27;;;;;;;;;;;;6980:28;6972:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;7040:5;:15;7046:8;7040:15;;;;;;;;;;;:26;;;;;;;;;;;;7039:27;7031:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;7127:4;7096:5;:15;7102:8;7096:15;;;;;;;;;;;:27;;;:35;;7088:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;7173:1;7166:4;:8;7162:127;;;7230:5;:15;7236:8;7230:15;;;;;;;;;;;:21;;;;;;;;;;;;7223:38;;;7262:15;;;;;;;;;;;7279:4;7223:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7162:127;7346:4;7317:5;:15;7323:8;7317:15;;;;;;;;;;;:26;;;:33;;;;;;;;;;;;;;;;;;7383:1;7354:5;:15;7360:8;7354:15;;;;;;;;;;;:26;;;:30;;;;;;;;;;;;;;;;;;7423:20;7471:4;7446:5;:15;7452:8;7446:15;;;;;;;;;;;:22;;;:29;;;;:::i;:::-;7423:52;;7552:5;:15;7558:8;7552:15;;;;;;;;;;;:21;;;;;;;;;;;;7545:38;;;7588:5;:15;7594:8;7588:15;;;;;;;;;;;:29;;;;;;;;;;;;7637:5;:15;7643:8;7637:15;;;;;;;;;;;:25;;;7622:12;:40;;;;:::i;:::-;7545:121;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7721:8;7701:29;7715:4;7701:29;;;;;;:::i;:::-;;;;;;;;7742:4;7735:11;;;6830:920:::0;;;;:::o;8139:142::-;8204:4;8247:1;8218:17;:25;8236:6;8218:25;;;;;;;;;;;;;;;;:30;8214:47;;8257:4;8250:11;;;;8214:47;8272:5;8265:12;;8139:142;;;;:::o;7983:107::-;8046:12;;:::i;:::-;8071:5;:15;8077:8;8071:15;;;;;;;;;;;8064:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7983:107;;;:::o;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;1709:1812:7:-;1928:15;1503:19:3;:17;:19::i;:::-;1979:74:7::1;1988:6;1996:7;2005:14;2021:19;2042:10;1979:8;:74::i;:::-;2121:1;2098:11;;2092:25;;:30:::0;2084:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2205:6;2198:27;;;2226:10;2246:4;2263:10;2253:7;:20;;;;:::i;:::-;2198:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2329:6;:18;2336:10;2329:18;;;;;;;;;;;;;;;;:20;;;;;;;;;:::i;:::-;;;;;;2448:10;2460:6;:18;2467:10;2460:18;;;;;;;;;;;;;;;;2480:13;2437:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2427:68;;;;;;2417:78;;2541:1;2508:35;;:5;:14;2514:7;2508:14;;;;;;;;;;;:21;;;;;;;;;;;;:35;;;2500:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2595:20;2632:3;2623:5;:12;;::::0;2619:428:::1;;2689:1;2674:16;;2716:1;2703:10;:14;2695:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;2619:428;;;2827:32;2862:17;:25;2880:6;2862:25;;;;;;;;;;;;;;;2827:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;2934:1;2900:8;:31;;;:35;2892:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;3035:7;;3000:8;:31;;;2990:7;:41;;;;:::i;:::-;2989:53;;;;:::i;:::-;2974:68;;2748:299;2619:428;3067:283;;;;;;;;3086:10;3067:283;;;;;;3108:6;3067:283;;;;;;3139:19;3067:283;;;;;;3174:10;3067:283;;;;3202:12;3067:283;;;;3232:5;3067:283;;;;;;3254:5;3067:283;;;;;;3279:14;3067:283;;;;;;3317:7;;3067:283;;;;;;;;3338:7;3067:283;;::::0;3050:5:::1;:14;3056:7;3050:14;;;;;;;;;;;:300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3437:5;:14;3443:7;3437:14;;;;;;;;;;;:21;;;3426:6;3390:127;;3407:14;3390:127;;;3463:12;3480:7;3492:5;3502:11;;3390:127;;;;;;;;;;:::i;:::-;;;;;;;;1945:1576;1709:1812:::0;;;;;;;;;;:::o;795:114::-;3279:19:2;3302:13;;;;;;;;;;;3301:14;3279:36;;3347:14;:34;;;;;3380:1;3365:12;;;;;;;;;;:16;;;3347:34;3346:108;;;;3388:44;3426:4;3388:29;:44::i;:::-;3387:45;:66;;;;;3452:1;3436:12;;;;;;;;;;:17;;;3387:66;3346:108;3325:201;;;;;;;;;;;;:::i;:::-;;;;;;;;;3551:1;3536:12;;:16;;;;;;;;;;;;;;;;;;3566:14;3562:65;;;3612:4;3596:13;;:20;;;;;;;;;;;;;;;;;;3562:65;852:7:7::1;842;:17;;;;863:21;:19;:21::i;:::-;888:17;:15;:17::i;:::-;3651:14:2::0;3647:99;;;3697:5;3681:13;;:21;;;;;;;;;;;;;;;;;;3721:14;3733:1;3721:14;;;;;;:::i;:::-;;;;;;;;3647:99;3269:483;795:114:7:o;1325:52::-;1355:13:1;:11;:13::i;:::-;1365:8:7::1;:6;:8::i;:::-;1325:52::o:0;3670:988:8:-;1355:13:1;:11;:13::i;:::-;3902:1:8::1;3874:17;:24;3892:5;3874:24;;;;;;;;;;;;;;;;:29;3866:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3968:7;;3948:16;:27;;3940:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4051:7;;4027:20;:31;;4019:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4136:7;;4114:18;:29;;4106:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4223:7;;4197:22;:33;;4189:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:202;;;;;;;;4349:16;4309:202;;;;4392:20;4309:202;;;;4437:18;4309:202;;;;4484:22;4309:202;;::::0;4282:17:::1;:24;4300:5;4282:24;;;;;;;;;;;;;;;:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4549:5;4521:133;;;4559:16;4580:20;4605:18;4628:22;4521:133;;;;;;;;;:::i;:::-;;;;;;;;3670:988:::0;;;;;:::o;4838:131::-;4905:23;;:::i;:::-;4941:17;:24;4959:5;4941:24;;;;;;;;;;;;;;;4934:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4838:131;;;:::o;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;1944:335:8:-;1355:13:1;:11;:13::i;:::-;2065:1:8::1;2048:19;;:5;:19;;::::0;2040:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:1;2105:6;:11;:26;;;;2130:1;2120:6;:11;2105:26;2097:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2167:15;:4;:15:::0;2163:113:::1;;2216:6;2189:17;:24;2207:5;2189:24;;;;;;;;;;;;;;;:33;;;;2257:5;2232:39;;2251:4;2232:39;2264:6;2232:39;;;;;;:::i;:::-;;;;;;;;2163:113;1944:335:::0;;;:::o;4578:2213:7:-;4755:4;1044:18;;;;;;;;;;;1030:32;;:10;:32;;;1022:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4825:5:::1;:15;4831:8;4825:15;;;;;;;;;;;:27;;;;;;;;;;;;4824:28;4816:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4884:5;:15;4890:8;4884:15;;;;;;;;;;;:26;;;;;;;;;;;;4883:27;4875:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;4958:7;;4940:14;:25;;;;4932:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;5027:13;5043:5;:15;5049:8;5043:15;;;;;;;;;;;:21;;;;;;;;;;;;5027:37;;5131:23;5157:5;:15;5163:8;5157:15;;;;;;;;;;;:26;;;;;;;;;;;;5131:52;;;;5217:14;5187:44;;:5;:15;5193:8;5187:15;;;;;;;;;;;:26;;;:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5270:1;5240:5;:15;5246:8;5240:15;;;;;;;;;;;:26;;;;;;;;;;;;:31;;::::0;5236:296:::1;;5353:4;5323:5;:15;5329:8;5323:15;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;5396:1;5367:5;:15;5373:8;5367:15;;;;;;;;;;;:25;;;:30;;:66;;;;;5432:1;5401:5;:15;5407:8;5401:15;;;;;;;;;;;:27;;;:32;;5367:66;5363:165;;;5483:39;5513:8;5483:29;:39::i;:::-;5363:165;5236:296;5569:1;5540:5;:15;5546:8;5540:15;;;;;;;;;;;:25;;;:30;;:66;;;;;5605:1;5574:5;:15;5580:8;5574:15;;;;;;;;;;;:27;;;:32;5540:66;5536:200;;;5653:78;5686:8;5696:18;5716:14;5653:32;:78::i;:::-;5536:200;5776:31;5857:15;5836:14;5811:39;;:5;:15;5817:8;5811:15;;;;;;;;;;;:22;;;:39;;;;:::i;:::-;5810:62;;;;:::i;:::-;5776:96;;5902:23;5876:5;:15;5882:8;5876:15;;;;;;;;;;;:22;;;:49;;;;;;;:::i;:::-;;;;;;;;5965:1;5934:5;:15;5940:8;5934:15;;;;;;;;;;;:27;;;:32;5930:628;;6035:32;6070:17;:40;6088:5;:15;6094:8;6088:15;;;;;;;;;;;:21;;;;;;;;;;;;6070:40;;;;;;;;;;;;;;;6035:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;6115:19;6203:7;;6164:8;:31;;;6138:23;:57;;;;:::i;:::-;6137:73;;;;:::i;:::-;6115:95;;6242:11;6215:38;;;;;:::i;:::-;;;6281:1;6263:14;:19;;;6259:209;;6321:20;6377:7;;6359:14;6345:28;;:11;:28;;;;:::i;:::-;6344:40;;;;:::i;:::-;6321:63;;6405:12;6390:27;;;;;:::i;:::-;;;6450:12;6423:39;;;;;:::i;:::-;;;6284:184;6259:209;6508:5;6501:22;;;6524:15;;;;;;;;;;;6541:11;6501:52;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5968:590;;5930:628;6569:5;6562:22;;;6585:18;6605:23;6562:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6711:18;6663:108;;6698:8;6663:108;6680:13;6734:14;6753;6663:108;;;;;;;;:::i;:::-;;;;;;;;6783:4;6776:11;;;;;4578:2213:::0;;;;;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;1436:178::-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;2697:117:3:-;1750:16;:14;:16::i;:::-;2765:5:::1;2755:7;;:15;;;;;;;;;;;;;;;;;;2785:22;2794:12;:10;:12::i;:::-;2785:22;;;;;;:::i;:::-;;;;;;;;2697:117::o:0;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;2031:106:3:-;2101:8;:6;:8::i;:::-;2100:9;2092:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:106::o;3914:427:7:-;4106:1;4077:17;:25;4095:6;4077:25;;;;;;;;;;;;;;;;:30;4069:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4152:1;4141:7;:12;4133:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;4208:1;4182:28;;:14;:28;;;4174:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4254:1;4240:10;:15;4236:102;;4301:1;4270:33;;:19;:33;;;4262:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4236:102;3914:427;;;;;:::o;1423:320:4:-;1483:4;1735:1;1713:7;:19;;;:23;1706:30;;1423:320;;;:::o;889:100:0:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;956:26:0::1;:24;:26::i;:::-;889:100::o:0;1084:97:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1147:27:3::1;:25;:27::i;:::-;1084:97::o:0;2450:115::-;1503:19;:17;:19::i;:::-;2519:4:::1;2509:7;;:14;;;;;;;;;;;;;;;;;;2538:20;2545:12;:10;:12::i;:::-;2538:20;;;;;;:::i;:::-;;;;;;;;2450:115::o:0;10052:900:7:-;10122:32;10157:17;:40;10175:5;:15;10181:8;10175:15;;;;;;;;;;;:21;;;;;;;;;;;;10157:40;;;;;;;;;;;;;;;10122:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10201:17;10221:5;:15;10227:8;10221:15;;;;;;;;;;;:25;;;10201:45;;10317:20;10396:7;;10364:8;:27;;;10354:7;;:37;;;;:::i;:::-;10341:9;:51;;;;:::i;:::-;10340:63;;;;:::i;:::-;10317:86;;10407:24;10446:12;10434:9;:24;;;;:::i;:::-;10407:51;;10511:1;10496:12;:16;10492:133;;;10526:5;:15;10532:8;10526:15;;;;;;;;;;;:21;;;;;;;;;;;;10519:38;;;10563:5;:15;10569:8;10563:15;;;;;;;;;;;:34;;;;;;;;;;;;10603:12;10519:101;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10492:133;10697:1;10678:16;:20;10674:109;;;10712:5;:15;10718:8;10712:15;;;;;;;;;;;:21;;;;;;;;;;;;10705:38;;;10744:15;;;;;;;;;;;10761:16;10705:73;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10674:109;10866:12;10830:5;:15;10836:8;10830:15;;;;;;;;;;;:34;;;;;;;;;;;;10809:70;;;;;;;;;;;;10907:8;10888:60;10917:12;10931:16;10888:60;;;;;;;:::i;:::-;;;;;;;;10118:834;;;;10052:900;:::o;8495:1438::-;8628:32;8663:17;:40;8681:5;:15;8687:8;8681:15;;;;;;;;;;;:21;;;;;;;;;;;;8663:40;;;;;;;;;;;;;;;8628:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8707:17;8727:5;:15;8733:8;8727:15;;;;;;;;;;;:25;;;8707:45;;8795:22;8862:7;;8833:8;:25;;;8821:9;:37;;;;:::i;:::-;8820:49;;;;:::i;:::-;8795:74;;8873:29;8941:7;;8923:14;8906:31;;:14;:31;;;;:::i;:::-;8905:43;;;;:::i;:::-;8873:75;;8952:24;9040:7;;9004:8;:29;;;8980:21;:53;;;;:::i;:::-;8979:68;;;;:::i;:::-;8952:95;;9051:20;9086:14;9074:9;:26;;;;:::i;:::-;9051:49;;9154:1;9138:12;:17;;:52;;;;;9189:1;9159:5;:15;9165:8;9159:15;;;;;;;;;;;:26;;;;;;;;;;;;:31;;;9138:52;9134:169;;;9204:5;:15;9210:8;9204:15;;;;;;;;;;;:21;;;;;;;;;;;;9197:38;;;9241:5;:15;9247:8;9241:15;;;;;;;;;;;:34;;;;;;;;;;;;9281:12;9197:101;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9134:169;9376:1;9356:16;:21;9352:110;;9391:5;:15;9397:8;9391:15;;;;;;;;;;;:21;;;;;;;;;;;;9384:38;;;9423:15;;;;;;;;;;;9440:16;9384:73;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9352:110;9595:16;9571:21;:40;;;;:::i;:::-;9547:64;;9644:1;9619:21;:26;9615:123;;9659:5;:15;9665:8;9659:15;;;;;;;;;;;:21;;;;;;;;;;;;9652:38;;;9691:18;9711:21;9652:81;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9615:123;9821:12;9785:5;:15;9791:8;9785:15;;;;;;;;;;;:34;;;;;;;;;;;;9764:70;;;;;;;;;;;;9865:8;9843:86;9875:12;9889:21;9912:16;9843:86;;;;;;;;:::i;:::-;;;;;;;;8624:1309;;;;;;8495:1438;;;:::o;2209:106:3:-;2275:8;:6;:8::i;:::-;2267:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2209:106::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;1125:111::-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1197:32:1::1;1216:12;:10;:12::i;:::-;1197:18;:32::i;:::-;1125:111::o:0;1187:95:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1270:5:3::1;1260:7;;:15;;;;;;;;;;;;;;;;;;1187:95::o:0;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88:117:10:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:90::-;1711:7;1754:5;1747:13;1740:21;1729:32;;1677:90;;;:::o;1773:109::-;1854:21;1869:5;1854:21;:::i;:::-;1849:3;1842:34;1773:109;;:::o;1888:210::-;1975:4;2013:2;2002:9;1998:18;1990:26;;2026:65;2088:1;2077:9;2073:17;2064:6;2026:65;:::i;:::-;1888:210;;;;:::o;2104:77::-;2141:7;2170:5;2159:16;;2104:77;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:474::-;2528:6;2536;2585:2;2573:9;2564:7;2560:23;2556:32;2553:119;;;2591:79;;:::i;:::-;2553:119;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2838:2;2864:53;2909:7;2900:6;2889:9;2885:22;2864:53;:::i;:::-;2854:63;;2809:118;2460:474;;;;;:::o;2940:329::-;2999:6;3048:2;3036:9;3027:7;3023:23;3019:32;3016:119;;;3054:79;;:::i;:::-;3016:119;3174:1;3199:53;3244:7;3235:6;3224:9;3220:22;3199:53;:::i;:::-;3189:63;;3145:117;2940:329;;;;:::o;3275:::-;3334:6;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3275:329;;;;:::o;3610:108::-;3687:24;3705:5;3687:24;:::i;:::-;3682:3;3675:37;3610:108;;:::o;3724:::-;3801:24;3819:5;3801:24;:::i;:::-;3796:3;3789:37;3724:108;;:::o;3838:99::-;3909:21;3924:5;3909:21;:::i;:::-;3904:3;3897:34;3838:99;;:::o;3943:109::-;3979:7;4019:26;4012:5;4008:38;3997:49;;3943:109;;;:::o;4058:105::-;4133:23;4150:5;4133:23;:::i;:::-;4128:3;4121:36;4058:105;;:::o;4223:1950::-;4366:6;4361:3;4357:16;4457:4;4450:5;4446:16;4440:23;4476:63;4533:4;4528:3;4524:14;4510:12;4476:63;:::i;:::-;4383:166;4632:4;4625:5;4621:16;4615:23;4651:63;4708:4;4703:3;4699:14;4685:12;4651:63;:::i;:::-;4559:165;4820:4;4813:5;4809:16;4803:23;4839:63;4896:4;4891:3;4887:14;4873:12;4839:63;:::i;:::-;4734:178;4999:4;4992:5;4988:16;4982:23;5018:63;5075:4;5070:3;5066:14;5052:12;5018:63;:::i;:::-;4922:169;5180:4;5173:5;5169:16;5163:23;5199:63;5256:4;5251:3;5247:14;5233:12;5199:63;:::i;:::-;5101:171;5361:4;5354:5;5350:16;5344:23;5380:57;5431:4;5426:3;5422:14;5408:12;5380:57;:::i;:::-;5282:165;5535:4;5528:5;5524:16;5518:23;5554:57;5605:4;5600:3;5596:14;5582:12;5554:57;:::i;:::-;5457:164;5712:4;5705:5;5701:16;5695:23;5731:63;5788:4;5783:3;5779:14;5765:12;5731:63;:::i;:::-;5631:173;5892:6;5885:5;5881:18;5875:25;5913:63;5968:6;5963:3;5959:16;5945:12;5913:63;:::i;:::-;5814:172;6070:6;6063:5;6059:18;6053:25;6091:65;6148:6;6143:3;6139:16;6125:12;6091:65;:::i;:::-;5996:170;4335:1838;4223:1950;;:::o;6179:315::-;6318:4;6356:3;6345:9;6341:19;6333:27;;6370:117;6484:1;6473:9;6469:17;6460:6;6370:117;:::i;:::-;6179:315;;;;:::o;6500:120::-;6572:23;6589:5;6572:23;:::i;:::-;6565:5;6562:34;6552:62;;6610:1;6607;6600:12;6552:62;6500:120;:::o;6626:137::-;6671:5;6709:6;6696:20;6687:29;;6725:32;6751:5;6725:32;:::i;:::-;6626:137;;;;:::o;6769:117::-;6878:1;6875;6868:12;6892:117;7001:1;6998;6991:12;7015:117;7124:1;7121;7114:12;7152:553;7210:8;7220:6;7270:3;7263:4;7255:6;7251:17;7247:27;7237:122;;7278:79;;:::i;:::-;7237:122;7391:6;7378:20;7368:30;;7421:18;7413:6;7410:30;7407:117;;;7443:79;;:::i;:::-;7407:117;7557:4;7549:6;7545:17;7533:29;;7611:3;7603:4;7595:6;7591:17;7581:8;7577:32;7574:41;7571:128;;;7618:79;;:::i;:::-;7571:128;7152:553;;;;;:::o;7711:1401::-;7835:6;7843;7851;7859;7867;7875;7883;7891;7940:3;7928:9;7919:7;7915:23;7911:33;7908:120;;;7947:79;;:::i;:::-;7908:120;8067:1;8092:53;8137:7;8128:6;8117:9;8113:22;8092:53;:::i;:::-;8082:63;;8038:117;8194:2;8220:53;8265:7;8256:6;8245:9;8241:22;8220:53;:::i;:::-;8210:63;;8165:118;8322:2;8348:52;8392:7;8383:6;8372:9;8368:22;8348:52;:::i;:::-;8338:62;;8293:117;8449:2;8475:53;8520:7;8511:6;8500:9;8496:22;8475:53;:::i;:::-;8465:63;;8420:118;8577:3;8604:53;8649:7;8640:6;8629:9;8625:22;8604:53;:::i;:::-;8594:63;;8548:119;8706:3;8733:53;8778:7;8769:6;8758:9;8754:22;8733:53;:::i;:::-;8723:63;;8677:119;8863:3;8852:9;8848:19;8835:33;8895:18;8887:6;8884:30;8881:117;;;8917:79;;:::i;:::-;8881:117;9030:65;9087:7;9078:6;9067:9;9063:22;9030:65;:::i;:::-;9012:83;;;;8806:299;7711:1401;;;;;;;;;;;:::o;9118:118::-;9205:24;9223:5;9205:24;:::i;:::-;9200:3;9193:37;9118:118;;:::o;9242:222::-;9335:4;9373:2;9362:9;9358:18;9350:26;;9386:71;9454:1;9443:9;9439:17;9430:6;9386:71;:::i;:::-;9242:222;;;;:::o;9470:911::-;9565:6;9573;9581;9589;9597;9646:3;9634:9;9625:7;9621:23;9617:33;9614:120;;;9653:79;;:::i;:::-;9614:120;9773:1;9798:53;9843:7;9834:6;9823:9;9819:22;9798:53;:::i;:::-;9788:63;;9744:117;9900:2;9926:53;9971:7;9962:6;9951:9;9947:22;9926:53;:::i;:::-;9916:63;;9871:118;10028:2;10054:53;10099:7;10090:6;10079:9;10075:22;10054:53;:::i;:::-;10044:63;;9999:118;10156:2;10182:53;10227:7;10218:6;10207:9;10203:22;10182:53;:::i;:::-;10172:63;;10127:118;10284:3;10311:53;10356:7;10347:6;10336:9;10332:22;10311:53;:::i;:::-;10301:63;;10255:119;9470:911;;;;;;;;:::o;10489:933::-;10654:4;10649:3;10645:14;10753:4;10746:5;10742:16;10736:23;10772:63;10829:4;10824:3;10820:14;10806:12;10772:63;:::i;:::-;10669:176;10943:4;10936:5;10932:16;10926:23;10962:63;11019:4;11014:3;11010:14;10996:12;10962:63;:::i;:::-;10855:180;11131:4;11124:5;11120:16;11114:23;11150:63;11207:4;11202:3;11198:14;11184:12;11150:63;:::i;:::-;11045:178;11323:4;11316:5;11312:16;11306:23;11342:63;11399:4;11394:3;11390:14;11376:12;11342:63;:::i;:::-;11233:182;10623:799;10489:933;;:::o;11428:359::-;11589:4;11627:3;11616:9;11612:19;11604:27;;11641:139;11777:1;11766:9;11762:17;11753:6;11641:139;:::i;:::-;11428:359;;;;:::o;11793:118::-;11880:24;11898:5;11880:24;:::i;:::-;11875:3;11868:37;11793:118;;:::o;11917:222::-;12010:4;12048:2;12037:9;12033:18;12025:26;;12061:71;12129:1;12118:9;12114:17;12105:6;12061:71;:::i;:::-;11917:222;;;;:::o;12145:619::-;12222:6;12230;12238;12287:2;12275:9;12266:7;12262:23;12258:32;12255:119;;;12293:79;;:::i;:::-;12255:119;12413:1;12438:53;12483:7;12474:6;12463:9;12459:22;12438:53;:::i;:::-;12428:63;;12384:117;12540:2;12566:53;12611:7;12602:6;12591:9;12587:22;12566:53;:::i;:::-;12556:63;;12511:118;12668:2;12694:53;12739:7;12730:6;12719:9;12715:22;12694:53;:::i;:::-;12684:63;;12639:118;12145:619;;;;;:::o;12770:101::-;12806:7;12846:18;12839:5;12835:30;12824:41;;12770:101;;;:::o;12877:120::-;12949:23;12966:5;12949:23;:::i;:::-;12942:5;12939:34;12929:62;;12987:1;12984;12977:12;12929:62;12877:120;:::o;13003:137::-;13048:5;13086:6;13073:20;13064:29;;13102:32;13128:5;13102:32;:::i;:::-;13003:137;;;;:::o;13146:907::-;13239:6;13247;13255;13263;13271;13320:3;13308:9;13299:7;13295:23;13291:33;13288:120;;;13327:79;;:::i;:::-;13288:120;13447:1;13472:53;13517:7;13508:6;13497:9;13493:22;13472:53;:::i;:::-;13462:63;;13418:117;13574:2;13600:53;13645:7;13636:6;13625:9;13621:22;13600:53;:::i;:::-;13590:63;;13545:118;13702:2;13728:53;13773:7;13764:6;13753:9;13749:22;13728:53;:::i;:::-;13718:63;;13673:118;13830:2;13856:52;13900:7;13891:6;13880:9;13876:22;13856:52;:::i;:::-;13846:62;;13801:117;13957:3;13984:52;14028:7;14019:6;14008:9;14004:22;13984:52;:::i;:::-;13974:62;;13928:118;13146:907;;;;;;;;:::o;14059:169::-;14143:11;14177:6;14172:3;14165:19;14217:4;14212:3;14208:14;14193:29;;14059:169;;;;:::o;14234:171::-;14374:23;14370:1;14362:6;14358:14;14351:47;14234:171;:::o;14411:366::-;14553:3;14574:67;14638:2;14633:3;14574:67;:::i;:::-;14567:74;;14650:93;14739:3;14650:93;:::i;:::-;14768:2;14763:3;14759:12;14752:19;;14411:366;;;:::o;14783:419::-;14949:4;14987:2;14976:9;14972:18;14964:26;;15036:9;15030:4;15026:20;15022:1;15011:9;15007:17;15000:47;15064:131;15190:4;15064:131;:::i;:::-;15056:139;;14783:419;;;:::o;15208:224::-;15348:34;15344:1;15336:6;15332:14;15325:58;15417:7;15412:2;15404:6;15400:15;15393:32;15208:224;:::o;15438:366::-;15580:3;15601:67;15665:2;15660:3;15601:67;:::i;:::-;15594:74;;15677:93;15766:3;15677:93;:::i;:::-;15795:2;15790:3;15786:12;15779:19;;15438:366;;;:::o;15810:419::-;15976:4;16014:2;16003:9;15999:18;15991:26;;16063:9;16057:4;16053:20;16049:1;16038:9;16034:17;16027:47;16091:131;16217:4;16091:131;:::i;:::-;16083:139;;15810:419;;;:::o;16235:226::-;16375:34;16371:1;16363:6;16359:14;16352:58;16444:9;16439:2;16431:6;16427:15;16420:34;16235:226;:::o;16467:366::-;16609:3;16630:67;16694:2;16689:3;16630:67;:::i;:::-;16623:74;;16706:93;16795:3;16706:93;:::i;:::-;16824:2;16819:3;16815:12;16808:19;;16467:366;;;:::o;16839:419::-;17005:4;17043:2;17032:9;17028:18;17020:26;;17092:9;17086:4;17082:20;17078:1;17067:9;17063:17;17056:47;17120:131;17246:4;17120:131;:::i;:::-;17112:139;;16839:419;;;:::o;17264:164::-;17404:16;17400:1;17392:6;17388:14;17381:40;17264:164;:::o;17434:366::-;17576:3;17597:67;17661:2;17656:3;17597:67;:::i;:::-;17590:74;;17673:93;17762:3;17673:93;:::i;:::-;17791:2;17786:3;17782:12;17775:19;;17434:366;;;:::o;17806:419::-;17972:4;18010:2;17999:9;17995:18;17987:26;;18059:9;18053:4;18049:20;18045:1;18034:9;18030:17;18023:47;18087:131;18213:4;18087:131;:::i;:::-;18079:139;;17806:419;;;:::o;18231:164::-;18371:16;18367:1;18359:6;18355:14;18348:40;18231:164;:::o;18401:366::-;18543:3;18564:67;18628:2;18623:3;18564:67;:::i;:::-;18557:74;;18640:93;18729:3;18640:93;:::i;:::-;18758:2;18753:3;18749:12;18742:19;;18401:366;;;:::o;18773:419::-;18939:4;18977:2;18966:9;18962:18;18954:26;;19026:9;19020:4;19016:20;19012:1;19001:9;18997:17;18990:47;19054:131;19180:4;19054:131;:::i;:::-;19046:139;;18773:419;;;:::o;19198:163::-;19338:15;19334:1;19326:6;19322:14;19315:39;19198:163;:::o;19367:366::-;19509:3;19530:67;19594:2;19589:3;19530:67;:::i;:::-;19523:74;;19606:93;19695:3;19606:93;:::i;:::-;19724:2;19719:3;19715:12;19708:19;;19367:366;;;:::o;19739:419::-;19905:4;19943:2;19932:9;19928:18;19920:26;;19992:9;19986:4;19982:20;19978:1;19967:9;19963:17;19956:47;20020:131;20146:4;20020:131;:::i;:::-;20012:139;;19739:419;;;:::o;20164:171::-;20304:23;20300:1;20292:6;20288:14;20281:47;20164:171;:::o;20341:366::-;20483:3;20504:67;20568:2;20563:3;20504:67;:::i;:::-;20497:74;;20580:93;20669:3;20580:93;:::i;:::-;20698:2;20693:3;20689:12;20682:19;;20341:366;;;:::o;20713:419::-;20879:4;20917:2;20906:9;20902:18;20894:26;;20966:9;20960:4;20956:20;20952:1;20941:9;20937:17;20930:47;20994:131;21120:4;20994:131;:::i;:::-;20986:139;;20713:419;;;:::o;21138:118::-;21225:24;21243:5;21225:24;:::i;:::-;21220:3;21213:37;21138:118;;:::o;21262:332::-;21383:4;21421:2;21410:9;21406:18;21398:26;;21434:71;21502:1;21491:9;21487:17;21478:6;21434:71;:::i;:::-;21515:72;21583:2;21572:9;21568:18;21559:6;21515:72;:::i;:::-;21262:332;;;;;:::o;21600:116::-;21670:21;21685:5;21670:21;:::i;:::-;21663:5;21660:32;21650:60;;21706:1;21703;21696:12;21650:60;21600:116;:::o;21722:137::-;21776:5;21807:6;21801:13;21792:22;;21823:30;21847:5;21823:30;:::i;:::-;21722:137;;;;:::o;21865:345::-;21932:6;21981:2;21969:9;21960:7;21956:23;21952:32;21949:119;;;21987:79;;:::i;:::-;21949:119;22107:1;22132:61;22185:7;22176:6;22165:9;22161:22;22132:61;:::i;:::-;22122:71;;22078:125;21865:345;;;;:::o;22216:180::-;22264:77;22261:1;22254:88;22361:4;22358:1;22351:15;22385:4;22382:1;22375:15;22402:194;22442:4;22462:20;22480:1;22462:20;:::i;:::-;22457:25;;22496:20;22514:1;22496:20;:::i;:::-;22491:25;;22540:1;22537;22533:9;22525:17;;22564:1;22558:4;22555:11;22552:37;;;22569:18;;:::i;:::-;22552:37;22402:194;;;;:::o;22602:191::-;22642:3;22661:20;22679:1;22661:20;:::i;:::-;22656:25;;22695:20;22713:1;22695:20;:::i;:::-;22690:25;;22738:1;22735;22731:9;22724:16;;22759:3;22756:1;22753:10;22750:36;;;22766:18;;:::i;:::-;22750:36;22602:191;;;;:::o;22799:222::-;22892:4;22930:2;22919:9;22915:18;22907:26;;22943:71;23011:1;23000:9;22996:17;22987:6;22943:71;:::i;:::-;22799:222;;;;:::o;23027:228::-;23167:34;23163:1;23155:6;23151:14;23144:58;23236:11;23231:2;23223:6;23219:15;23212:36;23027:228;:::o;23261:366::-;23403:3;23424:67;23488:2;23483:3;23424:67;:::i;:::-;23417:74;;23500:93;23589:3;23500:93;:::i;:::-;23618:2;23613:3;23609:12;23602:19;;23261:366;;;:::o;23633:419::-;23799:4;23837:2;23826:9;23822:18;23814:26;;23886:9;23880:4;23876:20;23872:1;23861:9;23857:17;23850:47;23914:131;24040:4;23914:131;:::i;:::-;23906:139;;23633:419;;;:::o;24058:168::-;24198:20;24194:1;24186:6;24182:14;24175:44;24058:168;:::o;24232:366::-;24374:3;24395:67;24459:2;24454:3;24395:67;:::i;:::-;24388:74;;24471:93;24560:3;24471:93;:::i;:::-;24589:2;24584:3;24580:12;24573:19;;24232:366;;;:::o;24604:419::-;24770:4;24808:2;24797:9;24793:18;24785:26;;24857:9;24851:4;24847:20;24843:1;24832:9;24828:17;24821:47;24885:131;25011:4;24885:131;:::i;:::-;24877:139;;24604:419;;;:::o;25029:442::-;25178:4;25216:2;25205:9;25201:18;25193:26;;25229:71;25297:1;25286:9;25282:17;25273:6;25229:71;:::i;:::-;25310:72;25378:2;25367:9;25363:18;25354:6;25310:72;:::i;:::-;25392;25460:2;25449:9;25445:18;25436:6;25392:72;:::i;:::-;25029:442;;;;;;:::o;25477:233::-;25516:3;25539:24;25557:5;25539:24;:::i;:::-;25530:33;;25585:66;25578:5;25575:77;25572:103;;25655:18;;:::i;:::-;25572:103;25702:1;25695:5;25691:13;25684:20;;25477:233;;;:::o;25716:442::-;25865:4;25903:2;25892:9;25888:18;25880:26;;25916:71;25984:1;25973:9;25969:17;25960:6;25916:71;:::i;:::-;25997:72;26065:2;26054:9;26050:18;26041:6;25997:72;:::i;:::-;26079;26147:2;26136:9;26132:18;26123:6;26079:72;:::i;:::-;25716:442;;;;;;:::o;26164:168::-;26304:20;26300:1;26292:6;26288:14;26281:44;26164:168;:::o;26338:366::-;26480:3;26501:67;26565:2;26560:3;26501:67;:::i;:::-;26494:74;;26577:93;26666:3;26577:93;:::i;:::-;26695:2;26690:3;26686:12;26679:19;;26338:366;;;:::o;26710:419::-;26876:4;26914:2;26903:9;26899:18;26891:26;;26963:9;26957:4;26953:20;26949:1;26938:9;26934:17;26927:47;26991:131;27117:4;26991:131;:::i;:::-;26983:139;;26710:419;;;:::o;27135:165::-;27275:17;27271:1;27263:6;27259:14;27252:41;27135:165;:::o;27306:366::-;27448:3;27469:67;27533:2;27528:3;27469:67;:::i;:::-;27462:74;;27545:93;27634:3;27545:93;:::i;:::-;27663:2;27658:3;27654:12;27647:19;;27306:366;;;:::o;27678:419::-;27844:4;27882:2;27871:9;27867:18;27859:26;;27931:9;27925:4;27921:20;27917:1;27906:9;27902:17;27895:47;27959:131;28085:4;27959:131;:::i;:::-;27951:139;;27678:419;;;:::o;28103:179::-;28243:31;28239:1;28231:6;28227:14;28220:55;28103:179;:::o;28288:366::-;28430:3;28451:67;28515:2;28510:3;28451:67;:::i;:::-;28444:74;;28527:93;28616:3;28527:93;:::i;:::-;28645:2;28640:3;28636:12;28629:19;;28288:366;;;:::o;28660:419::-;28826:4;28864:2;28853:9;28849:18;28841:26;;28913:9;28907:4;28903:20;28899:1;28888:9;28884:17;28877:47;28941:131;29067:4;28941:131;:::i;:::-;28933:139;;28660:419;;;:::o;29085:410::-;29125:7;29148:20;29166:1;29148:20;:::i;:::-;29143:25;;29182:20;29200:1;29182:20;:::i;:::-;29177:25;;29237:1;29234;29230:9;29259:30;29277:11;29259:30;:::i;:::-;29248:41;;29438:1;29429:7;29425:15;29422:1;29419:22;29399:1;29392:9;29372:83;29349:139;;29468:18;;:::i;:::-;29349:139;29133:362;29085:410;;;;:::o;29501:180::-;29549:77;29546:1;29539:88;29646:4;29643:1;29636:15;29670:4;29667:1;29660:15;29687:185;29727:1;29744:20;29762:1;29744:20;:::i;:::-;29739:25;;29778:20;29796:1;29778:20;:::i;:::-;29773:25;;29817:1;29807:35;;29822:18;;:::i;:::-;29807:35;29864:1;29861;29857:9;29852:14;;29687:185;;;;:::o;29878:60::-;29906:3;29927:5;29920:12;;29878:60;;;:::o;29944:140::-;29993:9;30026:52;30044:33;30053:23;30070:5;30053:23;:::i;:::-;30044:33;:::i;:::-;30026:52;:::i;:::-;30013:65;;29944:140;;;:::o;30090:129::-;30176:36;30206:5;30176:36;:::i;:::-;30171:3;30164:49;30090:129;;:::o;30225:146::-;30322:6;30317:3;30312;30299:30;30363:1;30354:6;30349:3;30345:16;30338:27;30225:146;;;:::o;30377:102::-;30418:6;30469:2;30465:7;30460:2;30453:5;30449:14;30445:28;30435:38;;30377:102;;;:::o;30509:317::-;30607:3;30628:71;30692:6;30687:3;30628:71;:::i;:::-;30621:78;;30709:56;30758:6;30753:3;30746:5;30709:56;:::i;:::-;30790:29;30812:6;30790:29;:::i;:::-;30785:3;30781:39;30774:46;;30509:317;;;;;:::o;30832:662::-;31038:4;31076:3;31065:9;31061:19;31053:27;;31090:71;31158:1;31147:9;31143:17;31134:6;31090:71;:::i;:::-;31171:72;31239:2;31228:9;31224:18;31215:6;31171:72;:::i;:::-;31253:71;31320:2;31309:9;31305:18;31296:6;31253:71;:::i;:::-;31371:9;31365:4;31361:20;31356:2;31345:9;31341:18;31334:48;31399:88;31482:4;31473:6;31465;31399:88;:::i;:::-;31391:96;;30832:662;;;;;;;;:::o;31500:233::-;31640:34;31636:1;31628:6;31624:14;31617:58;31709:16;31704:2;31696:6;31692:15;31685:41;31500:233;:::o;31739:366::-;31881:3;31902:67;31966:2;31961:3;31902:67;:::i;:::-;31895:74;;31978:93;32067:3;31978:93;:::i;:::-;32096:2;32091:3;32087:12;32080:19;;31739:366;;;:::o;32111:419::-;32277:4;32315:2;32304:9;32300:18;32292:26;;32364:9;32358:4;32354:20;32350:1;32339:9;32335:17;32328:47;32392:131;32518:4;32392:131;:::i;:::-;32384:139;;32111:419;;;:::o;32536:85::-;32581:7;32610:5;32599:16;;32536:85;;;:::o;32627:86::-;32662:7;32702:4;32695:5;32691:16;32680:27;;32627:86;;;:::o;32719:154::-;32775:9;32808:59;32824:42;32833:32;32859:5;32833:32;:::i;:::-;32824:42;:::i;:::-;32808:59;:::i;:::-;32795:72;;32719:154;;;:::o;32879:143::-;32972:43;33009:5;32972:43;:::i;:::-;32967:3;32960:56;32879:143;;:::o;33028:234::-;33127:4;33165:2;33154:9;33150:18;33142:26;;33178:77;33252:1;33241:9;33237:17;33228:6;33178:77;:::i;:::-;33028:234;;;;:::o;33268:178::-;33408:30;33404:1;33396:6;33392:14;33385:54;33268:178;:::o;33452:366::-;33594:3;33615:67;33679:2;33674:3;33615:67;:::i;:::-;33608:74;;33691:93;33780:3;33691:93;:::i;:::-;33809:2;33804:3;33800:12;33793:19;;33452:366;;;:::o;33824:419::-;33990:4;34028:2;34017:9;34013:18;34005:26;;34077:9;34071:4;34067:20;34063:1;34052:9;34048:17;34041:47;34105:131;34231:4;34105:131;:::i;:::-;34097:139;;33824:419;;;:::o;34249:222::-;34389:34;34385:1;34377:6;34373:14;34366:58;34458:5;34453:2;34445:6;34441:15;34434:30;34249:222;:::o;34477:366::-;34619:3;34640:67;34704:2;34699:3;34640:67;:::i;:::-;34633:74;;34716:93;34805:3;34716:93;:::i;:::-;34834:2;34829:3;34825:12;34818:19;;34477:366;;;:::o;34849:419::-;35015:4;35053:2;35042:9;35038:18;35030:26;;35102:9;35096:4;35092:20;35088:1;35077:9;35073:17;35066:47;35130:131;35256:4;35130:131;:::i;:::-;35122:139;;34849:419;;;:::o;35274:226::-;35414:34;35410:1;35402:6;35398:14;35391:58;35483:9;35478:2;35470:6;35466:15;35459:34;35274:226;:::o;35506:366::-;35648:3;35669:67;35733:2;35728:3;35669:67;:::i;:::-;35662:74;;35745:93;35834:3;35745:93;:::i;:::-;35863:2;35858:3;35854:12;35847:19;;35506:366;;;:::o;35878:419::-;36044:4;36082:2;36071:9;36067:18;36059:26;;36131:9;36125:4;36121:20;36117:1;36106:9;36102:17;36095:47;36159:131;36285:4;36159:131;:::i;:::-;36151:139;;35878:419;;;:::o;36303:224::-;36443:34;36439:1;36431:6;36427:14;36420:58;36512:7;36507:2;36499:6;36495:15;36488:32;36303:224;:::o;36533:366::-;36675:3;36696:67;36760:2;36755:3;36696:67;:::i;:::-;36689:74;;36772:93;36861:3;36772:93;:::i;:::-;36890:2;36885:3;36881:12;36874:19;;36533:366;;;:::o;36905:419::-;37071:4;37109:2;37098:9;37094:18;37086:26;;37158:9;37152:4;37148:20;37144:1;37133:9;37129:17;37122:47;37186:131;37312:4;37186:131;:::i;:::-;37178:139;;36905:419;;;:::o;37330:229::-;37470:34;37466:1;37458:6;37454:14;37447:58;37539:12;37534:2;37526:6;37522:15;37515:37;37330:229;:::o;37565:366::-;37707:3;37728:67;37792:2;37787:3;37728:67;:::i;:::-;37721:74;;37804:93;37893:3;37804:93;:::i;:::-;37922:2;37917:3;37913:12;37906:19;;37565:366;;;:::o;37937:419::-;38103:4;38141:2;38130:9;38126:18;38118:26;;38190:9;38184:4;38180:20;38176:1;38165:9;38161:17;38154:47;38218:131;38344:4;38218:131;:::i;:::-;38210:139;;37937:419;;;:::o;38362:553::-;38539:4;38577:3;38566:9;38562:19;38554:27;;38591:71;38659:1;38648:9;38644:17;38635:6;38591:71;:::i;:::-;38672:72;38740:2;38729:9;38725:18;38716:6;38672:72;:::i;:::-;38754;38822:2;38811:9;38807:18;38798:6;38754:72;:::i;:::-;38836;38904:2;38893:9;38889:18;38880:6;38836:72;:::i;:::-;38362:553;;;;;;;:::o;38921:173::-;39061:25;39057:1;39049:6;39045:14;39038:49;38921:173;:::o;39100:366::-;39242:3;39263:67;39327:2;39322:3;39263:67;:::i;:::-;39256:74;;39339:93;39428:3;39339:93;:::i;:::-;39457:2;39452:3;39448:12;39441:19;;39100:366;;;:::o;39472:419::-;39638:4;39676:2;39665:9;39661:18;39653:26;;39725:9;39719:4;39715:20;39711:1;39700:9;39696:17;39689:47;39753:131;39879:4;39753:131;:::i;:::-;39745:139;;39472:419;;;:::o;39897:170::-;40037:22;40033:1;40025:6;40021:14;40014:46;39897:170;:::o;40073:366::-;40215:3;40236:67;40300:2;40295:3;40236:67;:::i;:::-;40229:74;;40312:93;40401:3;40312:93;:::i;:::-;40430:2;40425:3;40421:12;40414:19;;40073:366;;;:::o;40445:419::-;40611:4;40649:2;40638:9;40634:18;40626:26;;40698:9;40692:4;40688:20;40684:1;40673:9;40669:17;40662:47;40726:131;40852:4;40726:131;:::i;:::-;40718:139;;40445:419;;;:::o;40870:216::-;40909:4;40929:19;40946:1;40929:19;:::i;:::-;40924:24;;40962:19;40979:1;40962:19;:::i;:::-;40957:24;;41005:1;41002;40998:9;40990:17;;41029:26;41023:4;41020:36;41017:62;;;41059:18;;:::i;:::-;41017:62;40870:216;;;;:::o;41092:115::-;41177:23;41194:5;41177:23;:::i;:::-;41172:3;41165:36;41092:115;;:::o;41213:434::-;41358:4;41396:2;41385:9;41381:18;41373:26;;41409:71;41477:1;41466:9;41462:17;41453:6;41409:71;:::i;:::-;41490:70;41556:2;41545:9;41541:18;41532:6;41490:70;:::i;:::-;41570;41636:2;41625:9;41621:18;41612:6;41570:70;:::i;:::-;41213:434;;;;;;:::o;41653:182::-;41793:34;41789:1;41781:6;41777:14;41770:58;41653:182;:::o;41841:366::-;41983:3;42004:67;42068:2;42063:3;42004:67;:::i;:::-;41997:74;;42080:93;42169:3;42080:93;:::i;:::-;42198:2;42193:3;42189:12;42182:19;;41841:366;;;:::o;42213:419::-;42379:4;42417:2;42406:9;42402:18;42394:26;;42466:9;42460:4;42456:20;42452:1;42441:9;42437:17;42430:47;42494:131;42620:4;42494:131;:::i;:::-;42486:139;;42213:419;;;:::o;42638:166::-;42778:18;42774:1;42766:6;42762:14;42755:42;42638:166;:::o;42810:366::-;42952:3;42973:67;43037:2;43032:3;42973:67;:::i;:::-;42966:74;;43049:93;43138:3;43049:93;:::i;:::-;43167:2;43162:3;43158:12;43151:19;;42810:366;;;:::o;43182:419::-;43348:4;43386:2;43375:9;43371:18;43363:26;;43435:9;43429:4;43425:20;43421:1;43410:9;43406:17;43399:47;43463:131;43589:4;43463:131;:::i;:::-;43455:139;;43182:419;;;:::o;43607:167::-;43747:19;43743:1;43735:6;43731:14;43724:43;43607:167;:::o;43780:366::-;43922:3;43943:67;44007:2;44002:3;43943:67;:::i;:::-;43936:74;;44019:93;44108:3;44019:93;:::i;:::-;44137:2;44132:3;44128:12;44121:19;;43780:366;;;:::o;44152:419::-;44318:4;44356:2;44345:9;44341:18;44333:26;;44405:9;44399:4;44395:20;44391:1;44380:9;44376:17;44369:47;44433:131;44559:4;44433:131;:::i;:::-;44425:139;;44152:419;;;:::o;44577:162::-;44717:14;44713:1;44705:6;44701:14;44694:38;44577:162;:::o;44745:366::-;44887:3;44908:67;44972:2;44967:3;44908:67;:::i;:::-;44901:74;;44984:93;45073:3;44984:93;:::i;:::-;45102:2;45097:3;45093:12;45086:19;;44745:366;;;:::o;45117:419::-;45283:4;45321:2;45310:9;45306:18;45298:26;;45370:9;45364:4;45360:20;45356:1;45345:9;45341:17;45334:47;45398:131;45524:4;45398:131;:::i;:::-;45390:139;;45117:419;;;:::o;45542:166::-;45682:18;45678:1;45670:6;45666:14;45659:42;45542:166;:::o;45714:366::-;45856:3;45877:67;45941:2;45936:3;45877:67;:::i;:::-;45870:74;;45953:93;46042:3;45953:93;:::i;:::-;46071:2;46066:3;46062:12;46055:19;;45714:366;;;:::o;46086:419::-;46252:4;46290:2;46279:9;46275:18;46267:26;;46339:9;46333:4;46329:20;46325:1;46314:9;46310:17;46303:47;46367:131;46493:4;46367:131;:::i;:::-;46359:139;;46086:419;;;:::o;46511:175::-;46651:27;46647:1;46639:6;46635:14;46628:51;46511:175;:::o;46692:366::-;46834:3;46855:67;46919:2;46914:3;46855:67;:::i;:::-;46848:74;;46931:93;47020:3;46931:93;:::i;:::-;47049:2;47044:3;47040:12;47033:19;;46692:366;;;:::o;47064:419::-;47230:4;47268:2;47257:9;47253:18;47245:26;;47317:9;47311:4;47307:20;47303:1;47292:9;47288:17;47281:47;47345:131;47471:4;47345:131;:::i;:::-;47337:139;;47064:419;;;:::o;47489:230::-;47629:34;47625:1;47617:6;47613:14;47606:58;47698:13;47693:2;47685:6;47681:15;47674:38;47489:230;:::o;47725:366::-;47867:3;47888:67;47952:2;47947:3;47888:67;:::i;:::-;47881:74;;47964:93;48053:3;47964:93;:::i;:::-;48082:2;48077:3;48073:12;48066:19;;47725:366;;;:::o;48097:419::-;48263:4;48301:2;48290:9;48286:18;48278:26;;48350:9;48344:4;48340:20;48336:1;48325:9;48321:17;48314:47;48378:131;48504:4;48378:131;:::i;:::-;48370:139;;48097:419;;;:::o;48522:332::-;48643:4;48681:2;48670:9;48666:18;48658:26;;48694:71;48762:1;48751:9;48747:17;48738:6;48694:71;:::i;:::-;48775:72;48843:2;48832:9;48828:18;48819:6;48775:72;:::i;:::-;48522:332;;;;;:::o;48860:442::-;49009:4;49047:2;49036:9;49032:18;49024:26;;49060:71;49128:1;49117:9;49113:17;49104:6;49060:71;:::i;:::-;49141:72;49209:2;49198:9;49194:18;49185:6;49141:72;:::i;:::-;49223;49291:2;49280:9;49276:18;49267:6;49223:72;:::i;:::-;48860:442;;;;;;:::o;49308:170::-;49448:22;49444:1;49436:6;49432:14;49425:46;49308:170;:::o;49484:366::-;49626:3;49647:67;49711:2;49706:3;49647:67;:::i;:::-;49640:74;;49723:93;49812:3;49723:93;:::i;:::-;49841:2;49836:3;49832:12;49825:19;;49484:366;;;:::o;49856:419::-;50022:4;50060:2;50049:9;50045:18;50037:26;;50109:9;50103:4;50099:20;50095:1;50084:9;50080:17;50073:47;50137:131;50263:4;50137:131;:::i;:::-;50129:139;;49856:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"3736600","executionCost":"infinite","totalCost":"infinite"},"external":{"acceptOwnership()":"54738","createOrder(address,uint256,uint96,address,uint256,address,string)":"infinite","getOrderInfo(bytes32)":"infinite","getTokenFeeSettings(address)":"infinite","initialize()":"191231","isTokenSupported(address)":"2914","owner()":"2537","pause()":"infinite","paused()":"2541","pendingOwner()":"2603","refund(uint256,bytes32)":"infinite","renounceOwnership()":"54750","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","settle(bytes32,bytes32,address,uint64,uint64)":"infinite","transferOwnership(address)":"infinite","unpause()":"infinite","updateProtocolAddress(bytes32,address)":"31104"},"internal":{"_handleFxTransferFeeSplitting(bytes32)":"infinite","_handleLocalTransferFeeSplitting(bytes32,address,uint64)":"infinite","_handler(address,uint256,address,address,uint256)":"infinite"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getOrderInfo(bytes32)":"768c6ec0","getTokenFeeSettings(address)":"8bfa0549","initialize()":"8129fc1c","isTokenSupported(address)":"75151b63","owner()":"8da5cb5b","pause()":"8456cb59","paused()":"5c975abb","pendingOwner()":"e30c3978","refund(uint256,bytes32)":"71eedb88","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","settle(bytes32,bytes32,address,uint64,uint64)":"df51b359","transferOwnership(address)":"f2fde38b","unpause()":"3f4ba83a","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"settlePercent\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"rebatePercent\",\"type\":\"uint64\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_rebatePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"See {createOrder-IGateway}. \"},\"getOrderInfo(bytes32)\":{\"details\":\"See {getOrderInfo-IGateway}. \"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"initialize()\":{\"details\":\"Initialize function.\"},\"isTokenSupported(address)\":{\"details\":\"See {isTokenSupported-IGateway}. \"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"Pause the contract.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"refund(uint256,bytes32)\":{\"details\":\"See {refund-IGateway}. \"},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"settle(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"See {settle-IGateway}. \"},\"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.\"},\"unpause()\":{\"details\":\"Unpause the contract.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"title\":\"Gateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"This contract serves as a gateway for creating orders and managing settlements.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Gateway.sol\":\"Gateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/Gateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\\n\\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\\n\\n/**\\n * @title Gateway\\n * @notice This contract serves as a gateway for creating orders and managing settlements.\\n */\\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\\n\\tstruct fee {\\n\\t\\tuint256 protocolFee;\\n\\t\\tuint256 liquidityProviderAmount;\\n\\t}\\n\\n\\tmapping(bytes32 => Order) private order;\\n\\tmapping(address => uint256) private _nonce;\\n\\tuint256[50] private __gap;\\n\\n\\t/// @custom:oz-upgrades-unsafe-allow constructor\\n\\tconstructor() {\\n\\t\\t_disableInitializers();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Initialize function.\\n\\t */\\n\\tfunction initialize() external initializer {\\n\\t\\tMAX_BPS = 100_000;\\n\\t\\t__Ownable2Step_init();\\n\\t\\t__Pausable_init();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Modifier that allows only the aggregator to call a function.\\n\\t */\\n\\tmodifier onlyAggregator() {\\n\\t\\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\\n\\t\\t_;\\n\\t}\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Pause the contract.\\n\\t */\\n\\tfunction pause() external onlyOwner {\\n\\t\\t_pause();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Unpause the contract.\\n\\t */\\n\\tfunction unpause() external onlyOwner {\\n\\t\\t_unpause();\\n\\t}\\n\\n\\t/* ##################################################################\\n USER CALLS\\n ################################################################## */\\n\\t/** @dev See {createOrder-IGateway}. */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external whenNotPaused returns (bytes32 orderId) {\\n\\t\\t// checks that are required\\n\\t\\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\\n\\n\\t\\t// validate messageHash\\n\\t\\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\\n\\n\\t\\t// transfer token from msg.sender to contract\\n\\t\\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\\n\\n\\t\\t// increase users nonce to avoid replay attacks\\n\\t\\t_nonce[msg.sender]++;\\n\\n\\t\\t// generate transaction id for the transaction with chain id\\n\\t\\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid));\\n\\n\\t\\trequire(order[orderId].sender == address(0), 'OrderAlreadyExists');\\n\\n\\t\\t// update transaction\\n\\t\\tuint256 _protocolFee;\\n\\t\\tif (_rate == 100) {\\n\\t\\t\\t// local transfer (rate = 1)\\n\\t\\t\\t_protocolFee = 0;\\n\\t\\t\\trequire(_senderFee > 0, 'SenderFeeIsZero');\\n\\t\\t} else {\\n\\t\\t\\t// fx transfer (rate != 1) - use token-specific providerToAggregatorFx\\n\\t\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\\n\\t\\t\\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\\n\\t\\t\\t_protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\\n\\t\\t}\\n\\t\\torder[orderId] = Order({\\n\\t\\t\\tsender: msg.sender,\\n\\t\\t\\ttoken: _token,\\n\\t\\t\\tsenderFeeRecipient: _senderFeeRecipient,\\n\\t\\t\\tsenderFee: _senderFee,\\n\\t\\t\\tprotocolFee: _protocolFee,\\n\\t\\t\\tisFulfilled: false,\\n\\t\\t\\tisRefunded: false,\\n\\t\\t\\trefundAddress: _refundAddress,\\n\\t\\t\\tcurrentBPS: uint64(MAX_BPS),\\n\\t\\t\\tamount: _amount\\n\\t\\t});\\n\\n\\t\\t// emit order created event\\n\\t\\temit OrderCreated(\\n\\t\\t\\t_refundAddress,\\n\\t\\t\\t_token,\\n\\t\\t\\torder[orderId].amount,\\n\\t\\t\\t_protocolFee,\\n\\t\\t\\torderId,\\n\\t\\t\\t_rate,\\n\\t\\t\\tmessageHash\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Internal function to handle order creation.\\n\\t * @param _token The address of the token being traded.\\n\\t * @param _amount The amount of tokens being traded.\\n\\t * @param _refundAddress The address to refund the tokens in case of cancellation.\\n\\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\\n\\t * @param _senderFee The amount of the sender fee.\\n\\t */\\n\\tfunction _handler(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\taddress _refundAddress,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee\\n\\t) internal view {\\n\\t\\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\\n\\t\\trequire(_amount != 0, 'AmountIsZero');\\n\\t\\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\\n\\n\\t\\tif (_senderFee != 0) {\\n\\t\\t\\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\\n\\t\\t}\\n\\t}\\n\\n\\t/* ##################################################################\\n AGGREGATOR FUNCTIONS\\n ################################################################## */\\n\\t/** @dev See {settle-IGateway}. */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent,\\n\\t\\tuint64 _rebatePercent\\n\\t) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\t\\trequire(_rebatePercent <= MAX_BPS, 'InvalidRebatePercent');\\n\\n\\t\\t// load the token into memory\\n\\t\\taddress token = order[_orderId].token;\\n\\n\\t\\t// subtract sum of amount based on the input _settlePercent\\n\\t\\tuint256 currentOrderBPS = order[_orderId].currentBPS;\\n\\t\\torder[_orderId].currentBPS -= _settlePercent;\\n\\n\\t\\tif (order[_orderId].currentBPS == 0) {\\n\\t\\t\\t// update the transaction to be fulfilled\\n\\t\\t\\torder[_orderId].isFulfilled = true;\\n\\n\\t\\t\\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee != 0) {\\n\\t\\t\\t\\t// fx transfer - sender keeps all fee\\n\\t\\t\\t\\t_handleFxTransferFeeSplitting(_orderId);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee == 0) {\\n\\t\\t\\t// local transfer - split sender fee\\n\\t\\t\\t_handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, _settlePercent);\\n\\t\\t}\\n\\n\\t\\t// transfer to liquidity provider\\n\\t\\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) /\\n\\t\\t\\tcurrentOrderBPS;\\n\\t\\torder[_orderId].amount -= liquidityProviderAmount;\\n\\n\\t\\tif (order[_orderId].protocolFee != 0) {\\n\\t\\t\\t// FX transfer - use token-specific providerToAggregatorFx\\n\\t\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\\n\\t\\t\\tuint256 protocolFee = (liquidityProviderAmount * settings.providerToAggregatorFx) /\\n\\t\\t\\t\\tMAX_BPS;\\n\\t\\t\\tliquidityProviderAmount -= protocolFee;\\n\\n\\t\\t\\tif (_rebatePercent != 0) {\\n\\t\\t\\t\\t// calculate rebate amount\\n\\t\\t\\t\\tuint256 rebateAmount = (protocolFee * _rebatePercent) / MAX_BPS;\\n\\t\\t\\t\\tprotocolFee -= rebateAmount;\\n\\t\\t\\t\\tliquidityProviderAmount += rebateAmount;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// transfer protocol fee\\n\\t\\t\\tIERC20(token).transfer(treasuryAddress, protocolFee);\\n\\t\\t}\\n\\n\\t\\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\\n\\n\\t\\t// emit settled event\\n\\t\\temit OrderSettled(\\n\\t\\t\\t_splitOrderId,\\n\\t\\t\\t_orderId,\\n\\t\\t\\t_liquidityProvider,\\n\\t\\t\\t_settlePercent,\\n\\t\\t\\t_rebatePercent\\n\\t\\t);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/** @dev See {refund-IGateway}. */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\t\\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\\n\\n\\t\\tif (_fee > 0) {\\n\\t\\t\\t// transfer refund fee to the treasury\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\\n\\t\\t}\\n\\n\\t\\t// reset state values\\n\\t\\torder[_orderId].isRefunded = true;\\n\\t\\torder[_orderId].currentBPS = 0;\\n\\n\\t\\t// deduct fee from order amount\\n\\t\\tuint256 refundAmount = order[_orderId].amount - _fee;\\n\\n\\t\\t// transfer refund amount and sender fee to the refund address\\n\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\torder[_orderId].refundAddress,\\n\\t\\t\\trefundAmount + order[_orderId].senderFee\\n\\t\\t);\\n\\n\\t\\t// emit refunded event\\n\\t\\temit OrderRefunded(_fee, _orderId);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/* ##################################################################\\n VIEW CALLS\\n ################################################################## */\\n\\t/** @dev See {getOrderInfo-IGateway}. */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\\n\\t\\treturn order[_orderId];\\n\\t}\\n\\n\\t/** @dev See {isTokenSupported-IGateway}. */\\n\\tfunction isTokenSupported(address _token) external view returns (bool) {\\n\\t\\tif (_isTokenSupported[_token] == 1) return true;\\n\\t\\treturn false;\\n\\t}\\n\\n\\t/**\\n\\t * @dev Handles fee splitting for local transfers (rate = 1).\\n\\t * @param _orderId The order ID to process.\\n\\t * @param _liquidityProvider The address of the liquidity provider who fulfilled the order.\\n\\t */\\n\\tfunction _handleLocalTransferFeeSplitting(\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) internal {\\n\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\\n\\t\\tuint256 senderFee = order[_orderId].senderFee;\\n\\n\\t\\t// Calculate splits based on config\\n\\t\\tuint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS;\\n\\t\\tuint256 currentProviderAmount = (providerAmount * _settlePercent) / MAX_BPS;\\n\\t\\tuint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) /\\n\\t\\t\\tMAX_BPS;\\n\\t\\tuint256 senderAmount = senderFee - providerAmount;\\n\\n\\t\\t// Transfer sender portion\\n\\t\\tif (senderAmount != 0 && order[_orderId].currentBPS == 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\tsenderAmount\\n\\t\\t\\t);\\n\\t\\t}\\n\\n\\t\\t// Transfer aggregator portion to treasury\\n\\t\\tif (aggregatorAmount != 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\\n\\t\\t}\\n\\n\\t\\t// Transfer provider portion to the liquidity provider who fulfilled the order\\n\\t\\tcurrentProviderAmount = currentProviderAmount - aggregatorAmount;\\n\\t\\tif (currentProviderAmount != 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(_liquidityProvider, currentProviderAmount);\\n\\t\\t}\\n\\n\\t\\t// Emit events\\n\\t\\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\\n\\t\\temit LocalTransferFeeSplit(_orderId, senderAmount, currentProviderAmount, aggregatorAmount);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Handles fee splitting for FX transfers (rate != 1).\\n\\t * @param _orderId The order ID to process.\\n\\t */\\n\\tfunction _handleFxTransferFeeSplitting(bytes32 _orderId) internal {\\n\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\\n\\t\\tuint256 senderFee = order[_orderId].senderFee;\\n\\n\\t\\t// Calculate sender portion based on senderToAggregator setting\\n\\t\\tuint256 senderAmount = (senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS;\\n\\t\\tuint256 aggregatorAmount = senderFee - senderAmount;\\n\\n\\t\\t// Transfer sender portion\\n\\t\\tif (senderAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\tsenderAmount\\n\\t\\t\\t);\\n\\t\\t}\\n\\n\\t\\t// Transfer aggregator portion to treasury\\n\\t\\tif (aggregatorAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\\n\\t\\t}\\n\\n\\t\\t// Emit events\\n\\t\\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\\n\\t\\temit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount);\\n\\t}\\n}\\n\",\"keccak256\":\"0x36c6307bc4aae482f90304d7852d6368657b5a64e6ca2734ed7749164f1b6c71\",\"license\":\"UNLICENSED\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\t// Token-specific fee settings\\n\\tstruct TokenFeeSettings {\\n\\t\\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\\n\\t\\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\\n\\t\\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\\n\\t\\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\\n\\t}\\n\\n\\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\\n\\n\\tuint256[49] private __gap;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\tevent TokenFeeSettingsUpdated(\\n\\t\\taddress indexed token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets token-specific fee settings for stablecoins.\\n\\t * @param token The token address to configure.\\n\\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\\n\\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\\n\\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\\n\\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\\n\\t * Requirements:\\n\\t * - The token must be supported.\\n\\t * - Fee percentages must be within valid ranges.\\n\\t */\\n\\tfunction setTokenFeeSettings(\\n\\t\\taddress token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t) external onlyOwner {\\n\\t\\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\\n\\t\\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\\n\\t\\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\\n\\t\\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\\n\\t\\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\\n\\n\\t\\t_tokenFeeSettings[token] = TokenFeeSettings({\\n\\t\\t\\tsenderToProvider: senderToProvider,\\n\\t\\t\\tproviderToAggregator: providerToAggregator,\\n\\t\\t\\tsenderToAggregator: senderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx: providerToAggregatorFx\\n\\t\\t});\\n\\n\\t\\temit TokenFeeSettingsUpdated(\\n\\t\\t\\ttoken,\\n\\t\\t\\tsenderToProvider,\\n\\t\\t\\tproviderToAggregator,\\n\\t\\t\\tsenderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Gets token-specific fee settings.\\n\\t * @param token The token address to query.\\n\\t * @return TokenFeeSettings struct containing all fee settings for the token.\\n\\t */\\n\\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\\n\\t\\treturn _tokenFeeSettings[token];\\n\\t}\\n}\\n\",\"keccak256\":\"0xaf9cfac3872d9a7d9cf0c63ba1b8b2ad24598224821ce0a9c75fc2e8af7361df\",\"license\":\"UNLICENSED\"},\"contracts/interfaces/IGateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGateway {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t * @param rebatePercent The percentage of the aggregator fee that is given back to the provider.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint64 settlePercent,\\n\\t\\tuint64 rebatePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/**\\n\\t * @dev Emitted when a local transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param providerAmount The amount that goes to the provider.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent LocalTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 providerAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an FX transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent FxTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent,\\n\\t\\tuint64 _rebatePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n}\\n\",\"keccak256\":\"0xb8827e91953fc78cd46ac4dd11caa6b8b7cb0620a1fd9deb2a994f128afad475\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/Gateway.sol:Gateway","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/Gateway.sol:Gateway","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/Gateway.sol:Gateway","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/Gateway.sol:Gateway","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":1913,"contract":"contracts/Gateway.sol:Gateway","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":1915,"contract":"contracts/Gateway.sol:Gateway","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":1917,"contract":"contracts/Gateway.sol:Gateway","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":1919,"contract":"contracts/Gateway.sol:Gateway","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":1923,"contract":"contracts/Gateway.sol:Gateway","label":"_isTokenSupported","offset":0,"slot":"154","type":"t_mapping(t_address,t_uint256)"},{"astId":1937,"contract":"contracts/Gateway.sol:Gateway","label":"_tokenFeeSettings","offset":0,"slot":"155","type":"t_mapping(t_address,t_struct(TokenFeeSettings)1932_storage)"},{"astId":1941,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"156","type":"t_array(t_uint256)49_storage"},{"astId":430,"contract":"contracts/Gateway.sol:Gateway","label":"_paused","offset":0,"slot":"205","type":"t_bool"},{"astId":535,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"206","type":"t_array(t_uint256)49_storage"},{"astId":1020,"contract":"contracts/Gateway.sol:Gateway","label":"order","offset":0,"slot":"255","type":"t_mapping(t_bytes32,t_struct(Order)2273_storage)"},{"astId":1024,"contract":"contracts/Gateway.sol:Gateway","label":"_nonce","offset":0,"slot":"256","type":"t_mapping(t_address,t_uint256)"},{"astId":1028,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"257","type":"t_array(t_uint256)50_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_struct(TokenFeeSettings)1932_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)","numberOfBytes":"32","value":"t_struct(TokenFeeSettings)1932_storage"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_bytes32,t_struct(Order)2273_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct IGateway.Order)","numberOfBytes":"32","value":"t_struct(Order)2273_storage"},"t_struct(Order)2273_storage":{"encoding":"inplace","label":"struct IGateway.Order","members":[{"astId":2254,"contract":"contracts/Gateway.sol:Gateway","label":"sender","offset":0,"slot":"0","type":"t_address"},{"astId":2256,"contract":"contracts/Gateway.sol:Gateway","label":"token","offset":0,"slot":"1","type":"t_address"},{"astId":2258,"contract":"contracts/Gateway.sol:Gateway","label":"senderFeeRecipient","offset":0,"slot":"2","type":"t_address"},{"astId":2260,"contract":"contracts/Gateway.sol:Gateway","label":"senderFee","offset":0,"slot":"3","type":"t_uint256"},{"astId":2262,"contract":"contracts/Gateway.sol:Gateway","label":"protocolFee","offset":0,"slot":"4","type":"t_uint256"},{"astId":2264,"contract":"contracts/Gateway.sol:Gateway","label":"isFulfilled","offset":0,"slot":"5","type":"t_bool"},{"astId":2266,"contract":"contracts/Gateway.sol:Gateway","label":"isRefunded","offset":1,"slot":"5","type":"t_bool"},{"astId":2268,"contract":"contracts/Gateway.sol:Gateway","label":"refundAddress","offset":2,"slot":"5","type":"t_address"},{"astId":2270,"contract":"contracts/Gateway.sol:Gateway","label":"currentBPS","offset":0,"slot":"6","type":"t_uint96"},{"astId":2272,"contract":"contracts/Gateway.sol:Gateway","label":"amount","offset":0,"slot":"7","type":"t_uint256"}],"numberOfBytes":"256"},"t_struct(TokenFeeSettings)1932_storage":{"encoding":"inplace","label":"struct GatewaySettingManager.TokenFeeSettings","members":[{"astId":1925,"contract":"contracts/Gateway.sol:Gateway","label":"senderToProvider","offset":0,"slot":"0","type":"t_uint256"},{"astId":1927,"contract":"contracts/Gateway.sol:Gateway","label":"providerToAggregator","offset":0,"slot":"1","type":"t_uint256"},{"astId":1929,"contract":"contracts/Gateway.sol:Gateway","label":"senderToAggregator","offset":0,"slot":"2","type":"t_uint256"},{"astId":1931,"contract":"contracts/Gateway.sol:Gateway","label":"providerToAggregatorFx","offset":0,"slot":"3","type":"t_uint256"}],"numberOfBytes":"128"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"},"t_uint96":{"encoding":"inplace","label":"uint96","numberOfBytes":"12"}}},"userdoc":{"kind":"user","methods":{},"notice":"This contract serves as a gateway for creating orders and managing settlements.","version":1}}},"contracts/GatewaySettingManager.sol":{"GatewaySettingManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"getTokenFeeSettings(address)":{"details":"Gets token-specific fee settings.","params":{"token":"The token address to query."},"returns":{"_0":"TokenFeeSettings struct containing all fee settings for the token."}},"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."},"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":{"details":"Sets token-specific fee settings for stablecoins.","params":{"providerToAggregator":"Percentage of provider's share that goes to aggregator (local mode).","providerToAggregatorFx":"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.","senderToAggregator":"Percentage of sender fee that goes to aggregator (fx mode).","senderToProvider":"Percentage of sender fee that goes to provider (local mode).","token":"The token address to configure."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"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."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"608060405234801561000f575f80fd5b506114c88061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610091575f3560e01c80638bfa0549116100645780638bfa0549146100e15780638da5cb5b14610111578063cd9924001461012f578063e30c39781461014b578063f2fde38b1461016957610091565b806340ebc67714610095578063715018a6146100b157806379ba5097146100bb578063898861b0146100c5575b5f80fd5b6100af60048036038101906100aa9190610c8f565b610185565b005b6100b9610449565b005b6100c361045c565b005b6100df60048036038101906100da9190610d00565b6104e8565b005b6100fb60048036038101906100f69190610d77565b610766565b6040516101089190610e04565b60405180910390f35b6101196107e4565b6040516101269190610e2c565b60405180910390f35b61014960048036038101906101449190610e45565b61080c565b005b61015361098e565b6040516101609190610e2c565b60405180910390f35b610183600480360381019061017e9190610d77565b6109b6565b005b61018d610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f290610eef565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036102fd578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036102b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102aa90610f7d565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506103f9565b7f61676772656761746f720000000000000000000000000000000000000000000083036103f8578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa9061100b565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610444578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b610451610a62565b61045a5f610ae0565b565b5f610465610b10565b90508073ffffffffffffffffffffffffffffffffffffffff1661048661098e565b73ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611099565b60405180910390fd5b6104e581610ae0565b50565b6104f0610a62565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056790611101565b60405180910390fd5b6097548411156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac9061118f565b60405180910390fd5b6097548311156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f19061121d565b60405180910390fd5b60975482111561063f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610636906112ab565b60405180910390fd5b609754811115610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90611339565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516107579493929190611366565b60405180910390a25050505050565b61076e610bda565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610814610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990610eef565b60405180910390fd5b60018114806108915750600281145b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c7906113f3565b60405180910390fd5b7f746f6b656e00000000000000000000000000000000000000000000000000000083036109895780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516109809190611411565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109be610a62565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a1d6107e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a6a610b10565b73ffffffffffffffffffffffffffffffffffffffff16610a886107e4565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611474565b60405180910390fd5b565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610b0d81610b17565b50565b5f33905090565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b610c1481610c02565b8114610c1e575f80fd5b50565b5f81359050610c2f81610c0b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c5e82610c35565b9050919050565b610c6e81610c54565b8114610c78575f80fd5b50565b5f81359050610c8981610c65565b92915050565b5f8060408385031215610ca557610ca4610bfe565b5b5f610cb285828601610c21565b9250506020610cc385828601610c7b565b9150509250929050565b5f819050919050565b610cdf81610ccd565b8114610ce9575f80fd5b50565b5f81359050610cfa81610cd6565b92915050565b5f805f805f60a08688031215610d1957610d18610bfe565b5b5f610d2688828901610c7b565b9550506020610d3788828901610cec565b9450506040610d4888828901610cec565b9350506060610d5988828901610cec565b9250506080610d6a88828901610cec565b9150509295509295909350565b5f60208284031215610d8c57610d8b610bfe565b5b5f610d9984828501610c7b565b91505092915050565b610dab81610ccd565b82525050565b608082015f820151610dc55f850182610da2565b506020820151610dd86020850182610da2565b506040820151610deb6040850182610da2565b506060820151610dfe6060850182610da2565b50505050565b5f608082019050610e175f830184610db1565b92915050565b610e2681610c54565b82525050565b5f602082019050610e3f5f830184610e1d565b92915050565b5f805f60608486031215610e5c57610e5b610bfe565b5b5f610e6986828701610c21565b9350506020610e7a86828701610c7b565b9250506040610e8b86828701610cec565b9150509250925092565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f610ed9601583610e95565b9150610ee482610ea5565b602082019050919050565b5f6020820190508181035f830152610f0681610ecd565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f610f67602583610e95565b9150610f7282610f0d565b604082019050919050565b5f6020820190508181035f830152610f9481610f5b565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f610ff5602783610e95565b915061100082610f9b565b604082019050919050565b5f6020820190508181035f83015261102281610fe9565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f611083602983610e95565b915061108e82611029565b604082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f6110eb601c83610e95565b91506110f6826110b7565b602082019050919050565b5f6020820190508181035f830152611118816110df565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f611179602383610e95565b91506111848261111f565b604082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f611207602783610e95565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f611295602583610e95565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f611323602a83610e95565b915061132e826112c9565b604082019050919050565b5f6020820190508181035f83015261135081611317565b9050919050565b61136081610ccd565b82525050565b5f6080820190506113795f830187611357565b6113866020830186611357565b6113936040830185611357565b6113a06060830184611357565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6113dd601783610e95565b91506113e8826113a9565b602082019050919050565b5f6020820190508181035f83015261140a816113d1565b9050919050565b5f6020820190506114245f830184611357565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61145e602083610e95565b91506114698261142a565b602082019050919050565b5f6020820190508181035f83015261148b81611452565b905091905056fea2646970667358221220501f5547a2da906016cb57c16e745ed8301050ccb83749f526f2c5a06972904864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x14C8 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x91 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x12F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x169 JUMPI PUSH2 0x91 JUMP JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x95 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xBB JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xC5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xAF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAA SWAP2 SWAP1 PUSH2 0xC8F JUMP JUMPDEST PUSH2 0x185 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB9 PUSH2 0x449 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC3 PUSH2 0x45C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xDF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDA SWAP2 SWAP1 PUSH2 0xD00 JUMP JUMPDEST PUSH2 0x4E8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF6 SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x7E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xE45 JUMP JUMPDEST PUSH2 0x80C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x98E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x183 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17E SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x9B6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F2 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x2FD JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AA SWAP1 PUSH2 0xF7D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x3F9 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x3F8 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3AA SWAP1 PUSH2 0x100B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x444 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x451 PUSH2 0xA62 JUMP JUMPDEST PUSH2 0x45A PUSH0 PUSH2 0xAE0 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x465 PUSH2 0xB10 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x486 PUSH2 0x98E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0x1099 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E5 DUP2 PUSH2 0xAE0 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4F0 PUSH2 0xA62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x570 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x567 SWAP1 PUSH2 0x1101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5AC SWAP1 PUSH2 0x118F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x5FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F1 SWAP1 PUSH2 0x121D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x63F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x636 SWAP1 PUSH2 0x12AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x684 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67B SWAP1 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x757 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x76E PUSH2 0xBDA JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x814 PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x882 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x879 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x891 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x8D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C7 SWAP1 PUSH2 0x13F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x989 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x980 SWAP2 SWAP1 PUSH2 0x1411 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BE PUSH2 0xA62 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA1D PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0xA6A PUSH2 0xB10 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA88 PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xADE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAD5 SWAP1 PUSH2 0x1474 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0xB0D DUP2 PUSH2 0xB17 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC14 DUP2 PUSH2 0xC02 JUMP JUMPDEST DUP2 EQ PUSH2 0xC1E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC2F DUP2 PUSH2 0xC0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC5E DUP3 PUSH2 0xC35 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC6E DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP2 EQ PUSH2 0xC78 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC89 DUP2 PUSH2 0xC65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCA5 JUMPI PUSH2 0xCA4 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCB2 DUP6 DUP3 DUP7 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCC3 DUP6 DUP3 DUP7 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCDF DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP2 EQ PUSH2 0xCE9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCFA DUP2 PUSH2 0xCD6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xD19 JUMPI PUSH2 0xD18 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD26 DUP9 DUP3 DUP10 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0xD37 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0xD48 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0xD59 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0xD6A DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8C JUMPI PUSH2 0xD8B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD99 DUP5 DUP3 DUP6 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xDAB DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0xDC5 PUSH0 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0xDD8 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0xDEB PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0xDFE PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xE17 PUSH0 DUP4 ADD DUP5 PUSH2 0xDB1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE26 DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE3F PUSH0 DUP4 ADD DUP5 PUSH2 0xE1D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE5C JUMPI PUSH2 0xE5B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE69 DUP7 DUP3 DUP8 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xED9 PUSH1 0x15 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xEE4 DUP3 PUSH2 0xEA5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF06 DUP2 PUSH2 0xECD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF67 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xF72 DUP3 PUSH2 0xF0D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF94 DUP2 PUSH2 0xF5B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xFF5 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1000 DUP3 PUSH2 0xF9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1022 DUP2 PUSH2 0xFE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1083 PUSH1 0x29 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x108E DUP3 PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10B0 DUP2 PUSH2 0x1077 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x10EB PUSH1 0x1C DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x10F6 DUP3 PUSH2 0x10B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1118 DUP2 PUSH2 0x10DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1179 PUSH1 0x23 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1184 DUP3 PUSH2 0x111F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x11A6 DUP2 PUSH2 0x116D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1207 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1212 DUP3 PUSH2 0x11AD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1234 DUP2 PUSH2 0x11FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1295 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x12A0 DUP3 PUSH2 0x123B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12C2 DUP2 PUSH2 0x1289 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1323 PUSH1 0x2A DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x132E DUP3 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1350 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1360 DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1379 PUSH0 DUP4 ADD DUP8 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1386 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1393 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x13A0 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x13DD PUSH1 0x17 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x13E8 DUP3 PUSH2 0x13A9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x140A DUP2 PUSH2 0x13D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1424 PUSH0 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x145E PUSH1 0x20 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1469 DUP3 PUSH2 0x142A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x148B DUP2 PUSH2 0x1452 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0x1F SSTORE SELFBALANCE LOG2 0xDA SWAP1 PUSH1 0x16 0xCB JUMPI 0xC1 PUSH15 0x745ED8301050CCB83749F526F2C5A0 PUSH10 0x72904864736F6C634300 ADDMOD EQ STOP CALLER ","sourceMap":"276:4695:8:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_176":{"entryPoint":2658,"id":176,"parameterSlots":0,"returnSlots":0},"@_msgSender_894":{"entryPoint":2832,"id":894,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_233":{"entryPoint":2839,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":2784,"id":78,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":1116,"id":100,"parameterSlots":0,"returnSlots":0},"@getTokenFeeSettings_2181":{"entryPoint":1894,"id":2181,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":2020,"id":162,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":2446,"id":41,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":1097,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_2167":{"entryPoint":1256,"id":2167,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_2022":{"entryPoint":2060,"id":2022,"parameterSlots":3,"returnSlots":0},"@transferOwnership_61":{"entryPoint":2486,"id":61,"parameterSlots":1,"returnSlots":0},"@updateProtocolAddress_2094":{"entryPoint":389,"id":2094,"parameterSlots":2,"returnSlots":0},"abi_decode_t_address":{"entryPoint":3195,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":3105,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":3308,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3447,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":3328,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":3215,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":3653,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":3613,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":3789,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack":{"entryPoint":4603,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":4215,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack":{"entryPoint":4887,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack":{"entryPoint":4319,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack":{"entryPoint":4461,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":5073,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":5202,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack":{"entryPoint":4745,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":3931,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":4073,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack":{"entryPoint":3505,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256":{"entryPoint":3490,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":4951,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":3628,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3823,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4637,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4249,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4921,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4353,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4495,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5107,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5236,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4779,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3965,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4107,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$1932_memory_ptr__to_t_struct$_TokenFeeSettings_$1932_memory_ptr__fromStack_reversed":{"entryPoint":3588,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":5137,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":4966,"id":null,"parameterSlots":5,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":3733,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":3156,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":3074,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":3125,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":3277,"id":null,"parameterSlots":1,"returnSlots":1},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":3070,"id":null,"parameterSlots":0,"returnSlots":0},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":3749,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b":{"entryPoint":4525,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":4137,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029":{"entryPoint":4809,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c":{"entryPoint":4279,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8":{"entryPoint":4383,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":5033,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":5162,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d":{"entryPoint":4667,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":3853,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":3995,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":3173,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":3083,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":3286,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:17981:10","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:10","statements":[{"nodeType":"YulAssignment","src":"57:19:10","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:10","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:10"},"nodeType":"YulFunctionCall","src":"67:9:10"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:10"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:10","type":""}],"src":"7:75:10"},{"body":{"nodeType":"YulBlock","src":"177:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:10"},"nodeType":"YulFunctionCall","src":"187:12:10"},"nodeType":"YulExpressionStatement","src":"187:12:10"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:10"},{"body":{"nodeType":"YulBlock","src":"300:28:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:10"},"nodeType":"YulFunctionCall","src":"310:12:10"},"nodeType":"YulExpressionStatement","src":"310:12:10"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:10"},{"body":{"nodeType":"YulBlock","src":"379:32:10","statements":[{"nodeType":"YulAssignment","src":"389:16:10","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:10"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:10","type":""}],"src":"334:77:10"},{"body":{"nodeType":"YulBlock","src":"460:79:10","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:10"},"nodeType":"YulFunctionCall","src":"519:12:10"},"nodeType":"YulExpressionStatement","src":"519:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:10"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:10"},"nodeType":"YulFunctionCall","src":"490:24:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:10"},"nodeType":"YulFunctionCall","src":"480:35:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:10"},"nodeType":"YulFunctionCall","src":"473:43:10"},"nodeType":"YulIf","src":"470:63:10"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:10","type":""}],"src":"417:122:10"},{"body":{"nodeType":"YulBlock","src":"597:87:10","statements":[{"nodeType":"YulAssignment","src":"607:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:10"},"nodeType":"YulFunctionCall","src":"616:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:10"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:10"},"nodeType":"YulFunctionCall","src":"645:33:10"},"nodeType":"YulExpressionStatement","src":"645:33:10"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:10","type":""}],"src":"545:139:10"},{"body":{"nodeType":"YulBlock","src":"735:81:10","statements":[{"nodeType":"YulAssignment","src":"745:65:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"760:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"767:42:10","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"756:3:10"},"nodeType":"YulFunctionCall","src":"756:54:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"745:7:10"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"717:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"727:7:10","type":""}],"src":"690:126:10"},{"body":{"nodeType":"YulBlock","src":"867:51:10","statements":[{"nodeType":"YulAssignment","src":"877:35:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"906:5:10"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"888:17:10"},"nodeType":"YulFunctionCall","src":"888:24:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"877:7:10"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"849:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"859:7:10","type":""}],"src":"822:96:10"},{"body":{"nodeType":"YulBlock","src":"967:79:10","statements":[{"body":{"nodeType":"YulBlock","src":"1024:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1033:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1036:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1026:6:10"},"nodeType":"YulFunctionCall","src":"1026:12:10"},"nodeType":"YulExpressionStatement","src":"1026:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"990:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1015:5:10"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"997:17:10"},"nodeType":"YulFunctionCall","src":"997:24:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"987:2:10"},"nodeType":"YulFunctionCall","src":"987:35:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"980:6:10"},"nodeType":"YulFunctionCall","src":"980:43:10"},"nodeType":"YulIf","src":"977:63:10"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"960:5:10","type":""}],"src":"924:122:10"},{"body":{"nodeType":"YulBlock","src":"1104:87:10","statements":[{"nodeType":"YulAssignment","src":"1114:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1136:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1123:12:10"},"nodeType":"YulFunctionCall","src":"1123:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1114:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1179:5:10"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"1152:26:10"},"nodeType":"YulFunctionCall","src":"1152:33:10"},"nodeType":"YulExpressionStatement","src":"1152:33:10"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1082:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"1090:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1098:5:10","type":""}],"src":"1052:139:10"},{"body":{"nodeType":"YulBlock","src":"1280:391:10","statements":[{"body":{"nodeType":"YulBlock","src":"1326:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"1328:77:10"},"nodeType":"YulFunctionCall","src":"1328:79:10"},"nodeType":"YulExpressionStatement","src":"1328:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1301:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1310:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1297:3:10"},"nodeType":"YulFunctionCall","src":"1297:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"1322:2:10","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1293:3:10"},"nodeType":"YulFunctionCall","src":"1293:32:10"},"nodeType":"YulIf","src":"1290:119:10"},{"nodeType":"YulBlock","src":"1419:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"1434:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"1448:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1438:6:10","type":""}]},{"nodeType":"YulAssignment","src":"1463:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1498:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"1509:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:10"},"nodeType":"YulFunctionCall","src":"1494:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1518:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"1473:20:10"},"nodeType":"YulFunctionCall","src":"1473:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1463:6:10"}]}]},{"nodeType":"YulBlock","src":"1546:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"1561:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"1575:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1565:6:10","type":""}]},{"nodeType":"YulAssignment","src":"1591:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1626:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"1637:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1622:3:10"},"nodeType":"YulFunctionCall","src":"1622:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1646:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"1601:20:10"},"nodeType":"YulFunctionCall","src":"1601:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1591:6:10"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1242:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1253:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1265:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1273:6:10","type":""}],"src":"1197:474:10"},{"body":{"nodeType":"YulBlock","src":"1722:32:10","statements":[{"nodeType":"YulAssignment","src":"1732:16:10","value":{"name":"value","nodeType":"YulIdentifier","src":"1743:5:10"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1732:7:10"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1704:5:10","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1714:7:10","type":""}],"src":"1677:77:10"},{"body":{"nodeType":"YulBlock","src":"1803:79:10","statements":[{"body":{"nodeType":"YulBlock","src":"1860:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1869:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1872:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1862:6:10"},"nodeType":"YulFunctionCall","src":"1862:12:10"},"nodeType":"YulExpressionStatement","src":"1862:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1826:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1851:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"1833:17:10"},"nodeType":"YulFunctionCall","src":"1833:24:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1823:2:10"},"nodeType":"YulFunctionCall","src":"1823:35:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1816:6:10"},"nodeType":"YulFunctionCall","src":"1816:43:10"},"nodeType":"YulIf","src":"1813:63:10"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1796:5:10","type":""}],"src":"1760:122:10"},{"body":{"nodeType":"YulBlock","src":"1940:87:10","statements":[{"nodeType":"YulAssignment","src":"1950:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1972:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1959:12:10"},"nodeType":"YulFunctionCall","src":"1959:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1950:5:10"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2015:5:10"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"1988:26:10"},"nodeType":"YulFunctionCall","src":"1988:33:10"},"nodeType":"YulExpressionStatement","src":"1988:33:10"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1918:6:10","type":""},{"name":"end","nodeType":"YulTypedName","src":"1926:3:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1934:5:10","type":""}],"src":"1888:139:10"},{"body":{"nodeType":"YulBlock","src":"2167:777:10","statements":[{"body":{"nodeType":"YulBlock","src":"2214:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2216:77:10"},"nodeType":"YulFunctionCall","src":"2216:79:10"},"nodeType":"YulExpressionStatement","src":"2216:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2188:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"2197:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2184:3:10"},"nodeType":"YulFunctionCall","src":"2184:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"2209:3:10","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2180:3:10"},"nodeType":"YulFunctionCall","src":"2180:33:10"},"nodeType":"YulIf","src":"2177:120:10"},{"nodeType":"YulBlock","src":"2307:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2322:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2336:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2326:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2351:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2386:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2397:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2382:3:10"},"nodeType":"YulFunctionCall","src":"2382:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2406:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"2361:20:10"},"nodeType":"YulFunctionCall","src":"2361:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2351:6:10"}]}]},{"nodeType":"YulBlock","src":"2434:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2449:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2463:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2453:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2479:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2514:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2525:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2510:3:10"},"nodeType":"YulFunctionCall","src":"2510:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2534:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2489:20:10"},"nodeType":"YulFunctionCall","src":"2489:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2479:6:10"}]}]},{"nodeType":"YulBlock","src":"2562:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2577:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2591:2:10","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2581:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2607:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2642:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2653:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2638:3:10"},"nodeType":"YulFunctionCall","src":"2638:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2662:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2617:20:10"},"nodeType":"YulFunctionCall","src":"2617:53:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2607:6:10"}]}]},{"nodeType":"YulBlock","src":"2690:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2705:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2719:2:10","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2709:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2735:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2770:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2781:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2766:3:10"},"nodeType":"YulFunctionCall","src":"2766:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2790:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2745:20:10"},"nodeType":"YulFunctionCall","src":"2745:53:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"2735:6:10"}]}]},{"nodeType":"YulBlock","src":"2818:119:10","statements":[{"nodeType":"YulVariableDeclaration","src":"2833:17:10","value":{"kind":"number","nodeType":"YulLiteral","src":"2847:3:10","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2837:6:10","type":""}]},{"nodeType":"YulAssignment","src":"2864:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2899:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"2910:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2895:3:10"},"nodeType":"YulFunctionCall","src":"2895:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2919:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2874:20:10"},"nodeType":"YulFunctionCall","src":"2874:53:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"2864:6:10"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2105:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2116:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2128:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2136:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2144:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"2152:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"2160:6:10","type":""}],"src":"2033:911:10"},{"body":{"nodeType":"YulBlock","src":"3016:263:10","statements":[{"body":{"nodeType":"YulBlock","src":"3062:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3064:77:10"},"nodeType":"YulFunctionCall","src":"3064:79:10"},"nodeType":"YulExpressionStatement","src":"3064:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3037:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"3046:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3033:3:10"},"nodeType":"YulFunctionCall","src":"3033:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"3058:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3029:3:10"},"nodeType":"YulFunctionCall","src":"3029:32:10"},"nodeType":"YulIf","src":"3026:119:10"},{"nodeType":"YulBlock","src":"3155:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"3170:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"3184:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3174:6:10","type":""}]},{"nodeType":"YulAssignment","src":"3199:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3234:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"3245:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3230:3:10"},"nodeType":"YulFunctionCall","src":"3230:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3254:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"3209:20:10"},"nodeType":"YulFunctionCall","src":"3209:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3199:6:10"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2986:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2997:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3009:6:10","type":""}],"src":"2950:329:10"},{"body":{"nodeType":"YulBlock","src":"3340:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3357:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3380:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3362:17:10"},"nodeType":"YulFunctionCall","src":"3362:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3350:6:10"},"nodeType":"YulFunctionCall","src":"3350:37:10"},"nodeType":"YulExpressionStatement","src":"3350:37:10"}]},"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3328:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3335:3:10","type":""}],"src":"3285:108:10"},{"body":{"nodeType":"YulBlock","src":"3635:799:10","statements":[{"nodeType":"YulVariableDeclaration","src":"3645:26:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3661:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"3666:4:10","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3657:3:10"},"nodeType":"YulFunctionCall","src":"3657:14:10"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"3649:4:10","type":""}]},{"nodeType":"YulBlock","src":"3681:176:10","statements":[{"nodeType":"YulVariableDeclaration","src":"3728:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3758:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"3765:4:10","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3754:3:10"},"nodeType":"YulFunctionCall","src":"3754:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3748:5:10"},"nodeType":"YulFunctionCall","src":"3748:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"3732:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"3818:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3836:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"3841:4:10","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3832:3:10"},"nodeType":"YulFunctionCall","src":"3832:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"3784:33:10"},"nodeType":"YulFunctionCall","src":"3784:63:10"},"nodeType":"YulExpressionStatement","src":"3784:63:10"}]},{"nodeType":"YulBlock","src":"3867:180:10","statements":[{"nodeType":"YulVariableDeclaration","src":"3918:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3948:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"3955:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3944:3:10"},"nodeType":"YulFunctionCall","src":"3944:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3938:5:10"},"nodeType":"YulFunctionCall","src":"3938:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"3922:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4008:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4026:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4031:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4022:3:10"},"nodeType":"YulFunctionCall","src":"4022:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"3974:33:10"},"nodeType":"YulFunctionCall","src":"3974:63:10"},"nodeType":"YulExpressionStatement","src":"3974:63:10"}]},{"nodeType":"YulBlock","src":"4057:178:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4106:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4136:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4143:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4132:3:10"},"nodeType":"YulFunctionCall","src":"4132:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4126:5:10"},"nodeType":"YulFunctionCall","src":"4126:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4110:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4196:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4214:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4219:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4210:3:10"},"nodeType":"YulFunctionCall","src":"4210:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"4162:33:10"},"nodeType":"YulFunctionCall","src":"4162:63:10"},"nodeType":"YulExpressionStatement","src":"4162:63:10"}]},{"nodeType":"YulBlock","src":"4245:182:10","statements":[{"nodeType":"YulVariableDeclaration","src":"4298:43:10","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4328:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"4335:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4324:3:10"},"nodeType":"YulFunctionCall","src":"4324:16:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4318:5:10"},"nodeType":"YulFunctionCall","src":"4318:23:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4302:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4388:12:10"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4406:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"4411:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4402:3:10"},"nodeType":"YulFunctionCall","src":"4402:14:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"4354:33:10"},"nodeType":"YulFunctionCall","src":"4354:63:10"},"nodeType":"YulExpressionStatement","src":"4354:63:10"}]}]},"name":"abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3622:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3629:3:10","type":""}],"src":"3501:933:10"},{"body":{"nodeType":"YulBlock","src":"4606:193:10","statements":[{"nodeType":"YulAssignment","src":"4616:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4628:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4639:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4624:3:10"},"nodeType":"YulFunctionCall","src":"4624:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4616:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4765:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4778:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4789:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4774:3:10"},"nodeType":"YulFunctionCall","src":"4774:17:10"}],"functionName":{"name":"abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"4653:111:10"},"nodeType":"YulFunctionCall","src":"4653:139:10"},"nodeType":"YulExpressionStatement","src":"4653:139:10"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$1932_memory_ptr__to_t_struct$_TokenFeeSettings_$1932_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4578:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4590:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4601:4:10","type":""}],"src":"4440:359:10"},{"body":{"nodeType":"YulBlock","src":"4870:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4887:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4910:5:10"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"4892:17:10"},"nodeType":"YulFunctionCall","src":"4892:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4880:6:10"},"nodeType":"YulFunctionCall","src":"4880:37:10"},"nodeType":"YulExpressionStatement","src":"4880:37:10"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4858:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4865:3:10","type":""}],"src":"4805:118:10"},{"body":{"nodeType":"YulBlock","src":"5027:124:10","statements":[{"nodeType":"YulAssignment","src":"5037:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5049:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5060:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5045:3:10"},"nodeType":"YulFunctionCall","src":"5045:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5037:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5117:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5130:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5141:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5126:3:10"},"nodeType":"YulFunctionCall","src":"5126:17:10"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"5073:43:10"},"nodeType":"YulFunctionCall","src":"5073:71:10"},"nodeType":"YulExpressionStatement","src":"5073:71:10"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4999:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5011:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5022:4:10","type":""}],"src":"4929:222:10"},{"body":{"nodeType":"YulBlock","src":"5257:519:10","statements":[{"body":{"nodeType":"YulBlock","src":"5303:83:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5305:77:10"},"nodeType":"YulFunctionCall","src":"5305:79:10"},"nodeType":"YulExpressionStatement","src":"5305:79:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5278:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"5287:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5274:3:10"},"nodeType":"YulFunctionCall","src":"5274:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"5299:2:10","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5270:3:10"},"nodeType":"YulFunctionCall","src":"5270:32:10"},"nodeType":"YulIf","src":"5267:119:10"},{"nodeType":"YulBlock","src":"5396:117:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5411:15:10","value":{"kind":"number","nodeType":"YulLiteral","src":"5425:1:10","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5415:6:10","type":""}]},{"nodeType":"YulAssignment","src":"5440:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5475:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"5486:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5471:3:10"},"nodeType":"YulFunctionCall","src":"5471:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5495:7:10"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"5450:20:10"},"nodeType":"YulFunctionCall","src":"5450:53:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5440:6:10"}]}]},{"nodeType":"YulBlock","src":"5523:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5538:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"5552:2:10","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5542:6:10","type":""}]},{"nodeType":"YulAssignment","src":"5568:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5603:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"5614:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5599:3:10"},"nodeType":"YulFunctionCall","src":"5599:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5623:7:10"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5578:20:10"},"nodeType":"YulFunctionCall","src":"5578:53:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5568:6:10"}]}]},{"nodeType":"YulBlock","src":"5651:118:10","statements":[{"nodeType":"YulVariableDeclaration","src":"5666:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"5680:2:10","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5670:6:10","type":""}]},{"nodeType":"YulAssignment","src":"5696:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5731:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"5742:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5727:3:10"},"nodeType":"YulFunctionCall","src":"5727:22:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5751:7:10"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"5706:20:10"},"nodeType":"YulFunctionCall","src":"5706:53:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5696:6:10"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5211:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5222:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5234:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5242:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5250:6:10","type":""}],"src":"5157:619:10"},{"body":{"nodeType":"YulBlock","src":"5878:73:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5895:3:10"},{"name":"length","nodeType":"YulIdentifier","src":"5900:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5888:6:10"},"nodeType":"YulFunctionCall","src":"5888:19:10"},"nodeType":"YulExpressionStatement","src":"5888:19:10"},{"nodeType":"YulAssignment","src":"5916:29:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5935:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"5940:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5931:3:10"},"nodeType":"YulFunctionCall","src":"5931:14:10"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"5916:11:10"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5850:3:10","type":""},{"name":"length","nodeType":"YulTypedName","src":"5855:6:10","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"5866:11:10","type":""}],"src":"5782:169:10"},{"body":{"nodeType":"YulBlock","src":"6063:65:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6085:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"6093:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6081:3:10"},"nodeType":"YulFunctionCall","src":"6081:14:10"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"6097:23:10","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6074:6:10"},"nodeType":"YulFunctionCall","src":"6074:47:10"},"nodeType":"YulExpressionStatement","src":"6074:47:10"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"6055:6:10","type":""}],"src":"5957:171:10"},{"body":{"nodeType":"YulBlock","src":"6280:220:10","statements":[{"nodeType":"YulAssignment","src":"6290:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6356:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"6361:2:10","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6297:58:10"},"nodeType":"YulFunctionCall","src":"6297:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6290:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6462:3:10"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"6373:88:10"},"nodeType":"YulFunctionCall","src":"6373:93:10"},"nodeType":"YulExpressionStatement","src":"6373:93:10"},{"nodeType":"YulAssignment","src":"6475:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6486:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"6491:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6482:3:10"},"nodeType":"YulFunctionCall","src":"6482:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"6475:3:10"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"6268:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6276:3:10","type":""}],"src":"6134:366:10"},{"body":{"nodeType":"YulBlock","src":"6677:248:10","statements":[{"nodeType":"YulAssignment","src":"6687:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6699:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6710:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6695:3:10"},"nodeType":"YulFunctionCall","src":"6695:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6687:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6734:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6745:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6730:3:10"},"nodeType":"YulFunctionCall","src":"6730:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6753:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"6759:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6749:3:10"},"nodeType":"YulFunctionCall","src":"6749:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6723:6:10"},"nodeType":"YulFunctionCall","src":"6723:47:10"},"nodeType":"YulExpressionStatement","src":"6723:47:10"},{"nodeType":"YulAssignment","src":"6779:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6913:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6787:124:10"},"nodeType":"YulFunctionCall","src":"6787:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6779:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6657:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6672:4:10","type":""}],"src":"6506:419:10"},{"body":{"nodeType":"YulBlock","src":"7037:118:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7059:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"7067:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7055:3:10"},"nodeType":"YulFunctionCall","src":"7055:14:10"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"7071:34:10","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7048:6:10"},"nodeType":"YulFunctionCall","src":"7048:58:10"},"nodeType":"YulExpressionStatement","src":"7048:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7127:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"7135:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7123:3:10"},"nodeType":"YulFunctionCall","src":"7123:15:10"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"7140:7:10","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7116:6:10"},"nodeType":"YulFunctionCall","src":"7116:32:10"},"nodeType":"YulExpressionStatement","src":"7116:32:10"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"7029:6:10","type":""}],"src":"6931:224:10"},{"body":{"nodeType":"YulBlock","src":"7307:220:10","statements":[{"nodeType":"YulAssignment","src":"7317:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7383:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"7388:2:10","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7324:58:10"},"nodeType":"YulFunctionCall","src":"7324:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7317:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7489:3:10"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"7400:88:10"},"nodeType":"YulFunctionCall","src":"7400:93:10"},"nodeType":"YulExpressionStatement","src":"7400:93:10"},{"nodeType":"YulAssignment","src":"7502:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7513:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"7518:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7509:3:10"},"nodeType":"YulFunctionCall","src":"7509:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7502:3:10"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7295:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7303:3:10","type":""}],"src":"7161:366:10"},{"body":{"nodeType":"YulBlock","src":"7704:248:10","statements":[{"nodeType":"YulAssignment","src":"7714:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7726:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7737:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7722:3:10"},"nodeType":"YulFunctionCall","src":"7722:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7714:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7761:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7772:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7757:3:10"},"nodeType":"YulFunctionCall","src":"7757:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7780:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"7786:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7776:3:10"},"nodeType":"YulFunctionCall","src":"7776:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7750:6:10"},"nodeType":"YulFunctionCall","src":"7750:47:10"},"nodeType":"YulExpressionStatement","src":"7750:47:10"},{"nodeType":"YulAssignment","src":"7806:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7940:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7814:124:10"},"nodeType":"YulFunctionCall","src":"7814:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7806:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7684:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7699:4:10","type":""}],"src":"7533:419:10"},{"body":{"nodeType":"YulBlock","src":"8064:120:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8086:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"8094:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8082:3:10"},"nodeType":"YulFunctionCall","src":"8082:14:10"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"8098:34:10","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8075:6:10"},"nodeType":"YulFunctionCall","src":"8075:58:10"},"nodeType":"YulExpressionStatement","src":"8075:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8154:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"8162:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8150:3:10"},"nodeType":"YulFunctionCall","src":"8150:15:10"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"8167:9:10","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8143:6:10"},"nodeType":"YulFunctionCall","src":"8143:34:10"},"nodeType":"YulExpressionStatement","src":"8143:34:10"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"8056:6:10","type":""}],"src":"7958:226:10"},{"body":{"nodeType":"YulBlock","src":"8336:220:10","statements":[{"nodeType":"YulAssignment","src":"8346:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8412:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"8417:2:10","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8353:58:10"},"nodeType":"YulFunctionCall","src":"8353:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8346:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8518:3:10"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"8429:88:10"},"nodeType":"YulFunctionCall","src":"8429:93:10"},"nodeType":"YulExpressionStatement","src":"8429:93:10"},{"nodeType":"YulAssignment","src":"8531:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8542:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"8547:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8538:3:10"},"nodeType":"YulFunctionCall","src":"8538:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"8531:3:10"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8324:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"8332:3:10","type":""}],"src":"8190:366:10"},{"body":{"nodeType":"YulBlock","src":"8733:248:10","statements":[{"nodeType":"YulAssignment","src":"8743:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8755:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8766:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8751:3:10"},"nodeType":"YulFunctionCall","src":"8751:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8743:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8790:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8801:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8786:3:10"},"nodeType":"YulFunctionCall","src":"8786:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8809:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"8815:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8805:3:10"},"nodeType":"YulFunctionCall","src":"8805:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8779:6:10"},"nodeType":"YulFunctionCall","src":"8779:47:10"},"nodeType":"YulExpressionStatement","src":"8779:47:10"},{"nodeType":"YulAssignment","src":"8835:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8969:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8843:124:10"},"nodeType":"YulFunctionCall","src":"8843:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8835:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8713:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8728:4:10","type":""}],"src":"8562:419:10"},{"body":{"nodeType":"YulBlock","src":"9093:122:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9115:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"9123:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9111:3:10"},"nodeType":"YulFunctionCall","src":"9111:14:10"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"9127:34:10","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9104:6:10"},"nodeType":"YulFunctionCall","src":"9104:58:10"},"nodeType":"YulExpressionStatement","src":"9104:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9183:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"9191:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9179:3:10"},"nodeType":"YulFunctionCall","src":"9179:15:10"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"9196:11:10","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9172:6:10"},"nodeType":"YulFunctionCall","src":"9172:36:10"},"nodeType":"YulExpressionStatement","src":"9172:36:10"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"9085:6:10","type":""}],"src":"8987:228:10"},{"body":{"nodeType":"YulBlock","src":"9367:220:10","statements":[{"nodeType":"YulAssignment","src":"9377:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9443:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"9448:2:10","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9384:58:10"},"nodeType":"YulFunctionCall","src":"9384:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9377:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9549:3:10"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"9460:88:10"},"nodeType":"YulFunctionCall","src":"9460:93:10"},"nodeType":"YulExpressionStatement","src":"9460:93:10"},{"nodeType":"YulAssignment","src":"9562:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9573:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"9578:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9569:3:10"},"nodeType":"YulFunctionCall","src":"9569:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9562:3:10"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9355:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9363:3:10","type":""}],"src":"9221:366:10"},{"body":{"nodeType":"YulBlock","src":"9764:248:10","statements":[{"nodeType":"YulAssignment","src":"9774:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9786:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"9797:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9782:3:10"},"nodeType":"YulFunctionCall","src":"9782:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9774:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9821:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"9832:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9817:3:10"},"nodeType":"YulFunctionCall","src":"9817:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9840:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"9846:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9836:3:10"},"nodeType":"YulFunctionCall","src":"9836:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9810:6:10"},"nodeType":"YulFunctionCall","src":"9810:47:10"},"nodeType":"YulExpressionStatement","src":"9810:47:10"},{"nodeType":"YulAssignment","src":"9866:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10000:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9874:124:10"},"nodeType":"YulFunctionCall","src":"9874:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9866:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9744:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9759:4:10","type":""}],"src":"9593:419:10"},{"body":{"nodeType":"YulBlock","src":"10124:72:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10146:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"10154:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10142:3:10"},"nodeType":"YulFunctionCall","src":"10142:14:10"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"10158:30:10","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10135:6:10"},"nodeType":"YulFunctionCall","src":"10135:54:10"},"nodeType":"YulExpressionStatement","src":"10135:54:10"}]},"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"10116:6:10","type":""}],"src":"10018:178:10"},{"body":{"nodeType":"YulBlock","src":"10348:220:10","statements":[{"nodeType":"YulAssignment","src":"10358:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10424:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"10429:2:10","type":"","value":"28"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10365:58:10"},"nodeType":"YulFunctionCall","src":"10365:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10358:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10530:3:10"}],"functionName":{"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulIdentifier","src":"10441:88:10"},"nodeType":"YulFunctionCall","src":"10441:93:10"},"nodeType":"YulExpressionStatement","src":"10441:93:10"},{"nodeType":"YulAssignment","src":"10543:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10554:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"10559:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10550:3:10"},"nodeType":"YulFunctionCall","src":"10550:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"10543:3:10"}]}]},"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"10336:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10344:3:10","type":""}],"src":"10202:366:10"},{"body":{"nodeType":"YulBlock","src":"10745:248:10","statements":[{"nodeType":"YulAssignment","src":"10755:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10767:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10778:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10763:3:10"},"nodeType":"YulFunctionCall","src":"10763:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10755:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10802:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10813:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10798:3:10"},"nodeType":"YulFunctionCall","src":"10798:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10821:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"10827:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10817:3:10"},"nodeType":"YulFunctionCall","src":"10817:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10791:6:10"},"nodeType":"YulFunctionCall","src":"10791:47:10"},"nodeType":"YulExpressionStatement","src":"10791:47:10"},{"nodeType":"YulAssignment","src":"10847:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10981:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10855:124:10"},"nodeType":"YulFunctionCall","src":"10855:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10847:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10725:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10740:4:10","type":""}],"src":"10574:419:10"},{"body":{"nodeType":"YulBlock","src":"11105:116:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11127:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"11135:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11123:3:10"},"nodeType":"YulFunctionCall","src":"11123:14:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"11139:34:10","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11116:6:10"},"nodeType":"YulFunctionCall","src":"11116:58:10"},"nodeType":"YulExpressionStatement","src":"11116:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11195:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"11203:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11191:3:10"},"nodeType":"YulFunctionCall","src":"11191:15:10"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"11208:5:10","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11184:6:10"},"nodeType":"YulFunctionCall","src":"11184:30:10"},"nodeType":"YulExpressionStatement","src":"11184:30:10"}]},"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"11097:6:10","type":""}],"src":"10999:222:10"},{"body":{"nodeType":"YulBlock","src":"11373:220:10","statements":[{"nodeType":"YulAssignment","src":"11383:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11449:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"11454:2:10","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11390:58:10"},"nodeType":"YulFunctionCall","src":"11390:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11383:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11555:3:10"}],"functionName":{"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulIdentifier","src":"11466:88:10"},"nodeType":"YulFunctionCall","src":"11466:93:10"},"nodeType":"YulExpressionStatement","src":"11466:93:10"},{"nodeType":"YulAssignment","src":"11568:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11579:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"11584:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11575:3:10"},"nodeType":"YulFunctionCall","src":"11575:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11568:3:10"}]}]},"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"11361:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"11369:3:10","type":""}],"src":"11227:366:10"},{"body":{"nodeType":"YulBlock","src":"11770:248:10","statements":[{"nodeType":"YulAssignment","src":"11780:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11792:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11803:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11788:3:10"},"nodeType":"YulFunctionCall","src":"11788:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11780:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11827:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11838:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11823:3:10"},"nodeType":"YulFunctionCall","src":"11823:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11846:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"11852:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11842:3:10"},"nodeType":"YulFunctionCall","src":"11842:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11816:6:10"},"nodeType":"YulFunctionCall","src":"11816:47:10"},"nodeType":"YulExpressionStatement","src":"11816:47:10"},{"nodeType":"YulAssignment","src":"11872:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12006:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11880:124:10"},"nodeType":"YulFunctionCall","src":"11880:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11872:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11750:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11765:4:10","type":""}],"src":"11599:419:10"},{"body":{"nodeType":"YulBlock","src":"12130:120:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12152:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"12160:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12148:3:10"},"nodeType":"YulFunctionCall","src":"12148:14:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"12164:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12141:6:10"},"nodeType":"YulFunctionCall","src":"12141:58:10"},"nodeType":"YulExpressionStatement","src":"12141:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12220:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"12228:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12216:3:10"},"nodeType":"YulFunctionCall","src":"12216:15:10"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"12233:9:10","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12209:6:10"},"nodeType":"YulFunctionCall","src":"12209:34:10"},"nodeType":"YulExpressionStatement","src":"12209:34:10"}]},"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12122:6:10","type":""}],"src":"12024:226:10"},{"body":{"nodeType":"YulBlock","src":"12402:220:10","statements":[{"nodeType":"YulAssignment","src":"12412:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12478:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"12483:2:10","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12419:58:10"},"nodeType":"YulFunctionCall","src":"12419:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12412:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12584:3:10"}],"functionName":{"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulIdentifier","src":"12495:88:10"},"nodeType":"YulFunctionCall","src":"12495:93:10"},"nodeType":"YulExpressionStatement","src":"12495:93:10"},{"nodeType":"YulAssignment","src":"12597:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12608:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"12613:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12604:3:10"},"nodeType":"YulFunctionCall","src":"12604:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12597:3:10"}]}]},"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12390:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12398:3:10","type":""}],"src":"12256:366:10"},{"body":{"nodeType":"YulBlock","src":"12799:248:10","statements":[{"nodeType":"YulAssignment","src":"12809:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12821:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12832:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12817:3:10"},"nodeType":"YulFunctionCall","src":"12817:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12809:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12856:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12867:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12852:3:10"},"nodeType":"YulFunctionCall","src":"12852:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12875:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"12881:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12871:3:10"},"nodeType":"YulFunctionCall","src":"12871:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12845:6:10"},"nodeType":"YulFunctionCall","src":"12845:47:10"},"nodeType":"YulExpressionStatement","src":"12845:47:10"},{"nodeType":"YulAssignment","src":"12901:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13035:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12909:124:10"},"nodeType":"YulFunctionCall","src":"12909:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12901:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12779:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12794:4:10","type":""}],"src":"12628:419:10"},{"body":{"nodeType":"YulBlock","src":"13159:118:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13181:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"13189:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13177:3:10"},"nodeType":"YulFunctionCall","src":"13177:14:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"13193:34:10","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13170:6:10"},"nodeType":"YulFunctionCall","src":"13170:58:10"},"nodeType":"YulExpressionStatement","src":"13170:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13249:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"13257:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13245:3:10"},"nodeType":"YulFunctionCall","src":"13245:15:10"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"13262:7:10","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13238:6:10"},"nodeType":"YulFunctionCall","src":"13238:32:10"},"nodeType":"YulExpressionStatement","src":"13238:32:10"}]},"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"13151:6:10","type":""}],"src":"13053:224:10"},{"body":{"nodeType":"YulBlock","src":"13429:220:10","statements":[{"nodeType":"YulAssignment","src":"13439:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13505:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"13510:2:10","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13446:58:10"},"nodeType":"YulFunctionCall","src":"13446:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13439:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13611:3:10"}],"functionName":{"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulIdentifier","src":"13522:88:10"},"nodeType":"YulFunctionCall","src":"13522:93:10"},"nodeType":"YulExpressionStatement","src":"13522:93:10"},{"nodeType":"YulAssignment","src":"13624:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13635:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"13640:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13631:3:10"},"nodeType":"YulFunctionCall","src":"13631:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13624:3:10"}]}]},"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13417:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13425:3:10","type":""}],"src":"13283:366:10"},{"body":{"nodeType":"YulBlock","src":"13826:248:10","statements":[{"nodeType":"YulAssignment","src":"13836:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13848:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13859:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13844:3:10"},"nodeType":"YulFunctionCall","src":"13844:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13836:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13883:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13894:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13879:3:10"},"nodeType":"YulFunctionCall","src":"13879:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13902:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"13908:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13898:3:10"},"nodeType":"YulFunctionCall","src":"13898:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13872:6:10"},"nodeType":"YulFunctionCall","src":"13872:47:10"},"nodeType":"YulExpressionStatement","src":"13872:47:10"},{"nodeType":"YulAssignment","src":"13928:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14062:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13936:124:10"},"nodeType":"YulFunctionCall","src":"13936:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13928:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13806:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13821:4:10","type":""}],"src":"13655:419:10"},{"body":{"nodeType":"YulBlock","src":"14186:123:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14208:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"14216:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14204:3:10"},"nodeType":"YulFunctionCall","src":"14204:14:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"14220:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14197:6:10"},"nodeType":"YulFunctionCall","src":"14197:58:10"},"nodeType":"YulExpressionStatement","src":"14197:58:10"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14276:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"14284:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14272:3:10"},"nodeType":"YulFunctionCall","src":"14272:15:10"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"14289:12:10","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14265:6:10"},"nodeType":"YulFunctionCall","src":"14265:37:10"},"nodeType":"YulExpressionStatement","src":"14265:37:10"}]},"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14178:6:10","type":""}],"src":"14080:229:10"},{"body":{"nodeType":"YulBlock","src":"14461:220:10","statements":[{"nodeType":"YulAssignment","src":"14471:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14537:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"14542:2:10","type":"","value":"42"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14478:58:10"},"nodeType":"YulFunctionCall","src":"14478:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"14471:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14643:3:10"}],"functionName":{"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulIdentifier","src":"14554:88:10"},"nodeType":"YulFunctionCall","src":"14554:93:10"},"nodeType":"YulExpressionStatement","src":"14554:93:10"},{"nodeType":"YulAssignment","src":"14656:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14667:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"14672:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14663:3:10"},"nodeType":"YulFunctionCall","src":"14663:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14656:3:10"}]}]},"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14449:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14457:3:10","type":""}],"src":"14315:366:10"},{"body":{"nodeType":"YulBlock","src":"14858:248:10","statements":[{"nodeType":"YulAssignment","src":"14868:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14880:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14891:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14876:3:10"},"nodeType":"YulFunctionCall","src":"14876:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14868:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14915:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14926:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14911:3:10"},"nodeType":"YulFunctionCall","src":"14911:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14934:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"14940:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14930:3:10"},"nodeType":"YulFunctionCall","src":"14930:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14904:6:10"},"nodeType":"YulFunctionCall","src":"14904:47:10"},"nodeType":"YulExpressionStatement","src":"14904:47:10"},{"nodeType":"YulAssignment","src":"14960:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15094:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14968:124:10"},"nodeType":"YulFunctionCall","src":"14968:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14960:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14838:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14853:4:10","type":""}],"src":"14687:419:10"},{"body":{"nodeType":"YulBlock","src":"15177:53:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15194:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15217:5:10"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"15199:17:10"},"nodeType":"YulFunctionCall","src":"15199:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15187:6:10"},"nodeType":"YulFunctionCall","src":"15187:37:10"},"nodeType":"YulExpressionStatement","src":"15187:37:10"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15165:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15172:3:10","type":""}],"src":"15112:118:10"},{"body":{"nodeType":"YulBlock","src":"15418:371:10","statements":[{"nodeType":"YulAssignment","src":"15428:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15440:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15451:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15436:3:10"},"nodeType":"YulFunctionCall","src":"15436:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15428:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15509:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15522:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15533:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15518:3:10"},"nodeType":"YulFunctionCall","src":"15518:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15465:43:10"},"nodeType":"YulFunctionCall","src":"15465:71:10"},"nodeType":"YulExpressionStatement","src":"15465:71:10"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"15590:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15603:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15614:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15599:3:10"},"nodeType":"YulFunctionCall","src":"15599:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15546:43:10"},"nodeType":"YulFunctionCall","src":"15546:72:10"},"nodeType":"YulExpressionStatement","src":"15546:72:10"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"15672:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15685:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15696:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15681:3:10"},"nodeType":"YulFunctionCall","src":"15681:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15628:43:10"},"nodeType":"YulFunctionCall","src":"15628:72:10"},"nodeType":"YulExpressionStatement","src":"15628:72:10"},{"expression":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"15754:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15767:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15778:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15763:3:10"},"nodeType":"YulFunctionCall","src":"15763:18:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15710:43:10"},"nodeType":"YulFunctionCall","src":"15710:72:10"},"nodeType":"YulExpressionStatement","src":"15710:72:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15366:9:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"15378:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15386:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15394:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15402:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15413:4:10","type":""}],"src":"15236:553:10"},{"body":{"nodeType":"YulBlock","src":"15901:67:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15923:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"15931:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15919:3:10"},"nodeType":"YulFunctionCall","src":"15919:14:10"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"15935:25:10","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15912:6:10"},"nodeType":"YulFunctionCall","src":"15912:49:10"},"nodeType":"YulExpressionStatement","src":"15912:49:10"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15893:6:10","type":""}],"src":"15795:173:10"},{"body":{"nodeType":"YulBlock","src":"16120:220:10","statements":[{"nodeType":"YulAssignment","src":"16130:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16196:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"16201:2:10","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16137:58:10"},"nodeType":"YulFunctionCall","src":"16137:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16130:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16302:3:10"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"16213:88:10"},"nodeType":"YulFunctionCall","src":"16213:93:10"},"nodeType":"YulExpressionStatement","src":"16213:93:10"},{"nodeType":"YulAssignment","src":"16315:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16326:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"16331:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16322:3:10"},"nodeType":"YulFunctionCall","src":"16322:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16315:3:10"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16108:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16116:3:10","type":""}],"src":"15974:366:10"},{"body":{"nodeType":"YulBlock","src":"16517:248:10","statements":[{"nodeType":"YulAssignment","src":"16527:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16539:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16550:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16535:3:10"},"nodeType":"YulFunctionCall","src":"16535:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16527:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16574:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16585:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16570:3:10"},"nodeType":"YulFunctionCall","src":"16570:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16593:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"16599:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16589:3:10"},"nodeType":"YulFunctionCall","src":"16589:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16563:6:10"},"nodeType":"YulFunctionCall","src":"16563:47:10"},"nodeType":"YulExpressionStatement","src":"16563:47:10"},{"nodeType":"YulAssignment","src":"16619:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16753:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16627:124:10"},"nodeType":"YulFunctionCall","src":"16627:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16619:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16497:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16512:4:10","type":""}],"src":"16346:419:10"},{"body":{"nodeType":"YulBlock","src":"16869:124:10","statements":[{"nodeType":"YulAssignment","src":"16879:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16891:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16902:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16887:3:10"},"nodeType":"YulFunctionCall","src":"16887:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16879:4:10"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16959:6:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16972:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16983:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16968:3:10"},"nodeType":"YulFunctionCall","src":"16968:17:10"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"16915:43:10"},"nodeType":"YulFunctionCall","src":"16915:71:10"},"nodeType":"YulExpressionStatement","src":"16915:71:10"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16841:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16853:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16864:4:10","type":""}],"src":"16771:222:10"},{"body":{"nodeType":"YulBlock","src":"17105:76:10","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"17127:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"17135:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17123:3:10"},"nodeType":"YulFunctionCall","src":"17123:14:10"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"17139:34:10","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17116:6:10"},"nodeType":"YulFunctionCall","src":"17116:58:10"},"nodeType":"YulExpressionStatement","src":"17116:58:10"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"17097:6:10","type":""}],"src":"16999:182:10"},{"body":{"nodeType":"YulBlock","src":"17333:220:10","statements":[{"nodeType":"YulAssignment","src":"17343:74:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17409:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"17414:2:10","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17350:58:10"},"nodeType":"YulFunctionCall","src":"17350:67:10"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17343:3:10"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17515:3:10"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"17426:88:10"},"nodeType":"YulFunctionCall","src":"17426:93:10"},"nodeType":"YulExpressionStatement","src":"17426:93:10"},{"nodeType":"YulAssignment","src":"17528:19:10","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17539:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"17544:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17535:3:10"},"nodeType":"YulFunctionCall","src":"17535:12:10"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17528:3:10"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17321:3:10","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17329:3:10","type":""}],"src":"17187:366:10"},{"body":{"nodeType":"YulBlock","src":"17730:248:10","statements":[{"nodeType":"YulAssignment","src":"17740:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17752:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17763:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17748:3:10"},"nodeType":"YulFunctionCall","src":"17748:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17740:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17787:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17798:1:10","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17783:3:10"},"nodeType":"YulFunctionCall","src":"17783:17:10"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17806:4:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"17812:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17802:3:10"},"nodeType":"YulFunctionCall","src":"17802:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17776:6:10"},"nodeType":"YulFunctionCall","src":"17776:47:10"},"nodeType":"YulExpressionStatement","src":"17776:47:10"},{"nodeType":"YulAssignment","src":"17832:139:10","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17966:4:10"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17840:124:10"},"nodeType":"YulFunctionCall","src":"17840:131:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17832:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17710:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17725:4:10","type":""}],"src":"17559:419:10"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n // struct GatewaySettingManager.TokenFeeSettings -> struct GatewaySettingManager.TokenFeeSettings\n function abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x80)\n\n {\n // senderToProvider\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // providerToAggregator\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderToAggregator\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x40))\n }\n\n {\n // providerToAggregatorFx\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_TokenFeeSettings_$1932_memory_ptr__to_t_struct$_TokenFeeSettings_$1932_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_struct$_TokenFeeSettings_$1932_memory_ptr_to_t_struct$_TokenFeeSettings_$1932_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: token not supported\")\n\n }\n\n function abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to provi\")\n\n mstore(add(memPtr, 32), \"der\")\n\n }\n\n function abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator\")\n\n }\n\n function abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to aggre\")\n\n mstore(add(memPtr, 32), \"gator\")\n\n }\n\n function abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator fx\")\n\n }\n\n function abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":10,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b5060043610610091575f3560e01c80638bfa0549116100645780638bfa0549146100e15780638da5cb5b14610111578063cd9924001461012f578063e30c39781461014b578063f2fde38b1461016957610091565b806340ebc67714610095578063715018a6146100b157806379ba5097146100bb578063898861b0146100c5575b5f80fd5b6100af60048036038101906100aa9190610c8f565b610185565b005b6100b9610449565b005b6100c361045c565b005b6100df60048036038101906100da9190610d00565b6104e8565b005b6100fb60048036038101906100f69190610d77565b610766565b6040516101089190610e04565b60405180910390f35b6101196107e4565b6040516101269190610e2c565b60405180910390f35b61014960048036038101906101449190610e45565b61080c565b005b61015361098e565b6040516101609190610e2c565b60405180910390f35b610183600480360381019061017e9190610d77565b6109b6565b005b61018d610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f290610eef565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036102fd578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036102b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102aa90610f7d565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506103f9565b7f61676772656761746f720000000000000000000000000000000000000000000083036103f8578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa9061100b565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610444578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b610451610a62565b61045a5f610ae0565b565b5f610465610b10565b90508073ffffffffffffffffffffffffffffffffffffffff1661048661098e565b73ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611099565b60405180910390fd5b6104e581610ae0565b50565b6104f0610a62565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056790611101565b60405180910390fd5b6097548411156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac9061118f565b60405180910390fd5b6097548311156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f19061121d565b60405180910390fd5b60975482111561063f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610636906112ab565b60405180910390fd5b609754811115610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90611339565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516107579493929190611366565b60405180910390a25050505050565b61076e610bda565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610814610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990610eef565b60405180910390fd5b60018114806108915750600281145b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c7906113f3565b60405180910390fd5b7f746f6b656e00000000000000000000000000000000000000000000000000000083036109895780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516109809190611411565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109be610a62565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a1d6107e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a6a610b10565b73ffffffffffffffffffffffffffffffffffffffff16610a886107e4565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611474565b60405180910390fd5b565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610b0d81610b17565b50565b5f33905090565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b610c1481610c02565b8114610c1e575f80fd5b50565b5f81359050610c2f81610c0b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c5e82610c35565b9050919050565b610c6e81610c54565b8114610c78575f80fd5b50565b5f81359050610c8981610c65565b92915050565b5f8060408385031215610ca557610ca4610bfe565b5b5f610cb285828601610c21565b9250506020610cc385828601610c7b565b9150509250929050565b5f819050919050565b610cdf81610ccd565b8114610ce9575f80fd5b50565b5f81359050610cfa81610cd6565b92915050565b5f805f805f60a08688031215610d1957610d18610bfe565b5b5f610d2688828901610c7b565b9550506020610d3788828901610cec565b9450506040610d4888828901610cec565b9350506060610d5988828901610cec565b9250506080610d6a88828901610cec565b9150509295509295909350565b5f60208284031215610d8c57610d8b610bfe565b5b5f610d9984828501610c7b565b91505092915050565b610dab81610ccd565b82525050565b608082015f820151610dc55f850182610da2565b506020820151610dd86020850182610da2565b506040820151610deb6040850182610da2565b506060820151610dfe6060850182610da2565b50505050565b5f608082019050610e175f830184610db1565b92915050565b610e2681610c54565b82525050565b5f602082019050610e3f5f830184610e1d565b92915050565b5f805f60608486031215610e5c57610e5b610bfe565b5b5f610e6986828701610c21565b9350506020610e7a86828701610c7b565b9250506040610e8b86828701610cec565b9150509250925092565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f610ed9601583610e95565b9150610ee482610ea5565b602082019050919050565b5f6020820190508181035f830152610f0681610ecd565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f610f67602583610e95565b9150610f7282610f0d565b604082019050919050565b5f6020820190508181035f830152610f9481610f5b565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f610ff5602783610e95565b915061100082610f9b565b604082019050919050565b5f6020820190508181035f83015261102281610fe9565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f611083602983610e95565b915061108e82611029565b604082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f6110eb601c83610e95565b91506110f6826110b7565b602082019050919050565b5f6020820190508181035f830152611118816110df565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f611179602383610e95565b91506111848261111f565b604082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f611207602783610e95565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f611295602583610e95565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f611323602a83610e95565b915061132e826112c9565b604082019050919050565b5f6020820190508181035f83015261135081611317565b9050919050565b61136081610ccd565b82525050565b5f6080820190506113795f830187611357565b6113866020830186611357565b6113936040830185611357565b6113a06060830184611357565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6113dd601783610e95565b91506113e8826113a9565b602082019050919050565b5f6020820190508181035f83015261140a816113d1565b9050919050565b5f6020820190506114245f830184611357565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61145e602083610e95565b91506114698261142a565b602082019050919050565b5f6020820190508181035f83015261148b81611452565b905091905056fea2646970667358221220501f5547a2da906016cb57c16e745ed8301050ccb83749f526f2c5a06972904864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x91 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x12F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x169 JUMPI PUSH2 0x91 JUMP JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x95 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xBB JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xC5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xAF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAA SWAP2 SWAP1 PUSH2 0xC8F JUMP JUMPDEST PUSH2 0x185 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB9 PUSH2 0x449 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC3 PUSH2 0x45C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xDF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDA SWAP2 SWAP1 PUSH2 0xD00 JUMP JUMPDEST PUSH2 0x4E8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF6 SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x7E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xE45 JUMP JUMPDEST PUSH2 0x80C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x98E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x183 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17E SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x9B6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F2 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x2FD JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AA SWAP1 PUSH2 0xF7D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x3F9 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x3F8 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3AA SWAP1 PUSH2 0x100B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x444 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x451 PUSH2 0xA62 JUMP JUMPDEST PUSH2 0x45A PUSH0 PUSH2 0xAE0 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x465 PUSH2 0xB10 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x486 PUSH2 0x98E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0x1099 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E5 DUP2 PUSH2 0xAE0 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4F0 PUSH2 0xA62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x570 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x567 SWAP1 PUSH2 0x1101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5AC SWAP1 PUSH2 0x118F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x5FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F1 SWAP1 PUSH2 0x121D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x63F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x636 SWAP1 PUSH2 0x12AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x684 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67B SWAP1 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x757 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x76E PUSH2 0xBDA JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x814 PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x882 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x879 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x891 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x8D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C7 SWAP1 PUSH2 0x13F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x989 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x980 SWAP2 SWAP1 PUSH2 0x1411 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BE PUSH2 0xA62 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA1D PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0xA6A PUSH2 0xB10 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA88 PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xADE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAD5 SWAP1 PUSH2 0x1474 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0xB0D DUP2 PUSH2 0xB17 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC14 DUP2 PUSH2 0xC02 JUMP JUMPDEST DUP2 EQ PUSH2 0xC1E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC2F DUP2 PUSH2 0xC0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC5E DUP3 PUSH2 0xC35 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC6E DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP2 EQ PUSH2 0xC78 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC89 DUP2 PUSH2 0xC65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCA5 JUMPI PUSH2 0xCA4 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCB2 DUP6 DUP3 DUP7 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCC3 DUP6 DUP3 DUP7 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCDF DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP2 EQ PUSH2 0xCE9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCFA DUP2 PUSH2 0xCD6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xD19 JUMPI PUSH2 0xD18 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD26 DUP9 DUP3 DUP10 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0xD37 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0xD48 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0xD59 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0xD6A DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8C JUMPI PUSH2 0xD8B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD99 DUP5 DUP3 DUP6 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xDAB DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0xDC5 PUSH0 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0xDD8 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0xDEB PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0xDFE PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xE17 PUSH0 DUP4 ADD DUP5 PUSH2 0xDB1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE26 DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE3F PUSH0 DUP4 ADD DUP5 PUSH2 0xE1D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE5C JUMPI PUSH2 0xE5B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE69 DUP7 DUP3 DUP8 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xED9 PUSH1 0x15 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xEE4 DUP3 PUSH2 0xEA5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF06 DUP2 PUSH2 0xECD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF67 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xF72 DUP3 PUSH2 0xF0D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF94 DUP2 PUSH2 0xF5B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xFF5 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1000 DUP3 PUSH2 0xF9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1022 DUP2 PUSH2 0xFE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1083 PUSH1 0x29 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x108E DUP3 PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10B0 DUP2 PUSH2 0x1077 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x10EB PUSH1 0x1C DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x10F6 DUP3 PUSH2 0x10B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1118 DUP2 PUSH2 0x10DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1179 PUSH1 0x23 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1184 DUP3 PUSH2 0x111F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x11A6 DUP2 PUSH2 0x116D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1207 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1212 DUP3 PUSH2 0x11AD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1234 DUP2 PUSH2 0x11FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1295 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x12A0 DUP3 PUSH2 0x123B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12C2 DUP2 PUSH2 0x1289 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1323 PUSH1 0x2A DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x132E DUP3 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1350 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1360 DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1379 PUSH0 DUP4 ADD DUP8 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1386 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1393 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x13A0 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x13DD PUSH1 0x17 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x13E8 DUP3 PUSH2 0x13A9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x140A DUP2 PUSH2 0x13D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1424 PUSH0 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x145E PUSH1 0x20 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1469 DUP3 PUSH2 0x142A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x148B DUP2 PUSH2 0x1452 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0x1F SSTORE SELFBALANCE LOG2 0xDA SWAP1 PUSH1 0x16 0xCB JUMPI 0xC1 PUSH15 0x745ED8301050CCB83749F526F2C5A0 PUSH10 0x72904864736F6C634300 ADDMOD EQ STOP CALLER ","sourceMap":"276:4695:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508:551;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2085:101:1;;;:::i;:::-;;2031:212:0;;;:::i;:::-;;3670:988:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4838:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1944:335:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2508:551:8;1355:13:1;:11;:13::i;:::-;2616:1:8::1;2599:19;;:5;:19;;::::0;2591:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2648:12;2668:18;:4;:18:::0;2664:326:::1;;2720:5;2701:24;;:15;;;;;;;;;;;:24;;::::0;2693:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2790:5;2772:15;;:23;;;;;;;;;;;;;;;;;;2810:4;2800:14;;2664:326;;;2829:20;:4;:20:::0;2825:165:::1;;2886:5;2864:27;;:18;;;;;;;;;;;:27;;::::0;2856:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2961:5;2940:18;;:26;;;;;;;;;;;;;;;;;;2981:4;2971:14;;2825:165;2664:326;2997:7;2993:63;;;3045:5;3016:35;;3039:4;3016:35;;;;;;;;;;2993:63;2587:472;2508:551:::0;;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;3670:988:8:-;1355:13:1;:11;:13::i;:::-;3902:1:8::1;3874:17;:24;3892:5;3874:24;;;;;;;;;;;;;;;;:29;3866:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3968:7;;3948:16;:27;;3940:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4051:7;;4027:20;:31;;4019:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4136:7;;4114:18;:29;;4106:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4223:7;;4197:22;:33;;4189:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:202;;;;;;;;4349:16;4309:202;;;;4392:20;4309:202;;;;4437:18;4309:202;;;;4484:22;4309:202;;::::0;4282:17:::1;:24;4300:5;4282:24;;;;;;;;;;;;;;;:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4549:5;4521:133;;;4559:16;4580:20;4605:18;4628:22;4521:133;;;;;;;;;:::i;:::-;;;;;;;;3670:988:::0;;;;;:::o;4838:131::-;4905:23;;:::i;:::-;4941:17;:24;4959:5;4941:24;;;;;;;;;;;;;;;4934:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4838:131;;;:::o;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;1944:335:8:-;1355:13:1;:11;:13::i;:::-;2065:1:8::1;2048:19;;:5;:19;;::::0;2040:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:1;2105:6;:11;:26;;;;2130:1;2120:6;:11;2105:26;2097:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2167:15;:4;:15:::0;2163:113:::1;;2216:6;2189:17;:24;2207:5;2189:24;;;;;;;;;;;;;;;:33;;;;2257:5;2232:39;;2251:4;2232:39;2264:6;2232:39;;;;;;:::i;:::-;;;;;;;;2163:113;1944:335:::0;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;1436:178::-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88:117:10:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:77::-;1714:7;1743:5;1732:16;;1677:77;;;:::o;1760:122::-;1833:24;1851:5;1833:24;:::i;:::-;1826:5;1823:35;1813:63;;1872:1;1869;1862:12;1813:63;1760:122;:::o;1888:139::-;1934:5;1972:6;1959:20;1950:29;;1988:33;2015:5;1988:33;:::i;:::-;1888:139;;;;:::o;2033:911::-;2128:6;2136;2144;2152;2160;2209:3;2197:9;2188:7;2184:23;2180:33;2177:120;;;2216:79;;:::i;:::-;2177:120;2336:1;2361:53;2406:7;2397:6;2386:9;2382:22;2361:53;:::i;:::-;2351:63;;2307:117;2463:2;2489:53;2534:7;2525:6;2514:9;2510:22;2489:53;:::i;:::-;2479:63;;2434:118;2591:2;2617:53;2662:7;2653:6;2642:9;2638:22;2617:53;:::i;:::-;2607:63;;2562:118;2719:2;2745:53;2790:7;2781:6;2770:9;2766:22;2745:53;:::i;:::-;2735:63;;2690:118;2847:3;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2818:119;2033:911;;;;;;;;:::o;2950:329::-;3009:6;3058:2;3046:9;3037:7;3033:23;3029:32;3026:119;;;3064:79;;:::i;:::-;3026:119;3184:1;3209:53;3254:7;3245:6;3234:9;3230:22;3209:53;:::i;:::-;3199:63;;3155:117;2950:329;;;;:::o;3285:108::-;3362:24;3380:5;3362:24;:::i;:::-;3357:3;3350:37;3285:108;;:::o;3501:933::-;3666:4;3661:3;3657:14;3765:4;3758:5;3754:16;3748:23;3784:63;3841:4;3836:3;3832:14;3818:12;3784:63;:::i;:::-;3681:176;3955:4;3948:5;3944:16;3938:23;3974:63;4031:4;4026:3;4022:14;4008:12;3974:63;:::i;:::-;3867:180;4143:4;4136:5;4132:16;4126:23;4162:63;4219:4;4214:3;4210:14;4196:12;4162:63;:::i;:::-;4057:178;4335:4;4328:5;4324:16;4318:23;4354:63;4411:4;4406:3;4402:14;4388:12;4354:63;:::i;:::-;4245:182;3635:799;3501:933;;:::o;4440:359::-;4601:4;4639:3;4628:9;4624:19;4616:27;;4653:139;4789:1;4778:9;4774:17;4765:6;4653:139;:::i;:::-;4440:359;;;;:::o;4805:118::-;4892:24;4910:5;4892:24;:::i;:::-;4887:3;4880:37;4805:118;;:::o;4929:222::-;5022:4;5060:2;5049:9;5045:18;5037:26;;5073:71;5141:1;5130:9;5126:17;5117:6;5073:71;:::i;:::-;4929:222;;;;:::o;5157:619::-;5234:6;5242;5250;5299:2;5287:9;5278:7;5274:23;5270:32;5267:119;;;5305:79;;:::i;:::-;5267:119;5425:1;5450:53;5495:7;5486:6;5475:9;5471:22;5450:53;:::i;:::-;5440:63;;5396:117;5552:2;5578:53;5623:7;5614:6;5603:9;5599:22;5578:53;:::i;:::-;5568:63;;5523:118;5680:2;5706:53;5751:7;5742:6;5731:9;5727:22;5706:53;:::i;:::-;5696:63;;5651:118;5157:619;;;;;:::o;5782:169::-;5866:11;5900:6;5895:3;5888:19;5940:4;5935:3;5931:14;5916:29;;5782:169;;;;:::o;5957:171::-;6097:23;6093:1;6085:6;6081:14;6074:47;5957:171;:::o;6134:366::-;6276:3;6297:67;6361:2;6356:3;6297:67;:::i;:::-;6290:74;;6373:93;6462:3;6373:93;:::i;:::-;6491:2;6486:3;6482:12;6475:19;;6134:366;;;:::o;6506:419::-;6672:4;6710:2;6699:9;6695:18;6687:26;;6759:9;6753:4;6749:20;6745:1;6734:9;6730:17;6723:47;6787:131;6913:4;6787:131;:::i;:::-;6779:139;;6506:419;;;:::o;6931:224::-;7071:34;7067:1;7059:6;7055:14;7048:58;7140:7;7135:2;7127:6;7123:15;7116:32;6931:224;:::o;7161:366::-;7303:3;7324:67;7388:2;7383:3;7324:67;:::i;:::-;7317:74;;7400:93;7489:3;7400:93;:::i;:::-;7518:2;7513:3;7509:12;7502:19;;7161:366;;;:::o;7533:419::-;7699:4;7737:2;7726:9;7722:18;7714:26;;7786:9;7780:4;7776:20;7772:1;7761:9;7757:17;7750:47;7814:131;7940:4;7814:131;:::i;:::-;7806:139;;7533:419;;;:::o;7958:226::-;8098:34;8094:1;8086:6;8082:14;8075:58;8167:9;8162:2;8154:6;8150:15;8143:34;7958:226;:::o;8190:366::-;8332:3;8353:67;8417:2;8412:3;8353:67;:::i;:::-;8346:74;;8429:93;8518:3;8429:93;:::i;:::-;8547:2;8542:3;8538:12;8531:19;;8190:366;;;:::o;8562:419::-;8728:4;8766:2;8755:9;8751:18;8743:26;;8815:9;8809:4;8805:20;8801:1;8790:9;8786:17;8779:47;8843:131;8969:4;8843:131;:::i;:::-;8835:139;;8562:419;;;:::o;8987:228::-;9127:34;9123:1;9115:6;9111:14;9104:58;9196:11;9191:2;9183:6;9179:15;9172:36;8987:228;:::o;9221:366::-;9363:3;9384:67;9448:2;9443:3;9384:67;:::i;:::-;9377:74;;9460:93;9549:3;9460:93;:::i;:::-;9578:2;9573:3;9569:12;9562:19;;9221:366;;;:::o;9593:419::-;9759:4;9797:2;9786:9;9782:18;9774:26;;9846:9;9840:4;9836:20;9832:1;9821:9;9817:17;9810:47;9874:131;10000:4;9874:131;:::i;:::-;9866:139;;9593:419;;;:::o;10018:178::-;10158:30;10154:1;10146:6;10142:14;10135:54;10018:178;:::o;10202:366::-;10344:3;10365:67;10429:2;10424:3;10365:67;:::i;:::-;10358:74;;10441:93;10530:3;10441:93;:::i;:::-;10559:2;10554:3;10550:12;10543:19;;10202:366;;;:::o;10574:419::-;10740:4;10778:2;10767:9;10763:18;10755:26;;10827:9;10821:4;10817:20;10813:1;10802:9;10798:17;10791:47;10855:131;10981:4;10855:131;:::i;:::-;10847:139;;10574:419;;;:::o;10999:222::-;11139:34;11135:1;11127:6;11123:14;11116:58;11208:5;11203:2;11195:6;11191:15;11184:30;10999:222;:::o;11227:366::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:419::-;11765:4;11803:2;11792:9;11788:18;11780:26;;11852:9;11846:4;11842:20;11838:1;11827:9;11823:17;11816:47;11880:131;12006:4;11880:131;:::i;:::-;11872:139;;11599:419;;;:::o;12024:226::-;12164:34;12160:1;12152:6;12148:14;12141:58;12233:9;12228:2;12220:6;12216:15;12209:34;12024:226;:::o;12256:366::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12256:366;;;:::o;12628:419::-;12794:4;12832:2;12821:9;12817:18;12809:26;;12881:9;12875:4;12871:20;12867:1;12856:9;12852:17;12845:47;12909:131;13035:4;12909:131;:::i;:::-;12901:139;;12628:419;;;:::o;13053:224::-;13193:34;13189:1;13181:6;13177:14;13170:58;13262:7;13257:2;13249:6;13245:15;13238:32;13053:224;:::o;13283:366::-;13425:3;13446:67;13510:2;13505:3;13446:67;:::i;:::-;13439:74;;13522:93;13611:3;13522:93;:::i;:::-;13640:2;13635:3;13631:12;13624:19;;13283:366;;;:::o;13655:419::-;13821:4;13859:2;13848:9;13844:18;13836:26;;13908:9;13902:4;13898:20;13894:1;13883:9;13879:17;13872:47;13936:131;14062:4;13936:131;:::i;:::-;13928:139;;13655:419;;;:::o;14080:229::-;14220:34;14216:1;14208:6;14204:14;14197:58;14289:12;14284:2;14276:6;14272:15;14265:37;14080:229;:::o;14315:366::-;14457:3;14478:67;14542:2;14537:3;14478:67;:::i;:::-;14471:74;;14554:93;14643:3;14554:93;:::i;:::-;14672:2;14667:3;14663:12;14656:19;;14315:366;;;:::o;14687:419::-;14853:4;14891:2;14880:9;14876:18;14868:26;;14940:9;14934:4;14930:20;14926:1;14915:9;14911:17;14904:47;14968:131;15094:4;14968:131;:::i;:::-;14960:139;;14687:419;;;:::o;15112:118::-;15199:24;15217:5;15199:24;:::i;:::-;15194:3;15187:37;15112:118;;:::o;15236:553::-;15413:4;15451:3;15440:9;15436:19;15428:27;;15465:71;15533:1;15522:9;15518:17;15509:6;15465:71;:::i;:::-;15546:72;15614:2;15603:9;15599:18;15590:6;15546:72;:::i;:::-;15628;15696:2;15685:9;15681:18;15672:6;15628:72;:::i;:::-;15710;15778:2;15767:9;15763:18;15754:6;15710:72;:::i;:::-;15236:553;;;;;;;:::o;15795:173::-;15935:25;15931:1;15923:6;15919:14;15912:49;15795:173;:::o;15974:366::-;16116:3;16137:67;16201:2;16196:3;16137:67;:::i;:::-;16130:74;;16213:93;16302:3;16213:93;:::i;:::-;16331:2;16326:3;16322:12;16315:19;;15974:366;;;:::o;16346:419::-;16512:4;16550:2;16539:9;16535:18;16527:26;;16599:9;16593:4;16589:20;16585:1;16574:9;16570:17;16563:47;16627:131;16753:4;16627:131;:::i;:::-;16619:139;;16346:419;;;:::o;16771:222::-;16864:4;16902:2;16891:9;16887:18;16879:26;;16915:71;16983:1;16972:9;16968:17;16959:6;16915:71;:::i;:::-;16771:222;;;;:::o;16999:182::-;17139:34;17135:1;17127:6;17123:14;17116:58;16999:182;:::o;17187:366::-;17329:3;17350:67;17414:2;17409:3;17350:67;:::i;:::-;17343:74;;17426:93;17515:3;17426:93;:::i;:::-;17544:2;17539:3;17535:12;17528:19;;17187:366;;;:::o;17559:419::-;17725:4;17763:2;17752:9;17748:18;17740:26;;17812:9;17806:4;17802:20;17798:1;17787:9;17783:17;17776:47;17840:131;17966:4;17840:131;:::i;:::-;17832:139;;17559:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"1064000","executionCost":"1105","totalCost":"1065105"},"external":{"acceptOwnership()":"54694","getTokenFeeSettings(address)":"infinite","owner()":"2537","pendingOwner()":"2581","renounceOwnership()":"54683","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","transferOwnership(address)":"infinite","updateProtocolAddress(bytes32,address)":"31059"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","getTokenFeeSettings(address)":"8bfa0549","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","transferOwnership(address)":"f2fde38b","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"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.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GatewaySettingManager.sol\":\"GatewaySettingManager\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\t// Token-specific fee settings\\n\\tstruct TokenFeeSettings {\\n\\t\\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\\n\\t\\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\\n\\t\\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\\n\\t\\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\\n\\t}\\n\\n\\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\\n\\n\\tuint256[49] private __gap;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\tevent TokenFeeSettingsUpdated(\\n\\t\\taddress indexed token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets token-specific fee settings for stablecoins.\\n\\t * @param token The token address to configure.\\n\\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\\n\\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\\n\\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\\n\\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\\n\\t * Requirements:\\n\\t * - The token must be supported.\\n\\t * - Fee percentages must be within valid ranges.\\n\\t */\\n\\tfunction setTokenFeeSettings(\\n\\t\\taddress token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t) external onlyOwner {\\n\\t\\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\\n\\t\\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\\n\\t\\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\\n\\t\\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\\n\\t\\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\\n\\n\\t\\t_tokenFeeSettings[token] = TokenFeeSettings({\\n\\t\\t\\tsenderToProvider: senderToProvider,\\n\\t\\t\\tproviderToAggregator: providerToAggregator,\\n\\t\\t\\tsenderToAggregator: senderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx: providerToAggregatorFx\\n\\t\\t});\\n\\n\\t\\temit TokenFeeSettingsUpdated(\\n\\t\\t\\ttoken,\\n\\t\\t\\tsenderToProvider,\\n\\t\\t\\tproviderToAggregator,\\n\\t\\t\\tsenderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Gets token-specific fee settings.\\n\\t * @param token The token address to query.\\n\\t * @return TokenFeeSettings struct containing all fee settings for the token.\\n\\t */\\n\\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\\n\\t\\treturn _tokenFeeSettings[token];\\n\\t}\\n}\\n\",\"keccak256\":\"0xaf9cfac3872d9a7d9cf0c63ba1b8b2ad24598224821ce0a9c75fc2e8af7361df\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":1913,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":1915,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":1917,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":1919,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":1923,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_isTokenSupported","offset":0,"slot":"154","type":"t_mapping(t_address,t_uint256)"},{"astId":1937,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_tokenFeeSettings","offset":0,"slot":"155","type":"t_mapping(t_address,t_struct(TokenFeeSettings)1932_storage)"},{"astId":1941,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"156","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_struct(TokenFeeSettings)1932_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)","numberOfBytes":"32","value":"t_struct(TokenFeeSettings)1932_storage"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_struct(TokenFeeSettings)1932_storage":{"encoding":"inplace","label":"struct GatewaySettingManager.TokenFeeSettings","members":[{"astId":1925,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"senderToProvider","offset":0,"slot":"0","type":"t_uint256"},{"astId":1927,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"providerToAggregator","offset":0,"slot":"1","type":"t_uint256"},{"astId":1929,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"senderToAggregator","offset":0,"slot":"2","type":"t_uint256"},{"astId":1931,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"providerToAggregatorFx","offset":0,"slot":"3","type":"t_uint256"}],"numberOfBytes":"128"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/interfaces/IGateway.sol":{"IGateway":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"FxTransferFeeSplit(bytes32,uint256,uint256)":{"details":"Emitted when an FX transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","senderAmount":"The amount that goes to the sender."}},"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)":{"details":"Emitted when a local transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","providerAmount":"The amount that goes to the provider.","senderAmount":"The amount that goes to the sender."}},"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint64,uint64)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","rebatePercent":"The percentage of the aggregator fee that is given back to the provider.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}}},"kind":"dev","methods":{"createOrder(address,uint256,uint96,address,uint256,address,string)":{"details":"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.","params":{"_amount":"The amount in the decimal of `_token` to be locked.","_rate":"The rate at which the sender intends to sell `_amount` of `_token`.","_refundAddress":"The address that will receive `_amount` in `_token` when there is a need to refund.","_senderFee":"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.","_senderFeeRecipient":"The address that will receive `_senderFee` in `_token`.","_token":"The address of the token.","messageHash":"The hash of the message."},"returns":{"_orderId":"The ID of the order."}},"getOrderInfo(bytes32)":{"params":{"_orderId":"The ID of the order."},"returns":{"_0":"Order The order details."}},"isTokenSupported(address)":{"params":{"_token":"The address of the token to check."},"returns":{"_0":"bool the token is supported."}},"refund(uint256,bytes32)":{"details":"Requirements: - Only aggregators can call this function.","params":{"_fee":"The amount to be deducted from the amount to be refunded.","_orderId":"The ID of the transaction."},"returns":{"_0":"bool the refund is successful."}},"settle(bytes32,bytes32,address,uint64,uint64)":{"params":{"_liquidityProvider":"The address of the liquidity provider.","_orderId":"The ID of the transaction.","_rebatePercent":"The percentage of the aggregator fee that is given back to the provider.","_settlePercent":"The rate at which the transaction is settled.","_splitOrderId":"The ID of the split order."},"returns":{"_0":"bool the settlement is successful."}}},"title":"IGateway","version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getOrderInfo(bytes32)":"768c6ec0","isTokenSupported(address)":"75151b63","refund(uint256,bytes32)":"71eedb88","settle(bytes32,bytes32,address,uint64,uint64)":"df51b359"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"settlePercent\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"rebatePercent\",\"type\":\"uint64\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_rebatePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}}},\"kind\":\"dev\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.\",\"params\":{\"_amount\":\"The amount in the decimal of `_token` to be locked.\",\"_rate\":\"The rate at which the sender intends to sell `_amount` of `_token`.\",\"_refundAddress\":\"The address that will receive `_amount` in `_token` when there is a need to refund.\",\"_senderFee\":\"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\",\"_senderFeeRecipient\":\"The address that will receive `_senderFee` in `_token`.\",\"_token\":\"The address of the token.\",\"messageHash\":\"The hash of the message.\"},\"returns\":{\"_orderId\":\"The ID of the order.\"}},\"getOrderInfo(bytes32)\":{\"params\":{\"_orderId\":\"The ID of the order.\"},\"returns\":{\"_0\":\"Order The order details.\"}},\"isTokenSupported(address)\":{\"params\":{\"_token\":\"The address of the token to check.\"},\"returns\":{\"_0\":\"bool the token is supported.\"}},\"refund(uint256,bytes32)\":{\"details\":\"Requirements: - Only aggregators can call this function.\",\"params\":{\"_fee\":\"The amount to be deducted from the amount to be refunded.\",\"_orderId\":\"The ID of the transaction.\"},\"returns\":{\"_0\":\"bool the refund is successful.\"}},\"settle(bytes32,bytes32,address,uint64,uint64)\":{\"params\":{\"_liquidityProvider\":\"The address of the liquidity provider.\",\"_orderId\":\"The ID of the transaction.\",\"_rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"_settlePercent\":\"The rate at which the transaction is settled.\",\"_splitOrderId\":\"The ID of the split order.\"},\"returns\":{\"_0\":\"bool the settlement is successful.\"}}},\"title\":\"IGateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"notice\":\"Locks the sender's amount of token into Gateway.\"},\"getOrderInfo(bytes32)\":{\"notice\":\"Gets the details of an order.\"},\"isTokenSupported(address)\":{\"notice\":\"Checks if a token is supported by Gateway.\"},\"refund(uint256,bytes32)\":{\"notice\":\"Refunds to the specified refundable address.\"},\"settle(bytes32,bytes32,address,uint64,uint64)\":{\"notice\":\"Settles a transaction and distributes rewards accordingly.\"}},\"notice\":\"Interface for the Gateway contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IGateway.sol\":\"IGateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/interfaces/IGateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGateway {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t * @param rebatePercent The percentage of the aggregator fee that is given back to the provider.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint64 settlePercent,\\n\\t\\tuint64 rebatePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/**\\n\\t * @dev Emitted when a local transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param providerAmount The amount that goes to the provider.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent LocalTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 providerAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an FX transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent FxTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent,\\n\\t\\tuint64 _rebatePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n}\\n\",\"keccak256\":\"0xb8827e91953fc78cd46ac4dd11caa6b8b7cb0620a1fd9deb2a994f128afad475\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{"createOrder(address,uint256,uint96,address,uint256,address,string)":{"notice":"Locks the sender's amount of token into Gateway."},"getOrderInfo(bytes32)":{"notice":"Gets the details of an order."},"isTokenSupported(address)":{"notice":"Checks if a token is supported by Gateway."},"refund(uint256,bytes32)":{"notice":"Refunds to the specified refundable address."},"settle(bytes32,bytes32,address,uint64,uint64)":{"notice":"Settles a transaction and distributes rewards accordingly."}},"notice":"Interface for the Gateway contract.","version":1}}}}}} \ No newline at end of file diff --git a/artifacts/build-info/b310d8456b8a7c6a93c7198e95945bed.json b/artifacts/build-info/b310d8456b8a7c6a93c7198e95945bed.json deleted file mode 100644 index ea57895..0000000 --- a/artifacts/build-info/b310d8456b8a7c6a93c7198e95945bed.json +++ /dev/null @@ -1 +0,0 @@ -{"id":"b310d8456b8a7c6a93c7198e95945bed","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./OwnableUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\n address private _pendingOwner;\n\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n function __Ownable2Step_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable2Step_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the address of the pending owner.\n */\n function pendingOwner() public view virtual returns (address) {\n return _pendingOwner;\n }\n\n /**\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual override onlyOwner {\n _pendingOwner = newOwner;\n emit OwnershipTransferStarted(owner(), newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual override {\n delete _pendingOwner;\n super._transferOwnership(newOwner);\n }\n\n /**\n * @dev The new owner accepts the ownership transfer.\n */\n function acceptOwnership() public virtual {\n address sender = _msgSender();\n require(pendingOwner() == sender, \"Ownable2Step: caller is not the new owner\");\n _transferOwnership(sender);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal onlyInitializing {\n _transferOwnership(_msgSender());\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 require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\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 require(newOwner != address(0), \"Ownable: new owner is the zero address\");\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\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 Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\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 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\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 require(_initializing, \"Initializable: contract is not initializing\");\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 require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _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 _initializing;\n }\n}\n"},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n function __Pausable_init() internal onlyInitializing {\n __Pausable_init_unchained();\n }\n\n function __Pausable_init_unchained() internal onlyInitializing {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.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 ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the 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 override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` 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 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * 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 `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `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 * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev 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 amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"},"contracts/Gateway.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\n\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\n\n/**\n * @title Gateway\n * @notice This contract serves as a gateway for creating orders and managing settlements.\n */\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\n\tstruct fee {\n\t\tuint256 protocolFee;\n\t\tuint256 liquidityProviderAmount;\n\t}\n\n\tmapping(bytes32 => Order) private order;\n\tmapping(address => uint256) private _nonce;\n\tuint256[50] private __gap;\n\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @dev Initialize function.\n\t */\n\tfunction initialize() external initializer {\n\t\tMAX_BPS = 100_000;\n\t\t__Ownable2Step_init();\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @dev Modifier that allows only the aggregator to call a function.\n\t */\n\tmodifier onlyAggregator() {\n\t\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\n\t\t_;\n\t}\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\t/**\n\t * @dev Pause the contract.\n\t */\n\tfunction pause() external onlyOwner {\n\t\t_pause();\n\t}\n\n\t/**\n\t * @dev Unpause the contract.\n\t */\n\tfunction unpause() external onlyOwner {\n\t\t_unpause();\n\t}\n\n\t/* ##################################################################\n USER CALLS\n ################################################################## */\n\t/** @dev See {createOrder-IGateway}. */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external whenNotPaused returns (bytes32 orderId) {\n\t\t// checks that are required\n\t\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\n\n\t\t// validate messageHash\n\t\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\n\n\t\t// transfer token from msg.sender to contract\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\t// increase users nonce to avoid replay attacks\n\t\t_nonce[msg.sender]++;\n\n\t\t// generate transaction id for the transaction with chain id\n\t\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid));\n\n\t\trequire(order[orderId].sender == address(0), 'OrderAlreadyExists');\n\n\t\t// update transaction\n\t\tuint256 _protocolFee;\n\t\tif (_rate == 100) {\n\t\t\t// local transfer (rate = 1)\n\t\t\t_protocolFee = 0;\n\t\t} else {\n\t\t\t// fx transfer (rate != 1) - use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\t\t\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\n\t\t\t_protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\n\t\t}\n\t\torder[orderId] = Order({\n\t\t\tsender: msg.sender,\n\t\t\ttoken: _token,\n\t\t\tsenderFeeRecipient: _senderFeeRecipient,\n\t\t\tsenderFee: _senderFee,\n\t\t\tprotocolFee: _protocolFee,\n\t\t\tisFulfilled: false,\n\t\t\tisRefunded: false,\n\t\t\trefundAddress: _refundAddress,\n\t\t\tcurrentBPS: uint64(MAX_BPS),\n\t\t\tamount: _amount\n\t\t});\n\n\t\t// emit order created event\n\t\temit OrderCreated(\n\t\t\t_refundAddress,\n\t\t\t_token,\n\t\t\torder[orderId].amount,\n\t\t\t_protocolFee,\n\t\t\torderId,\n\t\t\t_rate,\n\t\t\tmessageHash\n\t\t);\n\t}\n\n\t/**\n\t * @dev Internal function to handle order creation.\n\t * @param _token The address of the token being traded.\n\t * @param _amount The amount of tokens being traded.\n\t * @param _refundAddress The address to refund the tokens in case of cancellation.\n\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\n\t * @param _senderFee The amount of the sender fee.\n\t */\n\tfunction _handler(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _refundAddress,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal view {\n\t\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\n\t\trequire(_amount != 0, 'AmountIsZero');\n\t\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\n\n\t\tif (_senderFee != 0) {\n\t\t\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\n\t\t}\n\t}\n\n\t/* ##################################################################\n AGGREGATOR FUNCTIONS\n ################################################################## */\n\t/** @dev See {settle-IGateway}. */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\n\t\t// load the token into memory\n\t\taddress token = order[_orderId].token;\n\n\t\t// subtract sum of amount based on the input _settlePercent\n\t\tuint256 currentOrderBPS = order[_orderId].currentBPS;\n\t\torder[_orderId].currentBPS -= _settlePercent;\n\n\t\tif (order[_orderId].currentBPS == 0) {\n\t\t\t// update the transaction to be fulfilled\n\t\t\torder[_orderId].isFulfilled = true;\n\n\t\t\tif (order[_orderId].senderFee != 0) {\n\t\t\t\t// Handle fee splitting based on transfer type\n\t\t\t\tif (order[_orderId].protocolFee == 0) {\n\t\t\t\t\t// local transfer - split sender fee\n\t\t\t\t\t_handleLocalTransferFeeSplitting(_orderId, _liquidityProvider);\n\t\t\t\t} else {\n\t\t\t\t\t// fx transfer - sender keeps all fee\n\t\t\t\t\t_handleFxTransferFeeSplitting(_orderId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// transfer to liquidity provider\n\t\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) /\n\t\t\tcurrentOrderBPS;\n\t\torder[_orderId].amount -= liquidityProviderAmount;\n\n\t\tif (order[_orderId].protocolFee > 0) {\n\t\t\t// FX transfer - use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\t\tuint256 protocolFee = (liquidityProviderAmount * settings.providerToAggregatorFx) /\n\t\t\t\tMAX_BPS;\n\t\t\tliquidityProviderAmount -= protocolFee;\n\n\t\t\t// transfer protocol fee\n\t\t\tIERC20(token).transfer(treasuryAddress, protocolFee);\n\t\t}\n\n\t\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\n\n\t\t// emit settled event\n\t\temit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {refund-IGateway}. */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\n\n\t\tif (_fee > 0) {\n\t\t\t// transfer refund fee to the treasury\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\n\t\t}\n\n\t\t// reset state values\n\t\torder[_orderId].isRefunded = true;\n\t\torder[_orderId].currentBPS = 0;\n\n\t\t// deduct fee from order amount\n\t\tuint256 refundAmount = order[_orderId].amount - _fee;\n\n\t\t// transfer refund amount and sender fee to the refund address\n\t\tIERC20(order[_orderId].token).transfer(\n\t\t\torder[_orderId].refundAddress,\n\t\t\trefundAmount + order[_orderId].senderFee\n\t\t);\n\n\t\t// emit refunded event\n\t\temit OrderRefunded(_fee, _orderId);\n\n\t\treturn true;\n\t}\n\n\t/* ##################################################################\n VIEW CALLS\n ################################################################## */\n\t/** @dev See {getOrderInfo-IGateway}. */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\n\t\treturn order[_orderId];\n\t}\n\n\t/** @dev See {isTokenSupported-IGateway}. */\n\tfunction isTokenSupported(address _token) external view returns (bool) {\n\t\tif (_isTokenSupported[_token] == 1) return true;\n\t\treturn false;\n\t}\n\n\t/** @dev See {getFeeDetails-IGateway}. */\n\tfunction getFeeDetails() external view returns (uint64, uint256) {\n\t\treturn (protocolFeePercent, MAX_BPS);\n\t}\n\n\t/**\n\t * @dev Handles fee splitting for local transfers (rate = 1).\n\t * @param _orderId The order ID to process.\n\t * @param _liquidityProvider The address of the liquidity provider who fulfilled the order.\n\t */\n\tfunction _handleLocalTransferFeeSplitting(\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider\n\t) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\tuint256 senderFee = order[_orderId].senderFee;\n\n\t\t// Calculate splits based on config\n\t\tuint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS;\n\t\tuint256 aggregatorAmount = (providerAmount * settings.providerToAggregator) / MAX_BPS;\n\t\tuint256 senderAmount = senderFee - providerAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\tsenderAmount\n\t\t\t);\n\t\t}\n\n\t\t// Transfer provider portion to the liquidity provider who fulfilled the order\n\t\tif (providerAmount - aggregatorAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\t_liquidityProvider,\n\t\t\t\tproviderAmount - aggregatorAmount\n\t\t\t);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\n\t\temit LocalTransferFeeSplit(\n\t\t\t_orderId,\n\t\t\tsenderAmount,\n\t\t\tproviderAmount - aggregatorAmount,\n\t\t\taggregatorAmount\n\t\t);\n\t}\n\n\t/**\n\t * @dev Handles fee splitting for FX transfers (rate != 1).\n\t * @param _orderId The order ID to process.\n\t */\n\tfunction _handleFxTransferFeeSplitting(bytes32 _orderId) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\tuint256 senderFee = order[_orderId].senderFee;\n\n\t\t// Calculate sender portion based on senderToAggregator setting\n\t\tuint256 senderAmount = (senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS;\n\t\tuint256 aggregatorAmount = senderFee - senderAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\tsenderAmount\n\t\t\t);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount > 0) {\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\n\t\temit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount);\n\t}\n}\n"},"contracts/GatewaySettingManager.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\n\n/**\n * @title GatewaySettingManager\n * @dev This contract manages the settings and configurations for the Gateway protocol.\n */\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\n\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\n\tuint256 internal MAX_BPS;\n\tuint64 internal protocolFeePercent;\n\taddress internal treasuryAddress;\n\taddress internal _aggregatorAddress;\n\tmapping(address => uint256) internal _isTokenSupported;\n\n\t// Token-specific fee settings\n\tstruct TokenFeeSettings {\n\t\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\n\t\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\n\t\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\n\t\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\n\t}\n\n\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\n\n\tuint256[49] private __gap;\n\n\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\n\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\n\tevent SetFeeRecipient(address indexed treasuryAddress);\n\tevent TokenFeeSettingsUpdated(\n\t\taddress indexed token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t);\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\n\t/**\n\t * @dev Sets the boolean value for a specific setting.\n\t * @param what The setting to be updated.\n\t * @param value The address or value associated with the setting.\n\t * @param status The boolean value to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\trequire(status == 1 || status == 2, 'Gateway: invalid status');\n\t\tif (what == 'token') {\n\t\t\t_isTokenSupported[value] = status;\n\t\t\temit SettingManagerBool(what, value, status);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Updates a protocol address.\n\t * @param what The address type to be updated (treasury or aggregator).\n\t * @param value The new address to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\tbool updated;\n\t\tif (what == 'treasury') {\n\t\t\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\n\t\t\ttreasuryAddress = value;\n\t\t\tupdated = true;\n\t\t} else if (what == 'aggregator') {\n\t\t\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\n\t\t\t_aggregatorAddress = value;\n\t\t\tupdated = true;\n\t\t}\n\t\tif (updated) {\n\t\t\temit ProtocolAddressUpdated(what, value);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Sets token-specific fee settings for stablecoins.\n\t * @param token The token address to configure.\n\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n\t * Requirements:\n\t * - The token must be supported.\n\t * - Fee percentages must be within valid ranges.\n\t */\n\tfunction setTokenFeeSettings(\n\t\taddress token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t) external onlyOwner {\n\t\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\n\t\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\n\t\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\n\t\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\n\t\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\n\n\t\t_tokenFeeSettings[token] = TokenFeeSettings({\n\t\t\tsenderToProvider: senderToProvider,\n\t\t\tproviderToAggregator: providerToAggregator,\n\t\t\tsenderToAggregator: senderToAggregator,\n\t\t\tproviderToAggregatorFx: providerToAggregatorFx\n\t\t});\n\n\t\temit TokenFeeSettingsUpdated(\n\t\t\ttoken,\n\t\t\tsenderToProvider,\n\t\t\tproviderToAggregator,\n\t\t\tsenderToAggregator,\n\t\t\tproviderToAggregatorFx\n\t\t);\n\t}\n\n\t/**\n\t * @dev Gets token-specific fee settings.\n\t * @param token The token address to query.\n\t * @return TokenFeeSettings struct containing all fee settings for the token.\n\t */\n\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\n\t\treturn _tokenFeeSettings[token];\n\t}\n}\n"},"contracts/interfaces/IGateway.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGateway {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t */\n\tevent OrderSettled(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint96 settlePercent\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\n\n\t/**\n\t * @dev Emitted when a local transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param providerAmount The amount that goes to the provider.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent LocalTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 providerAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/**\n\t * @dev Emitted when an FX transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent FxTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n\n\t/**\n\t * @notice Gets the fee details of Gateway.\n\t * @return protocolReward The protocol reward amount.\n\t * @return max_bps The maximum basis points.\n\t */\n\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\n}\n"},"contracts/mocks/MockUSDC.sol":{"content":"//SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\n/// @dev Mock mintable USDC\ncontract MockUSDT is ERC20 {\n constructor() ERC20(\"MockUDSC\", \"MUSDC\") {\n _mint(msg.sender, 1_000_000E18);\n }\n\n function mint(uint256 _amount) external {\n _mint(msg.sender, _amount);\n }\n\n function burn(uint256 _amount) external {\n _burn(msg.sender, _amount);\n }\n\n function burnAll() external {\n uint256 _balanceOf = balanceOf(msg.sender);\n require(_balanceOf > 0, \"MockUSDT: Nothing to burn\");\n _burn(msg.sender, _balanceOf);\n }\n}\n"}},"settings":{"optimizer":{"enabled":false,"runs":200},"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","devdoc","userdoc","storageLayout","evm.gasEstimates"],"":["ast"]}},"metadata":{"useLiteralContent":true}}},"output":{"sources":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":107,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:0"},{"absolutePath":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol","file":"./OwnableUpgradeable.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":240,"src":"132:34:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":409,"src":"167:63:0","symbolAliases":[{"foreign":{"id":3,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"175:13:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"Initializable","nameLocations":["719:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"719:13:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"719:13:0"},{"baseName":{"id":8,"name":"OwnableUpgradeable","nameLocations":["734:18:0"],"nodeType":"IdentifierPath","referencedDeclaration":239,"src":"734:18:0"},"id":9,"nodeType":"InheritanceSpecifier","src":"734:18:0"}],"canonicalName":"Ownable2StepUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"232:441:0","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 By default, the owner account will be the one that deploys the contract. 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":106,"linearizedBaseContracts":[106,239,917,408],"name":"Ownable2StepUpgradeable","nameLocation":"692:23:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":11,"mutability":"mutable","name":"_pendingOwner","nameLocation":"775:13:0","nodeType":"VariableDeclaration","scope":106,"src":"759:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"759:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700","id":17,"name":"OwnershipTransferStarted","nameLocation":"801:24:0","nodeType":"EventDefinition","parameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"842:13:0","nodeType":"VariableDeclaration","scope":17,"src":"826:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"873:8:0","nodeType":"VariableDeclaration","scope":17,"src":"857:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14,"name":"address","nodeType":"ElementaryTypeName","src":"857:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"825:57:0"},"src":"795:88:0"},{"body":{"id":25,"nodeType":"Block","src":"946:43:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":22,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"956:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"956:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24,"nodeType":"ExpressionStatement","src":"956:26:0"}]},"id":26,"implemented":true,"kind":"function","modifiers":[{"id":20,"kind":"modifierInvocation","modifierName":{"id":19,"name":"onlyInitializing","nameLocations":["929:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"929:16:0"},"nodeType":"ModifierInvocation","src":"929:16:0"}],"name":"__Ownable2Step_init","nameLocation":"898:19:0","nodeType":"FunctionDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[],"src":"917:2:0"},"returnParameters":{"id":21,"nodeType":"ParameterList","parameters":[],"src":"946:0:0"},"scope":106,"src":"889:100:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":31,"nodeType":"Block","src":"1062:7:0","statements":[]},"id":32,"implemented":true,"kind":"function","modifiers":[{"id":29,"kind":"modifierInvocation","modifierName":{"id":28,"name":"onlyInitializing","nameLocations":["1045:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1045:16:0"},"nodeType":"ModifierInvocation","src":"1045:16:0"}],"name":"__Ownable2Step_init_unchained","nameLocation":"1004:29:0","nodeType":"FunctionDefinition","parameters":{"id":27,"nodeType":"ParameterList","parameters":[],"src":"1033:2:0"},"returnParameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1062:0:0"},"scope":106,"src":"995:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":40,"nodeType":"Block","src":"1206:37:0","statements":[{"expression":{"id":38,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1223:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":37,"id":39,"nodeType":"Return","src":"1216:20:0"}]},"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"1074:65:0","text":" @dev Returns the address of the pending owner."},"functionSelector":"e30c3978","id":41,"implemented":true,"kind":"function","modifiers":[],"name":"pendingOwner","nameLocation":"1153:12:0","nodeType":"FunctionDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[],"src":"1165:2:0"},"returnParameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":41,"src":"1197:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":35,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1196:9:0"},"scope":106,"src":"1144:99:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[213],"body":{"id":60,"nodeType":"Block","src":"1515:99:0","statements":[{"expression":{"id":52,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":50,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1525:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":51,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1541:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1525:24:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":53,"nodeType":"ExpressionStatement","src":"1525:24:0"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":55,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1589:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1589:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":57,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1598:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":54,"name":"OwnershipTransferStarted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17,"src":"1564:24:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":59,"nodeType":"EmitStatement","src":"1559:48:0"}]},"documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"1249:182:0","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."},"functionSelector":"f2fde38b","id":61,"implemented":true,"kind":"function","modifiers":[{"id":48,"kind":"modifierInvocation","modifierName":{"id":47,"name":"onlyOwner","nameLocations":["1505:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1505:9:0"},"nodeType":"ModifierInvocation","src":"1505:9:0"}],"name":"transferOwnership","nameLocation":"1445:17:0","nodeType":"FunctionDefinition","overrides":{"id":46,"nodeType":"OverrideSpecifier","overrides":[],"src":"1496:8:0"},"parameters":{"id":45,"nodeType":"ParameterList","parameters":[{"constant":false,"id":44,"mutability":"mutable","name":"newOwner","nameLocation":"1471:8:0","nodeType":"VariableDeclaration","scope":61,"src":"1463:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":43,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:18:0"},"returnParameters":{"id":49,"nodeType":"ParameterList","parameters":[],"src":"1515:0:0"},"scope":106,"src":"1436:178:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[233],"body":{"id":77,"nodeType":"Block","src":"1870:81:0","statements":[{"expression":{"id":69,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1880:20:0","subExpression":{"id":68,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1887:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":70,"nodeType":"ExpressionStatement","src":"1880:20:0"},{"expression":{"arguments":[{"id":74,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":64,"src":"1935:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":71,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1910:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Ownable2StepUpgradeable_$106_$","typeString":"type(contract super Ownable2StepUpgradeable)"}},"id":73,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1916:18:0","memberName":"_transferOwnership","nodeType":"MemberAccess","referencedDeclaration":233,"src":"1910:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":76,"nodeType":"ExpressionStatement","src":"1910:34:0"}]},"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"1620:173:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n Internal function without access restriction."},"id":78,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"1807:18:0","nodeType":"FunctionDefinition","overrides":{"id":66,"nodeType":"OverrideSpecifier","overrides":[],"src":"1861:8:0"},"parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"newOwner","nameLocation":"1834:8:0","nodeType":"VariableDeclaration","scope":78,"src":"1826:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"1826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1825:18:0"},"returnParameters":{"id":67,"nodeType":"ParameterList","parameters":[],"src":"1870:0:0"},"scope":106,"src":"1798:153:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":99,"nodeType":"Block","src":"2073:170:0","statements":[{"assignments":[83],"declarations":[{"constant":false,"id":83,"mutability":"mutable","name":"sender","nameLocation":"2091:6:0","nodeType":"VariableDeclaration","scope":99,"src":"2083:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":82,"name":"address","nodeType":"ElementaryTypeName","src":"2083:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":86,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":84,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2100:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2100:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2083:29:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":91,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"2130:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2130:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":90,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2148:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2130:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e6572","id":92,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2156:43:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""},"value":"Ownable2Step: caller is not the new owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""}],"id":87,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2122:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":93,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2122:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":94,"nodeType":"ExpressionStatement","src":"2122:78:0"},{"expression":{"arguments":[{"id":96,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2229:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":95,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[78],"referencedDeclaration":78,"src":"2210:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":97,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2210:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":98,"nodeType":"ExpressionStatement","src":"2210:26:0"}]},"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"1957:69:0","text":" @dev The new owner accepts the ownership transfer."},"functionSelector":"79ba5097","id":100,"implemented":true,"kind":"function","modifiers":[],"name":"acceptOwnership","nameLocation":"2040:15:0","nodeType":"FunctionDefinition","parameters":{"id":80,"nodeType":"ParameterList","parameters":[],"src":"2055:2:0"},"returnParameters":{"id":81,"nodeType":"ParameterList","parameters":[],"src":"2073:0:0"},"scope":106,"src":"2031:212:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"constant":false,"documentation":{"id":101,"nodeType":"StructuredDocumentation","src":"2249:254:0","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":105,"mutability":"mutable","name":"__gap","nameLocation":"2528:5:0","nodeType":"VariableDeclaration","scope":106,"src":"2508:25:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"2508:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":104,"length":{"hexValue":"3439","id":103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2516:2:0","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"2508:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":107,"src":"674:1862:0","usedErrors":[],"usedEvents":[17,124,254]}],"src":"107:2430:0"},"id":0},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"OwnableUpgradeable":[239]},"id":240,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":108,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:1"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":918,"src":"127:41:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":111,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":409,"src":"169:63:1","symbolAliases":[{"foreign":{"id":110,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"177:13:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":113,"name":"Initializable","nameLocations":["769:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"769:13:1"},"id":114,"nodeType":"InheritanceSpecifier","src":"769:13:1"},{"baseName":{"id":115,"name":"ContextUpgradeable","nameLocations":["784:18:1"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"784:18:1"},"id":116,"nodeType":"InheritanceSpecifier","src":"784:18:1"}],"canonicalName":"OwnableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"234:494:1","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 By default, the owner account will be the one that deploys the contract. This\n can 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":239,"linearizedBaseContracts":[239,917,408],"name":"OwnableUpgradeable","nameLocation":"747:18:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":118,"mutability":"mutable","name":"_owner","nameLocation":"825:6:1","nodeType":"VariableDeclaration","scope":239,"src":"809:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"809:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":124,"name":"OwnershipTransferred","nameLocation":"844:20:1","nodeType":"EventDefinition","parameters":{"id":123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"881:13:1","nodeType":"VariableDeclaration","scope":124,"src":"865:29:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":119,"name":"address","nodeType":"ElementaryTypeName","src":"865:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":122,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"912:8:1","nodeType":"VariableDeclaration","scope":124,"src":"896:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":121,"name":"address","nodeType":"ElementaryTypeName","src":"896:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"864:57:1"},"src":"838:84:1"},{"body":{"id":133,"nodeType":"Block","src":"1076:43:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":130,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"1086:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1086:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":132,"nodeType":"ExpressionStatement","src":"1086:26:1"}]},"documentation":{"id":125,"nodeType":"StructuredDocumentation","src":"928:91:1","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":134,"implemented":true,"kind":"function","modifiers":[{"id":128,"kind":"modifierInvocation","modifierName":{"id":127,"name":"onlyInitializing","nameLocations":["1059:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1059:16:1"},"nodeType":"ModifierInvocation","src":"1059:16:1"}],"name":"__Ownable_init","nameLocation":"1033:14:1","nodeType":"FunctionDefinition","parameters":{"id":126,"nodeType":"ParameterList","parameters":[],"src":"1047:2:1"},"returnParameters":{"id":129,"nodeType":"ParameterList","parameters":[],"src":"1076:0:1"},"scope":239,"src":"1024:95:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":144,"nodeType":"Block","src":"1187:49:1","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":140,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1216:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1216:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":139,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"1197:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1197:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":143,"nodeType":"ExpressionStatement","src":"1197:32:1"}]},"id":145,"implemented":true,"kind":"function","modifiers":[{"id":137,"kind":"modifierInvocation","modifierName":{"id":136,"name":"onlyInitializing","nameLocations":["1170:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1170:16:1"},"nodeType":"ModifierInvocation","src":"1170:16:1"}],"name":"__Ownable_init_unchained","nameLocation":"1134:24:1","nodeType":"FunctionDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[],"src":"1158:2:1"},"returnParameters":{"id":138,"nodeType":"ParameterList","parameters":[],"src":"1187:0:1"},"scope":239,"src":"1125:111:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":152,"nodeType":"Block","src":"1345:41:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":148,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1355:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1355:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":150,"nodeType":"ExpressionStatement","src":"1355:13:1"},{"id":151,"nodeType":"PlaceholderStatement","src":"1378:1:1"}]},"documentation":{"id":146,"nodeType":"StructuredDocumentation","src":"1242:77:1","text":" @dev Throws if called by any account other than the owner."},"id":153,"name":"onlyOwner","nameLocation":"1333:9:1","nodeType":"ModifierDefinition","parameters":{"id":147,"nodeType":"ParameterList","parameters":[],"src":"1342:2:1"},"src":"1324:62:1","virtual":false,"visibility":"internal"},{"body":{"id":161,"nodeType":"Block","src":"1517:30:1","statements":[{"expression":{"id":159,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1534:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":158,"id":160,"nodeType":"Return","src":"1527:13:1"}]},"documentation":{"id":154,"nodeType":"StructuredDocumentation","src":"1392:65:1","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":162,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1471:5:1","nodeType":"FunctionDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[],"src":"1476:2:1"},"returnParameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":162,"src":"1508:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1508:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1507:9:1"},"scope":239,"src":"1462:85:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":175,"nodeType":"Block","src":"1665:85:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":167,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1683:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1683:7:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":169,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1694:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1694:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1683:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1708:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":166,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1675:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":174,"nodeType":"ExpressionStatement","src":"1675:68:1"}]},"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"1553:62:1","text":" @dev Throws if the sender is not the owner."},"id":176,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1629:11:1","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"1640:2:1"},"returnParameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"1665:0:1"},"scope":239,"src":"1620:130:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":189,"nodeType":"Block","src":"2139:47:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2176:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2168:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":183,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:1","typeDescriptions":{}}},"id":186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":182,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2149:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2149:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":188,"nodeType":"ExpressionStatement","src":"2149:30:1"}]},"documentation":{"id":177,"nodeType":"StructuredDocumentation","src":"1756:324:1","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":190,"implemented":true,"kind":"function","modifiers":[{"id":180,"kind":"modifierInvocation","modifierName":{"id":179,"name":"onlyOwner","nameLocations":["2129:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2129:9:1"},"nodeType":"ModifierInvocation","src":"2129:9:1"}],"name":"renounceOwnership","nameLocation":"2094:17:1","nodeType":"FunctionDefinition","parameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"2111:2:1"},"returnParameters":{"id":181,"nodeType":"ParameterList","parameters":[],"src":"2139:0:1"},"scope":239,"src":"2085:101:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":212,"nodeType":"Block","src":"2405:128:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2423:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2443:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2435:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":200,"name":"address","nodeType":"ElementaryTypeName","src":"2435:7:1","typeDescriptions":{}}},"id":203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2423:22:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2447:40:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":198,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2415:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2415:73:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":207,"nodeType":"ExpressionStatement","src":"2415:73:1"},{"expression":{"arguments":[{"id":209,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2517:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":208,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2498:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2498:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":211,"nodeType":"ExpressionStatement","src":"2498:28:1"}]},"documentation":{"id":191,"nodeType":"StructuredDocumentation","src":"2192:138:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":213,"implemented":true,"kind":"function","modifiers":[{"id":196,"kind":"modifierInvocation","modifierName":{"id":195,"name":"onlyOwner","nameLocations":["2395:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2395:9:1"},"nodeType":"ModifierInvocation","src":"2395:9:1"}],"name":"transferOwnership","nameLocation":"2344:17:1","nodeType":"FunctionDefinition","parameters":{"id":194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":193,"mutability":"mutable","name":"newOwner","nameLocation":"2370:8:1","nodeType":"VariableDeclaration","scope":213,"src":"2362:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":192,"name":"address","nodeType":"ElementaryTypeName","src":"2362:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2361:18:1"},"returnParameters":{"id":197,"nodeType":"ParameterList","parameters":[],"src":"2405:0:1"},"scope":239,"src":"2335:198:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":232,"nodeType":"Block","src":"2750:124:1","statements":[{"assignments":[220],"declarations":[{"constant":false,"id":220,"mutability":"mutable","name":"oldOwner","nameLocation":"2768:8:1","nodeType":"VariableDeclaration","scope":232,"src":"2760:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":219,"name":"address","nodeType":"ElementaryTypeName","src":"2760:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":222,"initialValue":{"id":221,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2779:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2760:25:1"},{"expression":{"id":225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":223,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2795:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":224,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2804:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2795:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":226,"nodeType":"ExpressionStatement","src":"2795:17:1"},{"eventCall":{"arguments":[{"id":228,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"2848:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":229,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2858:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"2827:20:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2827:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":231,"nodeType":"EmitStatement","src":"2822:45:1"}]},"documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"2539:143:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":233,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2696:18:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":216,"mutability":"mutable","name":"newOwner","nameLocation":"2723:8:1","nodeType":"VariableDeclaration","scope":233,"src":"2715:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":215,"name":"address","nodeType":"ElementaryTypeName","src":"2715:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2714:18:1"},"returnParameters":{"id":218,"nodeType":"ParameterList","parameters":[],"src":"2750:0:1"},"scope":239,"src":"2687:187:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":234,"nodeType":"StructuredDocumentation","src":"2880:254:1","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":238,"mutability":"mutable","name":"__gap","nameLocation":"3159:5:1","nodeType":"VariableDeclaration","scope":239,"src":"3139:25:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":235,"name":"uint256","nodeType":"ElementaryTypeName","src":"3139:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":237,"length":{"hexValue":"3439","id":236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:2:1","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3139:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":240,"src":"729:2438:1","usedErrors":[],"usedEvents":[124,254]}],"src":"102:3066:1"},"id":1},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","exportedSymbols":{"AddressUpgradeable":[866],"Initializable":[408]},"id":409,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":241,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"113:23:2"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","file":"../../utils/AddressUpgradeable.sol","id":242,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":409,"sourceUnit":867,"src":"138:44:2","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":243,"nodeType":"StructuredDocumentation","src":"184: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":408,"linearizedBaseContracts":[408],"name":"Initializable","nameLocation":"2412:13:2","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"2432:109:2","text":" @dev Indicates that the contract has been initialized.\n @custom:oz-retyped-from bool"},"id":246,"mutability":"mutable","name":"_initialized","nameLocation":"2560:12:2","nodeType":"VariableDeclaration","scope":408,"src":"2546:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":245,"name":"uint8","nodeType":"ElementaryTypeName","src":"2546:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"constant":false,"documentation":{"id":247,"nodeType":"StructuredDocumentation","src":"2579:91:2","text":" @dev Indicates that the contract is in the process of being initialized."},"id":249,"mutability":"mutable","name":"_initializing","nameLocation":"2688:13:2","nodeType":"VariableDeclaration","scope":408,"src":"2675:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":248,"name":"bool","nodeType":"ElementaryTypeName","src":"2675:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"anonymous":false,"documentation":{"id":250,"nodeType":"StructuredDocumentation","src":"2708:90:2","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498","id":254,"name":"Initialized","nameLocation":"2809:11:2","nodeType":"EventDefinition","parameters":{"id":253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"2827:7:2","nodeType":"VariableDeclaration","scope":254,"src":"2821:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":251,"name":"uint8","nodeType":"ElementaryTypeName","src":"2821:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2820:15:2"},"src":"2803:33:2"},{"body":{"id":309,"nodeType":"Block","src":"3269:483:2","statements":[{"assignments":[258],"declarations":[{"constant":false,"id":258,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"3284:14:2","nodeType":"VariableDeclaration","scope":309,"src":"3279:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":257,"name":"bool","nodeType":"ElementaryTypeName","src":"3279:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":261,"initialValue":{"id":260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3301:14:2","subExpression":{"id":259,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3302:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3279:36:2"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":263,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3347:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":264,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3365:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3380:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3365:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3347:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3346:36:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3387:45:2","subExpression":{"arguments":[{"arguments":[{"id":273,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3426:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}],"id":272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3418:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"3418:7:2","typeDescriptions":{}}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":269,"name":"AddressUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":866,"src":"3388:18:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AddressUpgradeable_$866_$","typeString":"type(library AddressUpgradeable)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3407:10:2","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":554,"src":"3388:29:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3388:44:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":277,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3436:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3452:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3436:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3387:66:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3386:68:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3346:108:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3468:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":262,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3325:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3325:201:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"ExpressionStatement","src":"3325:201:2"},{"expression":{"id":288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":286,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3536:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3551:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3536:16:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":289,"nodeType":"ExpressionStatement","src":"3536:16:2"},{"condition":{"id":290,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3566:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":296,"nodeType":"IfStatement","src":"3562:65:2","trueBody":{"id":295,"nodeType":"Block","src":"3582:45:2","statements":[{"expression":{"id":293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":291,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3596:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3612:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3596:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":294,"nodeType":"ExpressionStatement","src":"3596:20:2"}]}},{"id":297,"nodeType":"PlaceholderStatement","src":"3636:1:2"},{"condition":{"id":298,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3651:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":308,"nodeType":"IfStatement","src":"3647:99:2","trueBody":{"id":307,"nodeType":"Block","src":"3667:79:2","statements":[{"expression":{"id":301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":299,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3681:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3697:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3681:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":302,"nodeType":"ExpressionStatement","src":"3681:21:2"},{"eventCall":{"arguments":[{"hexValue":"31","id":304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3733: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":303,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"3721:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3721:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":306,"nodeType":"EmitStatement","src":"3716:19:2"}]}}]},"documentation":{"id":255,"nodeType":"StructuredDocumentation","src":"2842:399: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 functions marked with `initializer` can be nested in the context of a\n constructor.\n Emits an {Initialized} event."},"id":310,"name":"initializer","nameLocation":"3255:11:2","nodeType":"ModifierDefinition","parameters":{"id":256,"nodeType":"ParameterList","parameters":[],"src":"3266:2:2"},"src":"3246:506:2","virtual":false,"visibility":"internal"},{"body":{"id":342,"nodeType":"Block","src":"4863:255:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4881:14:2","subExpression":{"id":316,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"4882:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":318,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4899:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":319,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4914:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4899:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4881:40:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4923:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":315,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4873:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4873:99:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4873:99:2"},{"expression":{"id":327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":325,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4982:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":326,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4997:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4982:22:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":328,"nodeType":"ExpressionStatement","src":"4982:22:2"},{"expression":{"id":331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":329,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5014:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5030:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5014:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":332,"nodeType":"ExpressionStatement","src":"5014:20:2"},{"id":333,"nodeType":"PlaceholderStatement","src":"5044:1:2"},{"expression":{"id":336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":334,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5055:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5071:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5055:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":337,"nodeType":"ExpressionStatement","src":"5055:21:2"},{"eventCall":{"arguments":[{"id":339,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"5103:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":338,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"5091:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5091:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":341,"nodeType":"EmitStatement","src":"5086:25:2"}]},"documentation":{"id":311,"nodeType":"StructuredDocumentation","src":"3758:1062: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 255 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":343,"name":"reinitializer","nameLocation":"4834:13:2","nodeType":"ModifierDefinition","parameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":313,"mutability":"mutable","name":"version","nameLocation":"4854:7:2","nodeType":"VariableDeclaration","scope":343,"src":"4848:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":312,"name":"uint8","nodeType":"ElementaryTypeName","src":"4848:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4847:15:2"},"src":"4825:293:2","virtual":false,"visibility":"internal"},{"body":{"id":352,"nodeType":"Block","src":"5356:97:2","statements":[{"expression":{"arguments":[{"id":347,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5374:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420696e697469616c697a696e67","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5389:45:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""},"value":"Initializable: contract is not initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""}],"id":346,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5366:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5366:69:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":350,"nodeType":"ExpressionStatement","src":"5366:69:2"},{"id":351,"nodeType":"PlaceholderStatement","src":"5445:1:2"}]},"documentation":{"id":344,"nodeType":"StructuredDocumentation","src":"5124: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":353,"name":"onlyInitializing","nameLocation":"5337:16:2","nodeType":"ModifierDefinition","parameters":{"id":345,"nodeType":"ParameterList","parameters":[],"src":"5353:2:2"},"src":"5328:125:2","virtual":false,"visibility":"internal"},{"body":{"id":388,"nodeType":"Block","src":"5988:231:2","statements":[{"expression":{"arguments":[{"id":359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6006:14:2","subExpression":{"id":358,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6007:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e67","id":360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6022:41:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""},"value":"Initializable: contract is initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""}],"id":357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5998:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5998:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":362,"nodeType":"ExpressionStatement","src":"5998:66:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":363,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6078:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6099:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":365,"name":"uint8","nodeType":"ElementaryTypeName","src":"6099:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":364,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6094:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6094:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6106:3:2","memberName":"max","nodeType":"MemberAccess","src":"6094:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6078:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":387,"nodeType":"IfStatement","src":"6074:139:2","trueBody":{"id":386,"nodeType":"Block","src":"6111:102:2","statements":[{"expression":{"id":376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":370,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6125:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6145:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":372,"name":"uint8","nodeType":"ElementaryTypeName","src":"6145:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":371,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6140:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6152:3:2","memberName":"max","nodeType":"MemberAccess","src":"6140:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6125:30:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":377,"nodeType":"ExpressionStatement","src":"6125:30:2"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6191:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":380,"name":"uint8","nodeType":"ElementaryTypeName","src":"6191:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":379,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6186:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6186:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6198:3:2","memberName":"max","nodeType":"MemberAccess","src":"6186:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":378,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"6174:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6174:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":385,"nodeType":"EmitStatement","src":"6169:33:2"}]}}]},"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"5459: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":389,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"5948:20:2","nodeType":"FunctionDefinition","parameters":{"id":355,"nodeType":"ParameterList","parameters":[],"src":"5968:2:2"},"returnParameters":{"id":356,"nodeType":"ParameterList","parameters":[],"src":"5988:0:2"},"scope":408,"src":"5939:280:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":397,"nodeType":"Block","src":"6393:36:2","statements":[{"expression":{"id":395,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6410:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":394,"id":396,"nodeType":"Return","src":"6403:19:2"}]},"documentation":{"id":390,"nodeType":"StructuredDocumentation","src":"6225:99:2","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":398,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"6338:22:2","nodeType":"FunctionDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[],"src":"6360:2:2"},"returnParameters":{"id":394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":398,"src":"6386:5:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":392,"name":"uint8","nodeType":"ElementaryTypeName","src":"6386:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6385:7:2"},"scope":408,"src":"6329:100:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":406,"nodeType":"Block","src":"6601:37:2","statements":[{"expression":{"id":404,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6618:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":403,"id":405,"nodeType":"Return","src":"6611:20:2"}]},"documentation":{"id":399,"nodeType":"StructuredDocumentation","src":"6435:105:2","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":407,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"6554:15:2","nodeType":"FunctionDefinition","parameters":{"id":400,"nodeType":"ParameterList","parameters":[],"src":"6569:2:2"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":407,"src":"6595:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":401,"name":"bool","nodeType":"ElementaryTypeName","src":"6595:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6594:6:2"},"scope":408,"src":"6545:93:2","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":409,"src":"2394:4246:2","usedErrors":[],"usedEvents":[254]}],"src":"113:6528:2"},"id":2},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"PausableUpgradeable":[536]},"id":537,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":410,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:3"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":411,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":918,"src":"130:41:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":413,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":409,"src":"172:63:3","symbolAliases":[{"foreign":{"id":412,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"180:13:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":415,"name":"Initializable","nameLocations":["718:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"718:13:3"},"id":416,"nodeType":"InheritanceSpecifier","src":"718:13:3"},{"baseName":{"id":417,"name":"ContextUpgradeable","nameLocations":["733:18:3"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"733:18:3"},"id":418,"nodeType":"InheritanceSpecifier","src":"733:18:3"}],"canonicalName":"PausableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":414,"nodeType":"StructuredDocumentation","src":"237:439:3","text":" @dev Contract module which allows children to implement an emergency stop\n mechanism that can be triggered by an authorized account.\n This module is used through inheritance. It will make available the\n modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n the functions of your contract. Note that they will not be pausable by\n simply including this module, only once the modifiers are put in place."},"fullyImplemented":true,"id":536,"linearizedBaseContracts":[536,917,408],"name":"PausableUpgradeable","nameLocation":"695:19:3","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":419,"nodeType":"StructuredDocumentation","src":"758:73:3","text":" @dev Emitted when the pause is triggered by `account`."},"eventSelector":"62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258","id":423,"name":"Paused","nameLocation":"842:6:3","nodeType":"EventDefinition","parameters":{"id":422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":421,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"857:7:3","nodeType":"VariableDeclaration","scope":423,"src":"849:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":420,"name":"address","nodeType":"ElementaryTypeName","src":"849:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"848:17:3"},"src":"836:30:3"},{"anonymous":false,"documentation":{"id":424,"nodeType":"StructuredDocumentation","src":"872:70:3","text":" @dev Emitted when the pause is lifted by `account`."},"eventSelector":"5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa","id":428,"name":"Unpaused","nameLocation":"953:8:3","nodeType":"EventDefinition","parameters":{"id":427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":426,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"970:7:3","nodeType":"VariableDeclaration","scope":428,"src":"962:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":425,"name":"address","nodeType":"ElementaryTypeName","src":"962:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"961:17:3"},"src":"947:32:3"},{"constant":false,"id":430,"mutability":"mutable","name":"_paused","nameLocation":"998:7:3","nodeType":"VariableDeclaration","scope":536,"src":"985:20:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":429,"name":"bool","nodeType":"ElementaryTypeName","src":"985:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"body":{"id":439,"nodeType":"Block","src":"1137:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":436,"name":"__Pausable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":450,"src":"1147:25:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1147:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":438,"nodeType":"ExpressionStatement","src":"1147:27:3"}]},"documentation":{"id":431,"nodeType":"StructuredDocumentation","src":"1012:67:3","text":" @dev Initializes the contract in unpaused state."},"id":440,"implemented":true,"kind":"function","modifiers":[{"id":434,"kind":"modifierInvocation","modifierName":{"id":433,"name":"onlyInitializing","nameLocations":["1120:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1120:16:3"},"nodeType":"ModifierInvocation","src":"1120:16:3"}],"name":"__Pausable_init","nameLocation":"1093:15:3","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[],"src":"1108:2:3"},"returnParameters":{"id":435,"nodeType":"ParameterList","parameters":[],"src":"1137:0:3"},"scope":536,"src":"1084:97:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":449,"nodeType":"Block","src":"1250:32:3","statements":[{"expression":{"id":447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":445,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1260:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1270:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1260:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":448,"nodeType":"ExpressionStatement","src":"1260:15:3"}]},"id":450,"implemented":true,"kind":"function","modifiers":[{"id":443,"kind":"modifierInvocation","modifierName":{"id":442,"name":"onlyInitializing","nameLocations":["1233:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1233:16:3"},"nodeType":"ModifierInvocation","src":"1233:16:3"}],"name":"__Pausable_init_unchained","nameLocation":"1196:25:3","nodeType":"FunctionDefinition","parameters":{"id":441,"nodeType":"ParameterList","parameters":[],"src":"1221:2:3"},"returnParameters":{"id":444,"nodeType":"ParameterList","parameters":[],"src":"1250:0:3"},"scope":536,"src":"1187:95:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":457,"nodeType":"Block","src":"1493:47:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":453,"name":"_requireNotPaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":487,"src":"1503:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1503:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":455,"nodeType":"ExpressionStatement","src":"1503:19:3"},{"id":456,"nodeType":"PlaceholderStatement","src":"1532:1:3"}]},"documentation":{"id":451,"nodeType":"StructuredDocumentation","src":"1288:175:3","text":" @dev Modifier to make a function callable only when the contract is not paused.\n Requirements:\n - The contract must not be paused."},"id":458,"name":"whenNotPaused","nameLocation":"1477:13:3","nodeType":"ModifierDefinition","parameters":{"id":452,"nodeType":"ParameterList","parameters":[],"src":"1490:2:3"},"src":"1468:72:3","virtual":false,"visibility":"internal"},{"body":{"id":465,"nodeType":"Block","src":"1740:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":461,"name":"_requirePaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"1750:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1750:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":463,"nodeType":"ExpressionStatement","src":"1750:16:3"},{"id":464,"nodeType":"PlaceholderStatement","src":"1776:1:3"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"1546:167:3","text":" @dev Modifier to make a function callable only when the contract is paused.\n Requirements:\n - The contract must be paused."},"id":466,"name":"whenPaused","nameLocation":"1727:10:3","nodeType":"ModifierDefinition","parameters":{"id":460,"nodeType":"ParameterList","parameters":[],"src":"1737:2:3"},"src":"1718:66:3","virtual":false,"visibility":"internal"},{"body":{"id":474,"nodeType":"Block","src":"1932:31:3","statements":[{"expression":{"id":472,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1949:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":471,"id":473,"nodeType":"Return","src":"1942:14:3"}]},"documentation":{"id":467,"nodeType":"StructuredDocumentation","src":"1790:84:3","text":" @dev Returns true if the contract is paused, and false otherwise."},"functionSelector":"5c975abb","id":475,"implemented":true,"kind":"function","modifiers":[],"name":"paused","nameLocation":"1888:6:3","nodeType":"FunctionDefinition","parameters":{"id":468,"nodeType":"ParameterList","parameters":[],"src":"1894:2:3"},"returnParameters":{"id":471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":475,"src":"1926:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":469,"name":"bool","nodeType":"ElementaryTypeName","src":"1926:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1925:6:3"},"scope":536,"src":"1879:84:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":486,"nodeType":"Block","src":"2082:55:3","statements":[{"expression":{"arguments":[{"id":482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2100:9:3","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":480,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2101:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2101:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a20706175736564","id":483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2111:18:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""},"value":"Pausable: paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""}],"id":479,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2092:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:38:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":485,"nodeType":"ExpressionStatement","src":"2092:38:3"}]},"documentation":{"id":476,"nodeType":"StructuredDocumentation","src":"1969:57:3","text":" @dev Throws if the contract is paused."},"id":487,"implemented":true,"kind":"function","modifiers":[],"name":"_requireNotPaused","nameLocation":"2040:17:3","nodeType":"FunctionDefinition","parameters":{"id":477,"nodeType":"ParameterList","parameters":[],"src":"2057:2:3"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[],"src":"2082:0:3"},"scope":536,"src":"2031:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":497,"nodeType":"Block","src":"2257:58:3","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":492,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2275:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2275:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a206e6f7420706175736564","id":494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2285:22:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""},"value":"Pausable: not paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""}],"id":491,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2267:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2267:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":496,"nodeType":"ExpressionStatement","src":"2267:41:3"}]},"documentation":{"id":488,"nodeType":"StructuredDocumentation","src":"2143:61:3","text":" @dev Throws if the contract is not paused."},"id":498,"implemented":true,"kind":"function","modifiers":[],"name":"_requirePaused","nameLocation":"2218:14:3","nodeType":"FunctionDefinition","parameters":{"id":489,"nodeType":"ParameterList","parameters":[],"src":"2232:2:3"},"returnParameters":{"id":490,"nodeType":"ParameterList","parameters":[],"src":"2257:0:3"},"scope":536,"src":"2209:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":513,"nodeType":"Block","src":"2499:66:3","statements":[{"expression":{"id":506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":504,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2509:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2519:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2509:14:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":507,"nodeType":"ExpressionStatement","src":"2509:14:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":509,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2545:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":508,"name":"Paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"2538:6:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2538:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":512,"nodeType":"EmitStatement","src":"2533:25:3"}]},"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"2321:124:3","text":" @dev Triggers stopped state.\n Requirements:\n - The contract must not be paused."},"id":514,"implemented":true,"kind":"function","modifiers":[{"id":502,"kind":"modifierInvocation","modifierName":{"id":501,"name":"whenNotPaused","nameLocations":["2485:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"2485:13:3"},"nodeType":"ModifierInvocation","src":"2485:13:3"}],"name":"_pause","nameLocation":"2459:6:3","nodeType":"FunctionDefinition","parameters":{"id":500,"nodeType":"ParameterList","parameters":[],"src":"2465:2:3"},"returnParameters":{"id":503,"nodeType":"ParameterList","parameters":[],"src":"2499:0:3"},"scope":536,"src":"2450:115:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":529,"nodeType":"Block","src":"2745:69:3","statements":[{"expression":{"id":522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":520,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2755:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2765:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2755:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":523,"nodeType":"ExpressionStatement","src":"2755:15:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":525,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2794:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2794:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":524,"name":"Unpaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":428,"src":"2785:8:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2785:22:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":528,"nodeType":"EmitStatement","src":"2780:27:3"}]},"documentation":{"id":515,"nodeType":"StructuredDocumentation","src":"2571:121:3","text":" @dev Returns to normal state.\n Requirements:\n - The contract must be paused."},"id":530,"implemented":true,"kind":"function","modifiers":[{"id":518,"kind":"modifierInvocation","modifierName":{"id":517,"name":"whenPaused","nameLocations":["2734:10:3"],"nodeType":"IdentifierPath","referencedDeclaration":466,"src":"2734:10:3"},"nodeType":"ModifierInvocation","src":"2734:10:3"}],"name":"_unpause","nameLocation":"2706:8:3","nodeType":"FunctionDefinition","parameters":{"id":516,"nodeType":"ParameterList","parameters":[],"src":"2714:2:3"},"returnParameters":{"id":519,"nodeType":"ParameterList","parameters":[],"src":"2745:0:3"},"scope":536,"src":"2697:117:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":531,"nodeType":"StructuredDocumentation","src":"2820:254:3","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":535,"mutability":"mutable","name":"__gap","nameLocation":"3099:5:3","nodeType":"VariableDeclaration","scope":536,"src":"3079:25:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":532,"name":"uint256","nodeType":"ElementaryTypeName","src":"3079:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":534,"length":{"hexValue":"3439","id":533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3087:2:3","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3079:11:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":537,"src":"677:2430:3","usedErrors":[],"usedEvents":[254,423,428]}],"src":"105:3003:3"},"id":3},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","exportedSymbols":{"AddressUpgradeable":[866]},"id":867,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":538,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:4"},{"abstract":false,"baseContracts":[],"canonicalName":"AddressUpgradeable","contractDependencies":[],"contractKind":"library","documentation":{"id":539,"nodeType":"StructuredDocumentation","src":"126:67:4","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":866,"linearizedBaseContracts":[866],"name":"AddressUpgradeable","nameLocation":"202:18:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":553,"nodeType":"Block","src":"1489:254:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":547,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":542,"src":"1713:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1721:4:4","memberName":"code","nodeType":"MemberAccess","src":"1713:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1726:6:4","memberName":"length","nodeType":"MemberAccess","src":"1713:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1735:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1713:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":546,"id":552,"nodeType":"Return","src":"1706:30:4"}]},"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"227:1191:4","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":554,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1432:10:4","nodeType":"FunctionDefinition","parameters":{"id":543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":542,"mutability":"mutable","name":"account","nameLocation":"1451:7:4","nodeType":"VariableDeclaration","scope":554,"src":"1443:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":541,"name":"address","nodeType":"ElementaryTypeName","src":"1443:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1442:17:4"},"returnParameters":{"id":546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":554,"src":"1483:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":544,"name":"bool","nodeType":"ElementaryTypeName","src":"1483:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1482:6:4"},"scope":866,"src":"1423:320:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":587,"nodeType":"Block","src":"2729:241:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":565,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2755:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2747:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":563,"name":"address","nodeType":"ElementaryTypeName","src":"2747:7:4","typeDescriptions":{}}},"id":566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2747:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2761:7:4","memberName":"balance","nodeType":"MemberAccess","src":"2747:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":568,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2772:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2747:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2780:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":562,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2739:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":572,"nodeType":"ExpressionStatement","src":"2739:73:4"},{"assignments":[574,null],"declarations":[{"constant":false,"id":574,"mutability":"mutable","name":"success","nameLocation":"2829:7:4","nodeType":"VariableDeclaration","scope":587,"src":"2824:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":573,"name":"bool","nodeType":"ElementaryTypeName","src":"2824:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":581,"initialValue":{"arguments":[{"hexValue":"","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2872:2:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":575,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":557,"src":"2842:9:4","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:4:4","memberName":"call","nodeType":"MemberAccess","src":"2842:14:4","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":578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":577,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2864:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2842:29:4","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":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2842:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2823:52:4"},{"expression":{"arguments":[{"id":583,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"2893:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2902:60:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":582,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2885:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2885:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":586,"nodeType":"ExpressionStatement","src":"2885:78:4"}]},"documentation":{"id":555,"nodeType":"StructuredDocumentation","src":"1749:904:4","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":588,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2667:9:4","nodeType":"FunctionDefinition","parameters":{"id":560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"recipient","nameLocation":"2693:9:4","nodeType":"VariableDeclaration","scope":588,"src":"2677:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":556,"name":"address","nodeType":"ElementaryTypeName","src":"2677:15:4","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":559,"mutability":"mutable","name":"amount","nameLocation":"2712:6:4","nodeType":"VariableDeclaration","scope":588,"src":"2704:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":558,"name":"uint256","nodeType":"ElementaryTypeName","src":"2704:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:4"},"returnParameters":{"id":561,"nodeType":"ParameterList","parameters":[],"src":"2729:0:4"},"scope":866,"src":"2658:312:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":605,"nodeType":"Block","src":"3801:96:4","statements":[{"expression":{"arguments":[{"id":599,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":591,"src":"3840:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":600,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"3848:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3854:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3857:32:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":598,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"3818:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3818:72:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":597,"id":604,"nodeType":"Return","src":"3811:79:4"}]},"documentation":{"id":589,"nodeType":"StructuredDocumentation","src":"2976:731:4","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":606,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3721:12:4","nodeType":"FunctionDefinition","parameters":{"id":594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":591,"mutability":"mutable","name":"target","nameLocation":"3742:6:4","nodeType":"VariableDeclaration","scope":606,"src":"3734:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":590,"name":"address","nodeType":"ElementaryTypeName","src":"3734:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":593,"mutability":"mutable","name":"data","nameLocation":"3763:4:4","nodeType":"VariableDeclaration","scope":606,"src":"3750:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":592,"name":"bytes","nodeType":"ElementaryTypeName","src":"3750:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3733:35:4"},"returnParameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":606,"src":"3787:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":595,"name":"bytes","nodeType":"ElementaryTypeName","src":"3787:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3786:14:4"},"scope":866,"src":"3712:185:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":625,"nodeType":"Block","src":"4266:76:4","statements":[{"expression":{"arguments":[{"id":619,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"4305:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":620,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":611,"src":"4313:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4319:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":622,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"4322:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":618,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4283:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4283:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":617,"id":624,"nodeType":"Return","src":"4276:59:4"}]},"documentation":{"id":607,"nodeType":"StructuredDocumentation","src":"3903:211:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":626,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4128:12:4","nodeType":"FunctionDefinition","parameters":{"id":614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":609,"mutability":"mutable","name":"target","nameLocation":"4158:6:4","nodeType":"VariableDeclaration","scope":626,"src":"4150:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":608,"name":"address","nodeType":"ElementaryTypeName","src":"4150:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":611,"mutability":"mutable","name":"data","nameLocation":"4187:4:4","nodeType":"VariableDeclaration","scope":626,"src":"4174:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":610,"name":"bytes","nodeType":"ElementaryTypeName","src":"4174:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":613,"mutability":"mutable","name":"errorMessage","nameLocation":"4215:12:4","nodeType":"VariableDeclaration","scope":626,"src":"4201:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":612,"name":"string","nodeType":"ElementaryTypeName","src":"4201:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4140:93:4"},"returnParameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":626,"src":"4252:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":615,"name":"bytes","nodeType":"ElementaryTypeName","src":"4252:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4251:14:4"},"scope":866,"src":"4119:223:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":645,"nodeType":"Block","src":"4817:111:4","statements":[{"expression":{"arguments":[{"id":639,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":629,"src":"4856:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":640,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":631,"src":"4864:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":633,"src":"4870:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4877:43:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":638,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4834:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4834:87:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":637,"id":644,"nodeType":"Return","src":"4827:94:4"}]},"documentation":{"id":627,"nodeType":"StructuredDocumentation","src":"4348:351:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":646,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4713:21:4","nodeType":"FunctionDefinition","parameters":{"id":634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":629,"mutability":"mutable","name":"target","nameLocation":"4743:6:4","nodeType":"VariableDeclaration","scope":646,"src":"4735:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":628,"name":"address","nodeType":"ElementaryTypeName","src":"4735:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":631,"mutability":"mutable","name":"data","nameLocation":"4764:4:4","nodeType":"VariableDeclaration","scope":646,"src":"4751:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":630,"name":"bytes","nodeType":"ElementaryTypeName","src":"4751:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":633,"mutability":"mutable","name":"value","nameLocation":"4778:5:4","nodeType":"VariableDeclaration","scope":646,"src":"4770:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":632,"name":"uint256","nodeType":"ElementaryTypeName","src":"4770:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4734:50:4"},"returnParameters":{"id":637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":636,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":646,"src":"4803:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":635,"name":"bytes","nodeType":"ElementaryTypeName","src":"4803:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4802:14:4"},"scope":866,"src":"4704:224:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":689,"nodeType":"Block","src":"5355:267:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":663,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5381:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5373:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":661,"name":"address","nodeType":"ElementaryTypeName","src":"5373:7:4","typeDescriptions":{}}},"id":664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5373:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5387:7:4","memberName":"balance","nodeType":"MemberAccess","src":"5373:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":666,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5398:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5373:30:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5405:40:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":660,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5365:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5365:81:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":670,"nodeType":"ExpressionStatement","src":"5365:81:4"},{"assignments":[672,674],"declarations":[{"constant":false,"id":672,"mutability":"mutable","name":"success","nameLocation":"5462:7:4","nodeType":"VariableDeclaration","scope":689,"src":"5457:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":671,"name":"bool","nodeType":"ElementaryTypeName","src":"5457:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":674,"mutability":"mutable","name":"returndata","nameLocation":"5484:10:4","nodeType":"VariableDeclaration","scope":689,"src":"5471:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":673,"name":"bytes","nodeType":"ElementaryTypeName","src":"5471:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":681,"initialValue":{"arguments":[{"id":679,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"5524:4:4","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":675,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5498:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5505:4:4","memberName":"call","nodeType":"MemberAccess","src":"5498:11:4","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":678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5517:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5498:25:4","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":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5456:73:4"},{"expression":{"arguments":[{"id":683,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5573:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":684,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":672,"src":"5581:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":685,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":674,"src":"5590:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":686,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":655,"src":"5602:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":682,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"5546:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5546:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":659,"id":688,"nodeType":"Return","src":"5539:76:4"}]},"documentation":{"id":647,"nodeType":"StructuredDocumentation","src":"4934:237:4","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":690,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5185:21:4","nodeType":"FunctionDefinition","parameters":{"id":656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":649,"mutability":"mutable","name":"target","nameLocation":"5224:6:4","nodeType":"VariableDeclaration","scope":690,"src":"5216:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":648,"name":"address","nodeType":"ElementaryTypeName","src":"5216:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":651,"mutability":"mutable","name":"data","nameLocation":"5253:4:4","nodeType":"VariableDeclaration","scope":690,"src":"5240:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":650,"name":"bytes","nodeType":"ElementaryTypeName","src":"5240:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":653,"mutability":"mutable","name":"value","nameLocation":"5275:5:4","nodeType":"VariableDeclaration","scope":690,"src":"5267:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"5267:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":655,"mutability":"mutable","name":"errorMessage","nameLocation":"5304:12:4","nodeType":"VariableDeclaration","scope":690,"src":"5290:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":654,"name":"string","nodeType":"ElementaryTypeName","src":"5290:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5206:116:4"},"returnParameters":{"id":659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":690,"src":"5341:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":657,"name":"bytes","nodeType":"ElementaryTypeName","src":"5341:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5340:14:4"},"scope":866,"src":"5176:446:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":706,"nodeType":"Block","src":"5899:97:4","statements":[{"expression":{"arguments":[{"id":701,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"5935:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":702,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5943:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5949:39:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":700,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[707,736],"referencedDeclaration":736,"src":"5916:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5916:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":699,"id":705,"nodeType":"Return","src":"5909:80:4"}]},"documentation":{"id":691,"nodeType":"StructuredDocumentation","src":"5628:166:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":707,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5808:18:4","nodeType":"FunctionDefinition","parameters":{"id":696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":693,"mutability":"mutable","name":"target","nameLocation":"5835:6:4","nodeType":"VariableDeclaration","scope":707,"src":"5827:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"5827:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":695,"mutability":"mutable","name":"data","nameLocation":"5856:4:4","nodeType":"VariableDeclaration","scope":707,"src":"5843:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":694,"name":"bytes","nodeType":"ElementaryTypeName","src":"5843:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5826:35:4"},"returnParameters":{"id":699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":698,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":707,"src":"5885:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":697,"name":"bytes","nodeType":"ElementaryTypeName","src":"5885:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5884:14:4"},"scope":866,"src":"5799:197:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":735,"nodeType":"Block","src":"6338:168:4","statements":[{"assignments":[720,722],"declarations":[{"constant":false,"id":720,"mutability":"mutable","name":"success","nameLocation":"6354:7:4","nodeType":"VariableDeclaration","scope":735,"src":"6349:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":719,"name":"bool","nodeType":"ElementaryTypeName","src":"6349:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":722,"mutability":"mutable","name":"returndata","nameLocation":"6376:10:4","nodeType":"VariableDeclaration","scope":735,"src":"6363:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":721,"name":"bytes","nodeType":"ElementaryTypeName","src":"6363:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":727,"initialValue":{"arguments":[{"id":725,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":712,"src":"6408:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":723,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6390:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6397:10:4","memberName":"staticcall","nodeType":"MemberAccess","src":"6390:17:4","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6390:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6348:65:4"},{"expression":{"arguments":[{"id":729,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6457:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":730,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":720,"src":"6465:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":731,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":722,"src":"6474:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":732,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":714,"src":"6486:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":728,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"6430:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6430:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":718,"id":734,"nodeType":"Return","src":"6423:76:4"}]},"documentation":{"id":708,"nodeType":"StructuredDocumentation","src":"6002:173:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":736,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6189:18:4","nodeType":"FunctionDefinition","parameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":710,"mutability":"mutable","name":"target","nameLocation":"6225:6:4","nodeType":"VariableDeclaration","scope":736,"src":"6217:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":709,"name":"address","nodeType":"ElementaryTypeName","src":"6217:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":712,"mutability":"mutable","name":"data","nameLocation":"6254:4:4","nodeType":"VariableDeclaration","scope":736,"src":"6241:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":711,"name":"bytes","nodeType":"ElementaryTypeName","src":"6241:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":714,"mutability":"mutable","name":"errorMessage","nameLocation":"6282:12:4","nodeType":"VariableDeclaration","scope":736,"src":"6268:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":713,"name":"string","nodeType":"ElementaryTypeName","src":"6268:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6207:93:4"},"returnParameters":{"id":718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":717,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":736,"src":"6324:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":716,"name":"bytes","nodeType":"ElementaryTypeName","src":"6324:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6323:14:4"},"scope":866,"src":"6180:326:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":752,"nodeType":"Block","src":"6782:101:4","statements":[{"expression":{"arguments":[{"id":747,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":739,"src":"6820:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":748,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"6828:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6834:41:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":746,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[753,782],"referencedDeclaration":782,"src":"6799:20:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6799:77:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":745,"id":751,"nodeType":"Return","src":"6792:84:4"}]},"documentation":{"id":737,"nodeType":"StructuredDocumentation","src":"6512:168:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":753,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6694:20:4","nodeType":"FunctionDefinition","parameters":{"id":742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":739,"mutability":"mutable","name":"target","nameLocation":"6723:6:4","nodeType":"VariableDeclaration","scope":753,"src":"6715:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":738,"name":"address","nodeType":"ElementaryTypeName","src":"6715:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":741,"mutability":"mutable","name":"data","nameLocation":"6744:4:4","nodeType":"VariableDeclaration","scope":753,"src":"6731:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":740,"name":"bytes","nodeType":"ElementaryTypeName","src":"6731:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6714:35:4"},"returnParameters":{"id":745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":753,"src":"6768:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":743,"name":"bytes","nodeType":"ElementaryTypeName","src":"6768:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6767:14:4"},"scope":866,"src":"6685:198:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":781,"nodeType":"Block","src":"7224:170:4","statements":[{"assignments":[766,768],"declarations":[{"constant":false,"id":766,"mutability":"mutable","name":"success","nameLocation":"7240:7:4","nodeType":"VariableDeclaration","scope":781,"src":"7235:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":765,"name":"bool","nodeType":"ElementaryTypeName","src":"7235:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"returndata","nameLocation":"7262:10:4","nodeType":"VariableDeclaration","scope":781,"src":"7249:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":767,"name":"bytes","nodeType":"ElementaryTypeName","src":"7249:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":773,"initialValue":{"arguments":[{"id":771,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":758,"src":"7296:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":769,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7276:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7283:12:4","memberName":"delegatecall","nodeType":"MemberAccess","src":"7276:19:4","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7276:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7234:67:4"},{"expression":{"arguments":[{"id":775,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7345:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":776,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"7353:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":777,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"7362:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":778,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":760,"src":"7374:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":774,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"7318:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7318:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":764,"id":780,"nodeType":"Return","src":"7311:76:4"}]},"documentation":{"id":754,"nodeType":"StructuredDocumentation","src":"6889:175:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":782,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7078:20:4","nodeType":"FunctionDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"target","nameLocation":"7116:6:4","nodeType":"VariableDeclaration","scope":782,"src":"7108:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"7108:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":758,"mutability":"mutable","name":"data","nameLocation":"7145:4:4","nodeType":"VariableDeclaration","scope":782,"src":"7132:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":757,"name":"bytes","nodeType":"ElementaryTypeName","src":"7132:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":760,"mutability":"mutable","name":"errorMessage","nameLocation":"7173:12:4","nodeType":"VariableDeclaration","scope":782,"src":"7159:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":759,"name":"string","nodeType":"ElementaryTypeName","src":"7159:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7098:93:4"},"returnParameters":{"id":764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":782,"src":"7210:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":762,"name":"bytes","nodeType":"ElementaryTypeName","src":"7210:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7209:14:4"},"scope":866,"src":"7069:325:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":820,"nodeType":"Block","src":"7876:434:4","statements":[{"condition":{"id":796,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":787,"src":"7890:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":818,"nodeType":"Block","src":"8246:58:4","statements":[{"expression":{"arguments":[{"id":814,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8268:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":815,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"8280:12:4","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":813,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8260:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8260:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":817,"nodeType":"ExpressionStatement","src":"8260:33:4"}]},"id":819,"nodeType":"IfStatement","src":"7886:418:4","trueBody":{"id":812,"nodeType":"Block","src":"7899:341:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":797,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"7917:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7928:6:4","memberName":"length","nodeType":"MemberAccess","src":"7917:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7938:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7917:22:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":809,"nodeType":"IfStatement","src":"7913:286:4","trueBody":{"id":808,"nodeType":"Block","src":"7941:258:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":803,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"8143:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":802,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":554,"src":"8132:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8152:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":801,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8124:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8124:60:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":807,"nodeType":"ExpressionStatement","src":"8124:60:4"}]}},{"expression":{"id":810,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8219:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":795,"id":811,"nodeType":"Return","src":"8212:17:4"}]}}]},"documentation":{"id":783,"nodeType":"StructuredDocumentation","src":"7400:277:4","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":821,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7691:26:4","nodeType":"FunctionDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":785,"mutability":"mutable","name":"target","nameLocation":"7735:6:4","nodeType":"VariableDeclaration","scope":821,"src":"7727:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":784,"name":"address","nodeType":"ElementaryTypeName","src":"7727:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":787,"mutability":"mutable","name":"success","nameLocation":"7756:7:4","nodeType":"VariableDeclaration","scope":821,"src":"7751:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":786,"name":"bool","nodeType":"ElementaryTypeName","src":"7751:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":789,"mutability":"mutable","name":"returndata","nameLocation":"7786:10:4","nodeType":"VariableDeclaration","scope":821,"src":"7773:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":788,"name":"bytes","nodeType":"ElementaryTypeName","src":"7773:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":791,"mutability":"mutable","name":"errorMessage","nameLocation":"7820:12:4","nodeType":"VariableDeclaration","scope":821,"src":"7806:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":790,"name":"string","nodeType":"ElementaryTypeName","src":"7806:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7717:121:4"},"returnParameters":{"id":795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":794,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":821,"src":"7862:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":793,"name":"bytes","nodeType":"ElementaryTypeName","src":"7862:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7861:14:4"},"scope":866,"src":"7682:628:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":844,"nodeType":"Block","src":"8691:135:4","statements":[{"condition":{"id":833,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"8705:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":842,"nodeType":"Block","src":"8762:58:4","statements":[{"expression":{"arguments":[{"id":838,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8784:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":839,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":828,"src":"8796:12:4","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":837,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8776:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8776:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":841,"nodeType":"ExpressionStatement","src":"8776:33:4"}]},"id":843,"nodeType":"IfStatement","src":"8701:119:4","trueBody":{"id":836,"nodeType":"Block","src":"8714:42:4","statements":[{"expression":{"id":834,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8735:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":832,"id":835,"nodeType":"Return","src":"8728:17:4"}]}}]},"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"8316:210:4","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":845,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8540:16:4","nodeType":"FunctionDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"success","nameLocation":"8571:7:4","nodeType":"VariableDeclaration","scope":845,"src":"8566:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":823,"name":"bool","nodeType":"ElementaryTypeName","src":"8566:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":826,"mutability":"mutable","name":"returndata","nameLocation":"8601:10:4","nodeType":"VariableDeclaration","scope":845,"src":"8588:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":825,"name":"bytes","nodeType":"ElementaryTypeName","src":"8588:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":828,"mutability":"mutable","name":"errorMessage","nameLocation":"8635:12:4","nodeType":"VariableDeclaration","scope":845,"src":"8621:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":827,"name":"string","nodeType":"ElementaryTypeName","src":"8621:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8556:97:4"},"returnParameters":{"id":832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":831,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":845,"src":"8677:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":830,"name":"bytes","nodeType":"ElementaryTypeName","src":"8677:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8676:14:4"},"scope":866,"src":"8531:295:4","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":864,"nodeType":"Block","src":"8915:457:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":852,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"8991:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9002:6:4","memberName":"length","nodeType":"MemberAccess","src":"8991:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9011:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8991:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":862,"nodeType":"Block","src":"9321:45:4","statements":[{"expression":{"arguments":[{"id":859,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"9342:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":858,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9335:6:4","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9335:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":861,"nodeType":"ExpressionStatement","src":"9335:20:4"}]},"id":863,"nodeType":"IfStatement","src":"8987:379:4","trueBody":{"id":857,"nodeType":"Block","src":"9014:301:4","statements":[{"AST":{"nodeType":"YulBlock","src":"9172:133:4","statements":[{"nodeType":"YulVariableDeclaration","src":"9190:40:4","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9219:10:4"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9213:5:4"},"nodeType":"YulFunctionCall","src":"9213:17:4"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9194:15:4","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9258:2:4","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9262:10:4"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9254:3:4"},"nodeType":"YulFunctionCall","src":"9254:19:4"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9275:15:4"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9247:6:4"},"nodeType":"YulFunctionCall","src":"9247:44:4"},"nodeType":"YulExpressionStatement","src":"9247:44:4"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":847,"isOffset":false,"isSlot":false,"src":"9219:10:4","valueSize":1},{"declaration":847,"isOffset":false,"isSlot":false,"src":"9262:10:4","valueSize":1}],"id":856,"nodeType":"InlineAssembly","src":"9163:142:4"}]}}]},"id":865,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8841:7:4","nodeType":"FunctionDefinition","parameters":{"id":850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":847,"mutability":"mutable","name":"returndata","nameLocation":"8862:10:4","nodeType":"VariableDeclaration","scope":865,"src":"8849:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":846,"name":"bytes","nodeType":"ElementaryTypeName","src":"8849:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":849,"mutability":"mutable","name":"errorMessage","nameLocation":"8888:12:4","nodeType":"VariableDeclaration","scope":865,"src":"8874:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":848,"name":"string","nodeType":"ElementaryTypeName","src":"8874:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8848:53:4"},"returnParameters":{"id":851,"nodeType":"ParameterList","parameters":[],"src":"8915:0:4"},"scope":866,"src":"8832:540:4","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":867,"src":"194:9180:4","usedErrors":[],"usedEvents":[]}],"src":"101:9274:4"},"id":4},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408]},"id":918,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":868,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:5"},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":870,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":918,"sourceUnit":409,"src":"125:63:5","symbolAliases":[{"foreign":{"id":869,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"133:13:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":872,"name":"Initializable","nameLocations":["727:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"727:13:5"},"id":873,"nodeType":"InheritanceSpecifier","src":"727:13:5"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":871,"nodeType":"StructuredDocumentation","src":"190:496:5","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":917,"linearizedBaseContracts":[917,408],"name":"ContextUpgradeable","nameLocation":"705:18:5","nodeType":"ContractDefinition","nodes":[{"body":{"id":878,"nodeType":"Block","src":"799:7:5","statements":[]},"id":879,"implemented":true,"kind":"function","modifiers":[{"id":876,"kind":"modifierInvocation","modifierName":{"id":875,"name":"onlyInitializing","nameLocations":["782:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"782:16:5"},"nodeType":"ModifierInvocation","src":"782:16:5"}],"name":"__Context_init","nameLocation":"756:14:5","nodeType":"FunctionDefinition","parameters":{"id":874,"nodeType":"ParameterList","parameters":[],"src":"770:2:5"},"returnParameters":{"id":877,"nodeType":"ParameterList","parameters":[],"src":"799:0:5"},"scope":917,"src":"747:59:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":884,"nodeType":"Block","src":"874:7:5","statements":[]},"id":885,"implemented":true,"kind":"function","modifiers":[{"id":882,"kind":"modifierInvocation","modifierName":{"id":881,"name":"onlyInitializing","nameLocations":["857:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"857:16:5"},"nodeType":"ModifierInvocation","src":"857:16:5"}],"name":"__Context_init_unchained","nameLocation":"821:24:5","nodeType":"FunctionDefinition","parameters":{"id":880,"nodeType":"ParameterList","parameters":[],"src":"845:2:5"},"returnParameters":{"id":883,"nodeType":"ParameterList","parameters":[],"src":"874:0:5"},"scope":917,"src":"812:69:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":893,"nodeType":"Block","src":"948:34:5","statements":[{"expression":{"expression":{"id":890,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"965:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"969:6:5","memberName":"sender","nodeType":"MemberAccess","src":"965:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":889,"id":892,"nodeType":"Return","src":"958:17:5"}]},"id":894,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"895:10:5","nodeType":"FunctionDefinition","parameters":{"id":886,"nodeType":"ParameterList","parameters":[],"src":"905:2:5"},"returnParameters":{"id":889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":888,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":894,"src":"939:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":887,"name":"address","nodeType":"ElementaryTypeName","src":"939:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"938:9:5"},"scope":917,"src":"886:96:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":902,"nodeType":"Block","src":"1055:32:5","statements":[{"expression":{"expression":{"id":899,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1072:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1076:4:5","memberName":"data","nodeType":"MemberAccess","src":"1072:8:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":898,"id":901,"nodeType":"Return","src":"1065:15:5"}]},"id":903,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"997:8:5","nodeType":"FunctionDefinition","parameters":{"id":895,"nodeType":"ParameterList","parameters":[],"src":"1005:2:5"},"returnParameters":{"id":898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":897,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":903,"src":"1039:14:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":896,"name":"bytes","nodeType":"ElementaryTypeName","src":"1039:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1038:16:5"},"scope":917,"src":"988:99:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":910,"nodeType":"Block","src":"1165:25:5","statements":[{"expression":{"hexValue":"30","id":908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1182:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":907,"id":909,"nodeType":"Return","src":"1175:8:5"}]},"id":911,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1102:20:5","nodeType":"FunctionDefinition","parameters":{"id":904,"nodeType":"ParameterList","parameters":[],"src":"1122:2:5"},"returnParameters":{"id":907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":906,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"1156:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":905,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1155:9:5"},"scope":917,"src":"1093:97:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"1196:254:5","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":916,"mutability":"mutable","name":"__gap","nameLocation":"1475:5:5","nodeType":"VariableDeclaration","scope":917,"src":"1455:25:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":913,"name":"uint256","nodeType":"ElementaryTypeName","src":"1455:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":915,"length":{"hexValue":"3530","id":914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1463:2:5","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"1455:11:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":918,"src":"687:796:5","usedErrors":[],"usedEvents":[254]}],"src":"101:1383:5"},"id":5},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[1637],"ERC20":[1504],"IERC20":[1582],"IERC20Metadata":[1607]},"id":1505,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":919,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":920,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1505,"sourceUnit":1583,"src":"130:22:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":921,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1505,"sourceUnit":1608,"src":"153:41:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":922,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1505,"sourceUnit":1638,"src":"195:33:6","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":924,"name":"Context","nameLocations":["1550:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":1637,"src":"1550:7:6"},"id":925,"nodeType":"InheritanceSpecifier","src":"1550:7:6"},{"baseName":{"id":926,"name":"IERC20","nameLocations":["1559:6:6"],"nodeType":"IdentifierPath","referencedDeclaration":1582,"src":"1559:6:6"},"id":927,"nodeType":"InheritanceSpecifier","src":"1559:6:6"},{"baseName":{"id":928,"name":"IERC20Metadata","nameLocations":["1567:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":1607,"src":"1567:14:6"},"id":929,"nodeType":"InheritanceSpecifier","src":"1567:14:6"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":923,"nodeType":"StructuredDocumentation","src":"230:1301:6","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.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 ERC20\n applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."},"fullyImplemented":true,"id":1504,"linearizedBaseContracts":[1504,1607,1582,1637],"name":"ERC20","nameLocation":"1541:5:6","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":933,"mutability":"mutable","name":"_balances","nameLocation":"1624:9:6","nodeType":"VariableDeclaration","scope":1504,"src":"1588:45:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":932,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":930,"name":"address","nodeType":"ElementaryTypeName","src":"1596:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1588:27:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":931,"name":"uint256","nodeType":"ElementaryTypeName","src":"1607:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":939,"mutability":"mutable","name":"_allowances","nameLocation":"1696:11:6","nodeType":"VariableDeclaration","scope":1504,"src":"1640:67:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":938,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":934,"name":"address","nodeType":"ElementaryTypeName","src":"1648:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1640:47:6","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":937,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":935,"name":"address","nodeType":"ElementaryTypeName","src":"1667:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1659:27:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":936,"name":"uint256","nodeType":"ElementaryTypeName","src":"1678:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":941,"mutability":"mutable","name":"_totalSupply","nameLocation":"1730:12:6","nodeType":"VariableDeclaration","scope":1504,"src":"1714:28:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":940,"name":"uint256","nodeType":"ElementaryTypeName","src":"1714:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":943,"mutability":"mutable","name":"_name","nameLocation":"1764:5:6","nodeType":"VariableDeclaration","scope":1504,"src":"1749:20:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":942,"name":"string","nodeType":"ElementaryTypeName","src":"1749:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":945,"mutability":"mutable","name":"_symbol","nameLocation":"1790:7:6","nodeType":"VariableDeclaration","scope":1504,"src":"1775:22:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":944,"name":"string","nodeType":"ElementaryTypeName","src":"1775:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":961,"nodeType":"Block","src":"2036:57:6","statements":[{"expression":{"id":955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":953,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":943,"src":"2046:5:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":954,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":948,"src":"2054:5:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2046:13:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":956,"nodeType":"ExpressionStatement","src":"2046:13:6"},{"expression":{"id":959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":957,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"2069:7:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":958,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"2079:7:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2069:17:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":960,"nodeType":"ExpressionStatement","src":"2069:17:6"}]},"documentation":{"id":946,"nodeType":"StructuredDocumentation","src":"1804:171:6","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":962,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":948,"mutability":"mutable","name":"name_","nameLocation":"2006:5:6","nodeType":"VariableDeclaration","scope":962,"src":"1992:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":947,"name":"string","nodeType":"ElementaryTypeName","src":"1992:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":950,"mutability":"mutable","name":"symbol_","nameLocation":"2027:7:6","nodeType":"VariableDeclaration","scope":962,"src":"2013:21:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":949,"name":"string","nodeType":"ElementaryTypeName","src":"2013:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1991:44:6"},"returnParameters":{"id":952,"nodeType":"ParameterList","parameters":[],"src":"2036:0:6"},"scope":1504,"src":"1980:113:6","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[1594],"body":{"id":971,"nodeType":"Block","src":"2227:29:6","statements":[{"expression":{"id":969,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":943,"src":"2244:5:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":968,"id":970,"nodeType":"Return","src":"2237:12:6"}]},"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"2099:54:6","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":972,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2167:4:6","nodeType":"FunctionDefinition","overrides":{"id":965,"nodeType":"OverrideSpecifier","overrides":[],"src":"2194:8:6"},"parameters":{"id":964,"nodeType":"ParameterList","parameters":[],"src":"2171:2:6"},"returnParameters":{"id":968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":972,"src":"2212:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":966,"name":"string","nodeType":"ElementaryTypeName","src":"2212:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2211:15:6"},"scope":1504,"src":"2158:98:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1600],"body":{"id":981,"nodeType":"Block","src":"2440:31:6","statements":[{"expression":{"id":979,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"2457:7:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":978,"id":980,"nodeType":"Return","src":"2450:14:6"}]},"documentation":{"id":973,"nodeType":"StructuredDocumentation","src":"2262:102:6","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":982,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2378:6:6","nodeType":"FunctionDefinition","overrides":{"id":975,"nodeType":"OverrideSpecifier","overrides":[],"src":"2407:8:6"},"parameters":{"id":974,"nodeType":"ParameterList","parameters":[],"src":"2384:2:6"},"returnParameters":{"id":978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":977,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":982,"src":"2425:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":976,"name":"string","nodeType":"ElementaryTypeName","src":"2425:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2424:15:6"},"scope":1504,"src":"2369:102:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1606],"body":{"id":991,"nodeType":"Block","src":"3169:26:6","statements":[{"expression":{"hexValue":"3138","id":989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3186:2:6","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":988,"id":990,"nodeType":"Return","src":"3179:9:6"}]},"documentation":{"id":983,"nodeType":"StructuredDocumentation","src":"2477:622:6","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":992,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3113:8:6","nodeType":"FunctionDefinition","overrides":{"id":985,"nodeType":"OverrideSpecifier","overrides":[],"src":"3144:8:6"},"parameters":{"id":984,"nodeType":"ParameterList","parameters":[],"src":"3121:2:6"},"returnParameters":{"id":988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":992,"src":"3162:5:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":986,"name":"uint8","nodeType":"ElementaryTypeName","src":"3162:5:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3161:7:6"},"scope":1504,"src":"3104:91:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1531],"body":{"id":1001,"nodeType":"Block","src":"3325:36:6","statements":[{"expression":{"id":999,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":941,"src":"3342:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":998,"id":1000,"nodeType":"Return","src":"3335:19:6"}]},"documentation":{"id":993,"nodeType":"StructuredDocumentation","src":"3201:49:6","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":1002,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"3264:11:6","nodeType":"FunctionDefinition","overrides":{"id":995,"nodeType":"OverrideSpecifier","overrides":[],"src":"3298:8:6"},"parameters":{"id":994,"nodeType":"ParameterList","parameters":[],"src":"3275:2:6"},"returnParameters":{"id":998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1002,"src":"3316:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":996,"name":"uint256","nodeType":"ElementaryTypeName","src":"3316:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3315:9:6"},"scope":1504,"src":"3255:106:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1539],"body":{"id":1015,"nodeType":"Block","src":"3502:42:6","statements":[{"expression":{"baseExpression":{"id":1011,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"3519:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1013,"indexExpression":{"id":1012,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1005,"src":"3529:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3519:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1010,"id":1014,"nodeType":"Return","src":"3512:25:6"}]},"documentation":{"id":1003,"nodeType":"StructuredDocumentation","src":"3367:47:6","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":1016,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3428:9:6","nodeType":"FunctionDefinition","overrides":{"id":1007,"nodeType":"OverrideSpecifier","overrides":[],"src":"3475:8:6"},"parameters":{"id":1006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1005,"mutability":"mutable","name":"account","nameLocation":"3446:7:6","nodeType":"VariableDeclaration","scope":1016,"src":"3438:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1004,"name":"address","nodeType":"ElementaryTypeName","src":"3438:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3437:17:6"},"returnParameters":{"id":1010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1009,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1016,"src":"3493:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1008,"name":"uint256","nodeType":"ElementaryTypeName","src":"3493:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3492:9:6"},"scope":1504,"src":"3419:125:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1549],"body":{"id":1040,"nodeType":"Block","src":"3825:104:6","statements":[{"assignments":[1028],"declarations":[{"constant":false,"id":1028,"mutability":"mutable","name":"owner","nameLocation":"3843:5:6","nodeType":"VariableDeclaration","scope":1040,"src":"3835:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1027,"name":"address","nodeType":"ElementaryTypeName","src":"3835:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1031,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1029,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"3851:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3851:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3835:28:6"},{"expression":{"arguments":[{"id":1033,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1028,"src":"3883:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1034,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1019,"src":"3890:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1035,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1021,"src":"3894:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1032,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"3873:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3873:28:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1037,"nodeType":"ExpressionStatement","src":"3873:28:6"},{"expression":{"hexValue":"74727565","id":1038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3918:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1026,"id":1039,"nodeType":"Return","src":"3911:11:6"}]},"documentation":{"id":1017,"nodeType":"StructuredDocumentation","src":"3550:185:6","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `amount`."},"functionSelector":"a9059cbb","id":1041,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3749:8:6","nodeType":"FunctionDefinition","overrides":{"id":1023,"nodeType":"OverrideSpecifier","overrides":[],"src":"3801:8:6"},"parameters":{"id":1022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1019,"mutability":"mutable","name":"to","nameLocation":"3766:2:6","nodeType":"VariableDeclaration","scope":1041,"src":"3758:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1018,"name":"address","nodeType":"ElementaryTypeName","src":"3758:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1021,"mutability":"mutable","name":"amount","nameLocation":"3778:6:6","nodeType":"VariableDeclaration","scope":1041,"src":"3770:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1020,"name":"uint256","nodeType":"ElementaryTypeName","src":"3770:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3757:28:6"},"returnParameters":{"id":1026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1041,"src":"3819:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1024,"name":"bool","nodeType":"ElementaryTypeName","src":"3819:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3818:6:6"},"scope":1504,"src":"3740:189:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1559],"body":{"id":1058,"nodeType":"Block","src":"4085:51:6","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":1052,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":939,"src":"4102:11:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1054,"indexExpression":{"id":1053,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1044,"src":"4114:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4102:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1056,"indexExpression":{"id":1055,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1046,"src":"4121:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4102:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1051,"id":1057,"nodeType":"Return","src":"4095:34:6"}]},"documentation":{"id":1042,"nodeType":"StructuredDocumentation","src":"3935:47:6","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":1059,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3996:9:6","nodeType":"FunctionDefinition","overrides":{"id":1048,"nodeType":"OverrideSpecifier","overrides":[],"src":"4058:8:6"},"parameters":{"id":1047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1044,"mutability":"mutable","name":"owner","nameLocation":"4014:5:6","nodeType":"VariableDeclaration","scope":1059,"src":"4006:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1043,"name":"address","nodeType":"ElementaryTypeName","src":"4006:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1046,"mutability":"mutable","name":"spender","nameLocation":"4029:7:6","nodeType":"VariableDeclaration","scope":1059,"src":"4021:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1045,"name":"address","nodeType":"ElementaryTypeName","src":"4021:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4005:32:6"},"returnParameters":{"id":1051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1059,"src":"4076:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1049,"name":"uint256","nodeType":"ElementaryTypeName","src":"4076:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4075:9:6"},"scope":1504,"src":"3987:149:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1569],"body":{"id":1083,"nodeType":"Block","src":"4533:108:6","statements":[{"assignments":[1071],"declarations":[{"constant":false,"id":1071,"mutability":"mutable","name":"owner","nameLocation":"4551:5:6","nodeType":"VariableDeclaration","scope":1083,"src":"4543:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1070,"name":"address","nodeType":"ElementaryTypeName","src":"4543:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1074,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1072,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"4559:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4559:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4543:28:6"},{"expression":{"arguments":[{"id":1076,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1071,"src":"4590:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1077,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"4597:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1078,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1064,"src":"4606:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1075,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"4581:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4581:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1080,"nodeType":"ExpressionStatement","src":"4581:32:6"},{"expression":{"hexValue":"74727565","id":1081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4630:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1069,"id":1082,"nodeType":"Return","src":"4623:11:6"}]},"documentation":{"id":1060,"nodeType":"StructuredDocumentation","src":"4142:297:6","text":" @dev See {IERC20-approve}.\n NOTE: If `amount` 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":1084,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4453:7:6","nodeType":"FunctionDefinition","overrides":{"id":1066,"nodeType":"OverrideSpecifier","overrides":[],"src":"4509:8:6"},"parameters":{"id":1065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1062,"mutability":"mutable","name":"spender","nameLocation":"4469:7:6","nodeType":"VariableDeclaration","scope":1084,"src":"4461:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1061,"name":"address","nodeType":"ElementaryTypeName","src":"4461:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1064,"mutability":"mutable","name":"amount","nameLocation":"4486:6:6","nodeType":"VariableDeclaration","scope":1084,"src":"4478:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1063,"name":"uint256","nodeType":"ElementaryTypeName","src":"4478:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4460:33:6"},"returnParameters":{"id":1069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1084,"src":"4527:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1067,"name":"bool","nodeType":"ElementaryTypeName","src":"4527:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4526:6:6"},"scope":1504,"src":"4444:197:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1581],"body":{"id":1116,"nodeType":"Block","src":"5306:153:6","statements":[{"assignments":[1098],"declarations":[{"constant":false,"id":1098,"mutability":"mutable","name":"spender","nameLocation":"5324:7:6","nodeType":"VariableDeclaration","scope":1116,"src":"5316:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1097,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1101,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1099,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"5334:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5334:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5316:30:6"},{"expression":{"arguments":[{"id":1103,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"5372:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1104,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"5378:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1105,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"5387:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1102,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1481,"src":"5356:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5356:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1107,"nodeType":"ExpressionStatement","src":"5356:38:6"},{"expression":{"arguments":[{"id":1109,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"5414:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1110,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"5420:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1111,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"5424:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1108,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"5404:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5404:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1113,"nodeType":"ExpressionStatement","src":"5404:27:6"},{"expression":{"hexValue":"74727565","id":1114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5448:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1096,"id":1115,"nodeType":"Return","src":"5441:11:6"}]},"documentation":{"id":1085,"nodeType":"StructuredDocumentation","src":"4647:551:6","text":" @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n 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 `amount`.\n - the caller must have allowance for ``from``'s tokens of at least\n `amount`."},"functionSelector":"23b872dd","id":1117,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5212:12:6","nodeType":"FunctionDefinition","overrides":{"id":1093,"nodeType":"OverrideSpecifier","overrides":[],"src":"5282:8:6"},"parameters":{"id":1092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1087,"mutability":"mutable","name":"from","nameLocation":"5233:4:6","nodeType":"VariableDeclaration","scope":1117,"src":"5225:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1086,"name":"address","nodeType":"ElementaryTypeName","src":"5225:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1089,"mutability":"mutable","name":"to","nameLocation":"5247:2:6","nodeType":"VariableDeclaration","scope":1117,"src":"5239:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1088,"name":"address","nodeType":"ElementaryTypeName","src":"5239:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1091,"mutability":"mutable","name":"amount","nameLocation":"5259:6:6","nodeType":"VariableDeclaration","scope":1117,"src":"5251:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1090,"name":"uint256","nodeType":"ElementaryTypeName","src":"5251:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5224:42:6"},"returnParameters":{"id":1096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1095,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1117,"src":"5300:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1094,"name":"bool","nodeType":"ElementaryTypeName","src":"5300:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5299:6:6"},"scope":1504,"src":"5203:256:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1145,"nodeType":"Block","src":"5948:140:6","statements":[{"assignments":[1128],"declarations":[{"constant":false,"id":1128,"mutability":"mutable","name":"owner","nameLocation":"5966:5:6","nodeType":"VariableDeclaration","scope":1145,"src":"5958:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1127,"name":"address","nodeType":"ElementaryTypeName","src":"5958:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1131,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1129,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"5974:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5974:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5958:28:6"},{"expression":{"arguments":[{"id":1133,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1128,"src":"6005:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1134,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"6012:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1136,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1128,"src":"6031:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1137,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"6038:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1135,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"6021:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6021:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1139,"name":"addedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1122,"src":"6049:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6021:38:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1132,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"5996:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5996:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1142,"nodeType":"ExpressionStatement","src":"5996:64:6"},{"expression":{"hexValue":"74727565","id":1143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6077:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1126,"id":1144,"nodeType":"Return","src":"6070:11:6"}]},"documentation":{"id":1118,"nodeType":"StructuredDocumentation","src":"5465:384:6","text":" @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"39509351","id":1146,"implemented":true,"kind":"function","modifiers":[],"name":"increaseAllowance","nameLocation":"5863:17:6","nodeType":"FunctionDefinition","parameters":{"id":1123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"spender","nameLocation":"5889:7:6","nodeType":"VariableDeclaration","scope":1146,"src":"5881:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1119,"name":"address","nodeType":"ElementaryTypeName","src":"5881:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1122,"mutability":"mutable","name":"addedValue","nameLocation":"5906:10:6","nodeType":"VariableDeclaration","scope":1146,"src":"5898:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1121,"name":"uint256","nodeType":"ElementaryTypeName","src":"5898:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5880:37:6"},"returnParameters":{"id":1126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1125,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1146,"src":"5942:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1124,"name":"bool","nodeType":"ElementaryTypeName","src":"5942:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5941:6:6"},"scope":1504,"src":"5854:234:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1186,"nodeType":"Block","src":"6674:328:6","statements":[{"assignments":[1157],"declarations":[{"constant":false,"id":1157,"mutability":"mutable","name":"owner","nameLocation":"6692:5:6","nodeType":"VariableDeclaration","scope":1186,"src":"6684:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1156,"name":"address","nodeType":"ElementaryTypeName","src":"6684:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1160,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1158,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"6700:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6700:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6684:28:6"},{"assignments":[1162],"declarations":[{"constant":false,"id":1162,"mutability":"mutable","name":"currentAllowance","nameLocation":"6730:16:6","nodeType":"VariableDeclaration","scope":1186,"src":"6722:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1161,"name":"uint256","nodeType":"ElementaryTypeName","src":"6722:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1167,"initialValue":{"arguments":[{"id":1164,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1157,"src":"6759:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1165,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1149,"src":"6766:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1163,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"6749:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6749:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6722:52:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1169,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1162,"src":"6792:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1170,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1151,"src":"6812:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6792:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f","id":1172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6829:39:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","typeString":"literal_string \"ERC20: decreased allowance below zero\""},"value":"ERC20: decreased allowance below zero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","typeString":"literal_string \"ERC20: decreased allowance below zero\""}],"id":1168,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6784:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6784:85:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1174,"nodeType":"ExpressionStatement","src":"6784:85:6"},{"id":1183,"nodeType":"UncheckedBlock","src":"6879:95:6","statements":[{"expression":{"arguments":[{"id":1176,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1157,"src":"6912:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1177,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1149,"src":"6919:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1178,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1162,"src":"6928:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1179,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1151,"src":"6947:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6928:34:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1175,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"6903:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6903:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1182,"nodeType":"ExpressionStatement","src":"6903:60:6"}]},{"expression":{"hexValue":"74727565","id":1184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6991:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1155,"id":1185,"nodeType":"Return","src":"6984:11:6"}]},"documentation":{"id":1147,"nodeType":"StructuredDocumentation","src":"6094:476:6","text":" @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."},"functionSelector":"a457c2d7","id":1187,"implemented":true,"kind":"function","modifiers":[],"name":"decreaseAllowance","nameLocation":"6584:17:6","nodeType":"FunctionDefinition","parameters":{"id":1152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1149,"mutability":"mutable","name":"spender","nameLocation":"6610:7:6","nodeType":"VariableDeclaration","scope":1187,"src":"6602:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1148,"name":"address","nodeType":"ElementaryTypeName","src":"6602:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1151,"mutability":"mutable","name":"subtractedValue","nameLocation":"6627:15:6","nodeType":"VariableDeclaration","scope":1187,"src":"6619:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1150,"name":"uint256","nodeType":"ElementaryTypeName","src":"6619:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6601:42:6"},"returnParameters":{"id":1155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1154,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1187,"src":"6668:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1153,"name":"bool","nodeType":"ElementaryTypeName","src":"6668:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6667:6:6"},"scope":1504,"src":"6575:427:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1263,"nodeType":"Block","src":"7534:710:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1198,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7552:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7568:1:6","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":1200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7560:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1199,"name":"address","nodeType":"ElementaryTypeName","src":"7560:7:6","typeDescriptions":{}}},"id":1202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7560:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7552:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373","id":1204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7572:39:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","typeString":"literal_string \"ERC20: transfer from the zero address\""},"value":"ERC20: transfer from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","typeString":"literal_string \"ERC20: transfer from the zero address\""}],"id":1197,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7544:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7544:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1206,"nodeType":"ExpressionStatement","src":"7544:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1208,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"7630:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7644:1:6","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":1210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7636:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1209,"name":"address","nodeType":"ElementaryTypeName","src":"7636:7:6","typeDescriptions":{}}},"id":1212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7636:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7630:16:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472657373","id":1214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7648:37:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","typeString":"literal_string \"ERC20: transfer to the zero address\""},"value":"ERC20: transfer to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","typeString":"literal_string \"ERC20: transfer to the zero address\""}],"id":1207,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7622:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7622:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1216,"nodeType":"ExpressionStatement","src":"7622:64:6"},{"expression":{"arguments":[{"id":1218,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7718:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1219,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"7724:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1220,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"7728:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1217,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"7697:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7697:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1222,"nodeType":"ExpressionStatement","src":"7697:38:6"},{"assignments":[1224],"declarations":[{"constant":false,"id":1224,"mutability":"mutable","name":"fromBalance","nameLocation":"7754:11:6","nodeType":"VariableDeclaration","scope":1263,"src":"7746:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1223,"name":"uint256","nodeType":"ElementaryTypeName","src":"7746:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1228,"initialValue":{"baseExpression":{"id":1225,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"7768:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1227,"indexExpression":{"id":1226,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7778:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7768:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7746:37:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1230,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1224,"src":"7801:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1231,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"7816:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365","id":1233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7824:40:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","typeString":"literal_string \"ERC20: transfer amount exceeds balance\""},"value":"ERC20: transfer amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","typeString":"literal_string \"ERC20: transfer amount exceeds balance\""}],"id":1229,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7793:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7793:72:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1235,"nodeType":"ExpressionStatement","src":"7793:72:6"},{"id":1250,"nodeType":"UncheckedBlock","src":"7875:273:6","statements":[{"expression":{"id":1242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1236,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"7899:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1238,"indexExpression":{"id":1237,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7909:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7899:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1239,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1224,"src":"7917:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1240,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"7931:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7917:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7899:38:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1243,"nodeType":"ExpressionStatement","src":"7899:38:6"},{"expression":{"id":1248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1244,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"8114:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1246,"indexExpression":{"id":1245,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"8124:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8114:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1247,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"8131:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8114:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1249,"nodeType":"ExpressionStatement","src":"8114:23:6"}]},{"eventCall":{"arguments":[{"id":1252,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"8172:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1253,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"8178:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1254,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"8182:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1251,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"8163:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8163:26:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1256,"nodeType":"EmitStatement","src":"8158:31:6"},{"expression":{"arguments":[{"id":1258,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"8220:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1259,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"8226:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1260,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"8230:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1257,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"8200:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8200:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1262,"nodeType":"ExpressionStatement","src":"8200:37:6"}]},"documentation":{"id":1188,"nodeType":"StructuredDocumentation","src":"7008:443:6","text":" @dev Moves `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 Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`."},"id":1264,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"7465:9:6","nodeType":"FunctionDefinition","parameters":{"id":1195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1190,"mutability":"mutable","name":"from","nameLocation":"7483:4:6","nodeType":"VariableDeclaration","scope":1264,"src":"7475:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1189,"name":"address","nodeType":"ElementaryTypeName","src":"7475:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1192,"mutability":"mutable","name":"to","nameLocation":"7497:2:6","nodeType":"VariableDeclaration","scope":1264,"src":"7489:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1191,"name":"address","nodeType":"ElementaryTypeName","src":"7489:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1194,"mutability":"mutable","name":"amount","nameLocation":"7509:6:6","nodeType":"VariableDeclaration","scope":1264,"src":"7501:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1193,"name":"uint256","nodeType":"ElementaryTypeName","src":"7501:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7474:42:6"},"returnParameters":{"id":1196,"nodeType":"ParameterList","parameters":[],"src":"7534:0:6"},"scope":1504,"src":"7456:788:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1320,"nodeType":"Block","src":"8585:470:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1273,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8603:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8622:1:6","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":1275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8614:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1274,"name":"address","nodeType":"ElementaryTypeName","src":"8614:7:6","typeDescriptions":{}}},"id":1277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8614:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8603:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","id":1279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8626:33:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","typeString":"literal_string \"ERC20: mint to the zero address\""},"value":"ERC20: mint to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","typeString":"literal_string \"ERC20: mint to the zero address\""}],"id":1272,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8595:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8595:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1281,"nodeType":"ExpressionStatement","src":"8595:65:6"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8700:1:6","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":1284,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8692:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1283,"name":"address","nodeType":"ElementaryTypeName","src":"8692:7:6","typeDescriptions":{}}},"id":1286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8692:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1287,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8704:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1288,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8713:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1282,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"8671:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8671:49:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1290,"nodeType":"ExpressionStatement","src":"8671:49:6"},{"expression":{"id":1293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1291,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":941,"src":"8731:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1292,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8747:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8731:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1294,"nodeType":"ExpressionStatement","src":"8731:22:6"},{"id":1301,"nodeType":"UncheckedBlock","src":"8763:175:6","statements":[{"expression":{"id":1299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1295,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"8899:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1297,"indexExpression":{"id":1296,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8909:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8899:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1298,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8921:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8899:28:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1300,"nodeType":"ExpressionStatement","src":"8899:28:6"}]},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8969:1:6","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":1304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8961:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1303,"name":"address","nodeType":"ElementaryTypeName","src":"8961:7:6","typeDescriptions":{}}},"id":1306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8961:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1307,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8973:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1308,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8982:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1302,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"8952:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1310,"nodeType":"EmitStatement","src":"8947:42:6"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9028:1:6","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":1313,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9020:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1312,"name":"address","nodeType":"ElementaryTypeName","src":"9020:7:6","typeDescriptions":{}}},"id":1315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9020:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1316,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"9032:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1317,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"9041:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1311,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"9000:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9000:48:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1319,"nodeType":"ExpressionStatement","src":"9000:48:6"}]},"documentation":{"id":1265,"nodeType":"StructuredDocumentation","src":"8250:265:6","text":"@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."},"id":1321,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8529:5:6","nodeType":"FunctionDefinition","parameters":{"id":1270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1267,"mutability":"mutable","name":"account","nameLocation":"8543:7:6","nodeType":"VariableDeclaration","scope":1321,"src":"8535:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1266,"name":"address","nodeType":"ElementaryTypeName","src":"8535:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1269,"mutability":"mutable","name":"amount","nameLocation":"8560:6:6","nodeType":"VariableDeclaration","scope":1321,"src":"8552:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1268,"name":"uint256","nodeType":"ElementaryTypeName","src":"8552:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8534:33:6"},"returnParameters":{"id":1271,"nodeType":"ParameterList","parameters":[],"src":"8585:0:6"},"scope":1504,"src":"8520:535:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1392,"nodeType":"Block","src":"9440:594:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1330,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9458:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9477:1:6","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":1332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9469:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1331,"name":"address","nodeType":"ElementaryTypeName","src":"9469:7:6","typeDescriptions":{}}},"id":1334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9469:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9458:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f2061646472657373","id":1336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9481:35:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","typeString":"literal_string \"ERC20: burn from the zero address\""},"value":"ERC20: burn from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","typeString":"literal_string \"ERC20: burn from the zero address\""}],"id":1329,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9450:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9450:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1338,"nodeType":"ExpressionStatement","src":"9450:67:6"},{"expression":{"arguments":[{"id":1340,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9549:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9566:1:6","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":1342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9558:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1341,"name":"address","nodeType":"ElementaryTypeName","src":"9558:7:6","typeDescriptions":{}}},"id":1344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9558:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1345,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9570:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1339,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"9528:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9528:49:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1347,"nodeType":"ExpressionStatement","src":"9528:49:6"},{"assignments":[1349],"declarations":[{"constant":false,"id":1349,"mutability":"mutable","name":"accountBalance","nameLocation":"9596:14:6","nodeType":"VariableDeclaration","scope":1392,"src":"9588:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1348,"name":"uint256","nodeType":"ElementaryTypeName","src":"9588:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1353,"initialValue":{"baseExpression":{"id":1350,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"9613:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1352,"indexExpression":{"id":1351,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9623:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9613:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9588:43:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1355,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"9649:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1356,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9667:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9649:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365","id":1358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9675:36:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","typeString":"literal_string \"ERC20: burn amount exceeds balance\""},"value":"ERC20: burn amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","typeString":"literal_string \"ERC20: burn amount exceeds balance\""}],"id":1354,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9641:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9641:71:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1360,"nodeType":"ExpressionStatement","src":"9641:71:6"},{"id":1373,"nodeType":"UncheckedBlock","src":"9722:194:6","statements":[{"expression":{"id":1367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1361,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"9746:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1363,"indexExpression":{"id":1362,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9756:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9746:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1364,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"9767:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1365,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9784:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9767:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9746:44:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1368,"nodeType":"ExpressionStatement","src":"9746:44:6"},{"expression":{"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1369,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":941,"src":"9883:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1370,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9899:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9883:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1372,"nodeType":"ExpressionStatement","src":"9883:22:6"}]},{"eventCall":{"arguments":[{"id":1375,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9940:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9957:1:6","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":1377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9949:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1376,"name":"address","nodeType":"ElementaryTypeName","src":"9949:7:6","typeDescriptions":{}}},"id":1379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9949:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1380,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9961:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1374,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"9931:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9931:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1382,"nodeType":"EmitStatement","src":"9926:42:6"},{"expression":{"arguments":[{"id":1384,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9999:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10016:1:6","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":1386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10008:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1385,"name":"address","nodeType":"ElementaryTypeName","src":"10008:7:6","typeDescriptions":{}}},"id":1388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10008:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1389,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"10020:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1383,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"9979:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9979:48:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1391,"nodeType":"ExpressionStatement","src":"9979:48:6"}]},"documentation":{"id":1322,"nodeType":"StructuredDocumentation","src":"9061:309:6","text":" @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."},"id":1393,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"9384:5:6","nodeType":"FunctionDefinition","parameters":{"id":1327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1324,"mutability":"mutable","name":"account","nameLocation":"9398:7:6","nodeType":"VariableDeclaration","scope":1393,"src":"9390:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1323,"name":"address","nodeType":"ElementaryTypeName","src":"9390:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1326,"mutability":"mutable","name":"amount","nameLocation":"9415:6:6","nodeType":"VariableDeclaration","scope":1393,"src":"9407:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1325,"name":"uint256","nodeType":"ElementaryTypeName","src":"9407:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9389:33:6"},"returnParameters":{"id":1328,"nodeType":"ParameterList","parameters":[],"src":"9440:0:6"},"scope":1504,"src":"9375:659:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1437,"nodeType":"Block","src":"10540:257:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1404,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1396,"src":"10558:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10575:1:6","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":1406,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10567:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1405,"name":"address","nodeType":"ElementaryTypeName","src":"10567:7:6","typeDescriptions":{}}},"id":1408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10567:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10558:19:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373","id":1410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10579:38:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","typeString":"literal_string \"ERC20: approve from the zero address\""},"value":"ERC20: approve from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","typeString":"literal_string \"ERC20: approve from the zero address\""}],"id":1403,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10550:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10550:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1412,"nodeType":"ExpressionStatement","src":"10550:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1414,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1398,"src":"10636:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10655:1:6","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":1416,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10647:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1415,"name":"address","nodeType":"ElementaryTypeName","src":"10647:7:6","typeDescriptions":{}}},"id":1418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10647:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10636:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f2061646472657373","id":1420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10659:36:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","typeString":"literal_string \"ERC20: approve to the zero address\""},"value":"ERC20: approve to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","typeString":"literal_string \"ERC20: approve to the zero address\""}],"id":1413,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10628:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10628:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1422,"nodeType":"ExpressionStatement","src":"10628:68:6"},{"expression":{"id":1429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1423,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":939,"src":"10707:11:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1426,"indexExpression":{"id":1424,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1396,"src":"10719:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10707:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1427,"indexExpression":{"id":1425,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1398,"src":"10726:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10707:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1428,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1400,"src":"10737:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10707:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1430,"nodeType":"ExpressionStatement","src":"10707:36:6"},{"eventCall":{"arguments":[{"id":1432,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1396,"src":"10767:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1433,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1398,"src":"10774:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1434,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1400,"src":"10783:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1431,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1525,"src":"10758:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10758:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1436,"nodeType":"EmitStatement","src":"10753:37:6"}]},"documentation":{"id":1394,"nodeType":"StructuredDocumentation","src":"10040:412:6","text":" @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."},"id":1438,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10466:8:6","nodeType":"FunctionDefinition","parameters":{"id":1401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1396,"mutability":"mutable","name":"owner","nameLocation":"10483:5:6","nodeType":"VariableDeclaration","scope":1438,"src":"10475:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1395,"name":"address","nodeType":"ElementaryTypeName","src":"10475:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1398,"mutability":"mutable","name":"spender","nameLocation":"10498:7:6","nodeType":"VariableDeclaration","scope":1438,"src":"10490:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1397,"name":"address","nodeType":"ElementaryTypeName","src":"10490:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1400,"mutability":"mutable","name":"amount","nameLocation":"10515:6:6","nodeType":"VariableDeclaration","scope":1438,"src":"10507:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1399,"name":"uint256","nodeType":"ElementaryTypeName","src":"10507:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10474:48:6"},"returnParameters":{"id":1402,"nodeType":"ParameterList","parameters":[],"src":"10540:0:6"},"scope":1504,"src":"10457:340:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1480,"nodeType":"Block","src":"11168:321:6","statements":[{"assignments":[1449],"declarations":[{"constant":false,"id":1449,"mutability":"mutable","name":"currentAllowance","nameLocation":"11186:16:6","nodeType":"VariableDeclaration","scope":1480,"src":"11178:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1448,"name":"uint256","nodeType":"ElementaryTypeName","src":"11178:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1454,"initialValue":{"arguments":[{"id":1451,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1441,"src":"11215:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1452,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1443,"src":"11222:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1450,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"11205:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11205:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11178:52:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1455,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1449,"src":"11244:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":1458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11269:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1457,"name":"uint256","nodeType":"ElementaryTypeName","src":"11269:7:6","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1456,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11264:4:6","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11264:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":1460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11278:3:6","memberName":"max","nodeType":"MemberAccess","src":"11264:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11244:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1479,"nodeType":"IfStatement","src":"11240:243:6","trueBody":{"id":1478,"nodeType":"Block","src":"11283:200:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1463,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1449,"src":"11305:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1464,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"11325:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11305:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","id":1466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11333:31:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""},"value":"ERC20: insufficient allowance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""}],"id":1462,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11297:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11297:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1468,"nodeType":"ExpressionStatement","src":"11297:68:6"},{"id":1477,"nodeType":"UncheckedBlock","src":"11379:94:6","statements":[{"expression":{"arguments":[{"id":1470,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1441,"src":"11416:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1471,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1443,"src":"11423:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1472,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1449,"src":"11432:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1473,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"11451:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11432:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1469,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"11407:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11407:51:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1476,"nodeType":"ExpressionStatement","src":"11407:51:6"}]}]}}]},"documentation":{"id":1439,"nodeType":"StructuredDocumentation","src":"10803:270:6","text":" @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n Does not update the allowance amount in case of infinite allowance.\n Revert if not enough allowance is available.\n Might emit an {Approval} event."},"id":1481,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"11087:15:6","nodeType":"FunctionDefinition","parameters":{"id":1446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1441,"mutability":"mutable","name":"owner","nameLocation":"11111:5:6","nodeType":"VariableDeclaration","scope":1481,"src":"11103:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1440,"name":"address","nodeType":"ElementaryTypeName","src":"11103:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1443,"mutability":"mutable","name":"spender","nameLocation":"11126:7:6","nodeType":"VariableDeclaration","scope":1481,"src":"11118:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1442,"name":"address","nodeType":"ElementaryTypeName","src":"11118:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1445,"mutability":"mutable","name":"amount","nameLocation":"11143:6:6","nodeType":"VariableDeclaration","scope":1481,"src":"11135:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1444,"name":"uint256","nodeType":"ElementaryTypeName","src":"11135:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11102:48:6"},"returnParameters":{"id":1447,"nodeType":"ParameterList","parameters":[],"src":"11168:0:6"},"scope":1504,"src":"11078:411:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1491,"nodeType":"Block","src":"12162:2:6","statements":[]},"documentation":{"id":1482,"nodeType":"StructuredDocumentation","src":"11495:573:6","text":" @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":1492,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"12082:20:6","nodeType":"FunctionDefinition","parameters":{"id":1489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1484,"mutability":"mutable","name":"from","nameLocation":"12111:4:6","nodeType":"VariableDeclaration","scope":1492,"src":"12103:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1483,"name":"address","nodeType":"ElementaryTypeName","src":"12103:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1486,"mutability":"mutable","name":"to","nameLocation":"12125:2:6","nodeType":"VariableDeclaration","scope":1492,"src":"12117:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1485,"name":"address","nodeType":"ElementaryTypeName","src":"12117:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1488,"mutability":"mutable","name":"amount","nameLocation":"12137:6:6","nodeType":"VariableDeclaration","scope":1492,"src":"12129:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1487,"name":"uint256","nodeType":"ElementaryTypeName","src":"12129:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12102:42:6"},"returnParameters":{"id":1490,"nodeType":"ParameterList","parameters":[],"src":"12162:0:6"},"scope":1504,"src":"12073:91:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1502,"nodeType":"Block","src":"12840:2:6","statements":[]},"documentation":{"id":1493,"nodeType":"StructuredDocumentation","src":"12170:577:6","text":" @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":1503,"implemented":true,"kind":"function","modifiers":[],"name":"_afterTokenTransfer","nameLocation":"12761:19:6","nodeType":"FunctionDefinition","parameters":{"id":1500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1495,"mutability":"mutable","name":"from","nameLocation":"12789:4:6","nodeType":"VariableDeclaration","scope":1503,"src":"12781:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1494,"name":"address","nodeType":"ElementaryTypeName","src":"12781:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1497,"mutability":"mutable","name":"to","nameLocation":"12803:2:6","nodeType":"VariableDeclaration","scope":1503,"src":"12795:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1496,"name":"address","nodeType":"ElementaryTypeName","src":"12795:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1499,"mutability":"mutable","name":"amount","nameLocation":"12815:6:6","nodeType":"VariableDeclaration","scope":1503,"src":"12807:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1498,"name":"uint256","nodeType":"ElementaryTypeName","src":"12807:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12780:42:6"},"returnParameters":{"id":1501,"nodeType":"ParameterList","parameters":[],"src":"12840:0:6"},"scope":1504,"src":"12752:90:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1505,"src":"1532:11312:6","usedErrors":[],"usedEvents":[1516,1525]}],"src":"105:12740:6"},"id":6},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[1582]},"id":1583,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1506,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:7"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":1507,"nodeType":"StructuredDocumentation","src":"131:70:7","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":1582,"linearizedBaseContracts":[1582],"name":"IERC20","nameLocation":"212:6:7","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1508,"nodeType":"StructuredDocumentation","src":"225:158:7","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":1516,"name":"Transfer","nameLocation":"394:8:7","nodeType":"EventDefinition","parameters":{"id":1515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1510,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:7","nodeType":"VariableDeclaration","scope":1516,"src":"403:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1509,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1512,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:7","nodeType":"VariableDeclaration","scope":1516,"src":"425:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1511,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1514,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:7","nodeType":"VariableDeclaration","scope":1516,"src":"445:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1513,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:7"},"src":"388:72:7"},{"anonymous":false,"documentation":{"id":1517,"nodeType":"StructuredDocumentation","src":"466:148:7","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":1525,"name":"Approval","nameLocation":"625:8:7","nodeType":"EventDefinition","parameters":{"id":1524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1519,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:7","nodeType":"VariableDeclaration","scope":1525,"src":"634:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1518,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1521,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:7","nodeType":"VariableDeclaration","scope":1525,"src":"657:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1520,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1523,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:7","nodeType":"VariableDeclaration","scope":1525,"src":"682:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1522,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:7"},"src":"619:78:7"},{"documentation":{"id":1526,"nodeType":"StructuredDocumentation","src":"703:66:7","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":1531,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:7","nodeType":"FunctionDefinition","parameters":{"id":1527,"nodeType":"ParameterList","parameters":[],"src":"794:2:7"},"returnParameters":{"id":1530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1529,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1531,"src":"820:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1528,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:7"},"scope":1582,"src":"774:55:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1532,"nodeType":"StructuredDocumentation","src":"835:72:7","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":1539,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:7","nodeType":"FunctionDefinition","parameters":{"id":1535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1534,"mutability":"mutable","name":"account","nameLocation":"939:7:7","nodeType":"VariableDeclaration","scope":1539,"src":"931:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1533,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:7"},"returnParameters":{"id":1538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1537,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1539,"src":"971:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1536,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:7"},"scope":1582,"src":"912:68:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1540,"nodeType":"StructuredDocumentation","src":"986:202:7","text":" @dev Moves `amount` 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":1549,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:7","nodeType":"FunctionDefinition","parameters":{"id":1545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1542,"mutability":"mutable","name":"to","nameLocation":"1219:2:7","nodeType":"VariableDeclaration","scope":1549,"src":"1211:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1541,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1544,"mutability":"mutable","name":"amount","nameLocation":"1231:6:7","nodeType":"VariableDeclaration","scope":1549,"src":"1223:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1543,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:7"},"returnParameters":{"id":1548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1547,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1549,"src":"1257:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1546,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:7"},"scope":1582,"src":"1193:70:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1550,"nodeType":"StructuredDocumentation","src":"1269:264:7","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":1559,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:7","nodeType":"FunctionDefinition","parameters":{"id":1555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1552,"mutability":"mutable","name":"owner","nameLocation":"1565:5:7","nodeType":"VariableDeclaration","scope":1559,"src":"1557:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1551,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1554,"mutability":"mutable","name":"spender","nameLocation":"1580:7:7","nodeType":"VariableDeclaration","scope":1559,"src":"1572:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1553,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:7"},"returnParameters":{"id":1558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1559,"src":"1612:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1556,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:7"},"scope":1582,"src":"1538:83:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1560,"nodeType":"StructuredDocumentation","src":"1627:642:7","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":1569,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:7","nodeType":"FunctionDefinition","parameters":{"id":1565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1562,"mutability":"mutable","name":"spender","nameLocation":"2299:7:7","nodeType":"VariableDeclaration","scope":1569,"src":"2291:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1561,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1564,"mutability":"mutable","name":"amount","nameLocation":"2316:6:7","nodeType":"VariableDeclaration","scope":1569,"src":"2308:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1563,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:7"},"returnParameters":{"id":1568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1569,"src":"2342:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1566,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:7"},"scope":1582,"src":"2274:74:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1570,"nodeType":"StructuredDocumentation","src":"2354:287:7","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":1581,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:7","nodeType":"FunctionDefinition","parameters":{"id":1577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1572,"mutability":"mutable","name":"from","nameLocation":"2676:4:7","nodeType":"VariableDeclaration","scope":1581,"src":"2668:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1571,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1574,"mutability":"mutable","name":"to","nameLocation":"2690:2:7","nodeType":"VariableDeclaration","scope":1581,"src":"2682:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1573,"name":"address","nodeType":"ElementaryTypeName","src":"2682:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1576,"mutability":"mutable","name":"amount","nameLocation":"2702:6:7","nodeType":"VariableDeclaration","scope":1581,"src":"2694:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1575,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:42:7"},"returnParameters":{"id":1580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1579,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1581,"src":"2728:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1578,"name":"bool","nodeType":"ElementaryTypeName","src":"2728:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2727:6:7"},"scope":1582,"src":"2646:88:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1583,"src":"202:2534:7","usedErrors":[],"usedEvents":[1516,1525]}],"src":"106:2631:7"},"id":7},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[1582],"IERC20Metadata":[1607]},"id":1608,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1584,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"110:23:8"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":1585,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1608,"sourceUnit":1583,"src":"135:23:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1587,"name":"IERC20","nameLocations":["305:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":1582,"src":"305:6:8"},"id":1588,"nodeType":"InheritanceSpecifier","src":"305:6:8"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":1586,"nodeType":"StructuredDocumentation","src":"160:116:8","text":" @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"},"fullyImplemented":false,"id":1607,"linearizedBaseContracts":[1607,1582],"name":"IERC20Metadata","nameLocation":"287:14:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1589,"nodeType":"StructuredDocumentation","src":"318:54:8","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":1594,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"386:4:8","nodeType":"FunctionDefinition","parameters":{"id":1590,"nodeType":"ParameterList","parameters":[],"src":"390:2:8"},"returnParameters":{"id":1593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1592,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1594,"src":"416:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1591,"name":"string","nodeType":"ElementaryTypeName","src":"416:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"415:15:8"},"scope":1607,"src":"377:54:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1595,"nodeType":"StructuredDocumentation","src":"437:56:8","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":1600,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"507:6:8","nodeType":"FunctionDefinition","parameters":{"id":1596,"nodeType":"ParameterList","parameters":[],"src":"513:2:8"},"returnParameters":{"id":1599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1598,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1600,"src":"539:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1597,"name":"string","nodeType":"ElementaryTypeName","src":"539:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"538:15:8"},"scope":1607,"src":"498:56:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1601,"nodeType":"StructuredDocumentation","src":"560:65:8","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":1606,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"639:8:8","nodeType":"FunctionDefinition","parameters":{"id":1602,"nodeType":"ParameterList","parameters":[],"src":"647:2:8"},"returnParameters":{"id":1605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1604,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1606,"src":"673:5:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1603,"name":"uint8","nodeType":"ElementaryTypeName","src":"673:5:8","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"672:7:8"},"scope":1607,"src":"630:50:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1608,"src":"277:405:8","usedErrors":[],"usedEvents":[1516,1525]}],"src":"110:573:8"},"id":8},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[1637]},"id":1638,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1609,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:9"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":1610,"nodeType":"StructuredDocumentation","src":"126:496:9","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":1637,"linearizedBaseContracts":[1637],"name":"Context","nameLocation":"641:7:9","nodeType":"ContractDefinition","nodes":[{"body":{"id":1618,"nodeType":"Block","src":"717:34:9","statements":[{"expression":{"expression":{"id":1615,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"734:3:9","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"738:6:9","memberName":"sender","nodeType":"MemberAccess","src":"734:10:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1614,"id":1617,"nodeType":"Return","src":"727:17:9"}]},"id":1619,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"664:10:9","nodeType":"FunctionDefinition","parameters":{"id":1611,"nodeType":"ParameterList","parameters":[],"src":"674:2:9"},"returnParameters":{"id":1614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1613,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1619,"src":"708:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1612,"name":"address","nodeType":"ElementaryTypeName","src":"708:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"707:9:9"},"scope":1637,"src":"655:96:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1627,"nodeType":"Block","src":"824:32:9","statements":[{"expression":{"expression":{"id":1624,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"841:3:9","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"845:4:9","memberName":"data","nodeType":"MemberAccess","src":"841:8:9","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":1623,"id":1626,"nodeType":"Return","src":"834:15:9"}]},"id":1628,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"766:8:9","nodeType":"FunctionDefinition","parameters":{"id":1620,"nodeType":"ParameterList","parameters":[],"src":"774:2:9"},"returnParameters":{"id":1623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1628,"src":"808:14:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1621,"name":"bytes","nodeType":"ElementaryTypeName","src":"808:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"807:16:9"},"scope":1637,"src":"757:99:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1635,"nodeType":"Block","src":"934:25:9","statements":[{"expression":{"hexValue":"30","id":1633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"951:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1632,"id":1634,"nodeType":"Return","src":"944:8:9"}]},"id":1636,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"871:20:9","nodeType":"FunctionDefinition","parameters":{"id":1629,"nodeType":"ParameterList","parameters":[],"src":"891:2:9"},"returnParameters":{"id":1632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1631,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1636,"src":"925:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1630,"name":"uint256","nodeType":"ElementaryTypeName","src":"925:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"924:9:9"},"scope":1637,"src":"862:97:9","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":1638,"src":"623:338:9","usedErrors":[],"usedEvents":[]}],"src":"101:861:9"},"id":9},"contracts/Gateway.sol":{"ast":{"absolutePath":"contracts/Gateway.sol","exportedSymbols":{"ContextUpgradeable":[917],"Gateway":[2490],"GatewaySettingManager":[2766],"IERC20":[1582],"IGateway":[2925],"Initializable":[408],"PausableUpgradeable":[536]},"id":2491,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":1639,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:10"},{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","id":1640,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2491,"sourceUnit":537,"src":"65:78:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/GatewaySettingManager.sol","file":"./GatewaySettingManager.sol","id":1642,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2491,"sourceUnit":2767,"src":"145:66:10","symbolAliases":[{"foreign":{"id":1641,"name":"GatewaySettingManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2766,"src":"153:21:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGateway.sol","file":"./interfaces/IGateway.sol","id":1645,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2491,"sourceUnit":2926,"src":"212:59:10","symbolAliases":[{"foreign":{"id":1643,"name":"IGateway","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2925,"src":"220:8:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":1644,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"230:6:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1647,"name":"IGateway","nameLocations":["410:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":2925,"src":"410:8:10"},"id":1648,"nodeType":"InheritanceSpecifier","src":"410:8:10"},{"baseName":{"id":1649,"name":"GatewaySettingManager","nameLocations":["420:21:10"],"nodeType":"IdentifierPath","referencedDeclaration":2766,"src":"420:21:10"},"id":1650,"nodeType":"InheritanceSpecifier","src":"420:21:10"},{"baseName":{"id":1651,"name":"PausableUpgradeable","nameLocations":["443:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":536,"src":"443:19:10"},"id":1652,"nodeType":"InheritanceSpecifier","src":"443:19:10"}],"canonicalName":"Gateway","contractDependencies":[],"contractKind":"contract","documentation":{"id":1646,"nodeType":"StructuredDocumentation","src":"273:116:10","text":" @title Gateway\n @notice This contract serves as a gateway for creating orders and managing settlements."},"fullyImplemented":true,"id":2490,"linearizedBaseContracts":[2490,536,2766,106,239,917,408,2925],"name":"Gateway","nameLocation":"399:7:10","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Gateway.fee","id":1657,"members":[{"constant":false,"id":1654,"mutability":"mutable","name":"protocolFee","nameLocation":"489:11:10","nodeType":"VariableDeclaration","scope":1657,"src":"481:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1653,"name":"uint256","nodeType":"ElementaryTypeName","src":"481:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1656,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"512:23:10","nodeType":"VariableDeclaration","scope":1657,"src":"504:31:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1655,"name":"uint256","nodeType":"ElementaryTypeName","src":"504:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"fee","nameLocation":"473:3:10","nodeType":"StructDefinition","scope":2490,"src":"466:73:10","visibility":"public"},{"constant":false,"id":1662,"mutability":"mutable","name":"order","nameLocation":"576:5:10","nodeType":"VariableDeclaration","scope":2490,"src":"542:39:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"typeName":{"id":1661,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1658,"name":"bytes32","nodeType":"ElementaryTypeName","src":"550:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"542:25:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1660,"nodeType":"UserDefinedTypeName","pathNode":{"id":1659,"name":"Order","nameLocations":["561:5:10"],"nodeType":"IdentifierPath","referencedDeclaration":2855,"src":"561:5:10"},"referencedDeclaration":2855,"src":"561:5:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage_ptr","typeString":"struct IGateway.Order"}}},"visibility":"private"},{"constant":false,"id":1666,"mutability":"mutable","name":"_nonce","nameLocation":"620:6:10","nodeType":"VariableDeclaration","scope":2490,"src":"584:42:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1665,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1663,"name":"address","nodeType":"ElementaryTypeName","src":"592:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"584:27:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1664,"name":"uint256","nodeType":"ElementaryTypeName","src":"603:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":1670,"mutability":"mutable","name":"__gap","nameLocation":"649:5:10","nodeType":"VariableDeclaration","scope":2490,"src":"629:25:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":1667,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1669,"length":{"hexValue":"3530","id":1668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"637:2:10","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"629:11:10","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"},{"body":{"id":1677,"nodeType":"Block","src":"722:30:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1674,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":389,"src":"726:20:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"726:22:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1676,"nodeType":"ExpressionStatement","src":"726:22:10"}]},"documentation":{"id":1671,"nodeType":"StructuredDocumentation","src":"658:48:10","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":1678,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1672,"nodeType":"ParameterList","parameters":[],"src":"719:2:10"},"returnParameters":{"id":1673,"nodeType":"ParameterList","parameters":[],"src":"722:0:10"},"scope":2490,"src":"708:44:10","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1694,"nodeType":"Block","src":"838:71:10","statements":[{"expression":{"id":1686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1684,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"842:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"3130305f303030","id":1685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"852:7:10","typeDescriptions":{"typeIdentifier":"t_rational_100000_by_1","typeString":"int_const 100000"},"value":"100_000"},"src":"842:17:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1687,"nodeType":"ExpressionStatement","src":"842:17:10"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1688,"name":"__Ownable2Step_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"863:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"863:21:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1690,"nodeType":"ExpressionStatement","src":"863:21:10"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1691,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":440,"src":"888:15:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"888:17:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1693,"nodeType":"ExpressionStatement","src":"888:17:10"}]},"documentation":{"id":1679,"nodeType":"StructuredDocumentation","src":"755:38:10","text":" @dev Initialize function."},"functionSelector":"8129fc1c","id":1695,"implemented":true,"kind":"function","modifiers":[{"id":1682,"kind":"modifierInvocation","modifierName":{"id":1681,"name":"initializer","nameLocations":["826:11:10"],"nodeType":"IdentifierPath","referencedDeclaration":310,"src":"826:11:10"},"nodeType":"ModifierInvocation","src":"826:11:10"}],"name":"initialize","nameLocation":"804:10:10","nodeType":"FunctionDefinition","parameters":{"id":1680,"nodeType":"ParameterList","parameters":[],"src":"814:2:10"},"returnParameters":{"id":1683,"nodeType":"ParameterList","parameters":[],"src":"838:0:10"},"scope":2490,"src":"795:114:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1707,"nodeType":"Block","src":"1018:72:10","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1699,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1030:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1034:6:10","memberName":"sender","nodeType":"MemberAccess","src":"1030:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1701,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2503,"src":"1044:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1030:32:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c7941676772656761746f72","id":1703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1064:16:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""},"value":"OnlyAggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""}],"id":1698,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1022:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1022:59:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1705,"nodeType":"ExpressionStatement","src":"1022:59:10"},{"id":1706,"nodeType":"PlaceholderStatement","src":"1085:1:10"}]},"documentation":{"id":1696,"nodeType":"StructuredDocumentation","src":"912:78:10","text":" @dev Modifier that allows only the aggregator to call a function."},"id":1708,"name":"onlyAggregator","nameLocation":"1001:14:10","nodeType":"ModifierDefinition","parameters":{"id":1697,"nodeType":"ParameterList","parameters":[],"src":"1015:2:10"},"src":"992:98:10","virtual":false,"visibility":"internal"},{"body":{"id":1717,"nodeType":"Block","src":"1361:16:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1714,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"1365:6:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1365:8:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1716,"nodeType":"ExpressionStatement","src":"1365:8:10"}]},"documentation":{"id":1709,"nodeType":"StructuredDocumentation","src":"1286:37:10","text":" @dev Pause the contract."},"functionSelector":"8456cb59","id":1718,"implemented":true,"kind":"function","modifiers":[{"id":1712,"kind":"modifierInvocation","modifierName":{"id":1711,"name":"onlyOwner","nameLocations":["1351:9:10"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1351:9:10"},"nodeType":"ModifierInvocation","src":"1351:9:10"}],"name":"pause","nameLocation":"1334:5:10","nodeType":"FunctionDefinition","parameters":{"id":1710,"nodeType":"ParameterList","parameters":[],"src":"1339:2:10"},"returnParameters":{"id":1713,"nodeType":"ParameterList","parameters":[],"src":"1361:0:10"},"scope":2490,"src":"1325:52:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1727,"nodeType":"Block","src":"1459:18:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1724,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":530,"src":"1463:8:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1463:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1726,"nodeType":"ExpressionStatement","src":"1463:10:10"}]},"documentation":{"id":1719,"nodeType":"StructuredDocumentation","src":"1380:39:10","text":" @dev Unpause the contract."},"functionSelector":"3f4ba83a","id":1728,"implemented":true,"kind":"function","modifiers":[{"id":1722,"kind":"modifierInvocation","modifierName":{"id":1721,"name":"onlyOwner","nameLocations":["1449:9:10"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1449:9:10"},"nodeType":"ModifierInvocation","src":"1449:9:10"}],"name":"unpause","nameLocation":"1430:7:10","nodeType":"FunctionDefinition","parameters":{"id":1720,"nodeType":"ParameterList","parameters":[],"src":"1437:2:10"},"returnParameters":{"id":1723,"nodeType":"ParameterList","parameters":[],"src":"1459:0:10"},"scope":2490,"src":"1421:56:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2875],"body":{"id":1891,"nodeType":"Block","src":"1945:1529:10","statements":[{"expression":{"arguments":[{"id":1751,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1731,"src":"1988:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1752,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"1996:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1753,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"2005:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1754,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1737,"src":"2021:19:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1755,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1739,"src":"2042:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1750,"name":"_handler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"1979:8:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,address,uint256) view"}},"id":1756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1979:74:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1757,"nodeType":"ExpressionStatement","src":"1979:74:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1761,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1743,"src":"2098:11:10","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1760,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2092:5:10","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1759,"name":"bytes","nodeType":"ElementaryTypeName","src":"2092:5:10","typeDescriptions":{}}},"id":1762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:18:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2111:6:10","memberName":"length","nodeType":"MemberAccess","src":"2092:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1764,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2121:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2092:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69644d65737361676548617368","id":1766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2124:20:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""},"value":"InvalidMessageHash"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""}],"id":1758,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2084:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2084:61:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1768,"nodeType":"ExpressionStatement","src":"2084:61:10"},{"expression":{"arguments":[{"expression":{"id":1773,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2226:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2230:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2226:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1777,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2246:4:10","typeDescriptions":{"typeIdentifier":"t_contract$_Gateway_$2490","typeString":"contract Gateway"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Gateway_$2490","typeString":"contract Gateway"}],"id":1776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2238:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1775,"name":"address","nodeType":"ElementaryTypeName","src":"2238:7:10","typeDescriptions":{}}},"id":1778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2238:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1779,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"2253:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1780,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1739,"src":"2263:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2253:20:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1770,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1731,"src":"2205:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1769,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"2198:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":1771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2198:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":1772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2213:12:10","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":1581,"src":"2198:27:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":1782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2198:76:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1783,"nodeType":"ExpressionStatement","src":"2198:76:10"},{"expression":{"id":1788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2329:20:10","subExpression":{"baseExpression":{"id":1784,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1666,"src":"2329:6:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1787,"indexExpression":{"expression":{"id":1785,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2336:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2340:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2336:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2329:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1789,"nodeType":"ExpressionStatement","src":"2329:20:10"},{"expression":{"id":1804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1790,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1748,"src":"2417:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":1794,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2448:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2452:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2448:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":1796,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1666,"src":"2460:6:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1799,"indexExpression":{"expression":{"id":1797,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2467:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2471:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2467:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2460:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1800,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2480:5:10","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2486:7:10","memberName":"chainid","nodeType":"MemberAccess","src":"2480:13:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1792,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2437:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1793,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2441:6:10","memberName":"encode","nodeType":"MemberAccess","src":"2437:10:10","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2437:57:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1791,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2427:9:10","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2427:68:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2417:78:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1805,"nodeType":"ExpressionStatement","src":"2417:78:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1807,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"2508:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1809,"indexExpression":{"id":1808,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1748,"src":"2514:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2508:14:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2523:6:10","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":2836,"src":"2508:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1813,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2541:1:10","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":1812,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2533:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1811,"name":"address","nodeType":"ElementaryTypeName","src":"2533:7:10","typeDescriptions":{}}},"id":1814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2533:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2508:35:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572416c7265616479457869737473","id":1816,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2545:20:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""},"value":"OrderAlreadyExists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""}],"id":1806,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2500:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:66:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1818,"nodeType":"ExpressionStatement","src":"2500:66:10"},{"assignments":[1820],"declarations":[{"constant":false,"id":1820,"mutability":"mutable","name":"_protocolFee","nameLocation":"2603:12:10","nodeType":"VariableDeclaration","scope":1891,"src":"2595:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1819,"name":"uint256","nodeType":"ElementaryTypeName","src":"2595:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1821,"nodeType":"VariableDeclarationStatement","src":"2595:20:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1822,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1735,"src":"2623:5:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"313030","id":1823,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2632:3:10","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"2623:12:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1855,"nodeType":"Block","src":"2701:299:10","statements":[{"assignments":[1832],"declarations":[{"constant":false,"id":1832,"mutability":"mutable","name":"settings","nameLocation":"2804:8:10","nodeType":"VariableDeclaration","scope":1855,"src":"2780:32:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1831,"nodeType":"UserDefinedTypeName","pathNode":{"id":1830,"name":"TokenFeeSettings","nameLocations":["2780:16:10"],"nodeType":"IdentifierPath","referencedDeclaration":2516,"src":"2780:16:10"},"referencedDeclaration":2516,"src":"2780:16:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1836,"initialValue":{"baseExpression":{"id":1833,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2521,"src":"2815:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1835,"indexExpression":{"id":1834,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1731,"src":"2833:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2815:25:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2780:60:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1838,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1832,"src":"2853:8:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1839,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2862:22:10","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2515,"src":"2853:31:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2887:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2853:35:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","id":1842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2890:31:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""},"value":"TokenFeeSettingsNotConfigured"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""}],"id":1837,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2845:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2845:77:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1844,"nodeType":"ExpressionStatement","src":"2845:77:10"},{"expression":{"id":1853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1845,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"2927:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1846,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"2943:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1847,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1832,"src":"2953:8:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1848,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2962:22:10","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2515,"src":"2953:31:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2943:41:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1850,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2942:43:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1851,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"2988:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2942:53:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2927:68:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1854,"nodeType":"ExpressionStatement","src":"2927:68:10"}]},"id":1856,"nodeType":"IfStatement","src":"2619:381:10","trueBody":{"id":1829,"nodeType":"Block","src":"2637:58:10","statements":[{"expression":{"id":1827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1825,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"2674:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2689:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2674:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1828,"nodeType":"ExpressionStatement","src":"2674:16:10"}]}},{"expression":{"id":1876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1857,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"3003:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1859,"indexExpression":{"id":1858,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1748,"src":"3009:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3003:14:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1861,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3039:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3043:6:10","memberName":"sender","nodeType":"MemberAccess","src":"3039:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1863,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1731,"src":"3061:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1864,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1737,"src":"3092:19:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1865,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1739,"src":"3127:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1866,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"3155:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3185:5:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"66616c7365","id":1868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3207:5:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":1869,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"3232:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1872,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"3270:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3263:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":1870,"name":"uint64","nodeType":"ElementaryTypeName","src":"3263:6:10","typeDescriptions":{}}},"id":1873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3263:15:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":1874,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"3291:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1860,"name":"Order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2855,"src":"3020:5:10","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Order_$2855_storage_ptr_$","typeString":"type(struct IGateway.Order storage pointer)"}},"id":1875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3031:6:10","3054:5:10","3072:18:10","3116:9:10","3142:11:10","3172:11:10","3195:10:10","3217:13:10","3251:10:10","3283:6:10"],"names":["sender","token","senderFeeRecipient","senderFee","protocolFee","isFulfilled","isRefunded","refundAddress","currentBPS","amount"],"nodeType":"FunctionCall","src":"3020:283:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_memory_ptr","typeString":"struct IGateway.Order memory"}},"src":"3003:300:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1877,"nodeType":"ExpressionStatement","src":"3003:300:10"},{"eventCall":{"arguments":[{"id":1879,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"3360:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1880,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1731,"src":"3379:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1881,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"3390:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1883,"indexExpression":{"id":1882,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1748,"src":"3396:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3390:14:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1884,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3405:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2854,"src":"3390:21:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1885,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"3416:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1886,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1748,"src":"3433:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1887,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1735,"src":"3445:5:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":1888,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1743,"src":"3455:11:10","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1878,"name":"OrderCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"3343:12:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes32_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,uint256,bytes32,uint256,string memory)"}},"id":1889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3343:127:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1890,"nodeType":"EmitStatement","src":"3338:132:10"}]},"documentation":{"id":1729,"nodeType":"StructuredDocumentation","src":"1668:39:10","text":"@dev See {createOrder-IGateway}. "},"functionSelector":"809804f7","id":1892,"implemented":true,"kind":"function","modifiers":[{"id":1746,"kind":"modifierInvocation","modifierName":{"id":1745,"name":"whenNotPaused","nameLocations":["1905:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"1905:13:10"},"nodeType":"ModifierInvocation","src":"1905:13:10"}],"name":"createOrder","nameLocation":"1718:11:10","nodeType":"FunctionDefinition","parameters":{"id":1744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1731,"mutability":"mutable","name":"_token","nameLocation":"1741:6:10","nodeType":"VariableDeclaration","scope":1892,"src":"1733:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1730,"name":"address","nodeType":"ElementaryTypeName","src":"1733:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1733,"mutability":"mutable","name":"_amount","nameLocation":"1759:7:10","nodeType":"VariableDeclaration","scope":1892,"src":"1751:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1732,"name":"uint256","nodeType":"ElementaryTypeName","src":"1751:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1735,"mutability":"mutable","name":"_rate","nameLocation":"1777:5:10","nodeType":"VariableDeclaration","scope":1892,"src":"1770:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":1734,"name":"uint96","nodeType":"ElementaryTypeName","src":"1770:6:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":1737,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"1794:19:10","nodeType":"VariableDeclaration","scope":1892,"src":"1786:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1736,"name":"address","nodeType":"ElementaryTypeName","src":"1786:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1739,"mutability":"mutable","name":"_senderFee","nameLocation":"1825:10:10","nodeType":"VariableDeclaration","scope":1892,"src":"1817:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1738,"name":"uint256","nodeType":"ElementaryTypeName","src":"1817:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1741,"mutability":"mutable","name":"_refundAddress","nameLocation":"1847:14:10","nodeType":"VariableDeclaration","scope":1892,"src":"1839:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1740,"name":"address","nodeType":"ElementaryTypeName","src":"1839:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1743,"mutability":"mutable","name":"messageHash","nameLocation":"1881:11:10","nodeType":"VariableDeclaration","scope":1892,"src":"1865:27:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1742,"name":"string","nodeType":"ElementaryTypeName","src":"1865:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1729:166:10"},"returnParameters":{"id":1749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1748,"mutability":"mutable","name":"orderId","nameLocation":"1936:7:10","nodeType":"VariableDeclaration","scope":1892,"src":"1928:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1747,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1928:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1927:17:10"},"scope":2490,"src":"1709:1765:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1947,"nodeType":"Block","src":"4018:276:10","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1907,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2507,"src":"4030:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1909,"indexExpression":{"id":1908,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1895,"src":"4048:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4030:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4059:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4030:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e4e6f74537570706f72746564","id":1912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4062:19:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""},"value":"TokenNotSupported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""}],"id":1906,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4022:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4022:60:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1914,"nodeType":"ExpressionStatement","src":"4022:60:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1916,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1897,"src":"4094:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1917,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4105:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4094:12:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e7449735a65726f","id":1919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4108:14:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""},"value":"AmountIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""}],"id":1915,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4086:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4086:37:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1921,"nodeType":"ExpressionStatement","src":"4086:37:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1923,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1899,"src":"4135:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4161:1:10","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":1925,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4153:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1924,"name":"address","nodeType":"ElementaryTypeName","src":"4153:7:10","typeDescriptions":{}}},"id":1927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4153:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4135:28:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5468726f775a65726f41646472657373","id":1929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4165:18:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""},"value":"ThrowZeroAddress"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""}],"id":1922,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4127:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4127:57:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1931,"nodeType":"ExpressionStatement","src":"4127:57:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1932,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1903,"src":"4193:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4207:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4193:15:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1946,"nodeType":"IfStatement","src":"4189:102:10","trueBody":{"id":1945,"nodeType":"Block","src":"4210:81:10","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1936,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1901,"src":"4223:19:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4254:1:10","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":1938,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4246:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1937,"name":"address","nodeType":"ElementaryTypeName","src":"4246:7:10","typeDescriptions":{}}},"id":1940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4246:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4223:33:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","id":1942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4258:27:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""},"value":"InvalidSenderFeeRecipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""}],"id":1935,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4215:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4215:71:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1944,"nodeType":"ExpressionStatement","src":"4215:71:10"}]}}]},"documentation":{"id":1893,"nodeType":"StructuredDocumentation","src":"3477:388:10","text":" @dev Internal function to handle order creation.\n @param _token The address of the token being traded.\n @param _amount The amount of tokens being traded.\n @param _refundAddress The address to refund the tokens in case of cancellation.\n @param _senderFeeRecipient The address of the recipient for the sender fee.\n @param _senderFee The amount of the sender fee."},"id":1948,"implemented":true,"kind":"function","modifiers":[],"name":"_handler","nameLocation":"3876:8:10","nodeType":"FunctionDefinition","parameters":{"id":1904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1895,"mutability":"mutable","name":"_token","nameLocation":"3896:6:10","nodeType":"VariableDeclaration","scope":1948,"src":"3888:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1894,"name":"address","nodeType":"ElementaryTypeName","src":"3888:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1897,"mutability":"mutable","name":"_amount","nameLocation":"3914:7:10","nodeType":"VariableDeclaration","scope":1948,"src":"3906:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1896,"name":"uint256","nodeType":"ElementaryTypeName","src":"3906:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1899,"mutability":"mutable","name":"_refundAddress","nameLocation":"3933:14:10","nodeType":"VariableDeclaration","scope":1948,"src":"3925:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1898,"name":"address","nodeType":"ElementaryTypeName","src":"3925:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1901,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"3959:19:10","nodeType":"VariableDeclaration","scope":1948,"src":"3951:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1900,"name":"address","nodeType":"ElementaryTypeName","src":"3951:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1903,"mutability":"mutable","name":"_senderFee","nameLocation":"3990:10:10","nodeType":"VariableDeclaration","scope":1948,"src":"3982:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1902,"name":"uint256","nodeType":"ElementaryTypeName","src":"3982:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3884:119:10"},"returnParameters":{"id":1905,"nodeType":"ParameterList","parameters":[],"src":"4018:0:10"},"scope":2490,"src":"3867:427:10","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[2889],"body":{"id":2120,"nodeType":"Block","src":"4689:1705:10","statements":[{"expression":{"arguments":[{"id":1969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4752:28:10","subExpression":{"expression":{"baseExpression":{"id":1965,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"4753:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1967,"indexExpression":{"id":1966,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"4759:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4753:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1968,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4769:11:10","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2846,"src":"4753:27:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":1970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4782:16:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":1964,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4744:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4744:55:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1972,"nodeType":"ExpressionStatement","src":"4744:55:10"},{"expression":{"arguments":[{"id":1978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4811:27:10","subExpression":{"expression":{"baseExpression":{"id":1974,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"4812:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1976,"indexExpression":{"id":1975,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"4818:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4812:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1977,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4828:10:10","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2848,"src":"4812:26:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":1979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4840:15:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":1973,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4803:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4803:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1981,"nodeType":"ExpressionStatement","src":"4803:53:10"},{"assignments":[1983],"declarations":[{"constant":false,"id":1983,"mutability":"mutable","name":"token","nameLocation":"4901:5:10","nodeType":"VariableDeclaration","scope":2120,"src":"4893:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1982,"name":"address","nodeType":"ElementaryTypeName","src":"4893:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1988,"initialValue":{"expression":{"baseExpression":{"id":1984,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"4909:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1986,"indexExpression":{"id":1985,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"4915:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4909:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1987,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4925:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"4909:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4893:37:10"},{"assignments":[1990],"declarations":[{"constant":false,"id":1990,"mutability":"mutable","name":"currentOrderBPS","nameLocation":"5005:15:10","nodeType":"VariableDeclaration","scope":2120,"src":"4997:23:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1989,"name":"uint256","nodeType":"ElementaryTypeName","src":"4997:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1995,"initialValue":{"expression":{"baseExpression":{"id":1991,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5023:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1993,"indexExpression":{"id":1992,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5029:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5023:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1994,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5039:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2852,"src":"5023:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"VariableDeclarationStatement","src":"4997:52:10"},{"expression":{"id":2001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1996,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5053:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1998,"indexExpression":{"id":1997,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5059:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5053:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":1999,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5069:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2852,"src":"5053:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2000,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1957,"src":"5083:14:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5053:44:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":2002,"nodeType":"ExpressionStatement","src":"5053:44:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":2008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2003,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5106:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2005,"indexExpression":{"id":2004,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5112:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5106:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5122:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2852,"src":"5106:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5136:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5106:31:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2043,"nodeType":"IfStatement","src":"5102:487:10","trueBody":{"id":2042,"nodeType":"Block","src":"5139:450:10","statements":[{"expression":{"id":2014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2009,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5189:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2011,"indexExpression":{"id":2010,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5195:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5189:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2012,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5205:11:10","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2846,"src":"5189:27:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5219:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5189:34:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2015,"nodeType":"ExpressionStatement","src":"5189:34:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2016,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5233:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2018,"indexExpression":{"id":2017,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5239:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5233:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2019,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5249:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2842,"src":"5233:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5262:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5233:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2041,"nodeType":"IfStatement","src":"5229:356:10","trueBody":{"id":2040,"nodeType":"Block","src":"5265:320:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2022,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5326:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2024,"indexExpression":{"id":2023,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5332:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5326:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2025,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5342:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2844,"src":"5326:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5357:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5326:32:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2038,"nodeType":"Block","src":"5484:96:10","statements":[{"expression":{"arguments":[{"id":2035,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5564:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2034,"name":"_handleFxTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2489,"src":"5534:29:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":2036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5534:39:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2037,"nodeType":"ExpressionStatement","src":"5534:39:10"}]},"id":2039,"nodeType":"IfStatement","src":"5322:258:10","trueBody":{"id":2033,"nodeType":"Block","src":"5360:118:10","statements":[{"expression":{"arguments":[{"id":2029,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5442:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2030,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1955,"src":"5452:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2028,"name":"_handleLocalTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"5409:32:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5409:62:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2032,"nodeType":"ExpressionStatement","src":"5409:62:10"}]}}]}}]}},{"assignments":[2045],"declarations":[{"constant":false,"id":2045,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"5637:23:10","nodeType":"VariableDeclaration","scope":2120,"src":"5629:31:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2044,"name":"uint256","nodeType":"ElementaryTypeName","src":"5629:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2055,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2046,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5664:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2048,"indexExpression":{"id":2047,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5670:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5664:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2049,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5680:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2854,"src":"5664:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2050,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1957,"src":"5689:14:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5664:39:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2052,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5663:41:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2053,"name":"currentOrderBPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1990,"src":"5710:15:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5663:62:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5629:96:10"},{"expression":{"id":2061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2056,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5729:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2058,"indexExpression":{"id":2057,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5735:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5729:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2059,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5745:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2854,"src":"5729:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2060,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2045,"src":"5755:23:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5729:49:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2062,"nodeType":"ExpressionStatement","src":"5729:49:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2063,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5787:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2065,"indexExpression":{"id":2064,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5793:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5787:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2066,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5803:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2844,"src":"5787:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5817:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5787:31:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2102,"nodeType":"IfStatement","src":"5783:413:10","trueBody":{"id":2101,"nodeType":"Block","src":"5820:376:10","statements":[{"assignments":[2071],"declarations":[{"constant":false,"id":2071,"mutability":"mutable","name":"settings","nameLocation":"5911:8:10","nodeType":"VariableDeclaration","scope":2101,"src":"5887:32:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2070,"nodeType":"UserDefinedTypeName","pathNode":{"id":2069,"name":"TokenFeeSettings","nameLocations":["5887:16:10"],"nodeType":"IdentifierPath","referencedDeclaration":2516,"src":"5887:16:10"},"referencedDeclaration":2516,"src":"5887:16:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":2078,"initialValue":{"baseExpression":{"id":2072,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2521,"src":"5922:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2077,"indexExpression":{"expression":{"baseExpression":{"id":2073,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"5940:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2075,"indexExpression":{"id":2074,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"5946:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5940:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2076,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5956:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"5940:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5922:40:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"5887:75:10"},{"assignments":[2080],"declarations":[{"constant":false,"id":2080,"mutability":"mutable","name":"protocolFee","nameLocation":"5975:11:10","nodeType":"VariableDeclaration","scope":2101,"src":"5967:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2079,"name":"uint256","nodeType":"ElementaryTypeName","src":"5967:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2088,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2081,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2045,"src":"5990:23:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":2082,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2071,"src":"6016:8:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":2083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6025:22:10","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2515,"src":"6016:31:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5990:57:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2085,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5989:59:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2086,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"6055:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5989:73:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5967:95:10"},{"expression":{"id":2091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2089,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2045,"src":"6067:23:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2090,"name":"protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2080,"src":"6094:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6067:38:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2092,"nodeType":"ExpressionStatement","src":"6067:38:10"},{"expression":{"arguments":[{"id":2097,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"6162:15:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2098,"name":"protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2080,"src":"6179:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2094,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1983,"src":"6146:5:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2093,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6139:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6139:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6153:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6139:22:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6139:52:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2100,"nodeType":"ExpressionStatement","src":"6139:52:10"}]}},{"expression":{"arguments":[{"id":2107,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1955,"src":"6223:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2108,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2045,"src":"6243:23:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2104,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1983,"src":"6207:5:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2103,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6200:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6200:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6214:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6200:22:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6200:67:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2110,"nodeType":"ExpressionStatement","src":"6200:67:10"},{"eventCall":{"arguments":[{"id":2112,"name":"_splitOrderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1951,"src":"6314:13:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2113,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"6329:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2114,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1955,"src":"6339:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2115,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1957,"src":"6359:14:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":2111,"name":"OrderSettled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2799,"src":"6301:12:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_address_$_t_uint96_$returns$__$","typeString":"function (bytes32,bytes32,address,uint96)"}},"id":2116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6301:73:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2117,"nodeType":"EmitStatement","src":"6296:78:10"},{"expression":{"hexValue":"74727565","id":2118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6386:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1963,"id":2119,"nodeType":"Return","src":"6379:11:10"}]},"documentation":{"id":1949,"nodeType":"StructuredDocumentation","src":"4495:34:10","text":"@dev See {settle-IGateway}. "},"functionSelector":"f22ee704","id":2121,"implemented":true,"kind":"function","modifiers":[{"id":1960,"kind":"modifierInvocation","modifierName":{"id":1959,"name":"onlyAggregator","nameLocations":["4659:14:10"],"nodeType":"IdentifierPath","referencedDeclaration":1708,"src":"4659:14:10"},"nodeType":"ModifierInvocation","src":"4659:14:10"}],"name":"settle","nameLocation":"4540:6:10","nodeType":"FunctionDefinition","parameters":{"id":1958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1951,"mutability":"mutable","name":"_splitOrderId","nameLocation":"4558:13:10","nodeType":"VariableDeclaration","scope":2121,"src":"4550:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1950,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4550:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1953,"mutability":"mutable","name":"_orderId","nameLocation":"4583:8:10","nodeType":"VariableDeclaration","scope":2121,"src":"4575:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1952,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4575:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1955,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"4603:18:10","nodeType":"VariableDeclaration","scope":2121,"src":"4595:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1954,"name":"address","nodeType":"ElementaryTypeName","src":"4595:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1957,"mutability":"mutable","name":"_settlePercent","nameLocation":"4632:14:10","nodeType":"VariableDeclaration","scope":2121,"src":"4625:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1956,"name":"uint64","nodeType":"ElementaryTypeName","src":"4625:6:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4546:103:10"},"returnParameters":{"id":1963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1962,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2121,"src":"4683:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1961,"name":"bool","nodeType":"ElementaryTypeName","src":"4683:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4682:6:10"},"scope":2490,"src":"4531:1863:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2899],"body":{"id":2226,"nodeType":"Block","src":"6520:833:10","statements":[{"expression":{"arguments":[{"id":2138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6583:28:10","subExpression":{"expression":{"baseExpression":{"id":2134,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"6584:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2136,"indexExpression":{"id":2135,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"6590:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6584:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2137,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6600:11:10","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2846,"src":"6584:27:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":2139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6613:16:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":2133,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6575:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6575:55:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2141,"nodeType":"ExpressionStatement","src":"6575:55:10"},{"expression":{"arguments":[{"id":2147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6642:27:10","subExpression":{"expression":{"baseExpression":{"id":2143,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"6643:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2145,"indexExpression":{"id":2144,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"6649:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6643:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6659:10:10","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2848,"src":"6643:26:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":2148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6671:15:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":2142,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6634:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6634:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2150,"nodeType":"ExpressionStatement","src":"6634:53:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2152,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"6699:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2154,"indexExpression":{"id":2153,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"6705:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6699:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6715:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2844,"src":"6699:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2156,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"6730:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6699:35:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4665654578636565647350726f746f636f6c466565","id":2158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6736:23:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""},"value":"FeeExceedsProtocolFee"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""}],"id":2151,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6691:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6691:69:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2160,"nodeType":"ExpressionStatement","src":"6691:69:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2161,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"6769:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6776:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6769:8:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2176,"nodeType":"IfStatement","src":"6765:127:10","trueBody":{"id":2175,"nodeType":"Block","src":"6779:113:10","statements":[{"expression":{"arguments":[{"id":2171,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"6865:15:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2172,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"6882:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2165,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"6833:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2167,"indexExpression":{"id":2166,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"6839:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6833:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6849:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"6833:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2164,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6826:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6826:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6856:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6826:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6826:61:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2174,"nodeType":"ExpressionStatement","src":"6826:61:10"}]}},{"expression":{"id":2182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2177,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"6920:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2179,"indexExpression":{"id":2178,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"6926:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6920:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2180,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6936:10:10","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2848,"src":"6920:26:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6949:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6920:33:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2183,"nodeType":"ExpressionStatement","src":"6920:33:10"},{"expression":{"id":2189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2184,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"6957:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2186,"indexExpression":{"id":2185,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"6963:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6957:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2187,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6973:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2852,"src":"6957:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6986:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6957:30:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":2190,"nodeType":"ExpressionStatement","src":"6957:30:10"},{"assignments":[2192],"declarations":[{"constant":false,"id":2192,"mutability":"mutable","name":"refundAmount","nameLocation":"7034:12:10","nodeType":"VariableDeclaration","scope":2226,"src":"7026:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2191,"name":"uint256","nodeType":"ElementaryTypeName","src":"7026:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2199,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2193,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"7049:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2195,"indexExpression":{"id":2194,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"7055:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7049:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2196,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7065:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2854,"src":"7049:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2197,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"7074:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7049:29:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7026:52:10"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2207,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"7191:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2209,"indexExpression":{"id":2208,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"7197:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7191:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7207:13:10","memberName":"refundAddress","nodeType":"MemberAccess","referencedDeclaration":2850,"src":"7191:29:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2211,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2192,"src":"7225:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":2212,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"7240:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2214,"indexExpression":{"id":2213,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"7246:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7240:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2215,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7256:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2842,"src":"7240:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7225:40:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2201,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"7155:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2203,"indexExpression":{"id":2202,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"7161:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7155:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7171:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"7155:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2200,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"7148:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7148:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7178:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"7148:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7148:121:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2218,"nodeType":"ExpressionStatement","src":"7148:121:10"},{"eventCall":{"arguments":[{"id":2220,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"7318:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2221,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2126,"src":"7324:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2219,"name":"OrderRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2806,"src":"7304:13:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":2222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7304:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2223,"nodeType":"EmitStatement","src":"7299:34:10"},{"expression":{"hexValue":"74727565","id":2224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7345:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2132,"id":2225,"nodeType":"Return","src":"7338:11:10"}]},"documentation":{"id":2122,"nodeType":"StructuredDocumentation","src":"6397:34:10","text":"@dev See {refund-IGateway}. "},"functionSelector":"71eedb88","id":2227,"implemented":true,"kind":"function","modifiers":[{"id":2129,"kind":"modifierInvocation","modifierName":{"id":2128,"name":"onlyAggregator","nameLocations":["6490:14:10"],"nodeType":"IdentifierPath","referencedDeclaration":1708,"src":"6490:14:10"},"nodeType":"ModifierInvocation","src":"6490:14:10"}],"name":"refund","nameLocation":"6442:6:10","nodeType":"FunctionDefinition","parameters":{"id":2127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2124,"mutability":"mutable","name":"_fee","nameLocation":"6457:4:10","nodeType":"VariableDeclaration","scope":2227,"src":"6449:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2123,"name":"uint256","nodeType":"ElementaryTypeName","src":"6449:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2126,"mutability":"mutable","name":"_orderId","nameLocation":"6471:8:10","nodeType":"VariableDeclaration","scope":2227,"src":"6463:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2125,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6463:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6448:32:10"},"returnParameters":{"id":2132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2227,"src":"6514:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2130,"name":"bool","nodeType":"ElementaryTypeName","src":"6514:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6513:6:10"},"scope":2490,"src":"6433:920:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2916],"body":{"id":2240,"nodeType":"Block","src":"7663:30:10","statements":[{"expression":{"baseExpression":{"id":2236,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"7674:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2238,"indexExpression":{"id":2237,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2230,"src":"7680:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7674:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"functionReturnParameters":2235,"id":2239,"nodeType":"Return","src":"7667:22:10"}]},"documentation":{"id":2228,"nodeType":"StructuredDocumentation","src":"7544:40:10","text":"@dev See {getOrderInfo-IGateway}. "},"functionSelector":"768c6ec0","id":2241,"implemented":true,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"7595:12:10","nodeType":"FunctionDefinition","parameters":{"id":2231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2230,"mutability":"mutable","name":"_orderId","nameLocation":"7616:8:10","nodeType":"VariableDeclaration","scope":2241,"src":"7608:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2229,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7608:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7607:18:10"},"returnParameters":{"id":2235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2234,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2241,"src":"7649:12:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":2233,"nodeType":"UserDefinedTypeName","pathNode":{"id":2232,"name":"Order","nameLocations":["7649:5:10"],"nodeType":"IdentifierPath","referencedDeclaration":2855,"src":"7649:5:10"},"referencedDeclaration":2855,"src":"7649:5:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"7648:14:10"},"scope":2490,"src":"7586:107:10","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[2907],"body":{"id":2259,"nodeType":"Block","src":"7813:71:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2249,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2507,"src":"7821:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2251,"indexExpression":{"id":2250,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2244,"src":"7839:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7821:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7850:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7821:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2256,"nodeType":"IfStatement","src":"7817:47:10","trueBody":{"expression":{"hexValue":"74727565","id":2254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7860:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2248,"id":2255,"nodeType":"Return","src":"7853:11:10"}},{"expression":{"hexValue":"66616c7365","id":2257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7875:5:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":2248,"id":2258,"nodeType":"Return","src":"7868:12:10"}]},"documentation":{"id":2242,"nodeType":"StructuredDocumentation","src":"7696:44:10","text":"@dev See {isTokenSupported-IGateway}. "},"functionSelector":"75151b63","id":2260,"implemented":true,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"7751:16:10","nodeType":"FunctionDefinition","parameters":{"id":2245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2244,"mutability":"mutable","name":"_token","nameLocation":"7776:6:10","nodeType":"VariableDeclaration","scope":2260,"src":"7768:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2243,"name":"address","nodeType":"ElementaryTypeName","src":"7768:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7767:16:10"},"returnParameters":{"id":2248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2247,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2260,"src":"7807:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2246,"name":"bool","nodeType":"ElementaryTypeName","src":"7807:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7806:6:10"},"scope":2490,"src":"7742:142:10","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[2924],"body":{"id":2272,"nodeType":"Block","src":"7995:44:10","statements":[{"expression":{"components":[{"id":2268,"name":"protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2499,"src":"8007:18:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":2269,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"8027:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2270,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8006:29:10","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint64_$_t_uint256_$","typeString":"tuple(uint64,uint256)"}},"functionReturnParameters":2267,"id":2271,"nodeType":"Return","src":"7999:36:10"}]},"documentation":{"id":2261,"nodeType":"StructuredDocumentation","src":"7887:41:10","text":"@dev See {getFeeDetails-IGateway}. "},"functionSelector":"b810c636","id":2273,"implemented":true,"kind":"function","modifiers":[],"name":"getFeeDetails","nameLocation":"7939:13:10","nodeType":"FunctionDefinition","parameters":{"id":2262,"nodeType":"ParameterList","parameters":[],"src":"7952:2:10"},"returnParameters":{"id":2267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2264,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2273,"src":"7978:6:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2263,"name":"uint64","nodeType":"ElementaryTypeName","src":"7978:6:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2266,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2273,"src":"7986:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2265,"name":"uint256","nodeType":"ElementaryTypeName","src":"7986:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7977:17:10"},"scope":2490,"src":"7930:109:10","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2396,"nodeType":"Block","src":"8357:1179:10","statements":[{"assignments":[2283],"declarations":[{"constant":false,"id":2283,"mutability":"mutable","name":"settings","nameLocation":"8385:8:10","nodeType":"VariableDeclaration","scope":2396,"src":"8361:32:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2282,"nodeType":"UserDefinedTypeName","pathNode":{"id":2281,"name":"TokenFeeSettings","nameLocations":["8361:16:10"],"nodeType":"IdentifierPath","referencedDeclaration":2516,"src":"8361:16:10"},"referencedDeclaration":2516,"src":"8361:16:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":2290,"initialValue":{"baseExpression":{"id":2284,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2521,"src":"8396:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2289,"indexExpression":{"expression":{"baseExpression":{"id":2285,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"8414:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2287,"indexExpression":{"id":2286,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"8420:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8414:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2288,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8430:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"8414:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8396:40:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"8361:75:10"},{"assignments":[2292],"declarations":[{"constant":false,"id":2292,"mutability":"mutable","name":"senderFee","nameLocation":"8448:9:10","nodeType":"VariableDeclaration","scope":2396,"src":"8440:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2291,"name":"uint256","nodeType":"ElementaryTypeName","src":"8440:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2297,"initialValue":{"expression":{"baseExpression":{"id":2293,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"8460:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2295,"indexExpression":{"id":2294,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"8466:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8460:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2296,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8476:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2842,"src":"8460:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8440:45:10"},{"assignments":[2299],"declarations":[{"constant":false,"id":2299,"mutability":"mutable","name":"providerAmount","nameLocation":"8536:14:10","nodeType":"VariableDeclaration","scope":2396,"src":"8528:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2298,"name":"uint256","nodeType":"ElementaryTypeName","src":"8528:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2307,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2300,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2292,"src":"8554:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":2301,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2283,"src":"8566:8:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":2302,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8575:16:10","memberName":"senderToProvider","nodeType":"MemberAccess","referencedDeclaration":2509,"src":"8566:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8554:37:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2304,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8553:39:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2305,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"8595:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8553:49:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8528:74:10"},{"assignments":[2309],"declarations":[{"constant":false,"id":2309,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"8614:16:10","nodeType":"VariableDeclaration","scope":2396,"src":"8606:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2308,"name":"uint256","nodeType":"ElementaryTypeName","src":"8606:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2317,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2310,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"8634:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":2311,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2283,"src":"8651:8:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":2312,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8660:20:10","memberName":"providerToAggregator","nodeType":"MemberAccess","referencedDeclaration":2511,"src":"8651:29:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8634:46:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2314,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8633:48:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2315,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"8684:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8633:58:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8606:85:10"},{"assignments":[2319],"declarations":[{"constant":false,"id":2319,"mutability":"mutable","name":"senderAmount","nameLocation":"8703:12:10","nodeType":"VariableDeclaration","scope":2396,"src":"8695:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2318,"name":"uint256","nodeType":"ElementaryTypeName","src":"8695:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2323,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2320,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2292,"src":"8718:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2321,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"8730:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8718:26:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8695:49:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2324,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"8782:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8797:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8782:16:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2342,"nodeType":"IfStatement","src":"8778:133:10","trueBody":{"id":2341,"nodeType":"Block","src":"8800:111:10","statements":[{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2334,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"8849:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2336,"indexExpression":{"id":2335,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"8855:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8849:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2337,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8865:18:10","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2840,"src":"8849:34:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2338,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"8889:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2328,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"8812:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2330,"indexExpression":{"id":2329,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"8818:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8812:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2331,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8828:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"8812:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2327,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"8805:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8805:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8835:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"8805:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8805:101:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2340,"nodeType":"ExpressionStatement","src":"8805:101:10"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2343,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"9000:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2344,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"9017:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9000:33:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9036:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9000:37:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2362,"nodeType":"IfStatement","src":"8996:159:10","trueBody":{"id":2361,"nodeType":"Block","src":"9039:116:10","statements":[{"expression":{"arguments":[{"id":2355,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2278,"src":"9088:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2356,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"9112:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2357,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"9129:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9112:33:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2349,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"9051:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2351,"indexExpression":{"id":2350,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"9057:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9051:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9067:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"9051:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2348,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"9044:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9044:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9074:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"9044:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9044:106:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2360,"nodeType":"ExpressionStatement","src":"9044:106:10"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2363,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"9208:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9227:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9208:20:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2378,"nodeType":"IfStatement","src":"9204:109:10","trueBody":{"id":2377,"nodeType":"Block","src":"9230:83:10","statements":[{"expression":{"arguments":[{"id":2373,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"9274:15:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2374,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"9291:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2367,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"9242:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2369,"indexExpression":{"id":2368,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"9248:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9242:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9258:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"9242:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2366,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"9235:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9235:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9265:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"9235:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9235:73:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2376,"nodeType":"ExpressionStatement","src":"9235:73:10"}]}},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":2380,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"9360:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2382,"indexExpression":{"id":2381,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"9366:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9360:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2383,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9376:18:10","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2840,"src":"9360:34:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2384,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"9396:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2379,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2813,"src":"9339:20:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9339:70:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2386,"nodeType":"EmitStatement","src":"9334:75:10"},{"eventCall":{"arguments":[{"id":2388,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2276,"src":"9444:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2389,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"9457:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2390,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"9474:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2391,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"9491:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9474:33:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2393,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2309,"src":"9512:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2387,"name":"LocalTransferFeeSplit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2824,"src":"9418:21:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,uint256,uint256)"}},"id":2394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9418:114:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2395,"nodeType":"EmitStatement","src":"9413:119:10"}]},"documentation":{"id":2274,"nodeType":"StructuredDocumentation","src":"8042:209:10","text":" @dev Handles fee splitting for local transfers (rate = 1).\n @param _orderId The order ID to process.\n @param _liquidityProvider The address of the liquidity provider who fulfilled the order."},"id":2397,"implemented":true,"kind":"function","modifiers":[],"name":"_handleLocalTransferFeeSplitting","nameLocation":"8262:32:10","nodeType":"FunctionDefinition","parameters":{"id":2279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2276,"mutability":"mutable","name":"_orderId","nameLocation":"8306:8:10","nodeType":"VariableDeclaration","scope":2397,"src":"8298:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2275,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8298:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2278,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"8326:18:10","nodeType":"VariableDeclaration","scope":2397,"src":"8318:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2277,"name":"address","nodeType":"ElementaryTypeName","src":"8318:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8294:53:10"},"returnParameters":{"id":2280,"nodeType":"ParameterList","parameters":[],"src":"8357:0:10"},"scope":2490,"src":"8253:1283:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2488,"nodeType":"Block","src":"9721:834:10","statements":[{"assignments":[2405],"declarations":[{"constant":false,"id":2405,"mutability":"mutable","name":"settings","nameLocation":"9749:8:10","nodeType":"VariableDeclaration","scope":2488,"src":"9725:32:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2404,"nodeType":"UserDefinedTypeName","pathNode":{"id":2403,"name":"TokenFeeSettings","nameLocations":["9725:16:10"],"nodeType":"IdentifierPath","referencedDeclaration":2516,"src":"9725:16:10"},"referencedDeclaration":2516,"src":"9725:16:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":2412,"initialValue":{"baseExpression":{"id":2406,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2521,"src":"9760:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2411,"indexExpression":{"expression":{"baseExpression":{"id":2407,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"9778:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2409,"indexExpression":{"id":2408,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"9784:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9778:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9794:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"9778:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9760:40:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9725:75:10"},{"assignments":[2414],"declarations":[{"constant":false,"id":2414,"mutability":"mutable","name":"senderFee","nameLocation":"9812:9:10","nodeType":"VariableDeclaration","scope":2488,"src":"9804:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2413,"name":"uint256","nodeType":"ElementaryTypeName","src":"9804:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2419,"initialValue":{"expression":{"baseExpression":{"id":2415,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"9824:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2417,"indexExpression":{"id":2416,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"9830:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9824:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2418,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9840:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2842,"src":"9824:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9804:45:10"},{"assignments":[2421],"declarations":[{"constant":false,"id":2421,"mutability":"mutable","name":"senderAmount","nameLocation":"9928:12:10","nodeType":"VariableDeclaration","scope":2488,"src":"9920:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2420,"name":"uint256","nodeType":"ElementaryTypeName","src":"9920:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2432,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2422,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2414,"src":"9944:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2423,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"9957:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":2424,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2405,"src":"9967:8:10","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":2425,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9976:18:10","memberName":"senderToAggregator","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"9967:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9957:37:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2427,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9956:39:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9944:51:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2429,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9943:53:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2430,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"9999:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9943:63:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9920:86:10"},{"assignments":[2434],"declarations":[{"constant":false,"id":2434,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"10018:16:10","nodeType":"VariableDeclaration","scope":2488,"src":"10010:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2433,"name":"uint256","nodeType":"ElementaryTypeName","src":"10010:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2438,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2435,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2414,"src":"10037:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2436,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2421,"src":"10049:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10037:24:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10010:51:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2439,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2421,"src":"10099:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10114:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10099:16:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2457,"nodeType":"IfStatement","src":"10095:133:10","trueBody":{"id":2456,"nodeType":"Block","src":"10117:111:10","statements":[{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2449,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"10166:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2451,"indexExpression":{"id":2450,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"10172:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10166:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2452,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10182:18:10","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2840,"src":"10166:34:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2453,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2421,"src":"10206:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2443,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"10129:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2445,"indexExpression":{"id":2444,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"10135:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10129:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2446,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10145:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"10129:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2442,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"10122:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10122:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10152:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"10122:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10122:101:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2455,"nodeType":"ExpressionStatement","src":"10122:101:10"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2458,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"10281:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10300:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10281:20:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2473,"nodeType":"IfStatement","src":"10277:109:10","trueBody":{"id":2472,"nodeType":"Block","src":"10303:83:10","statements":[{"expression":{"arguments":[{"id":2468,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"10347:15:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2469,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"10364:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2462,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"10315:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2464,"indexExpression":{"id":2463,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"10321:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10315:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2465,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10331:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2838,"src":"10315:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2461,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"10308:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10308:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10338:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"10308:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10308:73:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2471,"nodeType":"ExpressionStatement","src":"10308:73:10"}]}},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":2475,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"10433:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2855_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2477,"indexExpression":{"id":2476,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"10439:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10433:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage","typeString":"struct IGateway.Order storage ref"}},"id":2478,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10449:18:10","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2840,"src":"10433:34:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2479,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2421,"src":"10469:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2474,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2813,"src":"10412:20:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10412:70:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2481,"nodeType":"EmitStatement","src":"10407:75:10"},{"eventCall":{"arguments":[{"id":2483,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"10510:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2484,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2421,"src":"10520:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2485,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2434,"src":"10534:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2482,"name":"FxTransferFeeSplit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2833,"src":"10491:18:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,uint256)"}},"id":2486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10491:60:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2487,"nodeType":"EmitStatement","src":"10486:65:10"}]},"documentation":{"id":2398,"nodeType":"StructuredDocumentation","src":"9539:114:10","text":" @dev Handles fee splitting for FX transfers (rate != 1).\n @param _orderId The order ID to process."},"id":2489,"implemented":true,"kind":"function","modifiers":[],"name":"_handleFxTransferFeeSplitting","nameLocation":"9664:29:10","nodeType":"FunctionDefinition","parameters":{"id":2401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2400,"mutability":"mutable","name":"_orderId","nameLocation":"9702:8:10","nodeType":"VariableDeclaration","scope":2489,"src":"9694:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2399,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9694:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9693:18:10"},"returnParameters":{"id":2402,"nodeType":"ParameterList","parameters":[],"src":"9721:0:10"},"scope":2490,"src":"9655:900:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":2491,"src":"390:10167:10","usedErrors":[],"usedEvents":[17,124,254,423,428,2533,2539,2543,2555,2788,2799,2806,2813,2824,2833]}],"src":"39:10519:10"},"id":10},"contracts/GatewaySettingManager.sol":{"ast":{"absolutePath":"contracts/GatewaySettingManager.sol","exportedSymbols":{"ContextUpgradeable":[917],"GatewaySettingManager":[2766],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":2767,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2492,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"168:24:11"},{"absolutePath":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","id":2493,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2767,"sourceUnit":107,"src":"194:80:11","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2494,"name":"Ownable2StepUpgradeable","nameLocations":["310:23:11"],"nodeType":"IdentifierPath","referencedDeclaration":106,"src":"310:23:11"},"id":2495,"nodeType":"InheritanceSpecifier","src":"310:23:11"}],"canonicalName":"GatewaySettingManager","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":2766,"linearizedBaseContracts":[2766,106,239,917,408],"name":"GatewaySettingManager","nameLocation":"285:21:11","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":2497,"mutability":"mutable","name":"MAX_BPS","nameLocation":"354:7:11","nodeType":"VariableDeclaration","scope":2766,"src":"337:24:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2496,"name":"uint256","nodeType":"ElementaryTypeName","src":"337:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2499,"mutability":"mutable","name":"protocolFeePercent","nameLocation":"380:18:11","nodeType":"VariableDeclaration","scope":2766,"src":"364:34:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2498,"name":"uint64","nodeType":"ElementaryTypeName","src":"364:6:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2501,"mutability":"mutable","name":"treasuryAddress","nameLocation":"418:15:11","nodeType":"VariableDeclaration","scope":2766,"src":"401:32:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2500,"name":"address","nodeType":"ElementaryTypeName","src":"401:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2503,"mutability":"mutable","name":"_aggregatorAddress","nameLocation":"453:18:11","nodeType":"VariableDeclaration","scope":2766,"src":"436:35:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2502,"name":"address","nodeType":"ElementaryTypeName","src":"436:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2507,"mutability":"mutable","name":"_isTokenSupported","nameLocation":"511:17:11","nodeType":"VariableDeclaration","scope":2766,"src":"474:54:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":2506,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2504,"name":"address","nodeType":"ElementaryTypeName","src":"482:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"474:27:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2505,"name":"uint256","nodeType":"ElementaryTypeName","src":"493:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"canonicalName":"GatewaySettingManager.TokenFeeSettings","id":2516,"members":[{"constant":false,"id":2509,"mutability":"mutable","name":"senderToProvider","nameLocation":"600:16:11","nodeType":"VariableDeclaration","scope":2516,"src":"592:24:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2508,"name":"uint256","nodeType":"ElementaryTypeName","src":"592:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2511,"mutability":"mutable","name":"providerToAggregator","nameLocation":"682:20:11","nodeType":"VariableDeclaration","scope":2516,"src":"674:28:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2510,"name":"uint256","nodeType":"ElementaryTypeName","src":"674:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2513,"mutability":"mutable","name":"senderToAggregator","nameLocation":"776:18:11","nodeType":"VariableDeclaration","scope":2516,"src":"768:26:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2512,"name":"uint256","nodeType":"ElementaryTypeName","src":"768:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2515,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"859:22:11","nodeType":"VariableDeclaration","scope":2516,"src":"851:30:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2514,"name":"uint256","nodeType":"ElementaryTypeName","src":"851:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"TokenFeeSettings","nameLocation":"571:16:11","nodeType":"StructDefinition","scope":2766,"src":"564:386:11","visibility":"public"},{"constant":false,"id":2521,"mutability":"mutable","name":"_tokenFeeSettings","nameLocation":"999:17:11","nodeType":"VariableDeclaration","scope":2766,"src":"953:63:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"typeName":{"id":2520,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2517,"name":"address","nodeType":"ElementaryTypeName","src":"961:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"953:36:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2519,"nodeType":"UserDefinedTypeName","pathNode":{"id":2518,"name":"TokenFeeSettings","nameLocations":["972:16:11"],"nodeType":"IdentifierPath","referencedDeclaration":2516,"src":"972:16:11"},"referencedDeclaration":2516,"src":"972:16:11","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}}},"visibility":"internal"},{"constant":false,"id":2525,"mutability":"mutable","name":"__gap","nameLocation":"1040:5:11","nodeType":"VariableDeclaration","scope":2766,"src":"1020:25:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":2522,"name":"uint256","nodeType":"ElementaryTypeName","src":"1020:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2524,"length":{"hexValue":"3439","id":2523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1028:2:11","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"1020:11:11","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"},{"anonymous":false,"eventSelector":"cfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c","id":2533,"name":"SettingManagerBool","nameLocation":"1055:18:11","nodeType":"EventDefinition","parameters":{"id":2532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2527,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1090:4:11","nodeType":"VariableDeclaration","scope":2533,"src":"1074:20:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2526,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1074:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2529,"indexed":true,"mutability":"mutable","name":"value","nameLocation":"1112:5:11","nodeType":"VariableDeclaration","scope":2533,"src":"1096:21:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2528,"name":"address","nodeType":"ElementaryTypeName","src":"1096:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2531,"indexed":false,"mutability":"mutable","name":"status","nameLocation":"1127:6:11","nodeType":"VariableDeclaration","scope":2533,"src":"1119:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2530,"name":"uint256","nodeType":"ElementaryTypeName","src":"1119:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1073:61:11"},"src":"1049:86:11"},{"anonymous":false,"eventSelector":"bbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4","id":2539,"name":"ProtocolAddressUpdated","nameLocation":"1143:22:11","nodeType":"EventDefinition","parameters":{"id":2538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2535,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1182:4:11","nodeType":"VariableDeclaration","scope":2539,"src":"1166:20:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2534,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1166:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2537,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1204:15:11","nodeType":"VariableDeclaration","scope":2539,"src":"1188:31:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2536,"name":"address","nodeType":"ElementaryTypeName","src":"1188:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1165:55:11"},"src":"1137:84:11"},{"anonymous":false,"eventSelector":"2e979f80fe4d43055c584cf4a8467c55875ea36728fc37176c05acd784eb7a73","id":2543,"name":"SetFeeRecipient","nameLocation":"1229:15:11","nodeType":"EventDefinition","parameters":{"id":2542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2541,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1261:15:11","nodeType":"VariableDeclaration","scope":2543,"src":"1245:31:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2540,"name":"address","nodeType":"ElementaryTypeName","src":"1245:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1244:33:11"},"src":"1223:55:11"},{"anonymous":false,"eventSelector":"d4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c","id":2555,"name":"TokenFeeSettingsUpdated","nameLocation":"1286:23:11","nodeType":"EventDefinition","parameters":{"id":2554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2545,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"1329:5:11","nodeType":"VariableDeclaration","scope":2555,"src":"1313:21:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2544,"name":"address","nodeType":"ElementaryTypeName","src":"1313:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2547,"indexed":false,"mutability":"mutable","name":"senderToProvider","nameLocation":"1346:16:11","nodeType":"VariableDeclaration","scope":2555,"src":"1338:24:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2546,"name":"uint256","nodeType":"ElementaryTypeName","src":"1338:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2549,"indexed":false,"mutability":"mutable","name":"providerToAggregator","nameLocation":"1374:20:11","nodeType":"VariableDeclaration","scope":2555,"src":"1366:28:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2548,"name":"uint256","nodeType":"ElementaryTypeName","src":"1366:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2551,"indexed":false,"mutability":"mutable","name":"senderToAggregator","nameLocation":"1406:18:11","nodeType":"VariableDeclaration","scope":2555,"src":"1398:26:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2550,"name":"uint256","nodeType":"ElementaryTypeName","src":"1398:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2553,"indexed":false,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"1436:22:11","nodeType":"VariableDeclaration","scope":2555,"src":"1428:30:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2552,"name":"uint256","nodeType":"ElementaryTypeName","src":"1428:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1309:152:11"},"src":"1280:182:11"},{"body":{"id":2605,"nodeType":"Block","src":"2036:243:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2568,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2560,"src":"2048:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2065:1:11","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":2570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2057:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2569,"name":"address","nodeType":"ElementaryTypeName","src":"2057:7:11","typeDescriptions":{}}},"id":2572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2057:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2048:19:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2069:23:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2567,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2040:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2040:53:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2576,"nodeType":"ExpressionStatement","src":"2040:53:11"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2578,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2562,"src":"2105:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2115:1:11","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2105:11:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2581,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2562,"src":"2120:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":2582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2130:1:11","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2120:11:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2105:26:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c696420737461747573","id":2585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2133:25:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""},"value":"Gateway: invalid status"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""}],"id":2577,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2097:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2097:62:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2587,"nodeType":"ExpressionStatement","src":"2097:62:11"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2588,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2558,"src":"2167:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"746f6b656e","id":2589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2175:7:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_9b9b0454cadcb5884dd3faa6ba975da4d2459aa3f11d31291a25a8358f84946d","typeString":"literal_string \"token\""},"value":"token"},"src":"2167:15:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2604,"nodeType":"IfStatement","src":"2163:113:11","trueBody":{"id":2603,"nodeType":"Block","src":"2184:92:11","statements":[{"expression":{"id":2595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2591,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2507,"src":"2189:17:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2593,"indexExpression":{"id":2592,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2560,"src":"2207:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2189:24:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2594,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2562,"src":"2216:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2189:33:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2596,"nodeType":"ExpressionStatement","src":"2189:33:11"},{"eventCall":{"arguments":[{"id":2598,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2558,"src":"2251:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2599,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2560,"src":"2257:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2600,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2562,"src":"2264:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2597,"name":"SettingManagerBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2533,"src":"2232:18:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":2601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2232:39:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2602,"nodeType":"EmitStatement","src":"2227:44:11"}]}}]},"documentation":{"id":2556,"nodeType":"StructuredDocumentation","src":"1659:283:11","text":" @dev Sets the boolean value for a specific setting.\n @param what The setting to be updated.\n @param value The address or value associated with the setting.\n @param status The boolean value to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"cd992400","id":2606,"implemented":true,"kind":"function","modifiers":[{"id":2565,"kind":"modifierInvocation","modifierName":{"id":2564,"name":"onlyOwner","nameLocations":["2026:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2026:9:11"},"nodeType":"ModifierInvocation","src":"2026:9:11"}],"name":"settingManagerBool","nameLocation":"1953:18:11","nodeType":"FunctionDefinition","parameters":{"id":2563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2558,"mutability":"mutable","name":"what","nameLocation":"1980:4:11","nodeType":"VariableDeclaration","scope":2606,"src":"1972:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2557,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1972:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2560,"mutability":"mutable","name":"value","nameLocation":"1994:5:11","nodeType":"VariableDeclaration","scope":2606,"src":"1986:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2559,"name":"address","nodeType":"ElementaryTypeName","src":"1986:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2562,"mutability":"mutable","name":"status","nameLocation":"2009:6:11","nodeType":"VariableDeclaration","scope":2606,"src":"2001:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2561,"name":"uint256","nodeType":"ElementaryTypeName","src":"2001:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1971:45:11"},"returnParameters":{"id":2566,"nodeType":"ParameterList","parameters":[],"src":"2036:0:11"},"scope":2766,"src":"1944:335:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2677,"nodeType":"Block","src":"2587:472:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2617,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2611,"src":"2599:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2616:1:11","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":2619,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2608:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2618,"name":"address","nodeType":"ElementaryTypeName","src":"2608:7:11","typeDescriptions":{}}},"id":2621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2608:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2599:19:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2620:23:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2616,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2591:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2591:53:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2625,"nodeType":"ExpressionStatement","src":"2591:53:11"},{"assignments":[2627],"declarations":[{"constant":false,"id":2627,"mutability":"mutable","name":"updated","nameLocation":"2653:7:11","nodeType":"VariableDeclaration","scope":2677,"src":"2648:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2626,"name":"bool","nodeType":"ElementaryTypeName","src":"2648:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2628,"nodeType":"VariableDeclarationStatement","src":"2648:12:11"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2629,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"2668:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"7472656173757279","id":2630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2676:10:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_cbd818ad4dd6f1ff9338c2bb62480241424dd9a65f9f3284101a01cd099ad8ac","typeString":"literal_string \"treasury\""},"value":"treasury"},"src":"2668:18:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2648,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"2829:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"61676772656761746f72","id":2649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2837:12:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_e124d7cc79a19705865fa21b784ba187cd393559e960c0c071132cb60354d1a3","typeString":"literal_string \"aggregator\""},"value":"aggregator"},"src":"2829:20:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2667,"nodeType":"IfStatement","src":"2825:165:11","trueBody":{"id":2666,"nodeType":"Block","src":"2851:139:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2652,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2503,"src":"2864:18:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2653,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2611,"src":"2886:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2864:27:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c726561647920736574","id":2655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2893:41:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""},"value":"Gateway: aggregator address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""}],"id":2651,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2856:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2856:79:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2657,"nodeType":"ExpressionStatement","src":"2856:79:11"},{"expression":{"id":2660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2658,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2503,"src":"2940:18:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2659,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2611,"src":"2961:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2940:26:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2661,"nodeType":"ExpressionStatement","src":"2940:26:11"},{"expression":{"id":2664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2662,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2971:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2981:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2971:14:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2665,"nodeType":"ExpressionStatement","src":"2971:14:11"}]}},"id":2668,"nodeType":"IfStatement","src":"2664:326:11","trueBody":{"id":2647,"nodeType":"Block","src":"2688:131:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2633,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"2701:15:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2634,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2611,"src":"2720:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2701:24:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207472656173757279206164647265737320616c726561647920736574","id":2636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2727:39:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""},"value":"Gateway: treasury address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""}],"id":2632,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2693:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2693:74:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2638,"nodeType":"ExpressionStatement","src":"2693:74:11"},{"expression":{"id":2641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2639,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"2772:15:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2640,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2611,"src":"2790:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2772:23:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2642,"nodeType":"ExpressionStatement","src":"2772:23:11"},{"expression":{"id":2645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2643,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2800:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2810:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2800:14:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2646,"nodeType":"ExpressionStatement","src":"2800:14:11"}]}},{"condition":{"id":2669,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2997:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2676,"nodeType":"IfStatement","src":"2993:63:11","trueBody":{"id":2675,"nodeType":"Block","src":"3006:50:11","statements":[{"eventCall":{"arguments":[{"id":2671,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"3039:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2672,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2611,"src":"3045:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2670,"name":"ProtocolAddressUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2539,"src":"3016:22:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3016:35:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2674,"nodeType":"EmitStatement","src":"3011:40:11"}]}}]},"documentation":{"id":2607,"nodeType":"StructuredDocumentation","src":"2282:224:11","text":" @dev Updates a protocol address.\n @param what The address type to be updated (treasury or aggregator).\n @param value The new address to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"40ebc677","id":2678,"implemented":true,"kind":"function","modifiers":[{"id":2614,"kind":"modifierInvocation","modifierName":{"id":2613,"name":"onlyOwner","nameLocations":["2577:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2577:9:11"},"nodeType":"ModifierInvocation","src":"2577:9:11"}],"name":"updateProtocolAddress","nameLocation":"2517:21:11","nodeType":"FunctionDefinition","parameters":{"id":2612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2609,"mutability":"mutable","name":"what","nameLocation":"2547:4:11","nodeType":"VariableDeclaration","scope":2678,"src":"2539:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2608,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2539:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2611,"mutability":"mutable","name":"value","nameLocation":"2561:5:11","nodeType":"VariableDeclaration","scope":2678,"src":"2553:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2610,"name":"address","nodeType":"ElementaryTypeName","src":"2553:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2538:29:11"},"returnParameters":{"id":2615,"nodeType":"ParameterList","parameters":[],"src":"2587:0:11"},"scope":2766,"src":"2508:551:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2750,"nodeType":"Block","src":"3862:796:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2695,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2507,"src":"3874:17:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2697,"indexExpression":{"id":2696,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2681,"src":"3892:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3874:24:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3902:1:11","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3874:29:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","id":2700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3905:30:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""},"value":"Gateway: token not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""}],"id":2694,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3866:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3866:70:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2702,"nodeType":"ExpressionStatement","src":"3866:70:11"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2704,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"3948:16:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2705,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"3968:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3948:27:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669646572","id":2707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3977:37:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""},"value":"Gateway: invalid sender to provider"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""}],"id":2703,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3940:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3940:75:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2709,"nodeType":"ExpressionStatement","src":"3940:75:11"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2711,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2685,"src":"4027:20:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2712,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"4051:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4027:31:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72","id":2714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4060:41:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""},"value":"Gateway: invalid provider to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""}],"id":2710,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4019:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4019:83:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2716,"nodeType":"ExpressionStatement","src":"4019:83:11"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2718,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"4114:18:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2719,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"4136:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4114:29:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2061676772656761746f72","id":2721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4145:39:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""},"value":"Gateway: invalid sender to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""}],"id":2717,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4106:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4106:79:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2723,"nodeType":"ExpressionStatement","src":"4106:79:11"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2725,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"4197:22:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2726,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"4223:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4197:33:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72206678","id":2728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4232:44:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""},"value":"Gateway: invalid provider to aggregator fx"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""}],"id":2724,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4189:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4189:88:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2730,"nodeType":"ExpressionStatement","src":"4189:88:11"},{"expression":{"id":2740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2731,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2521,"src":"4282:17:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2733,"indexExpression":{"id":2732,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2681,"src":"4300:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4282:24:11","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2735,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"4349:16:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2736,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2685,"src":"4392:20:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2737,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"4437:18:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2738,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"4484:22:11","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"}],"id":2734,"name":"TokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2516,"src":"4309:16:11","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TokenFeeSettings_$2516_storage_ptr_$","typeString":"type(struct GatewaySettingManager.TokenFeeSettings storage pointer)"}},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4331:16:11","4370:20:11","4417:18:11","4460:22:11"],"names":["senderToProvider","providerToAggregator","senderToAggregator","providerToAggregatorFx"],"nodeType":"FunctionCall","src":"4309:202:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"src":"4282:229:11","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"id":2741,"nodeType":"ExpressionStatement","src":"4282:229:11"},{"eventCall":{"arguments":[{"id":2743,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2681,"src":"4549:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2744,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"4559:16:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2745,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2685,"src":"4580:20:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2746,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"4605:18:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2747,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"4628:22:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2742,"name":"TokenFeeSettingsUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2555,"src":"4521:23:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,uint256)"}},"id":2748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4521:133:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2749,"nodeType":"EmitStatement","src":"4516:138:11"}]},"documentation":{"id":2679,"nodeType":"StructuredDocumentation","src":"3062:606:11","text":" @dev Sets token-specific fee settings for stablecoins.\n @param token The token address to configure.\n @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n Requirements:\n - The token must be supported.\n - Fee percentages must be within valid ranges."},"functionSelector":"898861b0","id":2751,"implemented":true,"kind":"function","modifiers":[{"id":2692,"kind":"modifierInvocation","modifierName":{"id":2691,"name":"onlyOwner","nameLocations":["3852:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"3852:9:11"},"nodeType":"ModifierInvocation","src":"3852:9:11"}],"name":"setTokenFeeSettings","nameLocation":"3679:19:11","nodeType":"FunctionDefinition","parameters":{"id":2690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2681,"mutability":"mutable","name":"token","nameLocation":"3710:5:11","nodeType":"VariableDeclaration","scope":2751,"src":"3702:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2680,"name":"address","nodeType":"ElementaryTypeName","src":"3702:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2683,"mutability":"mutable","name":"senderToProvider","nameLocation":"3727:16:11","nodeType":"VariableDeclaration","scope":2751,"src":"3719:24:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2682,"name":"uint256","nodeType":"ElementaryTypeName","src":"3719:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2685,"mutability":"mutable","name":"providerToAggregator","nameLocation":"3755:20:11","nodeType":"VariableDeclaration","scope":2751,"src":"3747:28:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2684,"name":"uint256","nodeType":"ElementaryTypeName","src":"3747:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2687,"mutability":"mutable","name":"senderToAggregator","nameLocation":"3787:18:11","nodeType":"VariableDeclaration","scope":2751,"src":"3779:26:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2686,"name":"uint256","nodeType":"ElementaryTypeName","src":"3779:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2689,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"3817:22:11","nodeType":"VariableDeclaration","scope":2751,"src":"3809:30:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2688,"name":"uint256","nodeType":"ElementaryTypeName","src":"3809:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3698:144:11"},"returnParameters":{"id":2693,"nodeType":"ParameterList","parameters":[],"src":"3862:0:11"},"scope":2766,"src":"3670:988:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2764,"nodeType":"Block","src":"4930:39:11","statements":[{"expression":{"baseExpression":{"id":2760,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2521,"src":"4941:17:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2516_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2762,"indexExpression":{"id":2761,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2754,"src":"4959:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4941:24:11","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"functionReturnParameters":2759,"id":2763,"nodeType":"Return","src":"4934:31:11"}]},"documentation":{"id":2752,"nodeType":"StructuredDocumentation","src":"4661:175:11","text":" @dev Gets token-specific fee settings.\n @param token The token address to query.\n @return TokenFeeSettings struct containing all fee settings for the token."},"functionSelector":"8bfa0549","id":2765,"implemented":true,"kind":"function","modifiers":[],"name":"getTokenFeeSettings","nameLocation":"4847:19:11","nodeType":"FunctionDefinition","parameters":{"id":2755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2754,"mutability":"mutable","name":"token","nameLocation":"4875:5:11","nodeType":"VariableDeclaration","scope":2765,"src":"4867:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2753,"name":"address","nodeType":"ElementaryTypeName","src":"4867:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4866:15:11"},"returnParameters":{"id":2759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2758,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2765,"src":"4905:23:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2757,"nodeType":"UserDefinedTypeName","pathNode":{"id":2756,"name":"TokenFeeSettings","nameLocations":["4905:16:11"],"nodeType":"IdentifierPath","referencedDeclaration":2516,"src":"4905:16:11"},"referencedDeclaration":2516,"src":"4905:16:11","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2516_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"src":"4904:25:11"},"scope":2766,"src":"4838:131:11","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2767,"src":"276:4695:11","usedErrors":[],"usedEvents":[17,124,254,2533,2539,2543,2555]}],"src":"168:4804:11"},"id":11},"contracts/interfaces/IGateway.sol":{"ast":{"absolutePath":"contracts/interfaces/IGateway.sol","exportedSymbols":{"IERC20":[1582],"IGateway":[2925]},"id":2926,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2768,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:12"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":2770,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2926,"sourceUnit":1583,"src":"65:70:12","symbolAliases":[{"foreign":{"id":2769,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"73:6:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGateway","contractDependencies":[],"contractKind":"interface","documentation":{"id":2771,"nodeType":"StructuredDocumentation","src":"137:73:12","text":" @title IGateway\n @notice Interface for the Gateway contract."},"fullyImplemented":false,"id":2925,"linearizedBaseContracts":[2925],"name":"IGateway","nameLocation":"221:8:12","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":2772,"nodeType":"StructuredDocumentation","src":"417:335:12","text":" @dev Emitted when a deposit is made.\n @param sender The address of the sender.\n @param token The address of the deposited token.\n @param amount The amount of the deposit.\n @param orderId The ID of the order.\n @param rate The rate at which the deposit is made.\n @param messageHash The hash of the message."},"eventSelector":"40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a137","id":2788,"name":"OrderCreated","nameLocation":"760:12:12","nodeType":"EventDefinition","parameters":{"id":2787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2774,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"792:6:12","nodeType":"VariableDeclaration","scope":2788,"src":"776:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2773,"name":"address","nodeType":"ElementaryTypeName","src":"776:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2776,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"818:5:12","nodeType":"VariableDeclaration","scope":2788,"src":"802:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2775,"name":"address","nodeType":"ElementaryTypeName","src":"802:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2778,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"843:6:12","nodeType":"VariableDeclaration","scope":2788,"src":"827:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2777,"name":"uint256","nodeType":"ElementaryTypeName","src":"827:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2780,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"861:11:12","nodeType":"VariableDeclaration","scope":2788,"src":"853:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2779,"name":"uint256","nodeType":"ElementaryTypeName","src":"853:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2782,"indexed":false,"mutability":"mutable","name":"orderId","nameLocation":"884:7:12","nodeType":"VariableDeclaration","scope":2788,"src":"876:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2781,"name":"bytes32","nodeType":"ElementaryTypeName","src":"876:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2784,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"903:4:12","nodeType":"VariableDeclaration","scope":2788,"src":"895:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2783,"name":"uint256","nodeType":"ElementaryTypeName","src":"895:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2786,"indexed":false,"mutability":"mutable","name":"messageHash","nameLocation":"918:11:12","nodeType":"VariableDeclaration","scope":2788,"src":"911:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2785,"name":"string","nodeType":"ElementaryTypeName","src":"911:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"772:160:12"},"src":"754:179:12"},{"anonymous":false,"documentation":{"id":2789,"nodeType":"StructuredDocumentation","src":"936:303:12","text":" @dev Emitted when an aggregator settles a transaction.\n @param splitOrderId The ID of the split order.\n @param orderId The ID of the order.\n @param liquidityProvider The address of the liquidity provider.\n @param settlePercent The percentage at which the transaction is settled."},"eventSelector":"98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a","id":2799,"name":"OrderSettled","nameLocation":"1247:12:12","nodeType":"EventDefinition","parameters":{"id":2798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2791,"indexed":false,"mutability":"mutable","name":"splitOrderId","nameLocation":"1271:12:12","nodeType":"VariableDeclaration","scope":2799,"src":"1263:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2790,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1263:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2793,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1303:7:12","nodeType":"VariableDeclaration","scope":2799,"src":"1287:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2792,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1287:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2795,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1330:17:12","nodeType":"VariableDeclaration","scope":2799,"src":"1314:33:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2794,"name":"address","nodeType":"ElementaryTypeName","src":"1314:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2797,"indexed":false,"mutability":"mutable","name":"settlePercent","nameLocation":"1358:13:12","nodeType":"VariableDeclaration","scope":2799,"src":"1351:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2796,"name":"uint96","nodeType":"ElementaryTypeName","src":"1351:6:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1259:115:12"},"src":"1241:134:12"},{"anonymous":false,"documentation":{"id":2800,"nodeType":"StructuredDocumentation","src":"1378:163:12","text":" @dev Emitted when an aggregator refunds a transaction.\n @param fee The fee deducted from the refund amount.\n @param orderId The ID of the order."},"eventSelector":"0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e","id":2806,"name":"OrderRefunded","nameLocation":"1549:13:12","nodeType":"EventDefinition","parameters":{"id":2805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2802,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"1571:3:12","nodeType":"VariableDeclaration","scope":2806,"src":"1563:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2801,"name":"uint256","nodeType":"ElementaryTypeName","src":"1563:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2804,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1592:7:12","nodeType":"VariableDeclaration","scope":2806,"src":"1576:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2803,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1576:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1562:38:12"},"src":"1543:58:12"},{"anonymous":false,"documentation":{"id":2807,"nodeType":"StructuredDocumentation","src":"1604:161:12","text":" @dev Emitted when the sender's fee is transferred.\n @param sender The address of the sender.\n @param amount The amount of the fee transferred."},"eventSelector":"44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c2501","id":2813,"name":"SenderFeeTransferred","nameLocation":"1773:20:12","nodeType":"EventDefinition","parameters":{"id":2812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2809,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1810:6:12","nodeType":"VariableDeclaration","scope":2813,"src":"1794:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2808,"name":"address","nodeType":"ElementaryTypeName","src":"1794:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2811,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"1834:6:12","nodeType":"VariableDeclaration","scope":2813,"src":"1818:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2810,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1793:48:12"},"src":"1767:75:12"},{"anonymous":false,"documentation":{"id":2814,"nodeType":"StructuredDocumentation","src":"1845:293:12","text":" @dev Emitted when a local transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param providerAmount The amount that goes to the provider.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4","id":2824,"name":"LocalTransferFeeSplit","nameLocation":"2146:21:12","nodeType":"EventDefinition","parameters":{"id":2823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2816,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2187:7:12","nodeType":"VariableDeclaration","scope":2824,"src":"2171:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2815,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2171:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2818,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"2206:12:12","nodeType":"VariableDeclaration","scope":2824,"src":"2198:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2817,"name":"uint256","nodeType":"ElementaryTypeName","src":"2198:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2820,"indexed":false,"mutability":"mutable","name":"providerAmount","nameLocation":"2230:14:12","nodeType":"VariableDeclaration","scope":2824,"src":"2222:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2819,"name":"uint256","nodeType":"ElementaryTypeName","src":"2222:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2822,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"2256:16:12","nodeType":"VariableDeclaration","scope":2824,"src":"2248:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2821,"name":"uint256","nodeType":"ElementaryTypeName","src":"2248:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2167:108:12"},"src":"2140:136:12"},{"anonymous":false,"documentation":{"id":2825,"nodeType":"StructuredDocumentation","src":"2279:227:12","text":" @dev Emitted when an FX transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a","id":2833,"name":"FxTransferFeeSplit","nameLocation":"2514:18:12","nodeType":"EventDefinition","parameters":{"id":2832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2827,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2552:7:12","nodeType":"VariableDeclaration","scope":2833,"src":"2536:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2826,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2536:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2829,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"2571:12:12","nodeType":"VariableDeclaration","scope":2833,"src":"2563:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2828,"name":"uint256","nodeType":"ElementaryTypeName","src":"2563:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2831,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"2595:16:12","nodeType":"VariableDeclaration","scope":2833,"src":"2587:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2830,"name":"uint256","nodeType":"ElementaryTypeName","src":"2587:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2532:82:12"},"src":"2508:107:12"},{"canonicalName":"IGateway.Order","documentation":{"id":2834,"nodeType":"StructuredDocumentation","src":"2803:592:12","text":" @dev Struct representing an order.\n @param sender The address of the sender.\n @param token The address of the token.\n @param senderFeeRecipient The address of the sender fee recipient.\n @param senderFee The fee to be paid to the sender fee recipient.\n @param protocolFee The protocol fee to be paid.\n @param isFulfilled Whether the order is fulfilled.\n @param isRefunded Whether the order is refunded.\n @param refundAddress The address to which the refund is made.\n @param currentBPS The current basis points.\n @param amount The amount of the order."},"id":2855,"members":[{"constant":false,"id":2836,"mutability":"mutable","name":"sender","nameLocation":"3422:6:12","nodeType":"VariableDeclaration","scope":2855,"src":"3414:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2835,"name":"address","nodeType":"ElementaryTypeName","src":"3414:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2838,"mutability":"mutable","name":"token","nameLocation":"3440:5:12","nodeType":"VariableDeclaration","scope":2855,"src":"3432:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2837,"name":"address","nodeType":"ElementaryTypeName","src":"3432:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2840,"mutability":"mutable","name":"senderFeeRecipient","nameLocation":"3457:18:12","nodeType":"VariableDeclaration","scope":2855,"src":"3449:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2839,"name":"address","nodeType":"ElementaryTypeName","src":"3449:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2842,"mutability":"mutable","name":"senderFee","nameLocation":"3487:9:12","nodeType":"VariableDeclaration","scope":2855,"src":"3479:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2841,"name":"uint256","nodeType":"ElementaryTypeName","src":"3479:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2844,"mutability":"mutable","name":"protocolFee","nameLocation":"3508:11:12","nodeType":"VariableDeclaration","scope":2855,"src":"3500:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2843,"name":"uint256","nodeType":"ElementaryTypeName","src":"3500:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2846,"mutability":"mutable","name":"isFulfilled","nameLocation":"3528:11:12","nodeType":"VariableDeclaration","scope":2855,"src":"3523:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2845,"name":"bool","nodeType":"ElementaryTypeName","src":"3523:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2848,"mutability":"mutable","name":"isRefunded","nameLocation":"3548:10:12","nodeType":"VariableDeclaration","scope":2855,"src":"3543:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2847,"name":"bool","nodeType":"ElementaryTypeName","src":"3543:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2850,"mutability":"mutable","name":"refundAddress","nameLocation":"3570:13:12","nodeType":"VariableDeclaration","scope":2855,"src":"3562:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2849,"name":"address","nodeType":"ElementaryTypeName","src":"3562:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2852,"mutability":"mutable","name":"currentBPS","nameLocation":"3594:10:12","nodeType":"VariableDeclaration","scope":2855,"src":"3587:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2851,"name":"uint96","nodeType":"ElementaryTypeName","src":"3587:6:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2854,"mutability":"mutable","name":"amount","nameLocation":"3616:6:12","nodeType":"VariableDeclaration","scope":2855,"src":"3608:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2853,"name":"uint256","nodeType":"ElementaryTypeName","src":"3608:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Order","nameLocation":"3404:5:12","nodeType":"StructDefinition","scope":2925,"src":"3397:229:12","visibility":"public"},{"documentation":{"id":2856,"nodeType":"StructuredDocumentation","src":"3821:964:12","text":" @notice Locks the sender's amount of token into Gateway.\n @dev Requirements:\n - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n - `_token` must be an acceptable token. See {isTokenSupported}.\n - `amount` must be greater than minimum.\n - `_refundAddress` refund address must not be zero address.\n @param _token The address of the token.\n @param _amount The amount in the decimal of `_token` to be locked.\n @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n @param messageHash The hash of the message.\n @return _orderId The ID of the order."},"functionSelector":"809804f7","id":2875,"implemented":false,"kind":"function","modifiers":[],"name":"createOrder","nameLocation":"4796:11:12","nodeType":"FunctionDefinition","parameters":{"id":2871,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2858,"mutability":"mutable","name":"_token","nameLocation":"4819:6:12","nodeType":"VariableDeclaration","scope":2875,"src":"4811:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2857,"name":"address","nodeType":"ElementaryTypeName","src":"4811:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2860,"mutability":"mutable","name":"_amount","nameLocation":"4837:7:12","nodeType":"VariableDeclaration","scope":2875,"src":"4829:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2859,"name":"uint256","nodeType":"ElementaryTypeName","src":"4829:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2862,"mutability":"mutable","name":"_rate","nameLocation":"4855:5:12","nodeType":"VariableDeclaration","scope":2875,"src":"4848:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2861,"name":"uint96","nodeType":"ElementaryTypeName","src":"4848:6:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2864,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"4872:19:12","nodeType":"VariableDeclaration","scope":2875,"src":"4864:27:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2863,"name":"address","nodeType":"ElementaryTypeName","src":"4864:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2866,"mutability":"mutable","name":"_senderFee","nameLocation":"4903:10:12","nodeType":"VariableDeclaration","scope":2875,"src":"4895:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2865,"name":"uint256","nodeType":"ElementaryTypeName","src":"4895:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2868,"mutability":"mutable","name":"_refundAddress","nameLocation":"4925:14:12","nodeType":"VariableDeclaration","scope":2875,"src":"4917:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2867,"name":"address","nodeType":"ElementaryTypeName","src":"4917:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2870,"mutability":"mutable","name":"messageHash","nameLocation":"4959:11:12","nodeType":"VariableDeclaration","scope":2875,"src":"4943:27:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2869,"name":"string","nodeType":"ElementaryTypeName","src":"4943:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4807:166:12"},"returnParameters":{"id":2874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2873,"mutability":"mutable","name":"_orderId","nameLocation":"5000:8:12","nodeType":"VariableDeclaration","scope":2875,"src":"4992:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2872,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4992:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4991:18:12"},"scope":2925,"src":"4787:223:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2876,"nodeType":"StructuredDocumentation","src":"5013:366:12","text":" @notice Settles a transaction and distributes rewards accordingly.\n @param _splitOrderId The ID of the split order.\n @param _orderId The ID of the transaction.\n @param _liquidityProvider The address of the liquidity provider.\n @param _settlePercent The rate at which the transaction is settled.\n @return bool the settlement is successful."},"functionSelector":"f22ee704","id":2889,"implemented":false,"kind":"function","modifiers":[],"name":"settle","nameLocation":"5390:6:12","nodeType":"FunctionDefinition","parameters":{"id":2885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2878,"mutability":"mutable","name":"_splitOrderId","nameLocation":"5408:13:12","nodeType":"VariableDeclaration","scope":2889,"src":"5400:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2877,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5400:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2880,"mutability":"mutable","name":"_orderId","nameLocation":"5433:8:12","nodeType":"VariableDeclaration","scope":2889,"src":"5425:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2879,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5425:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2882,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"5453:18:12","nodeType":"VariableDeclaration","scope":2889,"src":"5445:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2881,"name":"address","nodeType":"ElementaryTypeName","src":"5445:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2884,"mutability":"mutable","name":"_settlePercent","nameLocation":"5482:14:12","nodeType":"VariableDeclaration","scope":2889,"src":"5475:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2883,"name":"uint64","nodeType":"ElementaryTypeName","src":"5475:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5396:103:12"},"returnParameters":{"id":2888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2887,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2889,"src":"5518:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2886,"name":"bool","nodeType":"ElementaryTypeName","src":"5518:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5517:6:12"},"scope":2925,"src":"5381:143:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2890,"nodeType":"StructuredDocumentation","src":"5527:299:12","text":" @notice Refunds to the specified refundable address.\n @dev Requirements:\n - Only aggregators can call this function.\n @param _fee The amount to be deducted from the amount to be refunded.\n @param _orderId The ID of the transaction.\n @return bool the refund is successful."},"functionSelector":"71eedb88","id":2899,"implemented":false,"kind":"function","modifiers":[],"name":"refund","nameLocation":"5837:6:12","nodeType":"FunctionDefinition","parameters":{"id":2895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2892,"mutability":"mutable","name":"_fee","nameLocation":"5852:4:12","nodeType":"VariableDeclaration","scope":2899,"src":"5844:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2891,"name":"uint256","nodeType":"ElementaryTypeName","src":"5844:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2894,"mutability":"mutable","name":"_orderId","nameLocation":"5866:8:12","nodeType":"VariableDeclaration","scope":2899,"src":"5858:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2893,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5858:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5843:32:12"},"returnParameters":{"id":2898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2897,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2899,"src":"5894:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2896,"name":"bool","nodeType":"ElementaryTypeName","src":"5894:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5893:6:12"},"scope":2925,"src":"5828:72:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2900,"nodeType":"StructuredDocumentation","src":"5903:157:12","text":" @notice Checks if a token is supported by Gateway.\n @param _token The address of the token to check.\n @return bool the token is supported."},"functionSelector":"75151b63","id":2907,"implemented":false,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"6071:16:12","nodeType":"FunctionDefinition","parameters":{"id":2903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2902,"mutability":"mutable","name":"_token","nameLocation":"6096:6:12","nodeType":"VariableDeclaration","scope":2907,"src":"6088:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2901,"name":"address","nodeType":"ElementaryTypeName","src":"6088:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6087:16:12"},"returnParameters":{"id":2906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2905,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2907,"src":"6127:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2904,"name":"bool","nodeType":"ElementaryTypeName","src":"6127:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6126:6:12"},"scope":2925,"src":"6062:71:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2908,"nodeType":"StructuredDocumentation","src":"6136:128:12","text":" @notice Gets the details of an order.\n @param _orderId The ID of the order.\n @return Order The order details."},"functionSelector":"768c6ec0","id":2916,"implemented":false,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"6275:12:12","nodeType":"FunctionDefinition","parameters":{"id":2911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2910,"mutability":"mutable","name":"_orderId","nameLocation":"6296:8:12","nodeType":"VariableDeclaration","scope":2916,"src":"6288:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2909,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6288:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6287:18:12"},"returnParameters":{"id":2915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2916,"src":"6329:12:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":2913,"nodeType":"UserDefinedTypeName","pathNode":{"id":2912,"name":"Order","nameLocations":["6329:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":2855,"src":"6329:5:12"},"referencedDeclaration":2855,"src":"6329:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2855_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"6328:14:12"},"scope":2925,"src":"6266:77:12","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2917,"nodeType":"StructuredDocumentation","src":"6346:154:12","text":" @notice Gets the fee details of Gateway.\n @return protocolReward The protocol reward amount.\n @return max_bps The maximum basis points."},"functionSelector":"b810c636","id":2924,"implemented":false,"kind":"function","modifiers":[],"name":"getFeeDetails","nameLocation":"6511:13:12","nodeType":"FunctionDefinition","parameters":{"id":2918,"nodeType":"ParameterList","parameters":[],"src":"6524:2:12"},"returnParameters":{"id":2923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2920,"mutability":"mutable","name":"protocolReward","nameLocation":"6557:14:12","nodeType":"VariableDeclaration","scope":2924,"src":"6550:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2919,"name":"uint64","nodeType":"ElementaryTypeName","src":"6550:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2922,"mutability":"mutable","name":"max_bps","nameLocation":"6581:7:12","nodeType":"VariableDeclaration","scope":2924,"src":"6573:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2921,"name":"uint256","nodeType":"ElementaryTypeName","src":"6573:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6549:40:12"},"scope":2925,"src":"6502:88:12","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2926,"src":"211:6381:12","usedErrors":[],"usedEvents":[2788,2799,2806,2813,2824,2833]}],"src":"39:6554:12"},"id":12},"contracts/mocks/MockUSDC.sol":{"ast":{"absolutePath":"contracts/mocks/MockUSDC.sol","exportedSymbols":{"ERC20":[1504],"MockUSDT":[2995]},"id":2996,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2927,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"38:24:13"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":2929,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2996,"sourceUnit":1505,"src":"64:68:13","symbolAliases":[{"foreign":{"id":2928,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"72:5:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2931,"name":"ERC20","nameLocations":["183:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1504,"src":"183:5:13"},"id":2932,"nodeType":"InheritanceSpecifier","src":"183:5:13"}],"canonicalName":"MockUSDT","contractDependencies":[],"contractKind":"contract","documentation":{"id":2930,"nodeType":"StructuredDocumentation","src":"134:28:13","text":"@dev Mock mintable USDC"},"fullyImplemented":true,"id":2995,"linearizedBaseContracts":[2995,1504,1607,1582,1637],"name":"MockUSDT","nameLocation":"171:8:13","nodeType":"ContractDefinition","nodes":[{"body":{"id":2945,"nodeType":"Block","src":"236:48:13","statements":[{"expression":{"arguments":[{"expression":{"id":2940,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"252:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"256:6:13","memberName":"sender","nodeType":"MemberAccess","src":"252:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"315f3030305f303030453138","id":2942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"264:12:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000000000_by_1","typeString":"int_const 1000000000000000000000000"},"value":"1_000_000E18"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_1000000000000000000000000_by_1","typeString":"int_const 1000000000000000000000000"}],"id":2939,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1321,"src":"246:5:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"246:31:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2944,"nodeType":"ExpressionStatement","src":"246:31:13"}]},"id":2946,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"4d6f636b55445343","id":2935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"215:10:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_94e1f9c6f37f68c7fbe9a402bd5dbcd03f36019e7e48bd72249c8c505bfa86d6","typeString":"literal_string \"MockUDSC\""},"value":"MockUDSC"},{"hexValue":"4d55534443","id":2936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"227:7:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_0b881b1a06d818eb813952573bf9829bb21a81b032d939e3244337841a6fff45","typeString":"literal_string \"MUSDC\""},"value":"MUSDC"}],"id":2937,"kind":"baseConstructorSpecifier","modifierName":{"id":2934,"name":"ERC20","nameLocations":["209:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1504,"src":"209:5:13"},"nodeType":"ModifierInvocation","src":"209:26:13"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2933,"nodeType":"ParameterList","parameters":[],"src":"206:2:13"},"returnParameters":{"id":2938,"nodeType":"ParameterList","parameters":[],"src":"236:0:13"},"scope":2995,"src":"195:89:13","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2957,"nodeType":"Block","src":"330:43:13","statements":[{"expression":{"arguments":[{"expression":{"id":2952,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"346:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"350:6:13","memberName":"sender","nodeType":"MemberAccess","src":"346:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2954,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2948,"src":"358:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2951,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1321,"src":"340:5:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"340:26:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2956,"nodeType":"ExpressionStatement","src":"340:26:13"}]},"functionSelector":"a0712d68","id":2958,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"299:4:13","nodeType":"FunctionDefinition","parameters":{"id":2949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2948,"mutability":"mutable","name":"_amount","nameLocation":"312:7:13","nodeType":"VariableDeclaration","scope":2958,"src":"304:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2947,"name":"uint256","nodeType":"ElementaryTypeName","src":"304:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"303:17:13"},"returnParameters":{"id":2950,"nodeType":"ParameterList","parameters":[],"src":"330:0:13"},"scope":2995,"src":"290:83:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2969,"nodeType":"Block","src":"419:43:13","statements":[{"expression":{"arguments":[{"expression":{"id":2964,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"435:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"439:6:13","memberName":"sender","nodeType":"MemberAccess","src":"435:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2966,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2960,"src":"447:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2963,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1393,"src":"429:5:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"429:26:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2968,"nodeType":"ExpressionStatement","src":"429:26:13"}]},"functionSelector":"42966c68","id":2970,"implemented":true,"kind":"function","modifiers":[],"name":"burn","nameLocation":"388:4:13","nodeType":"FunctionDefinition","parameters":{"id":2961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2960,"mutability":"mutable","name":"_amount","nameLocation":"401:7:13","nodeType":"VariableDeclaration","scope":2970,"src":"393:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2959,"name":"uint256","nodeType":"ElementaryTypeName","src":"393:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"392:17:13"},"returnParameters":{"id":2962,"nodeType":"ParameterList","parameters":[],"src":"419:0:13"},"scope":2995,"src":"379:83:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2993,"nodeType":"Block","src":"496:160:13","statements":[{"assignments":[2974],"declarations":[{"constant":false,"id":2974,"mutability":"mutable","name":"_balanceOf","nameLocation":"514:10:13","nodeType":"VariableDeclaration","scope":2993,"src":"506:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2973,"name":"uint256","nodeType":"ElementaryTypeName","src":"506:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2979,"initialValue":{"arguments":[{"expression":{"id":2976,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"537:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"541:6:13","memberName":"sender","nodeType":"MemberAccess","src":"537:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2975,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1016,"src":"527:9:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"527:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"506:42:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2981,"name":"_balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"566:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"579:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"566:14:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f636b555344543a204e6f7468696e6720746f206275726e","id":2984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"582:27:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","typeString":"literal_string \"MockUSDT: Nothing to burn\""},"value":"MockUSDT: Nothing to burn"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","typeString":"literal_string \"MockUSDT: Nothing to burn\""}],"id":2980,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"558:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"558:52:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2986,"nodeType":"ExpressionStatement","src":"558:52:13"},{"expression":{"arguments":[{"expression":{"id":2988,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"626:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"630:6:13","memberName":"sender","nodeType":"MemberAccess","src":"626:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2990,"name":"_balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"638:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2987,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1393,"src":"620:5:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"620:29:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2992,"nodeType":"ExpressionStatement","src":"620:29:13"}]},"functionSelector":"9975038c","id":2994,"implemented":true,"kind":"function","modifiers":[],"name":"burnAll","nameLocation":"477:7:13","nodeType":"FunctionDefinition","parameters":{"id":2971,"nodeType":"ParameterList","parameters":[],"src":"484:2:13"},"returnParameters":{"id":2972,"nodeType":"ParameterList","parameters":[],"src":"496:0:13"},"scope":2995,"src":"468:188:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2996,"src":"162:496:13","usedErrors":[],"usedEvents":[1516,1525]}],"src":"38:621:13"},"id":13}},"contracts":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"Ownable2StepUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"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."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"acceptOwnership()":"79ba5097","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"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. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":\"Ownable2StepUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"OwnableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"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. By default, the owner account will be the one that deploys the contract. 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.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"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."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"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\":\"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. By default, the owner account will be the one that deploys the contract. 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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":\"OwnableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"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] ```","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{},"stateVariables":{"_initialized":{"custom:oz-retyped-from":"bool","details":"Indicates that the contract has been initialized."},"_initializing":{"details":"Indicates that the contract is in the process of being initialized."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"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] ```\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_initialized\":{\"custom:oz-retyped-from\":\"bool\",\"details\":\"Indicates that the contract has been initialized.\"},\"_initializing\":{\"details\":\"Indicates that the contract is in the process of being initialized.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol:Initializable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol:Initializable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"}],"types":{"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"PausableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"devdoc":{"details":"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"paused()":{"details":"Returns true if the contract is paused, and false otherwise."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"paused()":"5c975abb"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":\"PausableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":430,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_paused","offset":0,"slot":"51","type":"t_bool"},{"astId":535,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"}],"types":{"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"AddressUpgradeable":{"abi":[],"devdoc":{"details":"Collection of functions related to the address type","kind":"dev","methods":{},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220f6ddb883a482100c4d67fab9837ea78e63b163c19355bca0994abe06e37084bc64736f6c63430008140033","opcodes":"PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xDD 0xB8 DUP4 LOG4 DUP3 LT 0xC 0x4D PUSH8 0xFAB9837EA78E63B1 PUSH4 0xC19355BC LOG0 SWAP10 0x4A 0xBE MOD 0xE3 PUSH17 0x84BC64736F6C6343000814003300000000 ","sourceMap":"194:9180:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220f6ddb883a482100c4d67fab9837ea78e63b163c19355bca0994abe06e37084bc64736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xDD 0xB8 DUP4 LOG4 DUP3 LT 0xC 0x4D PUSH8 0xFAB9837EA78E63B1 PUSH4 0xC19355BC LOG0 SWAP10 0x4A 0xBE MOD 0xE3 PUSH17 0x84BC64736F6C6343000814003300000000 ","sourceMap":"194:9180:4:-:0;;;;;;;;"},"gasEstimates":{"creation":{"codeDepositCost":"17000","executionCost":"92","totalCost":"17092"},"internal":{"_revert(bytes memory,string memory)":"infinite","functionCall(address,bytes memory)":"infinite","functionCall(address,bytes memory,string memory)":"infinite","functionCallWithValue(address,bytes memory,uint256)":"infinite","functionCallWithValue(address,bytes memory,uint256,string memory)":"infinite","functionDelegateCall(address,bytes memory)":"infinite","functionDelegateCall(address,bytes memory,string memory)":"infinite","functionStaticCall(address,bytes memory)":"infinite","functionStaticCall(address,bytes memory,string memory)":"infinite","isContract(address)":"infinite","sendValue(address payable,uint256)":"infinite","verifyCallResult(bool,bytes memory,string memory)":"infinite","verifyCallResultFromTarget(address,bool,bytes memory,string memory)":"infinite"}},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":\"AddressUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"}],"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.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"}],"types":{"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.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 ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"See {IERC20-allowance}."},"approve(address,uint256)":{"details":"See {IERC20-approve}. NOTE: If `amount` 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}. All two of these values are immutable: they can only be set once during construction."},"decimals()":{"details":"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the 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}."},"decreaseAllowance(address,uint256)":{"details":"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."},"increaseAllowance(address,uint256)":{"details":"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."},"name()":{"details":"Returns the name of the token."},"symbol()":{"details":"Returns the symbol of the token, usually a shorter version of the name."},"totalSupply()":{"details":"See {IERC20-totalSupply}."},"transfer(address,uint256)":{"details":"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."},"transferFrom(address,address,uint256)":{"details":"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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 `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."}},"version":1},"evm":{"bytecode":{"functionDebugData":{"@_962":{"entryPoint":null,"id":962,"parameterSlots":2,"returnSlots":0},"abi_decode_available_length_t_string_memory_ptr_fromMemory":{"entryPoint":363,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_t_string_memory_ptr_fromMemory":{"entryPoint":437,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory":{"entryPoint":487,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":238,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_unbounded":{"entryPoint":98,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_t_string_memory_ptr":{"entryPoint":268,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_t_string_storage":{"entryPoint":725,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":618,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_t_string_storage":{"entryPoint":1034,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_t_uint256":{"entryPoint":855,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_t_bytes1":{"entryPoint":996,"id":null,"parameterSlots":2,"returnSlots":0},"convert_t_uint256_to_t_uint256":{"entryPoint":873,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":1185,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":321,"id":null,"parameterSlots":3,"returnSlots":0},"divide_by_32_ceil":{"entryPoint":743,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":673,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":1156,"id":null,"parameterSlots":2,"returnSlots":1},"finalize_allocation":{"entryPoint":184,"id":null,"parameterSlots":2,"returnSlots":0},"identity":{"entryPoint":864,"id":null,"parameterSlots":1,"returnSlots":1},"mask_bytes_dynamic":{"entryPoint":1126,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x22":{"entryPoint":628,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":139,"id":null,"parameterSlots":0,"returnSlots":0},"prepare_store_t_uint256":{"entryPoint":912,"id":null,"parameterSlots":1,"returnSlots":1},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":115,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae":{"entryPoint":119,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":111,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":107,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":123,"id":null,"parameterSlots":1,"returnSlots":1},"shift_left_dynamic":{"entryPoint":758,"id":null,"parameterSlots":2,"returnSlots":1},"shift_right_unsigned_dynamic":{"entryPoint":1114,"id":null,"parameterSlots":2,"returnSlots":1},"storage_set_to_zero_t_uint256":{"entryPoint":968,"id":null,"parameterSlots":2,"returnSlots":0},"update_byte_slice_dynamic32":{"entryPoint":770,"id":null,"parameterSlots":3,"returnSlots":1},"update_storage_value_t_uint256_to_t_uint256":{"entryPoint":921,"id":null,"parameterSlots":3,"returnSlots":0},"zero_value_for_split_t_uint256":{"entryPoint":964,"id":null,"parameterSlots":0,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:8574:14","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:14","statements":[{"nodeType":"YulAssignment","src":"57:19:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:14","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:14"},"nodeType":"YulFunctionCall","src":"67:9:14"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:14"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:14","type":""}],"src":"7:75:14"},{"body":{"nodeType":"YulBlock","src":"177:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:14"},"nodeType":"YulFunctionCall","src":"187:12:14"},"nodeType":"YulExpressionStatement","src":"187:12:14"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:14"},{"body":{"nodeType":"YulBlock","src":"300:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:14"},"nodeType":"YulFunctionCall","src":"310:12:14"},"nodeType":"YulExpressionStatement","src":"310:12:14"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:14"},{"body":{"nodeType":"YulBlock","src":"423:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"440:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"443:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"433:6:14"},"nodeType":"YulFunctionCall","src":"433:12:14"},"nodeType":"YulExpressionStatement","src":"433:12:14"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"334:117:14"},{"body":{"nodeType":"YulBlock","src":"546:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"563:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"566:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"556:6:14"},"nodeType":"YulFunctionCall","src":"556:12:14"},"nodeType":"YulExpressionStatement","src":"556:12:14"}]},"name":"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae","nodeType":"YulFunctionDefinition","src":"457:117:14"},{"body":{"nodeType":"YulBlock","src":"628:54:14","statements":[{"nodeType":"YulAssignment","src":"638:38:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"656:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"663:2:14","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"652:3:14"},"nodeType":"YulFunctionCall","src":"652:14:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"672:2:14","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"668:3:14"},"nodeType":"YulFunctionCall","src":"668:7:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"648:3:14"},"nodeType":"YulFunctionCall","src":"648:28:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"638:6:14"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"611:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"621:6:14","type":""}],"src":"580:102:14"},{"body":{"nodeType":"YulBlock","src":"716:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"733:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"736:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"726:6:14"},"nodeType":"YulFunctionCall","src":"726:88:14"},"nodeType":"YulExpressionStatement","src":"726:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"830:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"833:4:14","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"823:6:14"},"nodeType":"YulFunctionCall","src":"823:15:14"},"nodeType":"YulExpressionStatement","src":"823:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"854:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"857:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"847:6:14"},"nodeType":"YulFunctionCall","src":"847:15:14"},"nodeType":"YulExpressionStatement","src":"847:15:14"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"688:180:14"},{"body":{"nodeType":"YulBlock","src":"917:238:14","statements":[{"nodeType":"YulVariableDeclaration","src":"927:58:14","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"949:6:14"},{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"979:4:14"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"957:21:14"},"nodeType":"YulFunctionCall","src":"957:27:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"945:3:14"},"nodeType":"YulFunctionCall","src":"945:40:14"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"931:10:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"1096:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1098:16:14"},"nodeType":"YulFunctionCall","src":"1098:18:14"},"nodeType":"YulExpressionStatement","src":"1098:18:14"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1039:10:14"},{"kind":"number","nodeType":"YulLiteral","src":"1051:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1036:2:14"},"nodeType":"YulFunctionCall","src":"1036:34:14"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1075:10:14"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1087:6:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1072:2:14"},"nodeType":"YulFunctionCall","src":"1072:22:14"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1033:2:14"},"nodeType":"YulFunctionCall","src":"1033:62:14"},"nodeType":"YulIf","src":"1030:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1134:2:14","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1138:10:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1127:6:14"},"nodeType":"YulFunctionCall","src":"1127:22:14"},"nodeType":"YulExpressionStatement","src":"1127:22:14"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"903:6:14","type":""},{"name":"size","nodeType":"YulTypedName","src":"911:4:14","type":""}],"src":"874:281:14"},{"body":{"nodeType":"YulBlock","src":"1202:88:14","statements":[{"nodeType":"YulAssignment","src":"1212:30:14","value":{"arguments":[],"functionName":{"name":"allocate_unbounded","nodeType":"YulIdentifier","src":"1222:18:14"},"nodeType":"YulFunctionCall","src":"1222:20:14"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1212:6:14"}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1271:6:14"},{"name":"size","nodeType":"YulIdentifier","src":"1279:4:14"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"1251:19:14"},"nodeType":"YulFunctionCall","src":"1251:33:14"},"nodeType":"YulExpressionStatement","src":"1251:33:14"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"1186:4:14","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1195:6:14","type":""}],"src":"1161:129:14"},{"body":{"nodeType":"YulBlock","src":"1363:241:14","statements":[{"body":{"nodeType":"YulBlock","src":"1468:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1470:16:14"},"nodeType":"YulFunctionCall","src":"1470:18:14"},"nodeType":"YulExpressionStatement","src":"1470:18:14"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1440:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"1448:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1437:2:14"},"nodeType":"YulFunctionCall","src":"1437:30:14"},"nodeType":"YulIf","src":"1434:56:14"},{"nodeType":"YulAssignment","src":"1500:37:14","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1530:6:14"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"1508:21:14"},"nodeType":"YulFunctionCall","src":"1508:29:14"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1500:4:14"}]},{"nodeType":"YulAssignment","src":"1574:23:14","value":{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"1586:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"1592:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1582:3:14"},"nodeType":"YulFunctionCall","src":"1582:15:14"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1574:4:14"}]}]},"name":"array_allocation_size_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"1347:6:14","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"1358:4:14","type":""}],"src":"1296:308:14"},{"body":{"nodeType":"YulBlock","src":"1672:184:14","statements":[{"nodeType":"YulVariableDeclaration","src":"1682:10:14","value":{"kind":"number","nodeType":"YulLiteral","src":"1691:1:14","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"1686:1:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"1751:63:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"1776:3:14"},{"name":"i","nodeType":"YulIdentifier","src":"1781:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1772:3:14"},"nodeType":"YulFunctionCall","src":"1772:11:14"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"1795:3:14"},{"name":"i","nodeType":"YulIdentifier","src":"1800:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1791:3:14"},"nodeType":"YulFunctionCall","src":"1791:11:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1785:5:14"},"nodeType":"YulFunctionCall","src":"1785:18:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1765:6:14"},"nodeType":"YulFunctionCall","src":"1765:39:14"},"nodeType":"YulExpressionStatement","src":"1765:39:14"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1712:1:14"},{"name":"length","nodeType":"YulIdentifier","src":"1715:6:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1709:2:14"},"nodeType":"YulFunctionCall","src":"1709:13:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1723:19:14","statements":[{"nodeType":"YulAssignment","src":"1725:15:14","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1734:1:14"},{"kind":"number","nodeType":"YulLiteral","src":"1737:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1730:3:14"},"nodeType":"YulFunctionCall","src":"1730:10:14"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"1725:1:14"}]}]},"pre":{"nodeType":"YulBlock","src":"1705:3:14","statements":[]},"src":"1701:113:14"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"1834:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"1839:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1830:3:14"},"nodeType":"YulFunctionCall","src":"1830:16:14"},{"kind":"number","nodeType":"YulLiteral","src":"1848:1:14","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1823:6:14"},"nodeType":"YulFunctionCall","src":"1823:27:14"},"nodeType":"YulExpressionStatement","src":"1823:27:14"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"1654:3:14","type":""},{"name":"dst","nodeType":"YulTypedName","src":"1659:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"1664:6:14","type":""}],"src":"1610:246:14"},{"body":{"nodeType":"YulBlock","src":"1957:339:14","statements":[{"nodeType":"YulAssignment","src":"1967:75:14","value":{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2034:6:14"}],"functionName":{"name":"array_allocation_size_t_string_memory_ptr","nodeType":"YulIdentifier","src":"1992:41:14"},"nodeType":"YulFunctionCall","src":"1992:49:14"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"1976:15:14"},"nodeType":"YulFunctionCall","src":"1976:66:14"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"1967:5:14"}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"2058:5:14"},{"name":"length","nodeType":"YulIdentifier","src":"2065:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2051:6:14"},"nodeType":"YulFunctionCall","src":"2051:21:14"},"nodeType":"YulExpressionStatement","src":"2051:21:14"},{"nodeType":"YulVariableDeclaration","src":"2081:27:14","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"2096:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"2103:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2092:3:14"},"nodeType":"YulFunctionCall","src":"2092:16:14"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"2085:3:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"2146:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae","nodeType":"YulIdentifier","src":"2148:77:14"},"nodeType":"YulFunctionCall","src":"2148:79:14"},"nodeType":"YulExpressionStatement","src":"2148:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2127:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"2132:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2123:3:14"},"nodeType":"YulFunctionCall","src":"2123:16:14"},{"name":"end","nodeType":"YulIdentifier","src":"2141:3:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2120:2:14"},"nodeType":"YulFunctionCall","src":"2120:25:14"},"nodeType":"YulIf","src":"2117:112:14"},{"expression":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2273:3:14"},{"name":"dst","nodeType":"YulIdentifier","src":"2278:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"2283:6:14"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2238:34:14"},"nodeType":"YulFunctionCall","src":"2238:52:14"},"nodeType":"YulExpressionStatement","src":"2238:52:14"}]},"name":"abi_decode_available_length_t_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"1930:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"1935:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"1943:3:14","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"1951:5:14","type":""}],"src":"1862:434:14"},{"body":{"nodeType":"YulBlock","src":"2389:282:14","statements":[{"body":{"nodeType":"YulBlock","src":"2438:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"2440:77:14"},"nodeType":"YulFunctionCall","src":"2440:79:14"},"nodeType":"YulExpressionStatement","src":"2440:79:14"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2417:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"2425:4:14","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2413:3:14"},"nodeType":"YulFunctionCall","src":"2413:17:14"},{"name":"end","nodeType":"YulIdentifier","src":"2432:3:14"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2409:3:14"},"nodeType":"YulFunctionCall","src":"2409:27:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2402:6:14"},"nodeType":"YulFunctionCall","src":"2402:35:14"},"nodeType":"YulIf","src":"2399:122:14"},{"nodeType":"YulVariableDeclaration","src":"2530:27:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2550:6:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2544:5:14"},"nodeType":"YulFunctionCall","src":"2544:13:14"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2534:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2566:99:14","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2638:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"2646:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2634:3:14"},"nodeType":"YulFunctionCall","src":"2634:17:14"},{"name":"length","nodeType":"YulIdentifier","src":"2653:6:14"},{"name":"end","nodeType":"YulIdentifier","src":"2661:3:14"}],"functionName":{"name":"abi_decode_available_length_t_string_memory_ptr_fromMemory","nodeType":"YulIdentifier","src":"2575:58:14"},"nodeType":"YulFunctionCall","src":"2575:90:14"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"2566:5:14"}]}]},"name":"abi_decode_t_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2367:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2375:3:14","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"2383:5:14","type":""}],"src":"2316:355:14"},{"body":{"nodeType":"YulBlock","src":"2791:739:14","statements":[{"body":{"nodeType":"YulBlock","src":"2837:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2839:77:14"},"nodeType":"YulFunctionCall","src":"2839:79:14"},"nodeType":"YulExpressionStatement","src":"2839:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2812:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"2821:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2808:3:14"},"nodeType":"YulFunctionCall","src":"2808:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"2833:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2804:3:14"},"nodeType":"YulFunctionCall","src":"2804:32:14"},"nodeType":"YulIf","src":"2801:119:14"},{"nodeType":"YulBlock","src":"2930:291:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2945:38:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2969:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"2980:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2965:3:14"},"nodeType":"YulFunctionCall","src":"2965:17:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2959:5:14"},"nodeType":"YulFunctionCall","src":"2959:24:14"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2949:6:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"3030:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"3032:77:14"},"nodeType":"YulFunctionCall","src":"3032:79:14"},"nodeType":"YulExpressionStatement","src":"3032:79:14"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3002:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"3010:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2999:2:14"},"nodeType":"YulFunctionCall","src":"2999:30:14"},"nodeType":"YulIf","src":"2996:117:14"},{"nodeType":"YulAssignment","src":"3127:84:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3183:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"3194:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3179:3:14"},"nodeType":"YulFunctionCall","src":"3179:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3203:7:14"}],"functionName":{"name":"abi_decode_t_string_memory_ptr_fromMemory","nodeType":"YulIdentifier","src":"3137:41:14"},"nodeType":"YulFunctionCall","src":"3137:74:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3127:6:14"}]}]},{"nodeType":"YulBlock","src":"3231:292:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3246:39:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3270:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3281:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3266:3:14"},"nodeType":"YulFunctionCall","src":"3266:18:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3260:5:14"},"nodeType":"YulFunctionCall","src":"3260:25:14"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3250:6:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"3332:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"3334:77:14"},"nodeType":"YulFunctionCall","src":"3334:79:14"},"nodeType":"YulExpressionStatement","src":"3334:79:14"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3304:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"3312:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3301:2:14"},"nodeType":"YulFunctionCall","src":"3301:30:14"},"nodeType":"YulIf","src":"3298:117:14"},{"nodeType":"YulAssignment","src":"3429:84:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3485:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"3496:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3481:3:14"},"nodeType":"YulFunctionCall","src":"3481:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3505:7:14"}],"functionName":{"name":"abi_decode_t_string_memory_ptr_fromMemory","nodeType":"YulIdentifier","src":"3439:41:14"},"nodeType":"YulFunctionCall","src":"3439:74:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3429:6:14"}]}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2753:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2764:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2776:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2784:6:14","type":""}],"src":"2677:853:14"},{"body":{"nodeType":"YulBlock","src":"3595:40:14","statements":[{"nodeType":"YulAssignment","src":"3606:22:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3622:5:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3616:5:14"},"nodeType":"YulFunctionCall","src":"3616:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"3606:6:14"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3578:5:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"3588:6:14","type":""}],"src":"3536:99:14"},{"body":{"nodeType":"YulBlock","src":"3669:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3686:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3689:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3679:6:14"},"nodeType":"YulFunctionCall","src":"3679:88:14"},"nodeType":"YulExpressionStatement","src":"3679:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3783:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3786:4:14","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3776:6:14"},"nodeType":"YulFunctionCall","src":"3776:15:14"},"nodeType":"YulExpressionStatement","src":"3776:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3807:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3810:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3800:6:14"},"nodeType":"YulFunctionCall","src":"3800:15:14"},"nodeType":"YulExpressionStatement","src":"3800:15:14"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"3641:180:14"},{"body":{"nodeType":"YulBlock","src":"3878:269:14","statements":[{"nodeType":"YulAssignment","src":"3888:22:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3902:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"3908:1:14","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"3898:3:14"},"nodeType":"YulFunctionCall","src":"3898:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"3888:6:14"}]},{"nodeType":"YulVariableDeclaration","src":"3919:38:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3949:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"3955:1:14","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3945:3:14"},"nodeType":"YulFunctionCall","src":"3945:12:14"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"3923:18:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"3996:51:14","statements":[{"nodeType":"YulAssignment","src":"4010:27:14","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4024:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4032:4:14","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4020:3:14"},"nodeType":"YulFunctionCall","src":"4020:17:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"4010:6:14"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"3976:18:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3969:6:14"},"nodeType":"YulFunctionCall","src":"3969:26:14"},"nodeType":"YulIf","src":"3966:81:14"},{"body":{"nodeType":"YulBlock","src":"4099:42:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"4113:16:14"},"nodeType":"YulFunctionCall","src":"4113:18:14"},"nodeType":"YulExpressionStatement","src":"4113:18:14"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"4063:18:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4086:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4094:2:14","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4083:2:14"},"nodeType":"YulFunctionCall","src":"4083:14:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"4060:2:14"},"nodeType":"YulFunctionCall","src":"4060:38:14"},"nodeType":"YulIf","src":"4057:84:14"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3862:4:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"3871:6:14","type":""}],"src":"3827:320:14"},{"body":{"nodeType":"YulBlock","src":"4207:87:14","statements":[{"nodeType":"YulAssignment","src":"4217:11:14","value":{"name":"ptr","nodeType":"YulIdentifier","src":"4225:3:14"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"4217:4:14"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4245:1:14","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"4248:3:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4238:6:14"},"nodeType":"YulFunctionCall","src":"4238:14:14"},"nodeType":"YulExpressionStatement","src":"4238:14:14"},{"nodeType":"YulAssignment","src":"4261:26:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4279:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4282:4:14","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"4269:9:14"},"nodeType":"YulFunctionCall","src":"4269:18:14"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"4261:4:14"}]}]},"name":"array_dataslot_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"4194:3:14","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"4202:4:14","type":""}],"src":"4153:141:14"},{"body":{"nodeType":"YulBlock","src":"4344:49:14","statements":[{"nodeType":"YulAssignment","src":"4354:33:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4372:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4379:2:14","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4368:3:14"},"nodeType":"YulFunctionCall","src":"4368:14:14"},{"kind":"number","nodeType":"YulLiteral","src":"4384:2:14","type":"","value":"32"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4364:3:14"},"nodeType":"YulFunctionCall","src":"4364:23:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"4354:6:14"}]}]},"name":"divide_by_32_ceil","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4327:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"4337:6:14","type":""}],"src":"4300:93:14"},{"body":{"nodeType":"YulBlock","src":"4452:54:14","statements":[{"nodeType":"YulAssignment","src":"4462:37:14","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"4487:4:14"},{"name":"value","nodeType":"YulIdentifier","src":"4493:5:14"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4483:3:14"},"nodeType":"YulFunctionCall","src":"4483:16:14"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"4462:8:14"}]}]},"name":"shift_left_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"4427:4:14","type":""},{"name":"value","nodeType":"YulTypedName","src":"4433:5:14","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"4443:8:14","type":""}],"src":"4399:107:14"},{"body":{"nodeType":"YulBlock","src":"4588:317:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4598:35:14","value":{"arguments":[{"name":"shiftBytes","nodeType":"YulIdentifier","src":"4619:10:14"},{"kind":"number","nodeType":"YulLiteral","src":"4631:1:14","type":"","value":"8"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"4615:3:14"},"nodeType":"YulFunctionCall","src":"4615:18:14"},"variables":[{"name":"shiftBits","nodeType":"YulTypedName","src":"4602:9:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4642:109:14","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"4673:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4684:66:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"4654:18:14"},"nodeType":"YulFunctionCall","src":"4654:97:14"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"4646:4:14","type":""}]},{"nodeType":"YulAssignment","src":"4760:51:14","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"4791:9:14"},{"name":"toInsert","nodeType":"YulIdentifier","src":"4802:8:14"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"4772:18:14"},"nodeType":"YulFunctionCall","src":"4772:39:14"},"variableNames":[{"name":"toInsert","nodeType":"YulIdentifier","src":"4760:8:14"}]},{"nodeType":"YulAssignment","src":"4820:30:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4833:5:14"},{"arguments":[{"name":"mask","nodeType":"YulIdentifier","src":"4844:4:14"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4840:3:14"},"nodeType":"YulFunctionCall","src":"4840:9:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4829:3:14"},"nodeType":"YulFunctionCall","src":"4829:21:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"4820:5:14"}]},{"nodeType":"YulAssignment","src":"4859:40:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4872:5:14"},{"arguments":[{"name":"toInsert","nodeType":"YulIdentifier","src":"4883:8:14"},{"name":"mask","nodeType":"YulIdentifier","src":"4893:4:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4879:3:14"},"nodeType":"YulFunctionCall","src":"4879:19:14"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"4869:2:14"},"nodeType":"YulFunctionCall","src":"4869:30:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"4859:6:14"}]}]},"name":"update_byte_slice_dynamic32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4549:5:14","type":""},{"name":"shiftBytes","nodeType":"YulTypedName","src":"4556:10:14","type":""},{"name":"toInsert","nodeType":"YulTypedName","src":"4568:8:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"4581:6:14","type":""}],"src":"4512:393:14"},{"body":{"nodeType":"YulBlock","src":"4956:32:14","statements":[{"nodeType":"YulAssignment","src":"4966:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"4977:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4966:7:14"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4938:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4948:7:14","type":""}],"src":"4911:77:14"},{"body":{"nodeType":"YulBlock","src":"5026:28:14","statements":[{"nodeType":"YulAssignment","src":"5036:12:14","value":{"name":"value","nodeType":"YulIdentifier","src":"5043:5:14"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5036:3:14"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5012:5:14","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5022:3:14","type":""}],"src":"4994:60:14"},{"body":{"nodeType":"YulBlock","src":"5120:82:14","statements":[{"nodeType":"YulAssignment","src":"5130:66:14","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5188:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"5170:17:14"},"nodeType":"YulFunctionCall","src":"5170:24:14"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"5161:8:14"},"nodeType":"YulFunctionCall","src":"5161:34:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"5143:17:14"},"nodeType":"YulFunctionCall","src":"5143:53:14"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"5130:9:14"}]}]},"name":"convert_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5100:5:14","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"5110:9:14","type":""}],"src":"5060:142:14"},{"body":{"nodeType":"YulBlock","src":"5255:28:14","statements":[{"nodeType":"YulAssignment","src":"5265:12:14","value":{"name":"value","nodeType":"YulIdentifier","src":"5272:5:14"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5265:3:14"}]}]},"name":"prepare_store_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5241:5:14","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5251:3:14","type":""}],"src":"5208:75:14"},{"body":{"nodeType":"YulBlock","src":"5365:193:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5375:63:14","value":{"arguments":[{"name":"value_0","nodeType":"YulIdentifier","src":"5430:7:14"}],"functionName":{"name":"convert_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5399:30:14"},"nodeType":"YulFunctionCall","src":"5399:39:14"},"variables":[{"name":"convertedValue_0","nodeType":"YulTypedName","src":"5379:16:14","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5454:4:14"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5494:4:14"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"5488:5:14"},"nodeType":"YulFunctionCall","src":"5488:11:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5501:6:14"},{"arguments":[{"name":"convertedValue_0","nodeType":"YulIdentifier","src":"5533:16:14"}],"functionName":{"name":"prepare_store_t_uint256","nodeType":"YulIdentifier","src":"5509:23:14"},"nodeType":"YulFunctionCall","src":"5509:41:14"}],"functionName":{"name":"update_byte_slice_dynamic32","nodeType":"YulIdentifier","src":"5460:27:14"},"nodeType":"YulFunctionCall","src":"5460:91:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"5447:6:14"},"nodeType":"YulFunctionCall","src":"5447:105:14"},"nodeType":"YulExpressionStatement","src":"5447:105:14"}]},"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"5342:4:14","type":""},{"name":"offset","nodeType":"YulTypedName","src":"5348:6:14","type":""},{"name":"value_0","nodeType":"YulTypedName","src":"5356:7:14","type":""}],"src":"5289:269:14"},{"body":{"nodeType":"YulBlock","src":"5613:24:14","statements":[{"nodeType":"YulAssignment","src":"5623:8:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5630:1:14","type":"","value":"0"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5623:3:14"}]}]},"name":"zero_value_for_split_t_uint256","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5609:3:14","type":""}],"src":"5564:73:14"},{"body":{"nodeType":"YulBlock","src":"5696:136:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5706:46:14","value":{"arguments":[],"functionName":{"name":"zero_value_for_split_t_uint256","nodeType":"YulIdentifier","src":"5720:30:14"},"nodeType":"YulFunctionCall","src":"5720:32:14"},"variables":[{"name":"zero_0","nodeType":"YulTypedName","src":"5710:6:14","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5805:4:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5811:6:14"},{"name":"zero_0","nodeType":"YulIdentifier","src":"5819:6:14"}],"functionName":{"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5761:43:14"},"nodeType":"YulFunctionCall","src":"5761:65:14"},"nodeType":"YulExpressionStatement","src":"5761:65:14"}]},"name":"storage_set_to_zero_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"5682:4:14","type":""},{"name":"offset","nodeType":"YulTypedName","src":"5688:6:14","type":""}],"src":"5643:189:14"},{"body":{"nodeType":"YulBlock","src":"5888:136:14","statements":[{"body":{"nodeType":"YulBlock","src":"5955:63:14","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"5999:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"6006:1:14","type":"","value":"0"}],"functionName":{"name":"storage_set_to_zero_t_uint256","nodeType":"YulIdentifier","src":"5969:29:14"},"nodeType":"YulFunctionCall","src":"5969:39:14"},"nodeType":"YulExpressionStatement","src":"5969:39:14"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"5908:5:14"},{"name":"end","nodeType":"YulIdentifier","src":"5915:3:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"5905:2:14"},"nodeType":"YulFunctionCall","src":"5905:14:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"5920:26:14","statements":[{"nodeType":"YulAssignment","src":"5922:22:14","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"5935:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"5942:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5931:3:14"},"nodeType":"YulFunctionCall","src":"5931:13:14"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"5922:5:14"}]}]},"pre":{"nodeType":"YulBlock","src":"5902:2:14","statements":[]},"src":"5898:120:14"}]},"name":"clear_storage_range_t_bytes1","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"5876:5:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"5883:3:14","type":""}],"src":"5838:186:14"},{"body":{"nodeType":"YulBlock","src":"6109:464:14","statements":[{"body":{"nodeType":"YulBlock","src":"6135:431:14","statements":[{"nodeType":"YulVariableDeclaration","src":"6149:54:14","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"6197:5:14"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"6165:31:14"},"nodeType":"YulFunctionCall","src":"6165:38:14"},"variables":[{"name":"dataArea","nodeType":"YulTypedName","src":"6153:8:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6216:63:14","value":{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"6239:8:14"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"6267:10:14"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"6249:17:14"},"nodeType":"YulFunctionCall","src":"6249:29:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6235:3:14"},"nodeType":"YulFunctionCall","src":"6235:44:14"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"6220:11:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"6436:27:14","statements":[{"nodeType":"YulAssignment","src":"6438:23:14","value":{"name":"dataArea","nodeType":"YulIdentifier","src":"6453:8:14"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"6438:11:14"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"6420:10:14"},{"kind":"number","nodeType":"YulLiteral","src":"6432:2:14","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6417:2:14"},"nodeType":"YulFunctionCall","src":"6417:18:14"},"nodeType":"YulIf","src":"6414:49:14"},{"expression":{"arguments":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"6505:11:14"},{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"6522:8:14"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"6550:3:14"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"6532:17:14"},"nodeType":"YulFunctionCall","src":"6532:22:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6518:3:14"},"nodeType":"YulFunctionCall","src":"6518:37:14"}],"functionName":{"name":"clear_storage_range_t_bytes1","nodeType":"YulIdentifier","src":"6476:28:14"},"nodeType":"YulFunctionCall","src":"6476:80:14"},"nodeType":"YulExpressionStatement","src":"6476:80:14"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"6126:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"6131:2:14","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6123:2:14"},"nodeType":"YulFunctionCall","src":"6123:11:14"},"nodeType":"YulIf","src":"6120:446:14"}]},"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"6085:5:14","type":""},{"name":"len","nodeType":"YulTypedName","src":"6092:3:14","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"6097:10:14","type":""}],"src":"6030:543:14"},{"body":{"nodeType":"YulBlock","src":"6642:54:14","statements":[{"nodeType":"YulAssignment","src":"6652:37:14","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"6677:4:14"},{"name":"value","nodeType":"YulIdentifier","src":"6683:5:14"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"6673:3:14"},"nodeType":"YulFunctionCall","src":"6673:16:14"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"6652:8:14"}]}]},"name":"shift_right_unsigned_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"6617:4:14","type":""},{"name":"value","nodeType":"YulTypedName","src":"6623:5:14","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"6633:8:14","type":""}],"src":"6579:117:14"},{"body":{"nodeType":"YulBlock","src":"6753:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"6763:68:14","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6812:1:14","type":"","value":"8"},{"name":"bytes","nodeType":"YulIdentifier","src":"6815:5:14"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"6808:3:14"},"nodeType":"YulFunctionCall","src":"6808:13:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6827:1:14","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"6823:3:14"},"nodeType":"YulFunctionCall","src":"6823:6:14"}],"functionName":{"name":"shift_right_unsigned_dynamic","nodeType":"YulIdentifier","src":"6779:28:14"},"nodeType":"YulFunctionCall","src":"6779:51:14"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"6775:3:14"},"nodeType":"YulFunctionCall","src":"6775:56:14"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"6767:4:14","type":""}]},{"nodeType":"YulAssignment","src":"6840:25:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"6854:4:14"},{"name":"mask","nodeType":"YulIdentifier","src":"6860:4:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6850:3:14"},"nodeType":"YulFunctionCall","src":"6850:15:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"6840:6:14"}]}]},"name":"mask_bytes_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"6730:4:14","type":""},{"name":"bytes","nodeType":"YulTypedName","src":"6736:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"6746:6:14","type":""}],"src":"6702:169:14"},{"body":{"nodeType":"YulBlock","src":"6957:214:14","statements":[{"nodeType":"YulAssignment","src":"7090:37:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"7117:4:14"},{"name":"len","nodeType":"YulIdentifier","src":"7123:3:14"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"7098:18:14"},"nodeType":"YulFunctionCall","src":"7098:29:14"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"7090:4:14"}]},{"nodeType":"YulAssignment","src":"7136:29:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"7147:4:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7157:1:14","type":"","value":"2"},{"name":"len","nodeType":"YulIdentifier","src":"7160:3:14"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"7153:3:14"},"nodeType":"YulFunctionCall","src":"7153:11:14"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"7144:2:14"},"nodeType":"YulFunctionCall","src":"7144:21:14"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"7136:4:14"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"6938:4:14","type":""},{"name":"len","nodeType":"YulTypedName","src":"6944:3:14","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"6952:4:14","type":""}],"src":"6876:295:14"},{"body":{"nodeType":"YulBlock","src":"7268:1303:14","statements":[{"nodeType":"YulVariableDeclaration","src":"7279:51:14","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"7326:3:14"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"7293:32:14"},"nodeType":"YulFunctionCall","src":"7293:37:14"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"7283:6:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"7415:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"7417:16:14"},"nodeType":"YulFunctionCall","src":"7417:18:14"},"nodeType":"YulExpressionStatement","src":"7417:18:14"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"7387:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7395:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7384:2:14"},"nodeType":"YulFunctionCall","src":"7384:30:14"},"nodeType":"YulIf","src":"7381:56:14"},{"nodeType":"YulVariableDeclaration","src":"7447:52:14","value":{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"7493:4:14"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"7487:5:14"},"nodeType":"YulFunctionCall","src":"7487:11:14"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"7461:25:14"},"nodeType":"YulFunctionCall","src":"7461:38:14"},"variables":[{"name":"oldLen","nodeType":"YulTypedName","src":"7451:6:14","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"7592:4:14"},{"name":"oldLen","nodeType":"YulIdentifier","src":"7598:6:14"},{"name":"newLen","nodeType":"YulIdentifier","src":"7606:6:14"}],"functionName":{"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulIdentifier","src":"7546:45:14"},"nodeType":"YulFunctionCall","src":"7546:67:14"},"nodeType":"YulExpressionStatement","src":"7546:67:14"},{"nodeType":"YulVariableDeclaration","src":"7623:18:14","value":{"kind":"number","nodeType":"YulLiteral","src":"7640:1:14","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"7627:9:14","type":""}]},{"nodeType":"YulAssignment","src":"7651:17:14","value":{"kind":"number","nodeType":"YulLiteral","src":"7664:4:14","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"7651:9:14"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"7715:611:14","statements":[{"nodeType":"YulVariableDeclaration","src":"7729:37:14","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"7748:6:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7760:4:14","type":"","value":"0x1f"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"7756:3:14"},"nodeType":"YulFunctionCall","src":"7756:9:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"7744:3:14"},"nodeType":"YulFunctionCall","src":"7744:22:14"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"7733:7:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7780:51:14","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"7826:4:14"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"7794:31:14"},"nodeType":"YulFunctionCall","src":"7794:37:14"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"7784:6:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7844:10:14","value":{"kind":"number","nodeType":"YulLiteral","src":"7853:1:14","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"7848:1:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"7912:163:14","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"7937:6:14"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"7955:3:14"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"7960:9:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7951:3:14"},"nodeType":"YulFunctionCall","src":"7951:19:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7945:5:14"},"nodeType":"YulFunctionCall","src":"7945:26:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"7930:6:14"},"nodeType":"YulFunctionCall","src":"7930:42:14"},"nodeType":"YulExpressionStatement","src":"7930:42:14"},{"nodeType":"YulAssignment","src":"7989:24:14","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"8003:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8011:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7999:3:14"},"nodeType":"YulFunctionCall","src":"7999:14:14"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"7989:6:14"}]},{"nodeType":"YulAssignment","src":"8030:31:14","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"8047:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8058:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8043:3:14"},"nodeType":"YulFunctionCall","src":"8043:18:14"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"8030:9:14"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7878:1:14"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"7881:7:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"7875:2:14"},"nodeType":"YulFunctionCall","src":"7875:14:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"7890:21:14","statements":[{"nodeType":"YulAssignment","src":"7892:17:14","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7901:1:14"},{"kind":"number","nodeType":"YulLiteral","src":"7904:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7897:3:14"},"nodeType":"YulFunctionCall","src":"7897:12:14"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"7892:1:14"}]}]},"pre":{"nodeType":"YulBlock","src":"7871:3:14","statements":[]},"src":"7867:208:14"},{"body":{"nodeType":"YulBlock","src":"8111:156:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8129:43:14","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"8156:3:14"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"8161:9:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8152:3:14"},"nodeType":"YulFunctionCall","src":"8152:19:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8146:5:14"},"nodeType":"YulFunctionCall","src":"8146:26:14"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"8133:9:14","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"8196:6:14"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"8223:9:14"},{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"8238:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8246:4:14","type":"","value":"0x1f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8234:3:14"},"nodeType":"YulFunctionCall","src":"8234:17:14"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"8204:18:14"},"nodeType":"YulFunctionCall","src":"8204:48:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"8189:6:14"},"nodeType":"YulFunctionCall","src":"8189:64:14"},"nodeType":"YulExpressionStatement","src":"8189:64:14"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"8094:7:14"},{"name":"newLen","nodeType":"YulIdentifier","src":"8103:6:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"8091:2:14"},"nodeType":"YulFunctionCall","src":"8091:19:14"},"nodeType":"YulIf","src":"8088:179:14"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"8287:4:14"},{"arguments":[{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"8301:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8309:1:14","type":"","value":"2"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"8297:3:14"},"nodeType":"YulFunctionCall","src":"8297:14:14"},{"kind":"number","nodeType":"YulLiteral","src":"8313:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8293:3:14"},"nodeType":"YulFunctionCall","src":"8293:22:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"8280:6:14"},"nodeType":"YulFunctionCall","src":"8280:36:14"},"nodeType":"YulExpressionStatement","src":"8280:36:14"}]},"nodeType":"YulCase","src":"7708:618:14","value":{"kind":"number","nodeType":"YulLiteral","src":"7713:1:14","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"8343:222:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8357:14:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8370:1:14","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"8361:5:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"8394:67:14","statements":[{"nodeType":"YulAssignment","src":"8412:35:14","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"8431:3:14"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"8436:9:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8427:3:14"},"nodeType":"YulFunctionCall","src":"8427:19:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8421:5:14"},"nodeType":"YulFunctionCall","src":"8421:26:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"8412:5:14"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"8387:6:14"},"nodeType":"YulIf","src":"8384:77:14"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"8481:4:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8540:5:14"},{"name":"newLen","nodeType":"YulIdentifier","src":"8547:6:14"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"8487:52:14"},"nodeType":"YulFunctionCall","src":"8487:67:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"8474:6:14"},"nodeType":"YulFunctionCall","src":"8474:81:14"},"nodeType":"YulExpressionStatement","src":"8474:81:14"}]},"nodeType":"YulCase","src":"8335:230:14","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"7688:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7696:2:14","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7685:2:14"},"nodeType":"YulFunctionCall","src":"7685:14:14"},"nodeType":"YulSwitch","src":"7678:887:14"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"7257:4:14","type":""},{"name":"src","nodeType":"YulTypedName","src":"7263:3:14","type":""}],"src":"7176:1395:14"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\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\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\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\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b5060405162001756380380620017568339818101604052810190620000369190620001e7565b8160039081620000479190620004a1565b508060049081620000599190620004a1565b50505062000585565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620000c3826200007b565b810181811067ffffffffffffffff82111715620000e557620000e46200008b565b5b80604052505050565b5f620000f962000062565b9050620001078282620000b8565b919050565b5f67ffffffffffffffff8211156200012957620001286200008b565b5b62000134826200007b565b9050602081019050919050565b5f5b838110156200016057808201518184015260208101905062000143565b5f8484015250505050565b5f620001816200017b846200010c565b620000ee565b905082815260208101848484011115620001a0576200019f62000077565b5b620001ad84828562000141565b509392505050565b5f82601f830112620001cc57620001cb62000073565b5b8151620001de8482602086016200016b565b91505092915050565b5f80604083850312156200020057620001ff6200006b565b5b5f83015167ffffffffffffffff81111562000220576200021f6200006f565b5b6200022e85828601620001b5565b925050602083015167ffffffffffffffff8111156200025257620002516200006f565b5b6200026085828601620001b5565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b957607f821691505b602082108103620002cf57620002ce62000274565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f6565b6200033f8683620002f6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000389620003836200037d8462000357565b62000360565b62000357565b9050919050565b5f819050919050565b620003a48362000369565b620003bc620003b38262000390565b84845462000302565b825550505050565b5f90565b620003d2620003c4565b620003df81848462000399565b505050565b5b818110156200040657620003fa5f82620003c8565b600181019050620003e5565b5050565b601f82111562000455576200041f81620002d5565b6200042a84620002e7565b810160208510156200043a578190505b620004526200044985620002e7565b830182620003e4565b50505b505050565b5f82821c905092915050565b5f620004775f19846008026200045a565b1980831691505092915050565b5f62000491838362000466565b9150826002028217905092915050565b620004ac826200026a565b67ffffffffffffffff811115620004c857620004c76200008b565b5b620004d48254620002a1565b620004e18282856200040a565b5f60209050601f83116001811462000517575f841562000502578287015190505b6200050e858262000484565b8655506200057d565b601f1984166200052786620002d5565b5f5b82811015620005505784890151825560018201915060208501945060208101905062000529565b868310156200057057848901516200056c601f89168262000466565b8355505b6001600288020188555050505b505050505050565b6111c380620005935f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610add565b60405180910390f35b6100e360048036038101906100de9190610b8e565b610303565b6040516100f09190610be6565b60405180910390f35b610101610325565b60405161010e9190610c0e565b60405180910390f35b610131600480360381019061012c9190610c27565b61032e565b60405161013e9190610be6565b60405180910390f35b61014f61035c565b60405161015c9190610c92565b60405180910390f35b61017f600480360381019061017a9190610b8e565b610364565b60405161018c9190610be6565b60405180910390f35b6101af60048036038101906101aa9190610cab565b61039a565b6040516101bc9190610c0e565b60405180910390f35b6101cd6103df565b6040516101da9190610add565b60405180910390f35b6101fd60048036038101906101f89190610b8e565b61046f565b60405161020a9190610be6565b60405180910390f35b61022d60048036038101906102289190610b8e565b6104e4565b60405161023a9190610be6565b60405180910390f35b61025d60048036038101906102589190610cd6565b610506565b60405161026a9190610c0e565b60405180910390f35b60606003805461028290610d41565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610d41565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f8061030d610588565b905061031a81858561058f565b600191505092915050565b5f600254905090565b5f80610338610588565b9050610345858285610752565b6103508585856107dd565b60019150509392505050565b5f6012905090565b5f8061036e610588565b905061038f8185856103808589610506565b61038a9190610d9e565b61058f565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103ee90610d41565b80601f016020809104026020016040519081016040528092919081815260200182805461041a90610d41565b80156104655780601f1061043c57610100808354040283529160200191610465565b820191905f5260205f20905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b5f80610479610588565b90505f6104868286610506565b9050838110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c290610e41565b60405180910390fd5b6104d8828686840361058f565b60019250505092915050565b5f806104ee610588565b90506104fb8185856107dd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f490610ecf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290610f5d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107459190610c0e565b60405180910390a3505050565b5f61075d8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090610fc5565b60405180910390fd5b6107d6848484840361058f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611053565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b0906110e1565b60405180910390fd5b6108c4838383610a49565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061116f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a309190610c0e565b60405180910390a3610a43848484610a4e565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610a8a578082015181840152602081019050610a6f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610aaf82610a53565b610ab98185610a5d565b9350610ac9818560208601610a6d565b610ad281610a95565b840191505092915050565b5f6020820190508181035f830152610af58184610aa5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b2a82610b01565b9050919050565b610b3a81610b20565b8114610b44575f80fd5b50565b5f81359050610b5581610b31565b92915050565b5f819050919050565b610b6d81610b5b565b8114610b77575f80fd5b50565b5f81359050610b8881610b64565b92915050565b5f8060408385031215610ba457610ba3610afd565b5b5f610bb185828601610b47565b9250506020610bc285828601610b7a565b9150509250929050565b5f8115159050919050565b610be081610bcc565b82525050565b5f602082019050610bf95f830184610bd7565b92915050565b610c0881610b5b565b82525050565b5f602082019050610c215f830184610bff565b92915050565b5f805f60608486031215610c3e57610c3d610afd565b5b5f610c4b86828701610b47565b9350506020610c5c86828701610b47565b9250506040610c6d86828701610b7a565b9150509250925092565b5f60ff82169050919050565b610c8c81610c77565b82525050565b5f602082019050610ca55f830184610c83565b92915050565b5f60208284031215610cc057610cbf610afd565b5b5f610ccd84828501610b47565b91505092915050565b5f8060408385031215610cec57610ceb610afd565b5b5f610cf985828601610b47565b9250506020610d0a85828601610b47565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5857607f821691505b602082108103610d6b57610d6a610d14565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da882610b5b565b9150610db383610b5b565b9250828201905080821115610dcb57610dca610d71565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610e2b602583610a5d565b9150610e3682610dd1565b604082019050919050565b5f6020820190508181035f830152610e5881610e1f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610eb9602483610a5d565b9150610ec482610e5f565b604082019050919050565b5f6020820190508181035f830152610ee681610ead565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f47602283610a5d565b9150610f5282610eed565b604082019050919050565b5f6020820190508181035f830152610f7481610f3b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f610faf601d83610a5d565b9150610fba82610f7b565b602082019050919050565b5f6020820190508181035f830152610fdc81610fa3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61103d602583610a5d565b915061104882610fe3565b604082019050919050565b5f6020820190508181035f83015261106a81611031565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6110cb602383610a5d565b91506110d682611071565b604082019050919050565b5f6020820190508181035f8301526110f8816110bf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611159602683610a5d565b9150611164826110ff565b604082019050919050565b5f6020820190508181035f8301526111868161114d565b905091905056fea264697066735822122017d0eb9749a45a781e1aceec4cce3d7a464856bc0a03e53663704358996e3b9a64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1756 CODESIZE SUB DUP1 PUSH3 0x1756 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x36 SWAP2 SWAP1 PUSH3 0x1E7 JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x47 SWAP2 SWAP1 PUSH3 0x4A1 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x59 SWAP2 SWAP1 PUSH3 0x4A1 JUMP JUMPDEST POP POP POP PUSH3 0x585 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH3 0xC3 DUP3 PUSH3 0x7B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xE5 JUMPI PUSH3 0xE4 PUSH3 0x8B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH3 0xF9 PUSH3 0x62 JUMP JUMPDEST SWAP1 POP PUSH3 0x107 DUP3 DUP3 PUSH3 0xB8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x129 JUMPI PUSH3 0x128 PUSH3 0x8B JUMP JUMPDEST JUMPDEST PUSH3 0x134 DUP3 PUSH3 0x7B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x160 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x143 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH3 0x181 PUSH3 0x17B DUP5 PUSH3 0x10C JUMP JUMPDEST PUSH3 0xEE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1A0 JUMPI PUSH3 0x19F PUSH3 0x77 JUMP JUMPDEST JUMPDEST PUSH3 0x1AD DUP5 DUP3 DUP6 PUSH3 0x141 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1CC JUMPI PUSH3 0x1CB PUSH3 0x73 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x1DE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x16B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x200 JUMPI PUSH3 0x1FF PUSH3 0x6B JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x220 JUMPI PUSH3 0x21F PUSH3 0x6F JUMP JUMPDEST JUMPDEST PUSH3 0x22E DUP6 DUP3 DUP7 ADD PUSH3 0x1B5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x252 JUMPI PUSH3 0x251 PUSH3 0x6F JUMP JUMPDEST JUMPDEST PUSH3 0x260 DUP6 DUP3 DUP7 ADD PUSH3 0x1B5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2B9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2CF JUMPI PUSH3 0x2CE PUSH3 0x274 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x333 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x2F6 JUMP JUMPDEST PUSH3 0x33F DUP7 DUP4 PUSH3 0x2F6 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x389 PUSH3 0x383 PUSH3 0x37D DUP5 PUSH3 0x357 JUMP JUMPDEST PUSH3 0x360 JUMP JUMPDEST PUSH3 0x357 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3A4 DUP4 PUSH3 0x369 JUMP JUMPDEST PUSH3 0x3BC PUSH3 0x3B3 DUP3 PUSH3 0x390 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x302 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x3D2 PUSH3 0x3C4 JUMP JUMPDEST PUSH3 0x3DF DUP2 DUP5 DUP5 PUSH3 0x399 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x406 JUMPI PUSH3 0x3FA PUSH0 DUP3 PUSH3 0x3C8 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x455 JUMPI PUSH3 0x41F DUP2 PUSH3 0x2D5 JUMP JUMPDEST PUSH3 0x42A DUP5 PUSH3 0x2E7 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x43A JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x452 PUSH3 0x449 DUP6 PUSH3 0x2E7 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x3E4 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x477 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x45A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x491 DUP4 DUP4 PUSH3 0x466 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4AC DUP3 PUSH3 0x26A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4C8 JUMPI PUSH3 0x4C7 PUSH3 0x8B JUMP JUMPDEST JUMPDEST PUSH3 0x4D4 DUP3 SLOAD PUSH3 0x2A1 JUMP JUMPDEST PUSH3 0x4E1 DUP3 DUP3 DUP6 PUSH3 0x40A JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x517 JUMPI PUSH0 DUP5 ISZERO PUSH3 0x502 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x50E DUP6 DUP3 PUSH3 0x484 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x57D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x527 DUP7 PUSH3 0x2D5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x550 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x529 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x570 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x56C PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x466 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x11C3 DUP1 PUSH3 0x593 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x243 JUMPI PUSH2 0xA7 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC9 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x117 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x147 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB3 PUSH2 0x273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDE SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x303 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x101 PUSH2 0x325 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xC27 JUMP JUMPDEST PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14F PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xC92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17A SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0xCAB JUMP JUMPDEST PUSH2 0x39A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CD PUSH2 0x3DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x46F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20A SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x228 SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x4E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x258 SWAP2 SWAP1 PUSH2 0xCD6 JUMP JUMPDEST PUSH2 0x506 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26A SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x282 SWAP1 PUSH2 0xD41 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 0x2AE SWAP1 PUSH2 0xD41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2F9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2F9 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 0x2DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x30D PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x31A DUP2 DUP6 DUP6 PUSH2 0x58F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x338 PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x345 DUP6 DUP3 DUP6 PUSH2 0x752 JUMP JUMPDEST PUSH2 0x350 DUP6 DUP6 DUP6 PUSH2 0x7DD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x36E PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x38F DUP2 DUP6 DUP6 PUSH2 0x380 DUP6 DUP10 PUSH2 0x506 JUMP JUMPDEST PUSH2 0x38A SWAP2 SWAP1 PUSH2 0xD9E JUMP JUMPDEST PUSH2 0x58F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3EE SWAP1 PUSH2 0xD41 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 0x41A SWAP1 PUSH2 0xD41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x465 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x43C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x465 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 0x448 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x479 PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x486 DUP3 DUP7 PUSH2 0x506 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4CB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C2 SWAP1 PUSH2 0xE41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4D8 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x58F JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x4EE PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x4FB DUP2 DUP6 DUP6 PUSH2 0x7DD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x5FD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F4 SWAP1 PUSH2 0xECF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x66B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x662 SWAP1 PUSH2 0xF5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x745 SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x75D DUP5 DUP5 PUSH2 0x506 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7D7 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C0 SWAP1 PUSH2 0xFC5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7D6 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x58F JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x84B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x842 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8B0 SWAP1 PUSH2 0x10E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8C4 DUP4 DUP4 DUP4 PUSH2 0xA49 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x947 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x93E SWAP1 PUSH2 0x116F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA30 SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA43 DUP5 DUP5 DUP5 PUSH2 0xA4E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xA8A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA6F JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xAAF DUP3 PUSH2 0xA53 JUMP JUMPDEST PUSH2 0xAB9 DUP2 DUP6 PUSH2 0xA5D JUMP JUMPDEST SWAP4 POP PUSH2 0xAC9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA6D JUMP JUMPDEST PUSH2 0xAD2 DUP2 PUSH2 0xA95 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xAF5 DUP2 DUP5 PUSH2 0xAA5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xB2A DUP3 PUSH2 0xB01 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB3A DUP2 PUSH2 0xB20 JUMP JUMPDEST DUP2 EQ PUSH2 0xB44 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB55 DUP2 PUSH2 0xB31 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6D DUP2 PUSH2 0xB5B JUMP JUMPDEST DUP2 EQ PUSH2 0xB77 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB88 DUP2 PUSH2 0xB64 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBA4 JUMPI PUSH2 0xBA3 PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xBB1 DUP6 DUP3 DUP7 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBC2 DUP6 DUP3 DUP7 ADD PUSH2 0xB7A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBE0 DUP2 PUSH2 0xBCC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xBF9 PUSH0 DUP4 ADD DUP5 PUSH2 0xBD7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC08 DUP2 PUSH2 0xB5B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC21 PUSH0 DUP4 ADD DUP5 PUSH2 0xBFF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC3E JUMPI PUSH2 0xC3D PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xC4B DUP7 DUP3 DUP8 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC5C DUP7 DUP3 DUP8 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xC6D DUP7 DUP3 DUP8 ADD PUSH2 0xB7A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC8C DUP2 PUSH2 0xC77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCA5 PUSH0 DUP4 ADD DUP5 PUSH2 0xC83 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCC0 JUMPI PUSH2 0xCBF PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCCD DUP5 DUP3 DUP6 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCEC JUMPI PUSH2 0xCEB PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCF9 DUP6 DUP3 DUP7 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD0A DUP6 DUP3 DUP7 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xD58 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xD6B JUMPI PUSH2 0xD6A PUSH2 0xD14 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xDA8 DUP3 PUSH2 0xB5B JUMP JUMPDEST SWAP2 POP PUSH2 0xDB3 DUP4 PUSH2 0xB5B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xDCB JUMPI PUSH2 0xDCA PUSH2 0xD71 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xE2B PUSH1 0x25 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xE36 DUP3 PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE58 DUP2 PUSH2 0xE1F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xEB9 PUSH1 0x24 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xEC4 DUP3 PUSH2 0xE5F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xEE6 DUP2 PUSH2 0xEAD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF47 PUSH1 0x22 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xF52 DUP3 PUSH2 0xEED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF74 DUP2 PUSH2 0xF3B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xFAF PUSH1 0x1D DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xFBA DUP3 PUSH2 0xF7B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xFDC DUP2 PUSH2 0xFA3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x103D PUSH1 0x25 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0x1048 DUP3 PUSH2 0xFE3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x106A DUP2 PUSH2 0x1031 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x10CB PUSH1 0x23 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0x10D6 DUP3 PUSH2 0x1071 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10F8 DUP2 PUSH2 0x10BF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1159 PUSH1 0x26 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0x1164 DUP3 PUSH2 0x10FF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1186 DUP2 PUSH2 0x114D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 OR 0xD0 0xEB SWAP8 0x49 LOG4 GAS PUSH25 0x1E1ACEEC4CCE3D7A464856BC0A03E53663704358996E3B9A64 PUSH20 0x6F6C634300081400330000000000000000000000 ","sourceMap":"1532:11312:6:-:0;;;1980:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;1532:11312;;7:75:14;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:246::-;1691:1;1701:113;1715:6;1712:1;1709:13;1701:113;;;1800:1;1795:3;1791:11;1785:18;1781:1;1776:3;1772:11;1765:39;1737:2;1734:1;1730:10;1725:15;;1701:113;;;1848:1;1839:6;1834:3;1830:16;1823:27;1672:184;1610:246;;;:::o;1862:434::-;1951:5;1976:66;1992:49;2034:6;1992:49;:::i;:::-;1976:66;:::i;:::-;1967:75;;2065:6;2058:5;2051:21;2103:4;2096:5;2092:16;2141:3;2132:6;2127:3;2123:16;2120:25;2117:112;;;2148:79;;:::i;:::-;2117:112;2238:52;2283:6;2278:3;2273;2238:52;:::i;:::-;1957:339;1862:434;;;;;:::o;2316:355::-;2383:5;2432:3;2425:4;2417:6;2413:17;2409:27;2399:122;;2440:79;;:::i;:::-;2399:122;2550:6;2544:13;2575:90;2661:3;2653:6;2646:4;2638:6;2634:17;2575:90;:::i;:::-;2566:99;;2389:282;2316:355;;;;:::o;2677:853::-;2776:6;2784;2833:2;2821:9;2812:7;2808:23;2804:32;2801:119;;;2839:79;;:::i;:::-;2801:119;2980:1;2969:9;2965:17;2959:24;3010:18;3002:6;2999:30;2996:117;;;3032:79;;:::i;:::-;2996:117;3137:74;3203:7;3194:6;3183:9;3179:22;3137:74;:::i;:::-;3127:84;;2930:291;3281:2;3270:9;3266:18;3260:25;3312:18;3304:6;3301:30;3298:117;;;3334:79;;:::i;:::-;3298:117;3439:74;3505:7;3496:6;3485:9;3481:22;3439:74;:::i;:::-;3429:84;;3231:292;2677:853;;;;;:::o;3536:99::-;3588:6;3622:5;3616:12;3606:22;;3536:99;;;:::o;3641:180::-;3689:77;3686:1;3679:88;3786:4;3783:1;3776:15;3810:4;3807:1;3800:15;3827:320;3871:6;3908:1;3902:4;3898:12;3888:22;;3955:1;3949:4;3945:12;3976:18;3966:81;;4032:4;4024:6;4020:17;4010:27;;3966:81;4094:2;4086:6;4083:14;4063:18;4060:38;4057:84;;4113:18;;:::i;:::-;4057:84;3878:269;3827:320;;;:::o;4153:141::-;4202:4;4225:3;4217:11;;4248:3;4245:1;4238:14;4282:4;4279:1;4269:18;4261:26;;4153:141;;;:::o;4300:93::-;4337:6;4384:2;4379;4372:5;4368:14;4364:23;4354:33;;4300:93;;;:::o;4399:107::-;4443:8;4493:5;4487:4;4483:16;4462:37;;4399:107;;;;:::o;4512:393::-;4581:6;4631:1;4619:10;4615:18;4654:97;4684:66;4673:9;4654:97;:::i;:::-;4772:39;4802:8;4791:9;4772:39;:::i;:::-;4760:51;;4844:4;4840:9;4833:5;4829:21;4820:30;;4893:4;4883:8;4879:19;4872:5;4869:30;4859:40;;4588:317;;4512:393;;;;;:::o;4911:77::-;4948:7;4977:5;4966:16;;4911:77;;;:::o;4994:60::-;5022:3;5043:5;5036:12;;4994:60;;;:::o;5060:142::-;5110:9;5143:53;5161:34;5170:24;5188:5;5170:24;:::i;:::-;5161:34;:::i;:::-;5143:53;:::i;:::-;5130:66;;5060:142;;;:::o;5208:75::-;5251:3;5272:5;5265:12;;5208:75;;;:::o;5289:269::-;5399:39;5430:7;5399:39;:::i;:::-;5460:91;5509:41;5533:16;5509:41;:::i;:::-;5501:6;5494:4;5488:11;5460:91;:::i;:::-;5454:4;5447:105;5365:193;5289:269;;;:::o;5564:73::-;5609:3;5564:73;:::o;5643:189::-;5720:32;;:::i;:::-;5761:65;5819:6;5811;5805:4;5761:65;:::i;:::-;5696:136;5643:189;;:::o;5838:186::-;5898:120;5915:3;5908:5;5905:14;5898:120;;;5969:39;6006:1;5999:5;5969:39;:::i;:::-;5942:1;5935:5;5931:13;5922:22;;5898:120;;;5838:186;;:::o;6030:543::-;6131:2;6126:3;6123:11;6120:446;;;6165:38;6197:5;6165:38;:::i;:::-;6249:29;6267:10;6249:29;:::i;:::-;6239:8;6235:44;6432:2;6420:10;6417:18;6414:49;;;6453:8;6438:23;;6414:49;6476:80;6532:22;6550:3;6532:22;:::i;:::-;6522:8;6518:37;6505:11;6476:80;:::i;:::-;6135:431;;6120:446;6030:543;;;:::o;6579:117::-;6633:8;6683:5;6677:4;6673:16;6652:37;;6579:117;;;;:::o;6702:169::-;6746:6;6779:51;6827:1;6823:6;6815:5;6812:1;6808:13;6779:51;:::i;:::-;6775:56;6860:4;6854;6850:15;6840:25;;6753:118;6702:169;;;;:::o;6876:295::-;6952:4;7098:29;7123:3;7117:4;7098:29;:::i;:::-;7090:37;;7160:3;7157:1;7153:11;7147:4;7144:21;7136:29;;6876:295;;;;:::o;7176:1395::-;7293:37;7326:3;7293:37;:::i;:::-;7395:18;7387:6;7384:30;7381:56;;;7417:18;;:::i;:::-;7381:56;7461:38;7493:4;7487:11;7461:38;:::i;:::-;7546:67;7606:6;7598;7592:4;7546:67;:::i;:::-;7640:1;7664:4;7651:17;;7696:2;7688:6;7685:14;7713:1;7708:618;;;;8370:1;8387:6;8384:77;;;8436:9;8431:3;8427:19;8421:26;8412:35;;8384:77;8487:67;8547:6;8540:5;8487:67;:::i;:::-;8481:4;8474:81;8343:222;7678:887;;7708:618;7760:4;7756:9;7748:6;7744:22;7794:37;7826:4;7794:37;:::i;:::-;7853:1;7867:208;7881:7;7878:1;7875:14;7867:208;;;7960:9;7955:3;7951:19;7945:26;7937:6;7930:42;8011:1;8003:6;7999:14;7989:24;;8058:2;8047:9;8043:18;8030:31;;7904:4;7901:1;7897:12;7892:17;;7867:208;;;8103:6;8094:7;8091:19;8088:179;;;8161:9;8156:3;8152:19;8146:26;8204:48;8246:4;8238:6;8234:17;8223:9;8204:48;:::i;:::-;8196:6;8189:64;8111:156;8088:179;8313:1;8309;8301:6;8297:14;8293:22;8287:4;8280:36;7715:611;;;7678:887;;7268:1303;;;7176:1395;;:::o;1532:11312:6:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1503":{"entryPoint":2638,"id":1503,"parameterSlots":3,"returnSlots":0},"@_approve_1438":{"entryPoint":1423,"id":1438,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1492":{"entryPoint":2633,"id":1492,"parameterSlots":3,"returnSlots":0},"@_msgSender_1619":{"entryPoint":1416,"id":1619,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1481":{"entryPoint":1874,"id":1481,"parameterSlots":3,"returnSlots":0},"@_transfer_1264":{"entryPoint":2013,"id":1264,"parameterSlots":3,"returnSlots":0},"@allowance_1059":{"entryPoint":1286,"id":1059,"parameterSlots":2,"returnSlots":1},"@approve_1084":{"entryPoint":771,"id":1084,"parameterSlots":2,"returnSlots":1},"@balanceOf_1016":{"entryPoint":922,"id":1016,"parameterSlots":1,"returnSlots":1},"@decimals_992":{"entryPoint":860,"id":992,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_1187":{"entryPoint":1135,"id":1187,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_1146":{"entryPoint":868,"id":1146,"parameterSlots":2,"returnSlots":1},"@name_972":{"entryPoint":627,"id":972,"parameterSlots":0,"returnSlots":1},"@symbol_982":{"entryPoint":991,"id":982,"parameterSlots":0,"returnSlots":1},"@totalSupply_1002":{"entryPoint":805,"id":1002,"parameterSlots":0,"returnSlots":1},"@transferFrom_1117":{"entryPoint":814,"id":1117,"parameterSlots":3,"returnSlots":1},"@transfer_1041":{"entryPoint":1252,"id":1041,"parameterSlots":2,"returnSlots":1},"abi_decode_t_address":{"entryPoint":2887,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":2938,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3243,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":3286,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":3111,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":2958,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":3031,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":2725,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack":{"entryPoint":4287,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack":{"entryPoint":3899,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack":{"entryPoint":4003,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack":{"entryPoint":4429,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack":{"entryPoint":4145,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack":{"entryPoint":3757,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack":{"entryPoint":3615,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":3071,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":3203,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":3046,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2781,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4321,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3933,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4037,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4463,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4179,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3791,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3649,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":3086,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":3218,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":2643,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":2653,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":3486,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":2848,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":3020,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":2817,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":2907,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":3191,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":2669,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":3393,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":3441,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x22":{"entryPoint":3348,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":2813,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":2709,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f":{"entryPoint":4209,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029":{"entryPoint":3821,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe":{"entryPoint":3963,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6":{"entryPoint":4351,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea":{"entryPoint":4067,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208":{"entryPoint":3679,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8":{"entryPoint":3537,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":2865,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":2916,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:13699:14","statements":[{"body":{"nodeType":"YulBlock","src":"66:40:14","statements":[{"nodeType":"YulAssignment","src":"77:22:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"87:5:14"},"nodeType":"YulFunctionCall","src":"87:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"77:6:14"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"49:5:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"59:6:14","type":""}],"src":"7:99:14"},{"body":{"nodeType":"YulBlock","src":"208:73:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"225:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"230:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"218:6:14"},"nodeType":"YulFunctionCall","src":"218:19:14"},"nodeType":"YulExpressionStatement","src":"218:19:14"},{"nodeType":"YulAssignment","src":"246:29:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"265:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"270:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"261:3:14"},"nodeType":"YulFunctionCall","src":"261:14:14"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"246:11:14"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"180:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"185:6:14","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"196:11:14","type":""}],"src":"112:169:14"},{"body":{"nodeType":"YulBlock","src":"349:184:14","statements":[{"nodeType":"YulVariableDeclaration","src":"359:10:14","value":{"kind":"number","nodeType":"YulLiteral","src":"368:1:14","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"363:1:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"428:63:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"453:3:14"},{"name":"i","nodeType":"YulIdentifier","src":"458:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"449:3:14"},"nodeType":"YulFunctionCall","src":"449:11:14"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"472:3:14"},{"name":"i","nodeType":"YulIdentifier","src":"477:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"468:3:14"},"nodeType":"YulFunctionCall","src":"468:11:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"462:5:14"},"nodeType":"YulFunctionCall","src":"462:18:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"442:6:14"},"nodeType":"YulFunctionCall","src":"442:39:14"},"nodeType":"YulExpressionStatement","src":"442:39:14"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"389:1:14"},{"name":"length","nodeType":"YulIdentifier","src":"392:6:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"386:2:14"},"nodeType":"YulFunctionCall","src":"386:13:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"400:19:14","statements":[{"nodeType":"YulAssignment","src":"402:15:14","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"411:1:14"},{"kind":"number","nodeType":"YulLiteral","src":"414:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"407:3:14"},"nodeType":"YulFunctionCall","src":"407:10:14"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"402:1:14"}]}]},"pre":{"nodeType":"YulBlock","src":"382:3:14","statements":[]},"src":"378:113:14"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"511:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"516:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"507:3:14"},"nodeType":"YulFunctionCall","src":"507:16:14"},{"kind":"number","nodeType":"YulLiteral","src":"525:1:14","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"500:6:14"},"nodeType":"YulFunctionCall","src":"500:27:14"},"nodeType":"YulExpressionStatement","src":"500:27:14"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"331:3:14","type":""},{"name":"dst","nodeType":"YulTypedName","src":"336:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"341:6:14","type":""}],"src":"287:246:14"},{"body":{"nodeType":"YulBlock","src":"587:54:14","statements":[{"nodeType":"YulAssignment","src":"597:38:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"615:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"622:2:14","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"611:3:14"},"nodeType":"YulFunctionCall","src":"611:14:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"631:2:14","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"627:3:14"},"nodeType":"YulFunctionCall","src":"627:7:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"607:3:14"},"nodeType":"YulFunctionCall","src":"607:28:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"597:6:14"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"570:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"580:6:14","type":""}],"src":"539:102:14"},{"body":{"nodeType":"YulBlock","src":"739:285:14","statements":[{"nodeType":"YulVariableDeclaration","src":"749:53:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"796:5:14"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"763:32:14"},"nodeType":"YulFunctionCall","src":"763:39:14"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"753:6:14","type":""}]},{"nodeType":"YulAssignment","src":"811:78:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"877:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"882:6:14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"818:58:14"},"nodeType":"YulFunctionCall","src":"818:71:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"811:3:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"937:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"944:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"933:3:14"},"nodeType":"YulFunctionCall","src":"933:16:14"},{"name":"pos","nodeType":"YulIdentifier","src":"951:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"956:6:14"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"898:34:14"},"nodeType":"YulFunctionCall","src":"898:65:14"},"nodeType":"YulExpressionStatement","src":"898:65:14"},{"nodeType":"YulAssignment","src":"972:46:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"983:3:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1010:6:14"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"988:21:14"},"nodeType":"YulFunctionCall","src":"988:29:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"979:3:14"},"nodeType":"YulFunctionCall","src":"979:39:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"972:3:14"}]}]},"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"720:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"727:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"735:3:14","type":""}],"src":"647:377:14"},{"body":{"nodeType":"YulBlock","src":"1148:195:14","statements":[{"nodeType":"YulAssignment","src":"1158:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1170:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1181:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1166:3:14"},"nodeType":"YulFunctionCall","src":"1166:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1158:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1205:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1216:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1201:3:14"},"nodeType":"YulFunctionCall","src":"1201:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1224:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"1230:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1220:3:14"},"nodeType":"YulFunctionCall","src":"1220:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1194:6:14"},"nodeType":"YulFunctionCall","src":"1194:47:14"},"nodeType":"YulExpressionStatement","src":"1194:47:14"},{"nodeType":"YulAssignment","src":"1250:86:14","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1322:6:14"},{"name":"tail","nodeType":"YulIdentifier","src":"1331:4:14"}],"functionName":{"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1258:63:14"},"nodeType":"YulFunctionCall","src":"1258:78:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1250:4:14"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1120:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1132:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1143:4:14","type":""}],"src":"1030:313:14"},{"body":{"nodeType":"YulBlock","src":"1389:35:14","statements":[{"nodeType":"YulAssignment","src":"1399:19:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1415:2:14","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1409:5:14"},"nodeType":"YulFunctionCall","src":"1409:9:14"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1399:6:14"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1382:6:14","type":""}],"src":"1349:75:14"},{"body":{"nodeType":"YulBlock","src":"1519:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1536:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1539:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1529:6:14"},"nodeType":"YulFunctionCall","src":"1529:12:14"},"nodeType":"YulExpressionStatement","src":"1529:12:14"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"1430:117:14"},{"body":{"nodeType":"YulBlock","src":"1642:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1659:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1662:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1652:6:14"},"nodeType":"YulFunctionCall","src":"1652:12:14"},"nodeType":"YulExpressionStatement","src":"1652:12:14"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"1553:117:14"},{"body":{"nodeType":"YulBlock","src":"1721:81:14","statements":[{"nodeType":"YulAssignment","src":"1731:65:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1746:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"1753:42:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1742:3:14"},"nodeType":"YulFunctionCall","src":"1742:54:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1731:7:14"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1703:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1713:7:14","type":""}],"src":"1676:126:14"},{"body":{"nodeType":"YulBlock","src":"1853:51:14","statements":[{"nodeType":"YulAssignment","src":"1863:35:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1892:5:14"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"1874:17:14"},"nodeType":"YulFunctionCall","src":"1874:24:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1863:7:14"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1835:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1845:7:14","type":""}],"src":"1808:96:14"},{"body":{"nodeType":"YulBlock","src":"1953:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"2010:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2019:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2022:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2012:6:14"},"nodeType":"YulFunctionCall","src":"2012:12:14"},"nodeType":"YulExpressionStatement","src":"2012:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1976:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2001:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"1983:17:14"},"nodeType":"YulFunctionCall","src":"1983:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1973:2:14"},"nodeType":"YulFunctionCall","src":"1973:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1966:6:14"},"nodeType":"YulFunctionCall","src":"1966:43:14"},"nodeType":"YulIf","src":"1963:63:14"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1946:5:14","type":""}],"src":"1910:122:14"},{"body":{"nodeType":"YulBlock","src":"2090:87:14","statements":[{"nodeType":"YulAssignment","src":"2100:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2122:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2109:12:14"},"nodeType":"YulFunctionCall","src":"2109:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2100:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2165:5:14"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"2138:26:14"},"nodeType":"YulFunctionCall","src":"2138:33:14"},"nodeType":"YulExpressionStatement","src":"2138:33:14"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2068:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2076:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2084:5:14","type":""}],"src":"2038:139:14"},{"body":{"nodeType":"YulBlock","src":"2228:32:14","statements":[{"nodeType":"YulAssignment","src":"2238:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"2249:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"2238:7:14"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2210:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"2220:7:14","type":""}],"src":"2183:77:14"},{"body":{"nodeType":"YulBlock","src":"2309:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"2366:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2375:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2378:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2368:6:14"},"nodeType":"YulFunctionCall","src":"2368:12:14"},"nodeType":"YulExpressionStatement","src":"2368:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2332:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2357:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"2339:17:14"},"nodeType":"YulFunctionCall","src":"2339:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2329:2:14"},"nodeType":"YulFunctionCall","src":"2329:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2322:6:14"},"nodeType":"YulFunctionCall","src":"2322:43:14"},"nodeType":"YulIf","src":"2319:63:14"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2302:5:14","type":""}],"src":"2266:122:14"},{"body":{"nodeType":"YulBlock","src":"2446:87:14","statements":[{"nodeType":"YulAssignment","src":"2456:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2478:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2465:12:14"},"nodeType":"YulFunctionCall","src":"2465:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2456:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2521:5:14"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"2494:26:14"},"nodeType":"YulFunctionCall","src":"2494:33:14"},"nodeType":"YulExpressionStatement","src":"2494:33:14"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2424:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2432:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2440:5:14","type":""}],"src":"2394:139:14"},{"body":{"nodeType":"YulBlock","src":"2622:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"2668:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2670:77:14"},"nodeType":"YulFunctionCall","src":"2670:79:14"},"nodeType":"YulExpressionStatement","src":"2670:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2643:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"2652:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2639:3:14"},"nodeType":"YulFunctionCall","src":"2639:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"2664:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2635:3:14"},"nodeType":"YulFunctionCall","src":"2635:32:14"},"nodeType":"YulIf","src":"2632:119:14"},{"nodeType":"YulBlock","src":"2761:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2776:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2790:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2780:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2805:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2840:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2851:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2836:3:14"},"nodeType":"YulFunctionCall","src":"2836:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2860:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"2815:20:14"},"nodeType":"YulFunctionCall","src":"2815:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2805:6:14"}]}]},{"nodeType":"YulBlock","src":"2888:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2903:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2917:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2907:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2933:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2968:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2979:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2964:3:14"},"nodeType":"YulFunctionCall","src":"2964:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2988:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2943:20:14"},"nodeType":"YulFunctionCall","src":"2943:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2933:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2584:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2595:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2607:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2615:6:14","type":""}],"src":"2539:474:14"},{"body":{"nodeType":"YulBlock","src":"3061:48:14","statements":[{"nodeType":"YulAssignment","src":"3071:32:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3096:5:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3089:6:14"},"nodeType":"YulFunctionCall","src":"3089:13:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3082:6:14"},"nodeType":"YulFunctionCall","src":"3082:21:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"3071:7:14"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3043:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"3053:7:14","type":""}],"src":"3019:90:14"},{"body":{"nodeType":"YulBlock","src":"3174:50:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3191:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3211:5:14"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"3196:14:14"},"nodeType":"YulFunctionCall","src":"3196:21:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3184:6:14"},"nodeType":"YulFunctionCall","src":"3184:34:14"},"nodeType":"YulExpressionStatement","src":"3184:34:14"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3162:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3169:3:14","type":""}],"src":"3115:109:14"},{"body":{"nodeType":"YulBlock","src":"3322:118:14","statements":[{"nodeType":"YulAssignment","src":"3332:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3344:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3355:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3340:3:14"},"nodeType":"YulFunctionCall","src":"3340:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3332:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3406:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3419:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3430:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3415:3:14"},"nodeType":"YulFunctionCall","src":"3415:17:14"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"3368:37:14"},"nodeType":"YulFunctionCall","src":"3368:65:14"},"nodeType":"YulExpressionStatement","src":"3368:65:14"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3294:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3306:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3317:4:14","type":""}],"src":"3230:210:14"},{"body":{"nodeType":"YulBlock","src":"3511:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3528:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3551:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3533:17:14"},"nodeType":"YulFunctionCall","src":"3533:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3521:6:14"},"nodeType":"YulFunctionCall","src":"3521:37:14"},"nodeType":"YulExpressionStatement","src":"3521:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3499:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3506:3:14","type":""}],"src":"3446:118:14"},{"body":{"nodeType":"YulBlock","src":"3668:124:14","statements":[{"nodeType":"YulAssignment","src":"3678:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3690:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3701:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3686:3:14"},"nodeType":"YulFunctionCall","src":"3686:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3678:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3758:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3771:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3782:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3767:3:14"},"nodeType":"YulFunctionCall","src":"3767:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"3714:43:14"},"nodeType":"YulFunctionCall","src":"3714:71:14"},"nodeType":"YulExpressionStatement","src":"3714:71:14"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3640:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3652:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3663:4:14","type":""}],"src":"3570:222:14"},{"body":{"nodeType":"YulBlock","src":"3898:519:14","statements":[{"body":{"nodeType":"YulBlock","src":"3944:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3946:77:14"},"nodeType":"YulFunctionCall","src":"3946:79:14"},"nodeType":"YulExpressionStatement","src":"3946:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3919:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"3928:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3915:3:14"},"nodeType":"YulFunctionCall","src":"3915:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"3940:2:14","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3911:3:14"},"nodeType":"YulFunctionCall","src":"3911:32:14"},"nodeType":"YulIf","src":"3908:119:14"},{"nodeType":"YulBlock","src":"4037:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4052:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4066:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4056:6:14","type":""}]},{"nodeType":"YulAssignment","src":"4081:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4116:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"4127:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4112:3:14"},"nodeType":"YulFunctionCall","src":"4112:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4136:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4091:20:14"},"nodeType":"YulFunctionCall","src":"4091:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4081:6:14"}]}]},{"nodeType":"YulBlock","src":"4164:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4179:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4193:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4183:6:14","type":""}]},{"nodeType":"YulAssignment","src":"4209:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4244:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"4255:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4240:3:14"},"nodeType":"YulFunctionCall","src":"4240:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4264:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4219:20:14"},"nodeType":"YulFunctionCall","src":"4219:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4209:6:14"}]}]},{"nodeType":"YulBlock","src":"4292:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4307:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4321:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4311:6:14","type":""}]},{"nodeType":"YulAssignment","src":"4337:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4372:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"4383:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4368:3:14"},"nodeType":"YulFunctionCall","src":"4368:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4392:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"4347:20:14"},"nodeType":"YulFunctionCall","src":"4347:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"4337:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3852:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3863:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3875:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3883:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3891:6:14","type":""}],"src":"3798:619:14"},{"body":{"nodeType":"YulBlock","src":"4466:43:14","statements":[{"nodeType":"YulAssignment","src":"4476:27:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4491:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4498:4:14","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4487:3:14"},"nodeType":"YulFunctionCall","src":"4487:16:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4476:7:14"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4448:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4458:7:14","type":""}],"src":"4423:86:14"},{"body":{"nodeType":"YulBlock","src":"4576:51:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4593:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4614:5:14"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"4598:15:14"},"nodeType":"YulFunctionCall","src":"4598:22:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4586:6:14"},"nodeType":"YulFunctionCall","src":"4586:35:14"},"nodeType":"YulExpressionStatement","src":"4586:35:14"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4564:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4571:3:14","type":""}],"src":"4515:112:14"},{"body":{"nodeType":"YulBlock","src":"4727:120:14","statements":[{"nodeType":"YulAssignment","src":"4737:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4749:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4760:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4745:3:14"},"nodeType":"YulFunctionCall","src":"4745:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4737:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4813:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4826:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4837:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4822:3:14"},"nodeType":"YulFunctionCall","src":"4822:17:14"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"4773:39:14"},"nodeType":"YulFunctionCall","src":"4773:67:14"},"nodeType":"YulExpressionStatement","src":"4773:67:14"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4699:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4711:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4722:4:14","type":""}],"src":"4633:214:14"},{"body":{"nodeType":"YulBlock","src":"4919:263:14","statements":[{"body":{"nodeType":"YulBlock","src":"4965:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"4967:77:14"},"nodeType":"YulFunctionCall","src":"4967:79:14"},"nodeType":"YulExpressionStatement","src":"4967:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4940:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"4949:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4936:3:14"},"nodeType":"YulFunctionCall","src":"4936:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"4961:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4932:3:14"},"nodeType":"YulFunctionCall","src":"4932:32:14"},"nodeType":"YulIf","src":"4929:119:14"},{"nodeType":"YulBlock","src":"5058:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5073:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5087:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5077:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5102:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5137:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5148:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5133:3:14"},"nodeType":"YulFunctionCall","src":"5133:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5157:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5112:20:14"},"nodeType":"YulFunctionCall","src":"5112:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5102:6:14"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4889:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4900:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4912:6:14","type":""}],"src":"4853:329:14"},{"body":{"nodeType":"YulBlock","src":"5271:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"5317:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5319:77:14"},"nodeType":"YulFunctionCall","src":"5319:79:14"},"nodeType":"YulExpressionStatement","src":"5319:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5292:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"5301:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5288:3:14"},"nodeType":"YulFunctionCall","src":"5288:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"5313:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5284:3:14"},"nodeType":"YulFunctionCall","src":"5284:32:14"},"nodeType":"YulIf","src":"5281:119:14"},{"nodeType":"YulBlock","src":"5410:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5425:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5439:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5429:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5454:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5489:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5500:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5485:3:14"},"nodeType":"YulFunctionCall","src":"5485:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5509:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5464:20:14"},"nodeType":"YulFunctionCall","src":"5464:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5454:6:14"}]}]},{"nodeType":"YulBlock","src":"5537:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5552:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5566:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5556:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5582:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5617:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5628:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5613:3:14"},"nodeType":"YulFunctionCall","src":"5613:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5637:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5592:20:14"},"nodeType":"YulFunctionCall","src":"5592:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5582:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5233:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5244:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5256:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5264:6:14","type":""}],"src":"5188:474:14"},{"body":{"nodeType":"YulBlock","src":"5696:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5713:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5716:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5706:6:14"},"nodeType":"YulFunctionCall","src":"5706:88:14"},"nodeType":"YulExpressionStatement","src":"5706:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5810:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"5813:4:14","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5803:6:14"},"nodeType":"YulFunctionCall","src":"5803:15:14"},"nodeType":"YulExpressionStatement","src":"5803:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5834:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5837:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5827:6:14"},"nodeType":"YulFunctionCall","src":"5827:15:14"},"nodeType":"YulExpressionStatement","src":"5827:15:14"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"5668:180:14"},{"body":{"nodeType":"YulBlock","src":"5905:269:14","statements":[{"nodeType":"YulAssignment","src":"5915:22:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"5929:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"5935:1:14","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"5925:3:14"},"nodeType":"YulFunctionCall","src":"5925:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"5915:6:14"}]},{"nodeType":"YulVariableDeclaration","src":"5946:38:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"5976:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"5982:1:14","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5972:3:14"},"nodeType":"YulFunctionCall","src":"5972:12:14"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"5950:18:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"6023:51:14","statements":[{"nodeType":"YulAssignment","src":"6037:27:14","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6051:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6059:4:14","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6047:3:14"},"nodeType":"YulFunctionCall","src":"6047:17:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"6037:6:14"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6003:18:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5996:6:14"},"nodeType":"YulFunctionCall","src":"5996:26:14"},"nodeType":"YulIf","src":"5993:81:14"},{"body":{"nodeType":"YulBlock","src":"6126:42:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"6140:16:14"},"nodeType":"YulFunctionCall","src":"6140:18:14"},"nodeType":"YulExpressionStatement","src":"6140:18:14"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6090:18:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6113:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6121:2:14","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6110:2:14"},"nodeType":"YulFunctionCall","src":"6110:14:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6087:2:14"},"nodeType":"YulFunctionCall","src":"6087:38:14"},"nodeType":"YulIf","src":"6084:84:14"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"5889:4:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"5898:6:14","type":""}],"src":"5854:320:14"},{"body":{"nodeType":"YulBlock","src":"6208:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6225:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6228:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6218:6:14"},"nodeType":"YulFunctionCall","src":"6218:88:14"},"nodeType":"YulExpressionStatement","src":"6218:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6322:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6325:4:14","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6315:6:14"},"nodeType":"YulFunctionCall","src":"6315:15:14"},"nodeType":"YulExpressionStatement","src":"6315:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6346:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6349:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6339:6:14"},"nodeType":"YulFunctionCall","src":"6339:15:14"},"nodeType":"YulExpressionStatement","src":"6339:15:14"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"6180:180:14"},{"body":{"nodeType":"YulBlock","src":"6410:147:14","statements":[{"nodeType":"YulAssignment","src":"6420:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6443:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6425:17:14"},"nodeType":"YulFunctionCall","src":"6425:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"6420:1:14"}]},{"nodeType":"YulAssignment","src":"6454:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"6477:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6459:17:14"},"nodeType":"YulFunctionCall","src":"6459:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"6454:1:14"}]},{"nodeType":"YulAssignment","src":"6488:16:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6499:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"6502:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6495:3:14"},"nodeType":"YulFunctionCall","src":"6495:9:14"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"6488:3:14"}]},{"body":{"nodeType":"YulBlock","src":"6528:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"6530:16:14"},"nodeType":"YulFunctionCall","src":"6530:18:14"},"nodeType":"YulExpressionStatement","src":"6530:18:14"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6520:1:14"},{"name":"sum","nodeType":"YulIdentifier","src":"6523:3:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6517:2:14"},"nodeType":"YulFunctionCall","src":"6517:10:14"},"nodeType":"YulIf","src":"6514:36:14"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"6397:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"6400:1:14","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"6406:3:14","type":""}],"src":"6366:191:14"},{"body":{"nodeType":"YulBlock","src":"6669:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6691:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6699:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6687:3:14"},"nodeType":"YulFunctionCall","src":"6687:14:14"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nodeType":"YulLiteral","src":"6703:34:14","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6680:6:14"},"nodeType":"YulFunctionCall","src":"6680:58:14"},"nodeType":"YulExpressionStatement","src":"6680:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6759:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6767:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6755:3:14"},"nodeType":"YulFunctionCall","src":"6755:15:14"},{"hexValue":"207a65726f","kind":"string","nodeType":"YulLiteral","src":"6772:7:14","type":"","value":" zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6748:6:14"},"nodeType":"YulFunctionCall","src":"6748:32:14"},"nodeType":"YulExpressionStatement","src":"6748:32:14"}]},"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"6661:6:14","type":""}],"src":"6563:224:14"},{"body":{"nodeType":"YulBlock","src":"6939:220:14","statements":[{"nodeType":"YulAssignment","src":"6949:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7015:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"7020:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6956:58:14"},"nodeType":"YulFunctionCall","src":"6956:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6949:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7121:3:14"}],"functionName":{"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulIdentifier","src":"7032:88:14"},"nodeType":"YulFunctionCall","src":"7032:93:14"},"nodeType":"YulExpressionStatement","src":"7032:93:14"},{"nodeType":"YulAssignment","src":"7134:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7145:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"7150:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7141:3:14"},"nodeType":"YulFunctionCall","src":"7141:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7134:3:14"}]}]},"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"6927:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6935:3:14","type":""}],"src":"6793:366:14"},{"body":{"nodeType":"YulBlock","src":"7336:248:14","statements":[{"nodeType":"YulAssignment","src":"7346:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7358:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7369:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7354:3:14"},"nodeType":"YulFunctionCall","src":"7354:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7346:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7393:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7404:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7389:3:14"},"nodeType":"YulFunctionCall","src":"7389:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7412:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"7418:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7408:3:14"},"nodeType":"YulFunctionCall","src":"7408:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7382:6:14"},"nodeType":"YulFunctionCall","src":"7382:47:14"},"nodeType":"YulExpressionStatement","src":"7382:47:14"},{"nodeType":"YulAssignment","src":"7438:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7572:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7446:124:14"},"nodeType":"YulFunctionCall","src":"7446:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7438:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7316:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7331:4:14","type":""}],"src":"7165:419:14"},{"body":{"nodeType":"YulBlock","src":"7696:117:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7718:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7726:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7714:3:14"},"nodeType":"YulFunctionCall","src":"7714:14:14"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"7730:34:14","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7707:6:14"},"nodeType":"YulFunctionCall","src":"7707:58:14"},"nodeType":"YulExpressionStatement","src":"7707:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7786:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7794:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7782:3:14"},"nodeType":"YulFunctionCall","src":"7782:15:14"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"7799:6:14","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7775:6:14"},"nodeType":"YulFunctionCall","src":"7775:31:14"},"nodeType":"YulExpressionStatement","src":"7775:31:14"}]},"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"7688:6:14","type":""}],"src":"7590:223:14"},{"body":{"nodeType":"YulBlock","src":"7965:220:14","statements":[{"nodeType":"YulAssignment","src":"7975:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8041:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"8046:2:14","type":"","value":"36"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7982:58:14"},"nodeType":"YulFunctionCall","src":"7982:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7975:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8147:3:14"}],"functionName":{"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulIdentifier","src":"8058:88:14"},"nodeType":"YulFunctionCall","src":"8058:93:14"},"nodeType":"YulExpressionStatement","src":"8058:93:14"},{"nodeType":"YulAssignment","src":"8160:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8171:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"8176:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8167:3:14"},"nodeType":"YulFunctionCall","src":"8167:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"8160:3:14"}]}]},"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7953:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7961:3:14","type":""}],"src":"7819:366:14"},{"body":{"nodeType":"YulBlock","src":"8362:248:14","statements":[{"nodeType":"YulAssignment","src":"8372:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8384:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8395:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8380:3:14"},"nodeType":"YulFunctionCall","src":"8380:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8372:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8419:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8430:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8415:3:14"},"nodeType":"YulFunctionCall","src":"8415:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8438:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"8444:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8434:3:14"},"nodeType":"YulFunctionCall","src":"8434:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8408:6:14"},"nodeType":"YulFunctionCall","src":"8408:47:14"},"nodeType":"YulExpressionStatement","src":"8408:47:14"},{"nodeType":"YulAssignment","src":"8464:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8598:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8472:124:14"},"nodeType":"YulFunctionCall","src":"8472:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8464:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8342:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8357:4:14","type":""}],"src":"8191:419:14"},{"body":{"nodeType":"YulBlock","src":"8722:115:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8744:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8752:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8740:3:14"},"nodeType":"YulFunctionCall","src":"8740:14:14"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nodeType":"YulLiteral","src":"8756:34:14","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8733:6:14"},"nodeType":"YulFunctionCall","src":"8733:58:14"},"nodeType":"YulExpressionStatement","src":"8733:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8812:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8820:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8808:3:14"},"nodeType":"YulFunctionCall","src":"8808:15:14"},{"hexValue":"7373","kind":"string","nodeType":"YulLiteral","src":"8825:4:14","type":"","value":"ss"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8801:6:14"},"nodeType":"YulFunctionCall","src":"8801:29:14"},"nodeType":"YulExpressionStatement","src":"8801:29:14"}]},"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"8714:6:14","type":""}],"src":"8616:221:14"},{"body":{"nodeType":"YulBlock","src":"8989:220:14","statements":[{"nodeType":"YulAssignment","src":"8999:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9065:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"9070:2:14","type":"","value":"34"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9006:58:14"},"nodeType":"YulFunctionCall","src":"9006:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8999:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9171:3:14"}],"functionName":{"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulIdentifier","src":"9082:88:14"},"nodeType":"YulFunctionCall","src":"9082:93:14"},"nodeType":"YulExpressionStatement","src":"9082:93:14"},{"nodeType":"YulAssignment","src":"9184:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9195:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"9200:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9191:3:14"},"nodeType":"YulFunctionCall","src":"9191:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9184:3:14"}]}]},"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8977:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"8985:3:14","type":""}],"src":"8843:366:14"},{"body":{"nodeType":"YulBlock","src":"9386:248:14","statements":[{"nodeType":"YulAssignment","src":"9396:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9408:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9419:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9404:3:14"},"nodeType":"YulFunctionCall","src":"9404:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9396:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9443:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9454:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:14"},"nodeType":"YulFunctionCall","src":"9439:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9462:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"9468:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9458:3:14"},"nodeType":"YulFunctionCall","src":"9458:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9432:6:14"},"nodeType":"YulFunctionCall","src":"9432:47:14"},"nodeType":"YulExpressionStatement","src":"9432:47:14"},{"nodeType":"YulAssignment","src":"9488:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9622:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9496:124:14"},"nodeType":"YulFunctionCall","src":"9496:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9488:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9366:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9381:4:14","type":""}],"src":"9215:419:14"},{"body":{"nodeType":"YulBlock","src":"9746:73:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9768:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"9776:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9764:3:14"},"nodeType":"YulFunctionCall","src":"9764:14:14"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nodeType":"YulLiteral","src":"9780:31:14","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9757:6:14"},"nodeType":"YulFunctionCall","src":"9757:55:14"},"nodeType":"YulExpressionStatement","src":"9757:55:14"}]},"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"9738:6:14","type":""}],"src":"9640:179:14"},{"body":{"nodeType":"YulBlock","src":"9971:220:14","statements":[{"nodeType":"YulAssignment","src":"9981:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10047:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10052:2:14","type":"","value":"29"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9988:58:14"},"nodeType":"YulFunctionCall","src":"9988:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9981:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10153:3:14"}],"functionName":{"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulIdentifier","src":"10064:88:14"},"nodeType":"YulFunctionCall","src":"10064:93:14"},"nodeType":"YulExpressionStatement","src":"10064:93:14"},{"nodeType":"YulAssignment","src":"10166:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10177:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10182:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10173:3:14"},"nodeType":"YulFunctionCall","src":"10173:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"10166:3:14"}]}]},"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9959:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9967:3:14","type":""}],"src":"9825:366:14"},{"body":{"nodeType":"YulBlock","src":"10368:248:14","statements":[{"nodeType":"YulAssignment","src":"10378:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10390:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"10401:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10386:3:14"},"nodeType":"YulFunctionCall","src":"10386:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10378:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10425:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"10436:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10421:3:14"},"nodeType":"YulFunctionCall","src":"10421:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10444:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"10450:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10440:3:14"},"nodeType":"YulFunctionCall","src":"10440:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10414:6:14"},"nodeType":"YulFunctionCall","src":"10414:47:14"},"nodeType":"YulExpressionStatement","src":"10414:47:14"},{"nodeType":"YulAssignment","src":"10470:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10604:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10478:124:14"},"nodeType":"YulFunctionCall","src":"10478:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10470:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10348:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10363:4:14","type":""}],"src":"10197:419:14"},{"body":{"nodeType":"YulBlock","src":"10728:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10750:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"10758:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10746:3:14"},"nodeType":"YulFunctionCall","src":"10746:14:14"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"10762:34:14","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10739:6:14"},"nodeType":"YulFunctionCall","src":"10739:58:14"},"nodeType":"YulExpressionStatement","src":"10739:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10818:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"10826:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10814:3:14"},"nodeType":"YulFunctionCall","src":"10814:15:14"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"10831:7:14","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10807:6:14"},"nodeType":"YulFunctionCall","src":"10807:32:14"},"nodeType":"YulExpressionStatement","src":"10807:32:14"}]},"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"10720:6:14","type":""}],"src":"10622:224:14"},{"body":{"nodeType":"YulBlock","src":"10998:220:14","statements":[{"nodeType":"YulAssignment","src":"11008:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11074:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11079:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11015:58:14"},"nodeType":"YulFunctionCall","src":"11015:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11008:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11180:3:14"}],"functionName":{"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulIdentifier","src":"11091:88:14"},"nodeType":"YulFunctionCall","src":"11091:93:14"},"nodeType":"YulExpressionStatement","src":"11091:93:14"},{"nodeType":"YulAssignment","src":"11193:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11204:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11209:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11200:3:14"},"nodeType":"YulFunctionCall","src":"11200:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11193:3:14"}]}]},"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"10986:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10994:3:14","type":""}],"src":"10852:366:14"},{"body":{"nodeType":"YulBlock","src":"11395:248:14","statements":[{"nodeType":"YulAssignment","src":"11405:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11417:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11428:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11413:3:14"},"nodeType":"YulFunctionCall","src":"11413:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11405:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11452:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11463:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11448:3:14"},"nodeType":"YulFunctionCall","src":"11448:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11471:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"11477:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11467:3:14"},"nodeType":"YulFunctionCall","src":"11467:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11441:6:14"},"nodeType":"YulFunctionCall","src":"11441:47:14"},"nodeType":"YulExpressionStatement","src":"11441:47:14"},{"nodeType":"YulAssignment","src":"11497:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11631:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11505:124:14"},"nodeType":"YulFunctionCall","src":"11505:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11497:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11375:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11390:4:14","type":""}],"src":"11224:419:14"},{"body":{"nodeType":"YulBlock","src":"11755:116:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11777:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"11785:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11773:3:14"},"nodeType":"YulFunctionCall","src":"11773:14:14"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nodeType":"YulLiteral","src":"11789:34:14","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11766:6:14"},"nodeType":"YulFunctionCall","src":"11766:58:14"},"nodeType":"YulExpressionStatement","src":"11766:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11845:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"11853:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11841:3:14"},"nodeType":"YulFunctionCall","src":"11841:15:14"},{"hexValue":"657373","kind":"string","nodeType":"YulLiteral","src":"11858:5:14","type":"","value":"ess"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11834:6:14"},"nodeType":"YulFunctionCall","src":"11834:30:14"},"nodeType":"YulExpressionStatement","src":"11834:30:14"}]},"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"11747:6:14","type":""}],"src":"11649:222:14"},{"body":{"nodeType":"YulBlock","src":"12023:220:14","statements":[{"nodeType":"YulAssignment","src":"12033:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12099:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"12104:2:14","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12040:58:14"},"nodeType":"YulFunctionCall","src":"12040:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12033:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12205:3:14"}],"functionName":{"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulIdentifier","src":"12116:88:14"},"nodeType":"YulFunctionCall","src":"12116:93:14"},"nodeType":"YulExpressionStatement","src":"12116:93:14"},{"nodeType":"YulAssignment","src":"12218:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12229:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"12234:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12225:3:14"},"nodeType":"YulFunctionCall","src":"12225:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12218:3:14"}]}]},"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12011:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12019:3:14","type":""}],"src":"11877:366:14"},{"body":{"nodeType":"YulBlock","src":"12420:248:14","statements":[{"nodeType":"YulAssignment","src":"12430:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12442:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12453:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12438:3:14"},"nodeType":"YulFunctionCall","src":"12438:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12430:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12477:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12488:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12473:3:14"},"nodeType":"YulFunctionCall","src":"12473:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12496:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"12502:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12492:3:14"},"nodeType":"YulFunctionCall","src":"12492:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12466:6:14"},"nodeType":"YulFunctionCall","src":"12466:47:14"},"nodeType":"YulExpressionStatement","src":"12466:47:14"},{"nodeType":"YulAssignment","src":"12522:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12656:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12530:124:14"},"nodeType":"YulFunctionCall","src":"12530:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12522:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12400:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12415:4:14","type":""}],"src":"12249:419:14"},{"body":{"nodeType":"YulBlock","src":"12780:119:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12802:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"12810:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12798:3:14"},"nodeType":"YulFunctionCall","src":"12798:14:14"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nodeType":"YulLiteral","src":"12814:34:14","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12791:6:14"},"nodeType":"YulFunctionCall","src":"12791:58:14"},"nodeType":"YulExpressionStatement","src":"12791:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12870:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"12878:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12866:3:14"},"nodeType":"YulFunctionCall","src":"12866:15:14"},{"hexValue":"616c616e6365","kind":"string","nodeType":"YulLiteral","src":"12883:8:14","type":"","value":"alance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12859:6:14"},"nodeType":"YulFunctionCall","src":"12859:33:14"},"nodeType":"YulExpressionStatement","src":"12859:33:14"}]},"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12772:6:14","type":""}],"src":"12674:225:14"},{"body":{"nodeType":"YulBlock","src":"13051:220:14","statements":[{"nodeType":"YulAssignment","src":"13061:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13127:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"13132:2:14","type":"","value":"38"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13068:58:14"},"nodeType":"YulFunctionCall","src":"13068:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13061:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13233:3:14"}],"functionName":{"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulIdentifier","src":"13144:88:14"},"nodeType":"YulFunctionCall","src":"13144:93:14"},"nodeType":"YulExpressionStatement","src":"13144:93:14"},{"nodeType":"YulAssignment","src":"13246:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13257:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"13262:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13253:3:14"},"nodeType":"YulFunctionCall","src":"13253:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13246:3:14"}]}]},"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13039:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13047:3:14","type":""}],"src":"12905:366:14"},{"body":{"nodeType":"YulBlock","src":"13448:248:14","statements":[{"nodeType":"YulAssignment","src":"13458:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13470:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"13481:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13466:3:14"},"nodeType":"YulFunctionCall","src":"13466:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13458:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13505:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"13516:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13501:3:14"},"nodeType":"YulFunctionCall","src":"13501:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13524:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"13530:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13520:3:14"},"nodeType":"YulFunctionCall","src":"13520:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13494:6:14"},"nodeType":"YulFunctionCall","src":"13494:47:14"},"nodeType":"YulExpressionStatement","src":"13494:47:14"},{"nodeType":"YulAssignment","src":"13550:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13684:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13558:124:14"},"nodeType":"YulFunctionCall","src":"13558:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13550:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13428:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13443:4:14","type":""}],"src":"13277:419:14"}]},"contents":"{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\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\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610add565b60405180910390f35b6100e360048036038101906100de9190610b8e565b610303565b6040516100f09190610be6565b60405180910390f35b610101610325565b60405161010e9190610c0e565b60405180910390f35b610131600480360381019061012c9190610c27565b61032e565b60405161013e9190610be6565b60405180910390f35b61014f61035c565b60405161015c9190610c92565b60405180910390f35b61017f600480360381019061017a9190610b8e565b610364565b60405161018c9190610be6565b60405180910390f35b6101af60048036038101906101aa9190610cab565b61039a565b6040516101bc9190610c0e565b60405180910390f35b6101cd6103df565b6040516101da9190610add565b60405180910390f35b6101fd60048036038101906101f89190610b8e565b61046f565b60405161020a9190610be6565b60405180910390f35b61022d60048036038101906102289190610b8e565b6104e4565b60405161023a9190610be6565b60405180910390f35b61025d60048036038101906102589190610cd6565b610506565b60405161026a9190610c0e565b60405180910390f35b60606003805461028290610d41565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610d41565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f8061030d610588565b905061031a81858561058f565b600191505092915050565b5f600254905090565b5f80610338610588565b9050610345858285610752565b6103508585856107dd565b60019150509392505050565b5f6012905090565b5f8061036e610588565b905061038f8185856103808589610506565b61038a9190610d9e565b61058f565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103ee90610d41565b80601f016020809104026020016040519081016040528092919081815260200182805461041a90610d41565b80156104655780601f1061043c57610100808354040283529160200191610465565b820191905f5260205f20905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b5f80610479610588565b90505f6104868286610506565b9050838110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c290610e41565b60405180910390fd5b6104d8828686840361058f565b60019250505092915050565b5f806104ee610588565b90506104fb8185856107dd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f490610ecf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290610f5d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107459190610c0e565b60405180910390a3505050565b5f61075d8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090610fc5565b60405180910390fd5b6107d6848484840361058f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611053565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b0906110e1565b60405180910390fd5b6108c4838383610a49565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061116f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a309190610c0e565b60405180910390a3610a43848484610a4e565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610a8a578082015181840152602081019050610a6f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610aaf82610a53565b610ab98185610a5d565b9350610ac9818560208601610a6d565b610ad281610a95565b840191505092915050565b5f6020820190508181035f830152610af58184610aa5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b2a82610b01565b9050919050565b610b3a81610b20565b8114610b44575f80fd5b50565b5f81359050610b5581610b31565b92915050565b5f819050919050565b610b6d81610b5b565b8114610b77575f80fd5b50565b5f81359050610b8881610b64565b92915050565b5f8060408385031215610ba457610ba3610afd565b5b5f610bb185828601610b47565b9250506020610bc285828601610b7a565b9150509250929050565b5f8115159050919050565b610be081610bcc565b82525050565b5f602082019050610bf95f830184610bd7565b92915050565b610c0881610b5b565b82525050565b5f602082019050610c215f830184610bff565b92915050565b5f805f60608486031215610c3e57610c3d610afd565b5b5f610c4b86828701610b47565b9350506020610c5c86828701610b47565b9250506040610c6d86828701610b7a565b9150509250925092565b5f60ff82169050919050565b610c8c81610c77565b82525050565b5f602082019050610ca55f830184610c83565b92915050565b5f60208284031215610cc057610cbf610afd565b5b5f610ccd84828501610b47565b91505092915050565b5f8060408385031215610cec57610ceb610afd565b5b5f610cf985828601610b47565b9250506020610d0a85828601610b47565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5857607f821691505b602082108103610d6b57610d6a610d14565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da882610b5b565b9150610db383610b5b565b9250828201905080821115610dcb57610dca610d71565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610e2b602583610a5d565b9150610e3682610dd1565b604082019050919050565b5f6020820190508181035f830152610e5881610e1f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610eb9602483610a5d565b9150610ec482610e5f565b604082019050919050565b5f6020820190508181035f830152610ee681610ead565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f47602283610a5d565b9150610f5282610eed565b604082019050919050565b5f6020820190508181035f830152610f7481610f3b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f610faf601d83610a5d565b9150610fba82610f7b565b602082019050919050565b5f6020820190508181035f830152610fdc81610fa3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61103d602583610a5d565b915061104882610fe3565b604082019050919050565b5f6020820190508181035f83015261106a81611031565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6110cb602383610a5d565b91506110d682611071565b604082019050919050565b5f6020820190508181035f8301526110f8816110bf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611159602683610a5d565b9150611164826110ff565b604082019050919050565b5f6020820190508181035f8301526111868161114d565b905091905056fea264697066735822122017d0eb9749a45a781e1aceec4cce3d7a464856bc0a03e53663704358996e3b9a64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x213 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x243 JUMPI PUSH2 0xA7 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC9 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x117 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x147 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB3 PUSH2 0x273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDE SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x303 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x101 PUSH2 0x325 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0xC27 JUMP JUMPDEST PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14F PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xC92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17A SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0xCAB JUMP JUMPDEST PUSH2 0x39A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CD PUSH2 0x3DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x46F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20A SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x228 SWAP2 SWAP1 PUSH2 0xB8E JUMP JUMPDEST PUSH2 0x4E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xBE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x258 SWAP2 SWAP1 PUSH2 0xCD6 JUMP JUMPDEST PUSH2 0x506 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26A SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x282 SWAP1 PUSH2 0xD41 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 0x2AE SWAP1 PUSH2 0xD41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2F9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2F9 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 0x2DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x30D PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x31A DUP2 DUP6 DUP6 PUSH2 0x58F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x338 PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x345 DUP6 DUP3 DUP6 PUSH2 0x752 JUMP JUMPDEST PUSH2 0x350 DUP6 DUP6 DUP6 PUSH2 0x7DD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x36E PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x38F DUP2 DUP6 DUP6 PUSH2 0x380 DUP6 DUP10 PUSH2 0x506 JUMP JUMPDEST PUSH2 0x38A SWAP2 SWAP1 PUSH2 0xD9E JUMP JUMPDEST PUSH2 0x58F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3EE SWAP1 PUSH2 0xD41 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 0x41A SWAP1 PUSH2 0xD41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x465 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x43C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x465 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 0x448 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x479 PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x486 DUP3 DUP7 PUSH2 0x506 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4CB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C2 SWAP1 PUSH2 0xE41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4D8 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x58F JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x4EE PUSH2 0x588 JUMP JUMPDEST SWAP1 POP PUSH2 0x4FB DUP2 DUP6 DUP6 PUSH2 0x7DD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x5FD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F4 SWAP1 PUSH2 0xECF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x66B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x662 SWAP1 PUSH2 0xF5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x745 SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x75D DUP5 DUP5 PUSH2 0x506 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7D7 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C0 SWAP1 PUSH2 0xFC5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7D6 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x58F JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x84B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x842 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8B0 SWAP1 PUSH2 0x10E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8C4 DUP4 DUP4 DUP4 PUSH2 0xA49 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x947 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x93E SWAP1 PUSH2 0x116F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA30 SWAP2 SWAP1 PUSH2 0xC0E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA43 DUP5 DUP5 DUP5 PUSH2 0xA4E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xA8A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA6F JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xAAF DUP3 PUSH2 0xA53 JUMP JUMPDEST PUSH2 0xAB9 DUP2 DUP6 PUSH2 0xA5D JUMP JUMPDEST SWAP4 POP PUSH2 0xAC9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA6D JUMP JUMPDEST PUSH2 0xAD2 DUP2 PUSH2 0xA95 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xAF5 DUP2 DUP5 PUSH2 0xAA5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xB2A DUP3 PUSH2 0xB01 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB3A DUP2 PUSH2 0xB20 JUMP JUMPDEST DUP2 EQ PUSH2 0xB44 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB55 DUP2 PUSH2 0xB31 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6D DUP2 PUSH2 0xB5B JUMP JUMPDEST DUP2 EQ PUSH2 0xB77 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB88 DUP2 PUSH2 0xB64 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBA4 JUMPI PUSH2 0xBA3 PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xBB1 DUP6 DUP3 DUP7 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBC2 DUP6 DUP3 DUP7 ADD PUSH2 0xB7A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBE0 DUP2 PUSH2 0xBCC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xBF9 PUSH0 DUP4 ADD DUP5 PUSH2 0xBD7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC08 DUP2 PUSH2 0xB5B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC21 PUSH0 DUP4 ADD DUP5 PUSH2 0xBFF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC3E JUMPI PUSH2 0xC3D PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xC4B DUP7 DUP3 DUP8 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC5C DUP7 DUP3 DUP8 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xC6D DUP7 DUP3 DUP8 ADD PUSH2 0xB7A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC8C DUP2 PUSH2 0xC77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCA5 PUSH0 DUP4 ADD DUP5 PUSH2 0xC83 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCC0 JUMPI PUSH2 0xCBF PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCCD DUP5 DUP3 DUP6 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCEC JUMPI PUSH2 0xCEB PUSH2 0xAFD JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCF9 DUP6 DUP3 DUP7 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD0A DUP6 DUP3 DUP7 ADD PUSH2 0xB47 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xD58 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xD6B JUMPI PUSH2 0xD6A PUSH2 0xD14 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xDA8 DUP3 PUSH2 0xB5B JUMP JUMPDEST SWAP2 POP PUSH2 0xDB3 DUP4 PUSH2 0xB5B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xDCB JUMPI PUSH2 0xDCA PUSH2 0xD71 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xE2B PUSH1 0x25 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xE36 DUP3 PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE58 DUP2 PUSH2 0xE1F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xEB9 PUSH1 0x24 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xEC4 DUP3 PUSH2 0xE5F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xEE6 DUP2 PUSH2 0xEAD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF47 PUSH1 0x22 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xF52 DUP3 PUSH2 0xEED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF74 DUP2 PUSH2 0xF3B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xFAF PUSH1 0x1D DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0xFBA DUP3 PUSH2 0xF7B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xFDC DUP2 PUSH2 0xFA3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x103D PUSH1 0x25 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0x1048 DUP3 PUSH2 0xFE3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x106A DUP2 PUSH2 0x1031 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x10CB PUSH1 0x23 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0x10D6 DUP3 PUSH2 0x1071 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10F8 DUP2 PUSH2 0x10BF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1159 PUSH1 0x26 DUP4 PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP PUSH2 0x1164 DUP3 PUSH2 0x10FF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1186 DUP2 PUSH2 0x114D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 OR 0xD0 0xEB SWAP8 0x49 LOG4 GAS PUSH25 0x1E1ACEEC4CCE3D7A464856BC0A03E53663704358996E3B9A64 PUSH20 0x6F6C634300081400330000000000000000000000 ","sourceMap":"1532:11312:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;3419:125::-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;655:96:9:-;708:7;734:10;727:17;;655:96;:::o;10457:340:6:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:14:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:224::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:7;6767:2;6759:6;6755:15;6748:32;6563:224;:::o;6793:366::-;6935:3;6956:67;7020:2;7015:3;6956:67;:::i;:::-;6949:74;;7032:93;7121:3;7032:93;:::i;:::-;7150:2;7145:3;7141:12;7134:19;;6793:366;;;:::o;7165:419::-;7331:4;7369:2;7358:9;7354:18;7346:26;;7418:9;7412:4;7408:20;7404:1;7393:9;7389:17;7382:47;7446:131;7572:4;7446:131;:::i;:::-;7438:139;;7165:419;;;:::o;7590:223::-;7730:34;7726:1;7718:6;7714:14;7707:58;7799:6;7794:2;7786:6;7782:15;7775:31;7590:223;:::o;7819:366::-;7961:3;7982:67;8046:2;8041:3;7982:67;:::i;:::-;7975:74;;8058:93;8147:3;8058:93;:::i;:::-;8176:2;8171:3;8167:12;8160:19;;7819:366;;;:::o;8191:419::-;8357:4;8395:2;8384:9;8380:18;8372:26;;8444:9;8438:4;8434:20;8430:1;8419:9;8415:17;8408:47;8472:131;8598:4;8472:131;:::i;:::-;8464:139;;8191:419;;;:::o;8616:221::-;8756:34;8752:1;8744:6;8740:14;8733:58;8825:4;8820:2;8812:6;8808:15;8801:29;8616:221;:::o;8843:366::-;8985:3;9006:67;9070:2;9065:3;9006:67;:::i;:::-;8999:74;;9082:93;9171:3;9082:93;:::i;:::-;9200:2;9195:3;9191:12;9184:19;;8843:366;;;:::o;9215:419::-;9381:4;9419:2;9408:9;9404:18;9396:26;;9468:9;9462:4;9458:20;9454:1;9443:9;9439:17;9432:47;9496:131;9622:4;9496:131;:::i;:::-;9488:139;;9215:419;;;:::o;9640:179::-;9780:31;9776:1;9768:6;9764:14;9757:55;9640:179;:::o;9825:366::-;9967:3;9988:67;10052:2;10047:3;9988:67;:::i;:::-;9981:74;;10064:93;10153:3;10064:93;:::i;:::-;10182:2;10177:3;10173:12;10166:19;;9825:366;;;:::o;10197:419::-;10363:4;10401:2;10390:9;10386:18;10378:26;;10450:9;10444:4;10440:20;10436:1;10425:9;10421:17;10414:47;10478:131;10604:4;10478:131;:::i;:::-;10470:139;;10197:419;;;:::o;10622:224::-;10762:34;10758:1;10750:6;10746:14;10739:58;10831:7;10826:2;10818:6;10814:15;10807:32;10622:224;:::o;10852:366::-;10994:3;11015:67;11079:2;11074:3;11015:67;:::i;:::-;11008:74;;11091:93;11180:3;11091:93;:::i;:::-;11209:2;11204:3;11200:12;11193:19;;10852:366;;;:::o;11224:419::-;11390:4;11428:2;11417:9;11413:18;11405:26;;11477:9;11471:4;11467:20;11463:1;11452:9;11448:17;11441:47;11505:131;11631:4;11505:131;:::i;:::-;11497:139;;11224:419;;;:::o;11649:222::-;11789:34;11785:1;11777:6;11773:14;11766:58;11858:5;11853:2;11845:6;11841:15;11834:30;11649:222;:::o;11877:366::-;12019:3;12040:67;12104:2;12099:3;12040:67;:::i;:::-;12033:74;;12116:93;12205:3;12116:93;:::i;:::-;12234:2;12229:3;12225:12;12218:19;;11877:366;;;:::o;12249:419::-;12415:4;12453:2;12442:9;12438:18;12430:26;;12502:9;12496:4;12492:20;12488:1;12477:9;12473:17;12466:47;12530:131;12656:4;12530:131;:::i;:::-;12522:139;;12249:419;;;:::o;12674:225::-;12814:34;12810:1;12802:6;12798:14;12791:58;12883:8;12878:2;12870:6;12866:15;12859:33;12674:225;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:419::-;13443:4;13481:2;13470:9;13466:18;13458:26;;13530:9;13524:4;13520:20;13516:1;13505:9;13501:17;13494:47;13558:131;13684:4;13558:131;:::i;:::-;13550:139;;13277:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"909400","executionCost":"infinite","totalCost":"infinite"},"external":{"allowance(address,address)":"infinite","approve(address,uint256)":"infinite","balanceOf(address)":"2851","decimals()":"427","decreaseAllowance(address,uint256)":"infinite","increaseAllowance(address,uint256)":"infinite","name()":"infinite","symbol()":"infinite","totalSupply()":"2477","transfer(address,uint256)":"infinite","transferFrom(address,address,uint256)":"infinite"},"internal":{"_afterTokenTransfer(address,address,uint256)":"15","_approve(address,address,uint256)":"infinite","_beforeTokenTransfer(address,address,uint256)":"15","_burn(address,uint256)":"infinite","_mint(address,uint256)":"infinite","_spendAllowance(address,address,uint256)":"infinite","_transfer(address,address,uint256)":"infinite"}},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","increaseAllowance(address,uint256)":"39509351","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.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 ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` 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}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the 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}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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 `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.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 ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n mapping(address => uint256) private _balances;\\n\\n mapping(address => mapping(address => uint256)) private _allowances;\\n\\n uint256 private _totalSupply;\\n\\n string private _name;\\n string private _symbol;\\n\\n /**\\n * @dev Sets the values for {name} and {symbol}.\\n *\\n * All two of these values are immutable: they can only be set once during\\n * construction.\\n */\\n constructor(string memory name_, string memory symbol_) {\\n _name = name_;\\n _symbol = symbol_;\\n }\\n\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() public view virtual override returns (string memory) {\\n return _name;\\n }\\n\\n /**\\n * @dev Returns the symbol of the token, usually a shorter version of the\\n * name.\\n */\\n function symbol() public view virtual override returns (string memory) {\\n return _symbol;\\n }\\n\\n /**\\n * @dev Returns the number of decimals used to get its user representation.\\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n *\\n * Tokens usually opt for a value of 18, imitating the relationship between\\n * Ether and Wei. This is the 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 override returns (uint8) {\\n return 18;\\n }\\n\\n /**\\n * @dev See {IERC20-totalSupply}.\\n */\\n function totalSupply() public view virtual override returns (uint256) {\\n return _totalSupply;\\n }\\n\\n /**\\n * @dev See {IERC20-balanceOf}.\\n */\\n function balanceOf(address account) public view virtual override returns (uint256) {\\n return _balances[account];\\n }\\n\\n /**\\n * @dev See {IERC20-transfer}.\\n *\\n * Requirements:\\n *\\n * - `to` cannot be the zero address.\\n * - the caller must have a balance of at least `amount`.\\n */\\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _transfer(owner, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-allowance}.\\n */\\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n return _allowances[owner][spender];\\n }\\n\\n /**\\n * @dev See {IERC20-approve}.\\n *\\n * NOTE: If `amount` 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 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-transferFrom}.\\n *\\n * Emits an {Approval} event indicating the updated allowance. This is not\\n * required by the EIP. See the note at the beginning of {ERC20}.\\n *\\n * 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 `amount`.\\n * - the caller must have allowance for ``from``'s tokens of at least\\n * `amount`.\\n */\\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\\n address spender = _msgSender();\\n _spendAllowance(from, spender, amount);\\n _transfer(from, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically increases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n */\\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, allowance(owner, spender) + addedValue);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `spender` must have allowance for the caller of at least\\n * `subtractedValue`.\\n */\\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n uint256 currentAllowance = allowance(owner, spender);\\n require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - subtractedValue);\\n }\\n\\n return true;\\n }\\n\\n /**\\n * @dev Moves `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 * Requirements:\\n *\\n * - `from` cannot be the zero address.\\n * - `to` cannot be the zero address.\\n * - `from` must have a balance of at least `amount`.\\n */\\n function _transfer(address from, address to, uint256 amount) internal virtual {\\n require(from != address(0), \\\"ERC20: transfer from the zero address\\\");\\n require(to != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n _beforeTokenTransfer(from, to, amount);\\n\\n uint256 fromBalance = _balances[from];\\n require(fromBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n unchecked {\\n _balances[from] = fromBalance - amount;\\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\\n // decrementing then incrementing.\\n _balances[to] += amount;\\n }\\n\\n emit Transfer(from, to, amount);\\n\\n _afterTokenTransfer(from, to, amount);\\n }\\n\\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n * the total supply.\\n *\\n * Emits a {Transfer} event with `from` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n */\\n function _mint(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n _beforeTokenTransfer(address(0), account, amount);\\n\\n _totalSupply += amount;\\n unchecked {\\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\\n _balances[account] += amount;\\n }\\n emit Transfer(address(0), account, amount);\\n\\n _afterTokenTransfer(address(0), account, amount);\\n }\\n\\n /**\\n * @dev Destroys `amount` tokens from `account`, reducing the\\n * total supply.\\n *\\n * Emits a {Transfer} event with `to` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n * - `account` must have at least `amount` tokens.\\n */\\n function _burn(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n _beforeTokenTransfer(account, address(0), amount);\\n\\n uint256 accountBalance = _balances[account];\\n require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n unchecked {\\n _balances[account] = accountBalance - amount;\\n // Overflow not possible: amount <= accountBalance <= totalSupply.\\n _totalSupply -= amount;\\n }\\n\\n emit Transfer(account, address(0), amount);\\n\\n _afterTokenTransfer(account, address(0), amount);\\n }\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n *\\n * This internal function is equivalent to `approve`, and can be used to\\n * e.g. set automatic allowances for certain subsystems, etc.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `owner` cannot be the zero address.\\n * - `spender` cannot be the zero address.\\n */\\n function _approve(address owner, address spender, uint256 amount) internal virtual {\\n require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n _allowances[owner][spender] = amount;\\n emit Approval(owner, spender, amount);\\n }\\n\\n /**\\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\\n *\\n * Does not update the allowance amount in case of infinite allowance.\\n * Revert if not enough allowance is available.\\n *\\n * Might emit an {Approval} event.\\n */\\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\\n uint256 currentAllowance = allowance(owner, spender);\\n if (currentAllowance != type(uint256).max) {\\n require(currentAllowance >= amount, \\\"ERC20: insufficient allowance\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - amount);\\n }\\n }\\n }\\n\\n /**\\n * @dev Hook that is called before any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * will be transferred to `to`.\\n * - when `from` is zero, `amount` tokens will be minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n\\n /**\\n * @dev Hook that is called after any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * has been transferred to `to`.\\n * - when `from` is zero, `amount` tokens have been minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n}\\n\",\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() external view returns (string memory);\\n\\n /**\\n * @dev Returns the symbol of the token.\\n */\\n function symbol() external view returns (string memory);\\n\\n /**\\n * @dev Returns the decimals places of the token.\\n */\\n function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":933,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":939,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":941,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":943,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":945,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Interface of the ERC20 standard as defined in the EIP.","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."},"approve(address,uint256)":{"details":"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."},"balanceOf(address)":{"details":"Returns the amount of tokens owned by `account`."},"totalSupply()":{"details":"Returns the amount of tokens in existence."},"transfer(address,uint256)":{"details":"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."},"transferFrom(address,address,uint256)":{"details":"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."},"approve(address,uint256)":{"details":"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."},"balanceOf(address)":{"details":"Returns the amount of tokens owned by `account`."},"decimals()":{"details":"Returns the decimals places of the token."},"name()":{"details":"Returns the name of the token."},"symbol()":{"details":"Returns the symbol of the token."},"totalSupply()":{"details":"Returns the amount of tokens in existence."},"transfer(address,uint256)":{"details":"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."},"transferFrom(address,address,uint256)":{"details":"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() external view returns (string memory);\\n\\n /**\\n * @dev Returns the symbol of the token.\\n */\\n function symbol() external view returns (string memory);\\n\\n /**\\n * @dev Returns the decimals places of the token.\\n */\\n function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"devdoc":{"details":"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.","kind":"dev","methods":{},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"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\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/Gateway.sol":{"Gateway":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint96","name":"settlePercent","type":"uint96"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFeeDetails","outputs":[{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"FxTransferFeeSplit(bytes32,uint256,uint256)":{"details":"Emitted when an FX transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","senderAmount":"The amount that goes to the sender."}},"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)":{"details":"Emitted when a local transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","providerAmount":"The amount that goes to the provider.","senderAmount":"The amount that goes to the sender."}},"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint96)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"constructor":{"custom:oz-upgrades-unsafe-allow":"constructor"},"createOrder(address,uint256,uint96,address,uint256,address,string)":{"details":"See {createOrder-IGateway}. "},"getFeeDetails()":{"details":"See {getFeeDetails-IGateway}. "},"getOrderInfo(bytes32)":{"details":"See {getOrderInfo-IGateway}. "},"getTokenFeeSettings(address)":{"details":"Gets token-specific fee settings.","params":{"token":"The token address to query."},"returns":{"_0":"TokenFeeSettings struct containing all fee settings for the token."}},"initialize()":{"details":"Initialize function."},"isTokenSupported(address)":{"details":"See {isTokenSupported-IGateway}. "},"owner()":{"details":"Returns the address of the current owner."},"pause()":{"details":"Pause the contract."},"paused()":{"details":"Returns true if the contract is paused, and false otherwise."},"pendingOwner()":{"details":"Returns the address of the pending owner."},"refund(uint256,bytes32)":{"details":"See {refund-IGateway}. "},"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."},"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":{"details":"Sets token-specific fee settings for stablecoins.","params":{"providerToAggregator":"Percentage of provider's share that goes to aggregator (local mode).","providerToAggregatorFx":"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.","senderToAggregator":"Percentage of sender fee that goes to aggregator (fx mode).","senderToProvider":"Percentage of sender fee that goes to provider (local mode).","token":"The token address to configure."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"settle(bytes32,bytes32,address,uint64)":{"details":"See {settle-IGateway}. "},"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."},"unpause()":{"details":"Unpause the contract."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}}},"title":"Gateway","version":1},"evm":{"bytecode":{"functionDebugData":{"@_1678":{"entryPoint":null,"id":1678,"parameterSlots":0,"returnSlots":0},"@_disableInitializers_389":{"entryPoint":39,"id":389,"parameterSlots":0,"returnSlots":0},"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack":{"entryPoint":328,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":410,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":366,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":427,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":234,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":398,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a":{"entryPoint":250,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:1638:14","statements":[{"body":{"nodeType":"YulBlock","src":"103:73:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"120:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"125:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"113:6:14"},"nodeType":"YulFunctionCall","src":"113:19:14"},"nodeType":"YulExpressionStatement","src":"113:19:14"},{"nodeType":"YulAssignment","src":"141:29:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"160:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"165:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"156:3:14"},"nodeType":"YulFunctionCall","src":"156:14:14"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"141:11:14"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"75:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"80:6:14","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"91:11:14","type":""}],"src":"7:169:14"},{"body":{"nodeType":"YulBlock","src":"288:120:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"310:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"318:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"306:3:14"},"nodeType":"YulFunctionCall","src":"306:14:14"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469","kind":"string","nodeType":"YulLiteral","src":"322:34:14","type":"","value":"Initializable: contract is initi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"299:6:14"},"nodeType":"YulFunctionCall","src":"299:58:14"},"nodeType":"YulExpressionStatement","src":"299:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"378:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"386:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"374:3:14"},"nodeType":"YulFunctionCall","src":"374:15:14"},{"hexValue":"616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"391:9:14","type":"","value":"alizing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"367:6:14"},"nodeType":"YulFunctionCall","src":"367:34:14"},"nodeType":"YulExpressionStatement","src":"367:34:14"}]},"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"280:6:14","type":""}],"src":"182:226:14"},{"body":{"nodeType":"YulBlock","src":"560:220:14","statements":[{"nodeType":"YulAssignment","src":"570:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"636:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"641:2:14","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"577:58:14"},"nodeType":"YulFunctionCall","src":"577:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"570:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"742:3:14"}],"functionName":{"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulIdentifier","src":"653:88:14"},"nodeType":"YulFunctionCall","src":"653:93:14"},"nodeType":"YulExpressionStatement","src":"653:93:14"},{"nodeType":"YulAssignment","src":"755:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"766:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"771:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"762:3:14"},"nodeType":"YulFunctionCall","src":"762:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"755:3:14"}]}]},"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"548:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"556:3:14","type":""}],"src":"414:366:14"},{"body":{"nodeType":"YulBlock","src":"957:248:14","statements":[{"nodeType":"YulAssignment","src":"967:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"979:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"990:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"975:3:14"},"nodeType":"YulFunctionCall","src":"975:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"967:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1014:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1025:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1010:3:14"},"nodeType":"YulFunctionCall","src":"1010:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1033:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"1039:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1029:3:14"},"nodeType":"YulFunctionCall","src":"1029:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1003:6:14"},"nodeType":"YulFunctionCall","src":"1003:47:14"},"nodeType":"YulExpressionStatement","src":"1003:47:14"},{"nodeType":"YulAssignment","src":"1059:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1193:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1067:124:14"},"nodeType":"YulFunctionCall","src":"1067:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1059:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"937:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"952:4:14","type":""}],"src":"786:419:14"},{"body":{"nodeType":"YulBlock","src":"1254:43:14","statements":[{"nodeType":"YulAssignment","src":"1264:27:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1279:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"1286:4:14","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1275:3:14"},"nodeType":"YulFunctionCall","src":"1275:16:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1264:7:14"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1236:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1246:7:14","type":""}],"src":"1211:86:14"},{"body":{"nodeType":"YulBlock","src":"1364:51:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1381:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1402:5:14"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"1386:15:14"},"nodeType":"YulFunctionCall","src":"1386:22:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1374:6:14"},"nodeType":"YulFunctionCall","src":"1374:35:14"},"nodeType":"YulExpressionStatement","src":"1374:35:14"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1352:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1359:3:14","type":""}],"src":"1303:112:14"},{"body":{"nodeType":"YulBlock","src":"1515:120:14","statements":[{"nodeType":"YulAssignment","src":"1525:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1537:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1548:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1533:3:14"},"nodeType":"YulFunctionCall","src":"1533:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1525:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1601:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1614:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1625:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1610:3:14"},"nodeType":"YulFunctionCall","src":"1610:17:14"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"1561:39:14"},"nodeType":"YulFunctionCall","src":"1561:67:14"},"nodeType":"YulExpressionStatement","src":"1561:67:14"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1487:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1499:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1510:4:14","type":""}],"src":"1421:214:14"}]},"contents":"{\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is initi\")\n\n mstore(add(memPtr, 32), \"alizing\")\n\n }\n\n function abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b50620000216200002760201b60201c565b620001c6565b5f60019054906101000a900460ff161562000079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000070906200016e565b60405180910390fd5b60ff80165f8054906101000a900460ff1660ff1614620000e85760ff5f806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000df9190620001ab565b60405180910390a15b565b5f82825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e6974695f8201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b5f62000156602783620000ea565b91506200016382620000fa565b604082019050919050565b5f6020820190508181035f830152620001878162000148565b9050919050565b5f60ff82169050919050565b620001a5816200018e565b82525050565b5f602082019050620001c05f8301846200019a565b92915050565b61472f80620001d45f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c80638129fc1c116100ab578063b810c6361161006f578063b810c636146102b9578063cd992400146102d8578063e30c3978146102f4578063f22ee70414610312578063f2fde38b146103425761011f565b80638129fc1c1461023b5780638456cb5914610245578063898861b01461024f5780638bfa05491461026b5780638da5cb5b1461029b5761011f565b806371eedb88116100f257806371eedb881461017157806375151b63146101a1578063768c6ec0146101d157806379ba509714610201578063809804f71461020b5761011f565b80633f4ba83a1461012357806340ebc6771461012d5780635c975abb14610149578063715018a614610167575b5f80fd5b61012b61035e565b005b6101476004803603810190610142919061300a565b610370565b005b610151610634565b60405161015e9190613062565b60405180910390f35b61016f610649565b005b61018b600480360381019061018691906130ae565b61065c565b6040516101989190613062565b60405180910390f35b6101bb60048036038101906101b691906130ec565b610ab7565b6040516101c89190613062565b60405180910390f35b6101eb60048036038101906101e69190613117565b610b0f565b6040516101f8919061325f565b60405180910390f35b610209610d1f565b005b61022560048036038101906102209190613304565b610dab565b60405161023291906133d0565b60405180910390f35b6102436113f0565b005b61024d61153a565b005b610269600480360381019061026491906133e9565b61154c565b005b610285600480360381019061028091906130ec565b6117ca565b60405161029291906134b3565b60405180910390f35b6102a3611848565b6040516102b091906134db565b60405180910390f35b6102c1611870565b6040516102cf929190613525565b60405180910390f35b6102f260048036038101906102ed919061354c565b611893565b005b6102fc611a15565b60405161030991906134db565b60405180910390f35b61032c600480360381019061032791906135c6565b611a3d565b6040516103399190613062565b60405180910390f35b61035c600480360381019061035791906130ec565b612001565b005b6103666120ad565b61036e61212b565b565b6103786120ad565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103dd90613684565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036104e8578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361049e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049590613712565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506105e4565b7f61676772656761746f720000000000000000000000000000000000000000000083036105e3578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361059e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610595906137a0565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b801561062f578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b5f60cd5f9054906101000a900460ff16905090565b6106516120ad565b61065a5f61218c565b565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390613808565b60405180910390fd5b60ff5f8381526020019081526020015f206005015f9054906101000a900460ff161561074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490613870565b60405180910390fd5b60ff5f8381526020019081526020015f2060050160019054906101000a900460ff16156107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a6906138d8565b60405180910390fd5b8260ff5f8481526020019081526020015f20600401541015610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90613940565b60405180910390fd5b5f8311156108e05760ff5f8381526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b815260040161089e92919061395e565b6020604051808303815f875af11580156108ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108de91906139af565b505b600160ff5f8481526020019081526020015f2060050160016101000a81548160ff0219169083151502179055505f60ff5f8481526020019081526020015f206006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f8360ff5f8581526020019081526020015f20600701546109709190613a07565b905060ff5f8481526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8681526020019081526020015f2060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660ff5f8781526020019081526020015f206003015484610a169190613a3a565b6040518363ffffffff1660e01b8152600401610a3392919061395e565b6020604051808303815f875af1158015610a4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7391906139af565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610aa49190613a6d565b60405180910390a2600191505092915050565b5f6001609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610b065760019050610b0a565b5f90505b919050565b610b17612e9e565b60ff5f8381526020019081526020015f20604051806101400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820154815260200160048201548152602001600582015f9054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600682015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b5f610d286121bc565b90508073ffffffffffffffffffffffffffffffffffffffff16610d49611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690613af6565b60405180910390fd5b610da88161218c565b50565b5f610db46121c3565b610dc1898986898961220d565b5f8383905003610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613b5e565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888c610e309190613a3a565b6040518463ffffffff1660e01b8152600401610e4e93929190613b7c565b6020604051808303815f875af1158015610e6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8e91906139af565b506101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190610edd90613bb1565b9190505550336101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205446604051602001610f3593929190613bf8565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff1660ff5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613c77565b60405180910390fd5b5f6064886bffffffffffffffffffffffff160361100c575f90506110e5565b5f609b5f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f8160600151116110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90613cdf565b60405180910390fd5b60975481606001518b6110d79190613cfd565b6110e19190613d6b565b9150505b6040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018b73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020015f151581526020015f151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff1681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610100820151816006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a6040516113db959493929190613e1e565b60405180910390a45098975050505050505050565b5f8060019054906101000a900460ff1615905080801561141f575060015f8054906101000a900460ff1660ff16105b8061144b575061142e306123ba565b15801561144a575060015f8054906101000a900460ff1660ff16145b5b61148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613eda565b60405180910390fd5b60015f806101000a81548160ff021916908360ff16021790555080156114c55760015f60016101000a81548160ff0219169083151502179055505b620186a06097819055506114d76123dc565b6114df612434565b8015611537575f8060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161152e9190613f3d565b60405180910390a15b50565b6115426120ad565b61154a61248c565b565b6115546120ad565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613fa0565b60405180910390fd5b609754841115611619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116109061402e565b60405180910390fd5b60975483111561165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906140bc565b60405180910390fd5b6097548211156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a9061414a565b60405180910390fd5b6097548111156116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df906141d8565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516117bb94939291906141f6565b60405180910390a25050505050565b6117d2612f51565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f8060985f9054906101000a900467ffffffffffffffff16609754915091509091565b61189b6120ad565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613684565b60405180910390fd5b60018114806119185750600281145b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614283565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611a105780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c83604051611a079190613a6d565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac490613808565b60405180910390fd5b60ff5f8581526020019081526020015f206005015f9054906101000a900460ff1615611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613870565b60405180910390fd5b60ff5f8581526020019081526020015f2060050160019054906101000a900460ff1615611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b87906138d8565b60405180910390fd5b5f60ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f60ff5f8781526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690508367ffffffffffffffff1660ff5f8881526020019081526020015f206006015f8282829054906101000a90046bffffffffffffffffffffffff16611c4891906142a1565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f60ff5f8881526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d3357600160ff5f8881526020019081526020015f206005015f6101000a81548160ff0219169083151502179055505f60ff5f8881526020019081526020015f206003015414611d32575f60ff5f8881526020019081526020015f206004015403611d2757611d2286866124ee565b611d31565b611d3086612953565b5b5b5b5f818567ffffffffffffffff1660ff5f8a81526020019081526020015f2060070154611d5f9190613cfd565b611d699190613d6b565b90508060ff5f8981526020019081526020015f206007015f828254611d8e9190613a07565b925050819055505f60ff5f8981526020019081526020015f20600401541115611f25575f609b5f60ff5f8b81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f609754826060015184611e6a9190613cfd565b611e749190613d6b565b90508083611e829190613a07565b92508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611ee192919061395e565b6020604051808303815f875af1158015611efd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2191906139af565b5050505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb87836040518363ffffffff1660e01b8152600401611f6092919061395e565b6020604051808303815f875af1158015611f7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa091906139af565b508573ffffffffffffffffffffffffffffffffffffffff16877f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8a88604051611fea929190614310565b60405180910390a360019350505050949350505050565b6120096120ad565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16612068611848565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6120b56121bc565b73ffffffffffffffffffffffffffffffffffffffff166120d3611848565b73ffffffffffffffffffffffffffffffffffffffff1614612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614381565b60405180910390fd5b565b612133612cc9565b5f60cd5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121756121bc565b60405161218291906134db565b60405180910390a1565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556121b981612d12565b50565b5f33905090565b6121cb610634565b1561220b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612202906143e9565b60405180910390fd5b565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541461228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228490614451565b60405180910390fd5b5f84036122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c6906144b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490614521565b60405180910390fd5b5f81146123b3575f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614589565b60405180910390fd5b5b5050505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f60019054906101000a900460ff1661242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190614617565b60405180910390fd5b612432612dd5565b565b5f60019054906101000a900460ff16612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990614617565b60405180910390fd5b61248a612e35565b565b6124946121c3565b600160cd5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124d76121bc565b6040516124e491906134db565b60405180910390a1565b5f609b5f60ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8581526020019081526020015f206003015490505f609754835f0151836125be9190613cfd565b6125c89190613d6b565b90505f6097548460200151836125de9190613cfd565b6125e89190613d6b565b90505f82846125f79190613a07565b90505f8111156126e45760ff5f8881526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8a81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016126a292919061395e565b6020604051808303815f875af11580156126be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126e291906139af565b505b5f82846126f19190613a07565b11156127b25760ff5f8881526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8784866127539190613a07565b6040518363ffffffff1660e01b815260040161277092919061395e565b6020604051808303815f875af115801561278c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b091906139af565b505b5f82111561288c5760ff5f8881526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161284a92919061395e565b6020604051808303815f875af1158015612866573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288a91906139af565b505b8060ff5f8981526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3867f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a48284866129329190613a07565b8560405161294293929190614635565b60405180910390a250505050505050565b5f609b5f60ff5f8581526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8481526020019081526020015f206003015490505f6097548360400151609754612a269190613a07565b83612a319190613cfd565b612a3b9190613d6b565b90505f8183612a4a9190613a07565b90505f821115612b375760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8881526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612af592919061395e565b6020604051808303815f875af1158015612b11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b3591906139af565b505b5f811115612c115760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612bcf92919061395e565b6020604051808303815f875af1158015612beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c0f91906139af565b505b8160ff5f8781526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3847f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a8383604051612cba92919061466a565b60405180910390a25050505050565b612cd1610634565b612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d07906146db565b60405180910390fd5b565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60019054906101000a900460ff16612e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1a90614617565b60405180910390fd5b612e33612e2e6121bc565b61218c565b565b5f60019054906101000a900460ff16612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90614617565b60405180910390fd5b5f60cd5f6101000a81548160ff021916908315150217905550565b6040518061014001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f151581526020015f151581526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f6bffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f819050919050565b612f8f81612f7d565b8114612f99575f80fd5b50565b5f81359050612faa81612f86565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd982612fb0565b9050919050565b612fe981612fcf565b8114612ff3575f80fd5b50565b5f8135905061300481612fe0565b92915050565b5f80604083850312156130205761301f612f75565b5b5f61302d85828601612f9c565b925050602061303e85828601612ff6565b9150509250929050565b5f8115159050919050565b61305c81613048565b82525050565b5f6020820190506130755f830184613053565b92915050565b5f819050919050565b61308d8161307b565b8114613097575f80fd5b50565b5f813590506130a881613084565b92915050565b5f80604083850312156130c4576130c3612f75565b5b5f6130d18582860161309a565b92505060206130e285828601612f9c565b9150509250929050565b5f6020828403121561310157613100612f75565b5b5f61310e84828501612ff6565b91505092915050565b5f6020828403121561312c5761312b612f75565b5b5f61313984828501612f9c565b91505092915050565b61314b81612fcf565b82525050565b61315a8161307b565b82525050565b61316981613048565b82525050565b5f6bffffffffffffffffffffffff82169050919050565b61318f8161316f565b82525050565b61014082015f8201516131aa5f850182613142565b5060208201516131bd6020850182613142565b5060408201516131d06040850182613142565b5060608201516131e36060850182613151565b5060808201516131f66080850182613151565b5060a082015161320960a0850182613160565b5060c082015161321c60c0850182613160565b5060e082015161322f60e0850182613142565b50610100820151613244610100850182613186565b50610120820151613259610120850182613151565b50505050565b5f610140820190506132735f830184613195565b92915050565b6132828161316f565b811461328c575f80fd5b50565b5f8135905061329d81613279565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126132c4576132c36132a3565b5b8235905067ffffffffffffffff8111156132e1576132e06132a7565b5b6020830191508360018202830111156132fd576132fc6132ab565b5b9250929050565b5f805f805f805f8060e0898b0312156133205761331f612f75565b5b5f61332d8b828c01612ff6565b985050602061333e8b828c0161309a565b975050604061334f8b828c0161328f565b96505060606133608b828c01612ff6565b95505060806133718b828c0161309a565b94505060a06133828b828c01612ff6565b93505060c089013567ffffffffffffffff8111156133a3576133a2612f79565b5b6133af8b828c016132af565b92509250509295985092959890939650565b6133ca81612f7d565b82525050565b5f6020820190506133e35f8301846133c1565b92915050565b5f805f805f60a0868803121561340257613401612f75565b5b5f61340f88828901612ff6565b95505060206134208882890161309a565b94505060406134318882890161309a565b93505060606134428882890161309a565b92505060806134538882890161309a565b9150509295509295909350565b608082015f8201516134745f850182613151565b5060208201516134876020850182613151565b50604082015161349a6040850182613151565b5060608201516134ad6060850182613151565b50505050565b5f6080820190506134c65f830184613460565b92915050565b6134d581612fcf565b82525050565b5f6020820190506134ee5f8301846134cc565b92915050565b5f67ffffffffffffffff82169050919050565b613510816134f4565b82525050565b61351f8161307b565b82525050565b5f6040820190506135385f830185613507565b6135456020830184613516565b9392505050565b5f805f6060848603121561356357613562612f75565b5b5f61357086828701612f9c565b935050602061358186828701612ff6565b92505060406135928682870161309a565b9150509250925092565b6135a5816134f4565b81146135af575f80fd5b50565b5f813590506135c08161359c565b92915050565b5f805f80608085870312156135de576135dd612f75565b5b5f6135eb87828801612f9c565b94505060206135fc87828801612f9c565b935050604061360d87828801612ff6565b925050606061361e878288016135b2565b91505092959194509250565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f61366e60158361362a565b91506136798261363a565b602082019050919050565b5f6020820190508181035f83015261369b81613662565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f6136fc60258361362a565b9150613707826136a2565b604082019050919050565b5f6020820190508181035f830152613729816136f0565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f61378a60278361362a565b915061379582613730565b604082019050919050565b5f6020820190508181035f8301526137b78161377e565b9050919050565b7f4f6e6c7941676772656761746f720000000000000000000000000000000000005f82015250565b5f6137f2600e8361362a565b91506137fd826137be565b602082019050919050565b5f6020820190508181035f83015261381f816137e6565b9050919050565b7f4f7264657246756c66696c6c65640000000000000000000000000000000000005f82015250565b5f61385a600e8361362a565b915061386582613826565b602082019050919050565b5f6020820190508181035f8301526138878161384e565b9050919050565b7f4f72646572526566756e646564000000000000000000000000000000000000005f82015250565b5f6138c2600d8361362a565b91506138cd8261388e565b602082019050919050565b5f6020820190508181035f8301526138ef816138b6565b9050919050565b7f4665654578636565647350726f746f636f6c46656500000000000000000000005f82015250565b5f61392a60158361362a565b9150613935826138f6565b602082019050919050565b5f6020820190508181035f8301526139578161391e565b9050919050565b5f6040820190506139715f8301856134cc565b61397e6020830184613516565b9392505050565b61398e81613048565b8114613998575f80fd5b50565b5f815190506139a981613985565b92915050565b5f602082840312156139c4576139c3612f75565b5b5f6139d18482850161399b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613a118261307b565b9150613a1c8361307b565b9250828203905081811115613a3457613a336139da565b5b92915050565b5f613a448261307b565b9150613a4f8361307b565b9250828201905080821115613a6757613a666139da565b5b92915050565b5f602082019050613a805f830184613516565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613ae060298361362a565b9150613aeb82613a86565b604082019050919050565b5f6020820190508181035f830152613b0d81613ad4565b9050919050565b7f496e76616c69644d6573736167654861736800000000000000000000000000005f82015250565b5f613b4860128361362a565b9150613b5382613b14565b602082019050919050565b5f6020820190508181035f830152613b7581613b3c565b9050919050565b5f606082019050613b8f5f8301866134cc565b613b9c60208301856134cc565b613ba96040830184613516565b949350505050565b5f613bbb8261307b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bed57613bec6139da565b5b600182019050919050565b5f606082019050613c0b5f8301866134cc565b613c186020830185613516565b613c256040830184613516565b949350505050565b7f4f72646572416c726561647945786973747300000000000000000000000000005f82015250565b5f613c6160128361362a565b9150613c6c82613c2d565b602082019050919050565b5f6020820190508181035f830152613c8e81613c55565b9050919050565b7f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000005f82015250565b5f613cc9601d8361362a565b9150613cd482613c95565b602082019050919050565b5f6020820190508181035f830152613cf681613cbd565b9050919050565b5f613d078261307b565b9150613d128361307b565b9250828202613d208161307b565b91508282048414831517613d3757613d366139da565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613d758261307b565b9150613d808361307b565b925082613d9057613d8f613d3e565b5b828204905092915050565b5f819050919050565b5f613dbe613db9613db48461316f565b613d9b565b61307b565b9050919050565b613dce81613da4565b82525050565b828183375f83830152505050565b5f601f19601f8301169050919050565b5f613dfd838561362a565b9350613e0a838584613dd4565b613e1383613de2565b840190509392505050565b5f608082019050613e315f830188613516565b613e3e60208301876133c1565b613e4b6040830186613dc5565b8181036060830152613e5e818486613df2565b90509695505050505050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f613ec4602e8361362a565b9150613ecf82613e6a565b604082019050919050565b5f6020820190508181035f830152613ef181613eb8565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f613f27613f22613f1d84613ef8565b613d9b565b613f01565b9050919050565b613f3781613f0d565b82525050565b5f602082019050613f505f830184613f2e565b92915050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f613f8a601c8361362a565b9150613f9582613f56565b602082019050919050565b5f6020820190508181035f830152613fb781613f7e565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f61401860238361362a565b915061402382613fbe565b604082019050919050565b5f6020820190508181035f8301526140458161400c565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f6140a660278361362a565b91506140b18261404c565b604082019050919050565b5f6020820190508181035f8301526140d38161409a565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f61413460258361362a565b915061413f826140da565b604082019050919050565b5f6020820190508181035f83015261416181614128565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f6141c2602a8361362a565b91506141cd82614168565b604082019050919050565b5f6020820190508181035f8301526141ef816141b6565b9050919050565b5f6080820190506142095f830187613516565b6142166020830186613516565b6142236040830185613516565b6142306060830184613516565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f61426d60178361362a565b915061427882614239565b602082019050919050565b5f6020820190508181035f83015261429a81614261565b9050919050565b5f6142ab8261316f565b91506142b68361316f565b925082820390506bffffffffffffffffffffffff8111156142da576142d96139da565b5b92915050565b5f6142fa6142f56142f0846134f4565b613d9b565b61316f565b9050919050565b61430a816142e0565b82525050565b5f6040820190506143235f8301856133c1565b6143306020830184614301565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61436b60208361362a565b915061437682614337565b602082019050919050565b5f6020820190508181035f8301526143988161435f565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f6143d360108361362a565b91506143de8261439f565b602082019050919050565b5f6020820190508181035f830152614400816143c7565b9050919050565b7f546f6b656e4e6f74537570706f727465640000000000000000000000000000005f82015250565b5f61443b60118361362a565b915061444682614407565b602082019050919050565b5f6020820190508181035f8301526144688161442f565b9050919050565b7f416d6f756e7449735a65726f00000000000000000000000000000000000000005f82015250565b5f6144a3600c8361362a565b91506144ae8261446f565b602082019050919050565b5f6020820190508181035f8301526144d081614497565b9050919050565b7f5468726f775a65726f41646472657373000000000000000000000000000000005f82015250565b5f61450b60108361362a565b9150614516826144d7565b602082019050919050565b5f6020820190508181035f830152614538816144ff565b9050919050565b7f496e76616c696453656e646572466565526563697069656e74000000000000005f82015250565b5f61457360198361362a565b915061457e8261453f565b602082019050919050565b5f6020820190508181035f8301526145a081614567565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f614601602b8361362a565b915061460c826145a7565b604082019050919050565b5f6020820190508181035f83015261462e816145f5565b9050919050565b5f6060820190506146485f830186613516565b6146556020830185613516565b6146626040830184613516565b949350505050565b5f60408201905061467d5f830185613516565b61468a6020830184613516565b9392505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6146c560148361362a565b91506146d082614691565b602082019050919050565b5f6020820190508181035f8301526146f2816146b9565b905091905056fea2646970667358221220f9977596da9ad2a245337cc030a1f8009fd0587d8173b6e1aca3add1d9f85ff764736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH3 0x21 PUSH3 0x27 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1C6 JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x79 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x70 SWAP1 PUSH3 0x16E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF DUP1 AND PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ PUSH3 0xE8 JUMPI PUSH1 0xFF PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0xFF PUSH1 0x40 MLOAD PUSH3 0xDF SWAP2 SWAP1 PUSH3 0x1AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320696E697469 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C697A696E6700000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH3 0x156 PUSH1 0x27 DUP4 PUSH3 0xEA JUMP JUMPDEST SWAP2 POP PUSH3 0x163 DUP3 PUSH3 0xFA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH3 0x187 DUP2 PUSH3 0x148 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1A5 DUP2 PUSH3 0x18E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1C0 PUSH0 DUP4 ADD DUP5 PUSH3 0x19A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x472F DUP1 PUSH3 0x1D4 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x11F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8129FC1C GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xB810C636 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xB810C636 EQ PUSH2 0x2B9 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x2D8 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2F4 JUMPI DUP1 PUSH4 0xF22EE704 EQ PUSH2 0x312 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x342 JUMPI PUSH2 0x11F JUMP JUMPDEST DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0x24F JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x29B JUMPI PUSH2 0x11F JUMP JUMPDEST DUP1 PUSH4 0x71EEDB88 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x171 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x809804F7 EQ PUSH2 0x20B JUMPI PUSH2 0x11F JUMP JUMPDEST DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x167 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x12B PUSH2 0x35E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x147 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x142 SWAP2 SWAP1 PUSH2 0x300A JUMP JUMPDEST PUSH2 0x370 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x151 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15E SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16F PUSH2 0x649 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0x30AE JUMP JUMPDEST PUSH2 0x65C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B6 SWAP2 SWAP1 PUSH2 0x30EC JUMP JUMPDEST PUSH2 0xAB7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C8 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E6 SWAP2 SWAP1 PUSH2 0x3117 JUMP JUMPDEST PUSH2 0xB0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0x325F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH2 0xD1F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x3304 JUMP JUMPDEST PUSH2 0xDAB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x33D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x13F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24D PUSH2 0x153A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x269 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x264 SWAP2 SWAP1 PUSH2 0x33E9 JUMP JUMPDEST PUSH2 0x154C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x285 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x280 SWAP2 SWAP1 PUSH2 0x30EC JUMP JUMPDEST PUSH2 0x17CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x292 SWAP2 SWAP1 PUSH2 0x34B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A3 PUSH2 0x1848 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B0 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C1 PUSH2 0x1870 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CF SWAP3 SWAP2 SWAP1 PUSH2 0x3525 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2ED SWAP2 SWAP1 PUSH2 0x354C JUMP JUMPDEST PUSH2 0x1893 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2FC PUSH2 0x1A15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x309 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x327 SWAP2 SWAP1 PUSH2 0x35C6 JUMP JUMPDEST PUSH2 0x1A3D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x357 SWAP2 SWAP1 PUSH2 0x30EC JUMP JUMPDEST PUSH2 0x2001 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x366 PUSH2 0x20AD JUMP JUMPDEST PUSH2 0x36E PUSH2 0x212B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x378 PUSH2 0x20AD JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3E6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3DD SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x4E8 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x49E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x495 SWAP1 PUSH2 0x3712 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x5E4 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x5E3 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x59E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x595 SWAP1 PUSH2 0x37A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x62F JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x651 PUSH2 0x20AD JUMP JUMPDEST PUSH2 0x65A PUSH0 PUSH2 0x218C JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6E3 SWAP1 PUSH2 0x3808 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x74D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x744 SWAP1 PUSH2 0x3870 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x7AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A6 SWAP1 PUSH2 0x38D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0x806 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7FD SWAP1 PUSH2 0x3940 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 GT ISZERO PUSH2 0x8E0 JUMPI PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x89E SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8BA JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x8DE SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 DUP4 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x970 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP1 POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0xA16 SWAP2 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA33 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA4F JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xA73 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xAA4 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SUB PUSH2 0xB06 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xB0A JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB17 PUSH2 0x2E9E JUMP JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xD28 PUSH2 0x21BC JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD49 PUSH2 0x1A15 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD96 SWAP1 PUSH2 0x3AF6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDA8 DUP2 PUSH2 0x218C JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xDB4 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0xDC1 DUP10 DUP10 DUP7 DUP10 DUP10 PUSH2 0x220D JUMP JUMPDEST PUSH0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0xE06 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDFD SWAP1 PUSH2 0x3B5E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP13 PUSH2 0xE30 SWAP2 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE4E SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE6A JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xE8E SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xEDD SWAP1 PUSH2 0x3BB1 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD CHAINID PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF35 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3BF8 JUMP JUMPDEST 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFE4 SWAP1 PUSH2 0x3C77 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x64 DUP9 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x100C JUMPI PUSH0 SWAP1 POP PUSH2 0x10E5 JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 DUP2 PUSH1 0x60 ADD MLOAD GT PUSH2 0x10C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10BB SWAP1 PUSH2 0x3CDF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 PUSH1 0x60 ADD MLOAD DUP12 PUSH2 0x10D7 SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x10E1 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x40CCD1CEB111A3C186EF9911E1B876DC1F789ED331B86097B3B8851055B6A137 DUP5 DUP7 DUP14 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x13DB SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3E1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x141F JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x144B JUMPI POP PUSH2 0x142E ADDRESS PUSH2 0x23BA JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x144A JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x148A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1481 SWAP1 PUSH2 0x3EDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x14C5 JUMPI PUSH1 0x1 PUSH0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x14D7 PUSH2 0x23DC JUMP JUMPDEST PUSH2 0x14DF PUSH2 0x2434 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1537 JUMPI PUSH0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x152E SWAP2 SWAP1 PUSH2 0x3F3D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x1542 PUSH2 0x20AD JUMP JUMPDEST PUSH2 0x154A PUSH2 0x248C JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1554 PUSH2 0x20AD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x15D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15CB SWAP1 PUSH2 0x3FA0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x1619 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1610 SWAP1 PUSH2 0x402E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x165E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1655 SWAP1 PUSH2 0x40BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x16A3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x169A SWAP1 PUSH2 0x414A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x16E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16DF SWAP1 PUSH2 0x41D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x17BB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x41F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x17D2 PUSH2 0x2F51 JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x98 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x97 SLOAD SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x189B PUSH2 0x20AD JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1909 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1900 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x1918 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x1957 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x194E SWAP1 PUSH2 0x4283 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1A10 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A07 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1ACD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AC4 SWAP1 PUSH2 0x3808 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B2E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B25 SWAP1 PUSH2 0x3870 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B90 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B87 SWAP1 PUSH2 0x38D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C48 SWAP2 SWAP1 PUSH2 0x42A1 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1D33 JUMPI PUSH1 0x1 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ PUSH2 0x1D32 JUMPI PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD SUB PUSH2 0x1D27 JUMPI PUSH2 0x1D22 DUP7 DUP7 PUSH2 0x24EE JUMP JUMPDEST PUSH2 0x1D31 JUMP JUMPDEST PUSH2 0x1D30 DUP7 PUSH2 0x2953 JUMP JUMPDEST JUMPDEST JUMPDEST JUMPDEST PUSH0 DUP2 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1D5F SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x1D69 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1D8E SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD GT ISZERO PUSH2 0x1F25 JUMPI PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP3 PUSH1 0x60 ADD MLOAD DUP5 PUSH2 0x1E6A SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x1E74 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP DUP1 DUP4 PUSH2 0x1E82 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP3 POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EE1 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EFD JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1F21 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP POP POP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP8 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F60 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F7C JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1FA0 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP8 PUSH32 0x98ECE21E01A01CBE1D1C0DAD3B053C8FBD368F99BE78BE958FCF1D1D13FD249A DUP11 DUP9 PUSH1 0x40 MLOAD PUSH2 0x1FEA SWAP3 SWAP2 SWAP1 PUSH2 0x4310 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP4 POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2009 PUSH2 0x20AD JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2068 PUSH2 0x1848 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x20B5 PUSH2 0x21BC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20D3 PUSH2 0x1848 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2129 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2120 SWAP1 PUSH2 0x4381 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2133 PUSH2 0x2CC9 JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x2175 PUSH2 0x21BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2182 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x21B9 DUP2 PUSH2 0x2D12 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x21CB PUSH2 0x634 JUMP JUMPDEST ISZERO PUSH2 0x220B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2202 SWAP1 PUSH2 0x43E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x228D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2284 SWAP1 PUSH2 0x4451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP5 SUB PUSH2 0x22CF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22C6 SWAP1 PUSH2 0x44B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x233D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2334 SWAP1 PUSH2 0x4521 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 EQ PUSH2 0x23B3 JUMPI PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x23B2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23A9 SWAP1 PUSH2 0x4589 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x242A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2421 SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2432 PUSH2 0x2DD5 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2482 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2479 SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x248A PUSH2 0x2E35 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x2494 PUSH2 0x21C3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x24D7 PUSH2 0x21BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24E4 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH0 ADD MLOAD DUP4 PUSH2 0x25BE SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x25C8 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP4 PUSH2 0x25DE SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x25E8 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP PUSH0 DUP3 DUP5 PUSH2 0x25F7 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT ISZERO PUSH2 0x26E4 JUMPI PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x26A2 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x26BE JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x26E2 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 DUP5 PUSH2 0x26F1 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST GT ISZERO PUSH2 0x27B2 JUMPI PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP8 DUP5 DUP7 PUSH2 0x2753 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2770 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x278C JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x27B0 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 GT ISZERO PUSH2 0x288C JUMPI PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x284A SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2866 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x288A SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST DUP1 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP7 PUSH32 0x831C7CC0006D91462607C476603366C48469D125DE6228C0791A7090EFD7F7A4 DUP3 DUP5 DUP7 PUSH2 0x2932 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH2 0x2942 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4635 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH1 0x97 SLOAD PUSH2 0x2A26 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST DUP4 PUSH2 0x2A31 SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x2A3B SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 DUP4 PUSH2 0x2A4A SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP1 POP PUSH0 DUP3 GT ISZERO PUSH2 0x2B37 JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AF5 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B11 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2B35 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH0 DUP2 GT ISZERO PUSH2 0x2C11 JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2BCF SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2BEB JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2C0F SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST DUP2 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 PUSH32 0x88592047496A7850992DC5E8CD92A9B633CEF0D191A4F5E87FD745C7D382630A DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x2CBA SWAP3 SWAP2 SWAP1 PUSH2 0x466A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2CD1 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x2D10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D07 SWAP1 PUSH2 0x46DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2E23 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E1A SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2E33 PUSH2 0x2E2E PUSH2 0x21BC JUMP JUMPDEST PUSH2 0x218C JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2E83 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E7A SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2F8F DUP2 PUSH2 0x2F7D JUMP JUMPDEST DUP2 EQ PUSH2 0x2F99 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FAA DUP2 PUSH2 0x2F86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2FD9 DUP3 PUSH2 0x2FB0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2FE9 DUP2 PUSH2 0x2FCF JUMP JUMPDEST DUP2 EQ PUSH2 0x2FF3 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3004 DUP2 PUSH2 0x2FE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3020 JUMPI PUSH2 0x301F PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x302D DUP6 DUP3 DUP7 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x303E DUP6 DUP3 DUP7 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x305C DUP2 PUSH2 0x3048 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3075 PUSH0 DUP4 ADD DUP5 PUSH2 0x3053 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x308D DUP2 PUSH2 0x307B JUMP JUMPDEST DUP2 EQ PUSH2 0x3097 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30A8 DUP2 PUSH2 0x3084 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x30C4 JUMPI PUSH2 0x30C3 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x30D1 DUP6 DUP3 DUP7 ADD PUSH2 0x309A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x30E2 DUP6 DUP3 DUP7 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3101 JUMPI PUSH2 0x3100 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x310E DUP5 DUP3 DUP6 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x312C JUMPI PUSH2 0x312B PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3139 DUP5 DUP3 DUP6 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x314B DUP2 PUSH2 0x2FCF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x315A DUP2 PUSH2 0x307B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3169 DUP2 PUSH2 0x3048 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x318F DUP2 PUSH2 0x316F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x31AA PUSH0 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x31BD PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x31D0 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x31E3 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x31F6 PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x3209 PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x3160 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x321C PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x3160 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x322F PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x3244 PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x3186 JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x3259 PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x3273 PUSH0 DUP4 ADD DUP5 PUSH2 0x3195 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3282 DUP2 PUSH2 0x316F JUMP JUMPDEST DUP2 EQ PUSH2 0x328C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x329D DUP2 PUSH2 0x3279 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x32C4 JUMPI PUSH2 0x32C3 PUSH2 0x32A3 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32E1 JUMPI PUSH2 0x32E0 PUSH2 0x32A7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x32FD JUMPI PUSH2 0x32FC PUSH2 0x32AB JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xE0 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x3320 JUMPI PUSH2 0x331F PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x332D DUP12 DUP3 DUP13 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x20 PUSH2 0x333E DUP12 DUP3 DUP13 ADD PUSH2 0x309A JUMP JUMPDEST SWAP8 POP POP PUSH1 0x40 PUSH2 0x334F DUP12 DUP3 DUP13 ADD PUSH2 0x328F JUMP JUMPDEST SWAP7 POP POP PUSH1 0x60 PUSH2 0x3360 DUP12 DUP3 DUP13 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x80 PUSH2 0x3371 DUP12 DUP3 DUP13 ADD PUSH2 0x309A JUMP JUMPDEST SWAP5 POP POP PUSH1 0xA0 PUSH2 0x3382 DUP12 DUP3 DUP13 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xC0 DUP10 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x33A3 JUMPI PUSH2 0x33A2 PUSH2 0x2F79 JUMP JUMPDEST JUMPDEST PUSH2 0x33AF DUP12 DUP3 DUP13 ADD PUSH2 0x32AF JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 SWAP1 SWAP4 SWAP7 POP JUMP JUMPDEST PUSH2 0x33CA DUP2 PUSH2 0x2F7D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x33E3 PUSH0 DUP4 ADD DUP5 PUSH2 0x33C1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3402 JUMPI PUSH2 0x3401 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x340F DUP9 DUP3 DUP10 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x3420 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x3431 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x3442 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x3453 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x3474 PUSH0 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x3487 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x349A PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x34AD PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x34C6 PUSH0 DUP4 ADD DUP5 PUSH2 0x3460 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x34D5 DUP2 PUSH2 0x2FCF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x34EE PUSH0 DUP4 ADD DUP5 PUSH2 0x34CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3510 DUP2 PUSH2 0x34F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x351F DUP2 PUSH2 0x307B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3538 PUSH0 DUP4 ADD DUP6 PUSH2 0x3507 JUMP JUMPDEST PUSH2 0x3545 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3563 JUMPI PUSH2 0x3562 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3570 DUP7 DUP3 DUP8 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x3581 DUP7 DUP3 DUP8 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x3592 DUP7 DUP3 DUP8 ADD PUSH2 0x309A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x35A5 DUP2 PUSH2 0x34F4 JUMP JUMPDEST DUP2 EQ PUSH2 0x35AF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x35C0 DUP2 PUSH2 0x359C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x35DE JUMPI PUSH2 0x35DD PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x35EB DUP8 DUP3 DUP9 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x35FC DUP8 DUP3 DUP9 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x360D DUP8 DUP3 DUP9 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x361E DUP8 DUP3 DUP9 ADD PUSH2 0x35B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x366E PUSH1 0x15 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3679 DUP3 PUSH2 0x363A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x369B DUP2 PUSH2 0x3662 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x36FC PUSH1 0x25 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3707 DUP3 PUSH2 0x36A2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3729 DUP2 PUSH2 0x36F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x378A PUSH1 0x27 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3795 DUP3 PUSH2 0x3730 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x37B7 DUP2 PUSH2 0x377E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x37F2 PUSH1 0xE DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x37FD DUP3 PUSH2 0x37BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x381F DUP2 PUSH2 0x37E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x385A PUSH1 0xE DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3865 DUP3 PUSH2 0x3826 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3887 DUP2 PUSH2 0x384E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x38C2 PUSH1 0xD DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x38CD DUP3 PUSH2 0x388E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x38EF DUP2 PUSH2 0x38B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x392A PUSH1 0x15 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3935 DUP3 PUSH2 0x38F6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3957 DUP2 PUSH2 0x391E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3971 PUSH0 DUP4 ADD DUP6 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x397E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x398E DUP2 PUSH2 0x3048 JUMP JUMPDEST DUP2 EQ PUSH2 0x3998 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x39A9 DUP2 PUSH2 0x3985 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39C4 JUMPI PUSH2 0x39C3 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x39D1 DUP5 DUP3 DUP6 ADD PUSH2 0x399B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3A11 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3A1C DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3A34 JUMPI PUSH2 0x3A33 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3A44 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3A4F DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3A67 JUMPI PUSH2 0x3A66 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3A80 PUSH0 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3AE0 PUSH1 0x29 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3AEB DUP3 PUSH2 0x3A86 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3B0D DUP2 PUSH2 0x3AD4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3B48 PUSH1 0x12 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3B53 DUP3 PUSH2 0x3B14 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3B75 DUP2 PUSH2 0x3B3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3B8F PUSH0 DUP4 ADD DUP7 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x3B9C PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x3BA9 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3BBB DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3BED JUMPI PUSH2 0x3BEC PUSH2 0x39DA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3C0B PUSH0 DUP4 ADD DUP7 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x3C18 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x3C25 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F72646572416C72656164794578697374730000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3C61 PUSH1 0x12 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3C6C DUP3 PUSH2 0x3C2D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3C8E DUP2 PUSH2 0x3C55 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3CC9 PUSH1 0x1D DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3CD4 DUP3 PUSH2 0x3C95 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3CF6 DUP2 PUSH2 0x3CBD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3D07 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3D12 DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3D20 DUP2 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x3D37 JUMPI PUSH2 0x3D36 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3D75 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3D80 DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3D90 JUMPI PUSH2 0x3D8F PUSH2 0x3D3E JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3DBE PUSH2 0x3DB9 PUSH2 0x3DB4 DUP5 PUSH2 0x316F JUMP JUMPDEST PUSH2 0x3D9B JUMP JUMPDEST PUSH2 0x307B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3DCE DUP2 PUSH2 0x3DA4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3DFD DUP4 DUP6 PUSH2 0x362A JUMP JUMPDEST SWAP4 POP PUSH2 0x3E0A DUP4 DUP6 DUP5 PUSH2 0x3DD4 JUMP JUMPDEST PUSH2 0x3E13 DUP4 PUSH2 0x3DE2 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3E31 PUSH0 DUP4 ADD DUP9 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x3E3E PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x33C1 JUMP JUMPDEST PUSH2 0x3E4B PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x3DC5 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3E5E DUP2 DUP5 DUP7 PUSH2 0x3DF2 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3EC4 PUSH1 0x2E DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3ECF DUP3 PUSH2 0x3E6A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3EF1 DUP2 PUSH2 0x3EB8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3F27 PUSH2 0x3F22 PUSH2 0x3F1D DUP5 PUSH2 0x3EF8 JUMP JUMPDEST PUSH2 0x3D9B JUMP JUMPDEST PUSH2 0x3F01 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F37 DUP2 PUSH2 0x3F0D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3F50 PUSH0 DUP4 ADD DUP5 PUSH2 0x3F2E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3F8A PUSH1 0x1C DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3F95 DUP3 PUSH2 0x3F56 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3FB7 DUP2 PUSH2 0x3F7E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4018 PUSH1 0x23 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4023 DUP3 PUSH2 0x3FBE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4045 DUP2 PUSH2 0x400C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x40A6 PUSH1 0x27 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x40B1 DUP3 PUSH2 0x404C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x40D3 DUP2 PUSH2 0x409A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4134 PUSH1 0x25 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x413F DUP3 PUSH2 0x40DA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4161 DUP2 PUSH2 0x4128 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x41C2 PUSH1 0x2A DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x41CD DUP3 PUSH2 0x4168 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x41EF DUP2 PUSH2 0x41B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x4209 PUSH0 DUP4 ADD DUP8 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4216 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4223 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4230 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x426D PUSH1 0x17 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4278 DUP3 PUSH2 0x4239 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x429A DUP2 PUSH2 0x4261 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x42AB DUP3 PUSH2 0x316F JUMP JUMPDEST SWAP2 POP PUSH2 0x42B6 DUP4 PUSH2 0x316F JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x42DA JUMPI PUSH2 0x42D9 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x42FA PUSH2 0x42F5 PUSH2 0x42F0 DUP5 PUSH2 0x34F4 JUMP JUMPDEST PUSH2 0x3D9B JUMP JUMPDEST PUSH2 0x316F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x430A DUP2 PUSH2 0x42E0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x4323 PUSH0 DUP4 ADD DUP6 PUSH2 0x33C1 JUMP JUMPDEST PUSH2 0x4330 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4301 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x436B PUSH1 0x20 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4376 DUP3 PUSH2 0x4337 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4398 DUP2 PUSH2 0x435F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x43D3 PUSH1 0x10 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x43DE DUP3 PUSH2 0x439F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4400 DUP2 PUSH2 0x43C7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x443B PUSH1 0x11 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4446 DUP3 PUSH2 0x4407 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4468 DUP2 PUSH2 0x442F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x44A3 PUSH1 0xC DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x44AE DUP3 PUSH2 0x446F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x44D0 DUP2 PUSH2 0x4497 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x450B PUSH1 0x10 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4516 DUP3 PUSH2 0x44D7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4538 DUP2 PUSH2 0x44FF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4573 PUSH1 0x19 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x457E DUP3 PUSH2 0x453F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x45A0 DUP2 PUSH2 0x4567 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4601 PUSH1 0x2B DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x460C DUP3 PUSH2 0x45A7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x462E DUP2 PUSH2 0x45F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x4648 PUSH0 DUP4 ADD DUP7 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4655 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4662 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x467D PUSH0 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x468A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x46C5 PUSH1 0x14 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x46D0 DUP3 PUSH2 0x4691 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x46F2 DUP2 PUSH2 0x46B9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF9 SWAP8 PUSH22 0x96DA9AD2A245337CC030A1F8009FD0587D8173B6E1AC LOG3 0xAD 0xD1 0xD9 0xF8 PUSH0 0xF7 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"390:10167:10:-:0;;;708:44;;;;;;;;;;726:22;:20;;;:22;;:::i;:::-;390:10167;;5939:280:2;6007:13;;;;;;;;;;;6006:14;5998:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6094:15;6078:31;;:12;;;;;;;;;;:31;;;6074:139;;6140:15;6125:12;;:30;;;;;;;;;;;;;;;;;;6174:28;6186:15;6174:28;;;;;;:::i;:::-;;;;;;;;6074:139;5939:280::o;7:169:14:-;91:11;125:6;120:3;113:19;165:4;160:3;156:14;141:29;;7:169;;;;:::o;182:226::-;322:34;318:1;310:6;306:14;299:58;391:9;386:2;378:6;374:15;367:34;182:226;:::o;414:366::-;556:3;577:67;641:2;636:3;577:67;:::i;:::-;570:74;;653:93;742:3;653:93;:::i;:::-;771:2;766:3;762:12;755:19;;414:366;;;:::o;786:419::-;952:4;990:2;979:9;975:18;967:26;;1039:9;1033:4;1029:20;1025:1;1014:9;1010:17;1003:47;1067:131;1193:4;1067:131;:::i;:::-;1059:139;;786:419;;;:::o;1211:86::-;1246:7;1286:4;1279:5;1275:16;1264:27;;1211:86;;;:::o;1303:112::-;1386:22;1402:5;1386:22;:::i;:::-;1381:3;1374:35;1303:112;;:::o;1421:214::-;1510:4;1548:2;1537:9;1533:18;1525:26;;1561:67;1625:1;1614:9;1610:17;1601:6;1561:67;:::i;:::-;1421:214;;;;:::o;390:10167:10:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@__Ownable2Step_init_26":{"entryPoint":9180,"id":26,"parameterSlots":0,"returnSlots":0},"@__Ownable_init_unchained_145":{"entryPoint":11733,"id":145,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_440":{"entryPoint":9268,"id":440,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_unchained_450":{"entryPoint":11829,"id":450,"parameterSlots":0,"returnSlots":0},"@_checkOwner_176":{"entryPoint":8365,"id":176,"parameterSlots":0,"returnSlots":0},"@_handleFxTransferFeeSplitting_2489":{"entryPoint":10579,"id":2489,"parameterSlots":1,"returnSlots":0},"@_handleLocalTransferFeeSplitting_2397":{"entryPoint":9454,"id":2397,"parameterSlots":2,"returnSlots":0},"@_handler_1948":{"entryPoint":8717,"id":1948,"parameterSlots":5,"returnSlots":0},"@_msgSender_894":{"entryPoint":8636,"id":894,"parameterSlots":0,"returnSlots":1},"@_pause_514":{"entryPoint":9356,"id":514,"parameterSlots":0,"returnSlots":0},"@_requireNotPaused_487":{"entryPoint":8643,"id":487,"parameterSlots":0,"returnSlots":0},"@_requirePaused_498":{"entryPoint":11465,"id":498,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_233":{"entryPoint":11538,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":8588,"id":78,"parameterSlots":1,"returnSlots":0},"@_unpause_530":{"entryPoint":8491,"id":530,"parameterSlots":0,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":3359,"id":100,"parameterSlots":0,"returnSlots":0},"@createOrder_1892":{"entryPoint":3499,"id":1892,"parameterSlots":8,"returnSlots":1},"@getFeeDetails_2273":{"entryPoint":6256,"id":2273,"parameterSlots":0,"returnSlots":2},"@getOrderInfo_2241":{"entryPoint":2831,"id":2241,"parameterSlots":1,"returnSlots":1},"@getTokenFeeSettings_2765":{"entryPoint":6090,"id":2765,"parameterSlots":1,"returnSlots":1},"@initialize_1695":{"entryPoint":5104,"id":1695,"parameterSlots":0,"returnSlots":0},"@isContract_554":{"entryPoint":9146,"id":554,"parameterSlots":1,"returnSlots":1},"@isTokenSupported_2260":{"entryPoint":2743,"id":2260,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":6216,"id":162,"parameterSlots":0,"returnSlots":1},"@pause_1718":{"entryPoint":5434,"id":1718,"parameterSlots":0,"returnSlots":0},"@paused_475":{"entryPoint":1588,"id":475,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":6677,"id":41,"parameterSlots":0,"returnSlots":1},"@refund_2227":{"entryPoint":1628,"id":2227,"parameterSlots":2,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":1609,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_2751":{"entryPoint":5452,"id":2751,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_2606":{"entryPoint":6291,"id":2606,"parameterSlots":3,"returnSlots":0},"@settle_2121":{"entryPoint":6717,"id":2121,"parameterSlots":4,"returnSlots":1},"@transferOwnership_61":{"entryPoint":8193,"id":61,"parameterSlots":1,"returnSlots":0},"@unpause_1728":{"entryPoint":862,"id":1728,"parameterSlots":0,"returnSlots":0},"@updateProtocolAddress_2678":{"entryPoint":880,"id":2678,"parameterSlots":2,"returnSlots":0},"abi_decode_t_address":{"entryPoint":12278,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bool_fromMemory":{"entryPoint":14747,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":12188,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_string_calldata_ptr":{"entryPoint":12975,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_t_uint256":{"entryPoint":12442,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint64":{"entryPoint":13746,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint96":{"entryPoint":12943,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":12524,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":13289,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr":{"entryPoint":13060,"id":null,"parameterSlots":2,"returnSlots":8},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":14767,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32":{"entryPoint":12567,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":12298,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":13644,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64":{"entryPoint":13766,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_bytes32":{"entryPoint":12462,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_t_address_to_t_address":{"entryPoint":12610,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":13516,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bool_to_t_bool":{"entryPoint":12640,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":12371,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bytes32_to_t_bytes32_fromStack":{"entryPoint":13249,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack":{"entryPoint":16174,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":15858,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack":{"entryPoint":14518,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack":{"entryPoint":18105,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":13922,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack":{"entryPoint":16538,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":15060,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack":{"entryPoint":15445,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack":{"entryPoint":16822,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack":{"entryPoint":16254,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack":{"entryPoint":17559,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack":{"entryPoint":16396,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack":{"entryPoint":17351,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack":{"entryPoint":16056,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":16993,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack":{"entryPoint":14414,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":17247,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack":{"entryPoint":16680,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":14064,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack":{"entryPoint":15549,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack":{"entryPoint":14622,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack":{"entryPoint":17663,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack":{"entryPoint":15164,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack":{"entryPoint":17455,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack":{"entryPoint":17909,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":14206,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack":{"entryPoint":14310,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack":{"entryPoint":17767,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_Order_$2855_memory_ptr_to_t_struct$_Order_$2855_memory_ptr_fromStack":{"entryPoint":12693,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack":{"entryPoint":13408,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256":{"entryPoint":12625,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":13590,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint64_fromStack":{"entryPoint":13575,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint96_fromStack":{"entryPoint":17153,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint256_fromStack":{"entryPoint":15813,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint96":{"entryPoint":12678,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":13531,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":15228,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":14686,"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":15352,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":12386,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":13264,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed":{"entryPoint":17168,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed":{"entryPoint":16189,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14552,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18139,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13956,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16572,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15094,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15479,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16856,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16288,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17593,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16430,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17385,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16090,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17027,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14448,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17281,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16714,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14098,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15583,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14656,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17697,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15198,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17489,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17943,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14240,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14344,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17801,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_Order_$2855_memory_ptr__to_t_struct$_Order_$2855_memory_ptr__fromStack_reversed":{"entryPoint":12895,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$2516_memory_ptr__to_t_struct$_TokenFeeSettings_$2516_memory_ptr__fromStack_reversed":{"entryPoint":13491,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":14957,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15902,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":18026,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":17973,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":16886,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed":{"entryPoint":13605,"id":null,"parameterSlots":3,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":13866,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":14906,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":15723,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":15613,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":14855,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint96":{"entryPoint":17057,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":12239,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":12360,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":12157,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_rational_1_by_1":{"entryPoint":16120,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":12208,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":12411,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint64":{"entryPoint":13556,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":16129,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint96":{"entryPoint":12655,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_rational_1_by_1_to_t_uint8":{"entryPoint":16141,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint64_to_t_uint96":{"entryPoint":17120,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint96_to_t_uint256":{"entryPoint":15780,"id":null,"parameterSlots":1,"returnSlots":1},"copy_calldata_to_memory_with_cleanup":{"entryPoint":15828,"id":null,"parameterSlots":3,"returnSlots":0},"identity":{"entryPoint":15771,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint256":{"entryPoint":15281,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":14810,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":15678,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490":{"entryPoint":12967,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":12963,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef":{"entryPoint":12971,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":12153,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":12149,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":15842,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd":{"entryPoint":14478,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a":{"entryPoint":18065,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":13882,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b":{"entryPoint":16460,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":14982,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe":{"entryPoint":15405,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029":{"entryPoint":16744,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c":{"entryPoint":16214,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2":{"entryPoint":17519,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8":{"entryPoint":16318,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a":{"entryPoint":17311,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759":{"entryPoint":15978,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":16953,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5":{"entryPoint":14374,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":17207,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d":{"entryPoint":16602,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":13986,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934":{"entryPoint":15509,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de":{"entryPoint":14582,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7":{"entryPoint":17623,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4":{"entryPoint":15124,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1":{"entryPoint":17415,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b":{"entryPoint":17831,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":14128,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243":{"entryPoint":14270,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8":{"entryPoint":17727,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":12256,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bool":{"entryPoint":14725,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":12166,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":12420,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint64":{"entryPoint":13724,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint96":{"entryPoint":12921,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:48698:14","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:14","statements":[{"nodeType":"YulAssignment","src":"57:19:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:14","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:14"},"nodeType":"YulFunctionCall","src":"67:9:14"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:14"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:14","type":""}],"src":"7:75:14"},{"body":{"nodeType":"YulBlock","src":"177:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:14"},"nodeType":"YulFunctionCall","src":"187:12:14"},"nodeType":"YulExpressionStatement","src":"187:12:14"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:14"},{"body":{"nodeType":"YulBlock","src":"300:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:14"},"nodeType":"YulFunctionCall","src":"310:12:14"},"nodeType":"YulExpressionStatement","src":"310:12:14"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:14"},{"body":{"nodeType":"YulBlock","src":"379:32:14","statements":[{"nodeType":"YulAssignment","src":"389:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:14"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:14","type":""}],"src":"334:77:14"},{"body":{"nodeType":"YulBlock","src":"460:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:14"},"nodeType":"YulFunctionCall","src":"519:12:14"},"nodeType":"YulExpressionStatement","src":"519:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:14"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:14"},"nodeType":"YulFunctionCall","src":"490:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:14"},"nodeType":"YulFunctionCall","src":"480:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:14"},"nodeType":"YulFunctionCall","src":"473:43:14"},"nodeType":"YulIf","src":"470:63:14"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:14","type":""}],"src":"417:122:14"},{"body":{"nodeType":"YulBlock","src":"597:87:14","statements":[{"nodeType":"YulAssignment","src":"607:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:14"},"nodeType":"YulFunctionCall","src":"616:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:14"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:14"},"nodeType":"YulFunctionCall","src":"645:33:14"},"nodeType":"YulExpressionStatement","src":"645:33:14"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:14","type":""}],"src":"545:139:14"},{"body":{"nodeType":"YulBlock","src":"735:81:14","statements":[{"nodeType":"YulAssignment","src":"745:65:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"760:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"767:42:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"756:3:14"},"nodeType":"YulFunctionCall","src":"756:54:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"745:7:14"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"717:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"727:7:14","type":""}],"src":"690:126:14"},{"body":{"nodeType":"YulBlock","src":"867:51:14","statements":[{"nodeType":"YulAssignment","src":"877:35:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"906:5:14"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"888:17:14"},"nodeType":"YulFunctionCall","src":"888:24:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"877:7:14"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"849:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"859:7:14","type":""}],"src":"822:96:14"},{"body":{"nodeType":"YulBlock","src":"967:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"1024:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1033:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1036:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1026:6:14"},"nodeType":"YulFunctionCall","src":"1026:12:14"},"nodeType":"YulExpressionStatement","src":"1026:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"990:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1015:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"997:17:14"},"nodeType":"YulFunctionCall","src":"997:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"987:2:14"},"nodeType":"YulFunctionCall","src":"987:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"980:6:14"},"nodeType":"YulFunctionCall","src":"980:43:14"},"nodeType":"YulIf","src":"977:63:14"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"960:5:14","type":""}],"src":"924:122:14"},{"body":{"nodeType":"YulBlock","src":"1104:87:14","statements":[{"nodeType":"YulAssignment","src":"1114:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1136:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1123:12:14"},"nodeType":"YulFunctionCall","src":"1123:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1114:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1179:5:14"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"1152:26:14"},"nodeType":"YulFunctionCall","src":"1152:33:14"},"nodeType":"YulExpressionStatement","src":"1152:33:14"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1082:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"1090:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1098:5:14","type":""}],"src":"1052:139:14"},{"body":{"nodeType":"YulBlock","src":"1280:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"1326:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"1328:77:14"},"nodeType":"YulFunctionCall","src":"1328:79:14"},"nodeType":"YulExpressionStatement","src":"1328:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1301:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"1310:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1297:3:14"},"nodeType":"YulFunctionCall","src":"1297:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"1322:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1293:3:14"},"nodeType":"YulFunctionCall","src":"1293:32:14"},"nodeType":"YulIf","src":"1290:119:14"},{"nodeType":"YulBlock","src":"1419:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"1434:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"1448:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1438:6:14","type":""}]},{"nodeType":"YulAssignment","src":"1463:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1498:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"1509:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:14"},"nodeType":"YulFunctionCall","src":"1494:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1518:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"1473:20:14"},"nodeType":"YulFunctionCall","src":"1473:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1463:6:14"}]}]},{"nodeType":"YulBlock","src":"1546:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"1561:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"1575:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1565:6:14","type":""}]},{"nodeType":"YulAssignment","src":"1591:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1626:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"1637:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1622:3:14"},"nodeType":"YulFunctionCall","src":"1622:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1646:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"1601:20:14"},"nodeType":"YulFunctionCall","src":"1601:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1591:6:14"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1242:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1253:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1265:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1273:6:14","type":""}],"src":"1197:474:14"},{"body":{"nodeType":"YulBlock","src":"1719:48:14","statements":[{"nodeType":"YulAssignment","src":"1729:32:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1754:5:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1747:6:14"},"nodeType":"YulFunctionCall","src":"1747:13:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1740:6:14"},"nodeType":"YulFunctionCall","src":"1740:21:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1729:7:14"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1701:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1711:7:14","type":""}],"src":"1677:90:14"},{"body":{"nodeType":"YulBlock","src":"1832:50:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1849:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1869:5:14"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"1854:14:14"},"nodeType":"YulFunctionCall","src":"1854:21:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1842:6:14"},"nodeType":"YulFunctionCall","src":"1842:34:14"},"nodeType":"YulExpressionStatement","src":"1842:34:14"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1820:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1827:3:14","type":""}],"src":"1773:109:14"},{"body":{"nodeType":"YulBlock","src":"1980:118:14","statements":[{"nodeType":"YulAssignment","src":"1990:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2002:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"2013:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1998:3:14"},"nodeType":"YulFunctionCall","src":"1998:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1990:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2064:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2077:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"2088:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2073:3:14"},"nodeType":"YulFunctionCall","src":"2073:17:14"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"2026:37:14"},"nodeType":"YulFunctionCall","src":"2026:65:14"},"nodeType":"YulExpressionStatement","src":"2026:65:14"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1952:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1964:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1975:4:14","type":""}],"src":"1888:210:14"},{"body":{"nodeType":"YulBlock","src":"2149:32:14","statements":[{"nodeType":"YulAssignment","src":"2159:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"2170:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"2159:7:14"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2131:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"2141:7:14","type":""}],"src":"2104:77:14"},{"body":{"nodeType":"YulBlock","src":"2230:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"2287:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2296:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2299:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2289:6:14"},"nodeType":"YulFunctionCall","src":"2289:12:14"},"nodeType":"YulExpressionStatement","src":"2289:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2253:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2278:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"2260:17:14"},"nodeType":"YulFunctionCall","src":"2260:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2250:2:14"},"nodeType":"YulFunctionCall","src":"2250:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2243:6:14"},"nodeType":"YulFunctionCall","src":"2243:43:14"},"nodeType":"YulIf","src":"2240:63:14"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2223:5:14","type":""}],"src":"2187:122:14"},{"body":{"nodeType":"YulBlock","src":"2367:87:14","statements":[{"nodeType":"YulAssignment","src":"2377:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2399:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2386:12:14"},"nodeType":"YulFunctionCall","src":"2386:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2377:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2442:5:14"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"2415:26:14"},"nodeType":"YulFunctionCall","src":"2415:33:14"},"nodeType":"YulExpressionStatement","src":"2415:33:14"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2345:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2353:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2361:5:14","type":""}],"src":"2315:139:14"},{"body":{"nodeType":"YulBlock","src":"2543:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"2589:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2591:77:14"},"nodeType":"YulFunctionCall","src":"2591:79:14"},"nodeType":"YulExpressionStatement","src":"2591:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2564:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"2573:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2560:3:14"},"nodeType":"YulFunctionCall","src":"2560:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"2585:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2556:3:14"},"nodeType":"YulFunctionCall","src":"2556:32:14"},"nodeType":"YulIf","src":"2553:119:14"},{"nodeType":"YulBlock","src":"2682:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2697:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2711:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2701:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2726:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2761:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2772:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2757:3:14"},"nodeType":"YulFunctionCall","src":"2757:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2781:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2736:20:14"},"nodeType":"YulFunctionCall","src":"2736:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2726:6:14"}]}]},{"nodeType":"YulBlock","src":"2809:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2824:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2838:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2828:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2854:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2889:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2900:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2885:3:14"},"nodeType":"YulFunctionCall","src":"2885:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2909:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"2864:20:14"},"nodeType":"YulFunctionCall","src":"2864:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2854:6:14"}]}]}]},"name":"abi_decode_tuple_t_uint256t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2505:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2516:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2528:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2536:6:14","type":""}],"src":"2460:474:14"},{"body":{"nodeType":"YulBlock","src":"3006:263:14","statements":[{"body":{"nodeType":"YulBlock","src":"3052:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3054:77:14"},"nodeType":"YulFunctionCall","src":"3054:79:14"},"nodeType":"YulExpressionStatement","src":"3054:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3027:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"3036:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3023:3:14"},"nodeType":"YulFunctionCall","src":"3023:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"3048:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3019:3:14"},"nodeType":"YulFunctionCall","src":"3019:32:14"},"nodeType":"YulIf","src":"3016:119:14"},{"nodeType":"YulBlock","src":"3145:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3160:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"3174:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3164:6:14","type":""}]},{"nodeType":"YulAssignment","src":"3189:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3224:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"3235:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3220:3:14"},"nodeType":"YulFunctionCall","src":"3220:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3244:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"3199:20:14"},"nodeType":"YulFunctionCall","src":"3199:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3189:6:14"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2976:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2987:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2999:6:14","type":""}],"src":"2940:329:14"},{"body":{"nodeType":"YulBlock","src":"3341:263:14","statements":[{"body":{"nodeType":"YulBlock","src":"3387:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3389:77:14"},"nodeType":"YulFunctionCall","src":"3389:79:14"},"nodeType":"YulExpressionStatement","src":"3389:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3362:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"3371:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3358:3:14"},"nodeType":"YulFunctionCall","src":"3358:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"3383:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3354:3:14"},"nodeType":"YulFunctionCall","src":"3354:32:14"},"nodeType":"YulIf","src":"3351:119:14"},{"nodeType":"YulBlock","src":"3480:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3495:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"3509:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3499:6:14","type":""}]},{"nodeType":"YulAssignment","src":"3524:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3559:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"3570:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3555:3:14"},"nodeType":"YulFunctionCall","src":"3555:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3579:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"3534:20:14"},"nodeType":"YulFunctionCall","src":"3534:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3524:6:14"}]}]}]},"name":"abi_decode_tuple_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3311:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3322:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3334:6:14","type":""}],"src":"3275:329:14"},{"body":{"nodeType":"YulBlock","src":"3665:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3682:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3705:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"3687:17:14"},"nodeType":"YulFunctionCall","src":"3687:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3675:6:14"},"nodeType":"YulFunctionCall","src":"3675:37:14"},"nodeType":"YulExpressionStatement","src":"3675:37:14"}]},"name":"abi_encode_t_address_to_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3653:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3660:3:14","type":""}],"src":"3610:108:14"},{"body":{"nodeType":"YulBlock","src":"3779:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3796:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3819:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3801:17:14"},"nodeType":"YulFunctionCall","src":"3801:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3789:6:14"},"nodeType":"YulFunctionCall","src":"3789:37:14"},"nodeType":"YulExpressionStatement","src":"3789:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3767:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3774:3:14","type":""}],"src":"3724:108:14"},{"body":{"nodeType":"YulBlock","src":"3887:50:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3904:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3924:5:14"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"3909:14:14"},"nodeType":"YulFunctionCall","src":"3909:21:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3897:6:14"},"nodeType":"YulFunctionCall","src":"3897:34:14"},"nodeType":"YulExpressionStatement","src":"3897:34:14"}]},"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3875:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3882:3:14","type":""}],"src":"3838:99:14"},{"body":{"nodeType":"YulBlock","src":"3987:65:14","statements":[{"nodeType":"YulAssignment","src":"3997:49:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4012:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4019:26:14","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4008:3:14"},"nodeType":"YulFunctionCall","src":"4008:38:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"3997:7:14"}]}]},"name":"cleanup_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3969:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"3979:7:14","type":""}],"src":"3943:109:14"},{"body":{"nodeType":"YulBlock","src":"4111:52:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4128:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4150:5:14"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"4133:16:14"},"nodeType":"YulFunctionCall","src":"4133:23:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4121:6:14"},"nodeType":"YulFunctionCall","src":"4121:36:14"},"nodeType":"YulExpressionStatement","src":"4121:36:14"}]},"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4099:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4106:3:14","type":""}],"src":"4058:105:14"},{"body":{"nodeType":"YulBlock","src":"4335:1838:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4345:28:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4361:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4366:6:14","type":"","value":"0x0140"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4357:3:14"},"nodeType":"YulFunctionCall","src":"4357:16:14"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"4349:4:14","type":""}]},{"nodeType":"YulBlock","src":"4383:166:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4420:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4450:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4457:4:14","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4446:3:14"},"nodeType":"YulFunctionCall","src":"4446:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4440:5:14"},"nodeType":"YulFunctionCall","src":"4440:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4424:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4510:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4528:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4533:4:14","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4524:3:14"},"nodeType":"YulFunctionCall","src":"4524:14:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"4476:33:14"},"nodeType":"YulFunctionCall","src":"4476:63:14"},"nodeType":"YulExpressionStatement","src":"4476:63:14"}]},{"nodeType":"YulBlock","src":"4559:165:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4595:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4625:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4632:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4621:3:14"},"nodeType":"YulFunctionCall","src":"4621:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4615:5:14"},"nodeType":"YulFunctionCall","src":"4615:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4599:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4685:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4703:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4708:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4699:3:14"},"nodeType":"YulFunctionCall","src":"4699:14:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"4651:33:14"},"nodeType":"YulFunctionCall","src":"4651:63:14"},"nodeType":"YulExpressionStatement","src":"4651:63:14"}]},{"nodeType":"YulBlock","src":"4734:178:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4783:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4813:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4820:4:14","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4809:3:14"},"nodeType":"YulFunctionCall","src":"4809:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4803:5:14"},"nodeType":"YulFunctionCall","src":"4803:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4787:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4873:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4891:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4896:4:14","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4887:3:14"},"nodeType":"YulFunctionCall","src":"4887:14:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"4839:33:14"},"nodeType":"YulFunctionCall","src":"4839:63:14"},"nodeType":"YulExpressionStatement","src":"4839:63:14"}]},{"nodeType":"YulBlock","src":"4922:169:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4962:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4992:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4999:4:14","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4988:3:14"},"nodeType":"YulFunctionCall","src":"4988:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4982:5:14"},"nodeType":"YulFunctionCall","src":"4982:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4966:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5052:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5070:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5075:4:14","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5066:3:14"},"nodeType":"YulFunctionCall","src":"5066:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5018:33:14"},"nodeType":"YulFunctionCall","src":"5018:63:14"},"nodeType":"YulExpressionStatement","src":"5018:63:14"}]},{"nodeType":"YulBlock","src":"5101:171:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5143:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5173:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"5180:4:14","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5169:3:14"},"nodeType":"YulFunctionCall","src":"5169:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5163:5:14"},"nodeType":"YulFunctionCall","src":"5163:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5147:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5233:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5251:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5256:4:14","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5247:3:14"},"nodeType":"YulFunctionCall","src":"5247:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5199:33:14"},"nodeType":"YulFunctionCall","src":"5199:63:14"},"nodeType":"YulExpressionStatement","src":"5199:63:14"}]},{"nodeType":"YulBlock","src":"5282:165:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5324:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5354:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"5361:4:14","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5350:3:14"},"nodeType":"YulFunctionCall","src":"5350:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5344:5:14"},"nodeType":"YulFunctionCall","src":"5344:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5328:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5408:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5426:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5431:4:14","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5422:3:14"},"nodeType":"YulFunctionCall","src":"5422:14:14"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"5380:27:14"},"nodeType":"YulFunctionCall","src":"5380:57:14"},"nodeType":"YulExpressionStatement","src":"5380:57:14"}]},{"nodeType":"YulBlock","src":"5457:164:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5498:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5528:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"5535:4:14","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5524:3:14"},"nodeType":"YulFunctionCall","src":"5524:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5518:5:14"},"nodeType":"YulFunctionCall","src":"5518:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5502:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5582:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5600:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5605:4:14","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5596:3:14"},"nodeType":"YulFunctionCall","src":"5596:14:14"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"5554:27:14"},"nodeType":"YulFunctionCall","src":"5554:57:14"},"nodeType":"YulExpressionStatement","src":"5554:57:14"}]},{"nodeType":"YulBlock","src":"5631:173:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5675:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5705:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"5712:4:14","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5701:3:14"},"nodeType":"YulFunctionCall","src":"5701:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5695:5:14"},"nodeType":"YulFunctionCall","src":"5695:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5679:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5765:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5783:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5788:4:14","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5779:3:14"},"nodeType":"YulFunctionCall","src":"5779:14:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"5731:33:14"},"nodeType":"YulFunctionCall","src":"5731:63:14"},"nodeType":"YulExpressionStatement","src":"5731:63:14"}]},{"nodeType":"YulBlock","src":"5814:172:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5855:45:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5885:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"5892:6:14","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5881:3:14"},"nodeType":"YulFunctionCall","src":"5881:18:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5875:5:14"},"nodeType":"YulFunctionCall","src":"5875:25:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"5859:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"5945:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5963:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5968:6:14","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5959:3:14"},"nodeType":"YulFunctionCall","src":"5959:16:14"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulIdentifier","src":"5913:31:14"},"nodeType":"YulFunctionCall","src":"5913:63:14"},"nodeType":"YulExpressionStatement","src":"5913:63:14"}]},{"nodeType":"YulBlock","src":"5996:170:14","statements":[{"nodeType":"YulVariableDeclaration","src":"6033:45:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6063:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"6070:6:14","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6059:3:14"},"nodeType":"YulFunctionCall","src":"6059:18:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6053:5:14"},"nodeType":"YulFunctionCall","src":"6053:25:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"6037:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"6125:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6143:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"6148:6:14","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6139:3:14"},"nodeType":"YulFunctionCall","src":"6139:16:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"6091:33:14"},"nodeType":"YulFunctionCall","src":"6091:65:14"},"nodeType":"YulExpressionStatement","src":"6091:65:14"}]}]},"name":"abi_encode_t_struct$_Order_$2855_memory_ptr_to_t_struct$_Order_$2855_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4322:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4329:3:14","type":""}],"src":"4223:1950:14"},{"body":{"nodeType":"YulBlock","src":"6323:171:14","statements":[{"nodeType":"YulAssignment","src":"6333:27:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6345:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"6356:3:14","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6341:3:14"},"nodeType":"YulFunctionCall","src":"6341:19:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6333:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6460:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6473:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"6484:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6469:3:14"},"nodeType":"YulFunctionCall","src":"6469:17:14"}],"functionName":{"name":"abi_encode_t_struct$_Order_$2855_memory_ptr_to_t_struct$_Order_$2855_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6370:89:14"},"nodeType":"YulFunctionCall","src":"6370:117:14"},"nodeType":"YulExpressionStatement","src":"6370:117:14"}]},"name":"abi_encode_tuple_t_struct$_Order_$2855_memory_ptr__to_t_struct$_Order_$2855_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6295:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6307:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6318:4:14","type":""}],"src":"6179:315:14"},{"body":{"nodeType":"YulBlock","src":"6542:78:14","statements":[{"body":{"nodeType":"YulBlock","src":"6598:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6607:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6610:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6600:6:14"},"nodeType":"YulFunctionCall","src":"6600:12:14"},"nodeType":"YulExpressionStatement","src":"6600:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6565:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6589:5:14"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"6572:16:14"},"nodeType":"YulFunctionCall","src":"6572:23:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6562:2:14"},"nodeType":"YulFunctionCall","src":"6562:34:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6555:6:14"},"nodeType":"YulFunctionCall","src":"6555:42:14"},"nodeType":"YulIf","src":"6552:62:14"}]},"name":"validator_revert_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6535:5:14","type":""}],"src":"6500:120:14"},{"body":{"nodeType":"YulBlock","src":"6677:86:14","statements":[{"nodeType":"YulAssignment","src":"6687:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6709:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6696:12:14"},"nodeType":"YulFunctionCall","src":"6696:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"6687:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6751:5:14"}],"functionName":{"name":"validator_revert_t_uint96","nodeType":"YulIdentifier","src":"6725:25:14"},"nodeType":"YulFunctionCall","src":"6725:32:14"},"nodeType":"YulExpressionStatement","src":"6725:32:14"}]},"name":"abi_decode_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"6655:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"6663:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"6671:5:14","type":""}],"src":"6626:137:14"},{"body":{"nodeType":"YulBlock","src":"6858:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6875:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6878:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6868:6:14"},"nodeType":"YulFunctionCall","src":"6868:12:14"},"nodeType":"YulExpressionStatement","src":"6868:12:14"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"6769:117:14"},{"body":{"nodeType":"YulBlock","src":"6981:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6998:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7001:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6991:6:14"},"nodeType":"YulFunctionCall","src":"6991:12:14"},"nodeType":"YulExpressionStatement","src":"6991:12:14"}]},"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulFunctionDefinition","src":"6892:117:14"},{"body":{"nodeType":"YulBlock","src":"7104:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7121:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7124:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7114:6:14"},"nodeType":"YulFunctionCall","src":"7114:12:14"},"nodeType":"YulExpressionStatement","src":"7114:12:14"}]},"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulFunctionDefinition","src":"7015:117:14"},{"body":{"nodeType":"YulBlock","src":"7227:478:14","statements":[{"body":{"nodeType":"YulBlock","src":"7276:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"7278:77:14"},"nodeType":"YulFunctionCall","src":"7278:79:14"},"nodeType":"YulExpressionStatement","src":"7278:79:14"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7255:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7263:4:14","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7251:3:14"},"nodeType":"YulFunctionCall","src":"7251:17:14"},{"name":"end","nodeType":"YulIdentifier","src":"7270:3:14"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7247:3:14"},"nodeType":"YulFunctionCall","src":"7247:27:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7240:6:14"},"nodeType":"YulFunctionCall","src":"7240:35:14"},"nodeType":"YulIf","src":"7237:122:14"},{"nodeType":"YulAssignment","src":"7368:30:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7391:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7378:12:14"},"nodeType":"YulFunctionCall","src":"7378:20:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"7368:6:14"}]},{"body":{"nodeType":"YulBlock","src":"7441:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulIdentifier","src":"7443:77:14"},"nodeType":"YulFunctionCall","src":"7443:79:14"},"nodeType":"YulExpressionStatement","src":"7443:79:14"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"7413:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7421:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7410:2:14"},"nodeType":"YulFunctionCall","src":"7410:30:14"},"nodeType":"YulIf","src":"7407:117:14"},{"nodeType":"YulAssignment","src":"7533:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7549:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7557:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7545:3:14"},"nodeType":"YulFunctionCall","src":"7545:17:14"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"7533:8:14"}]},{"body":{"nodeType":"YulBlock","src":"7616:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"7618:77:14"},"nodeType":"YulFunctionCall","src":"7618:79:14"},"nodeType":"YulExpressionStatement","src":"7618:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"7581:8:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"7595:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7603:4:14","type":"","value":"0x01"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"7591:3:14"},"nodeType":"YulFunctionCall","src":"7591:17:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7577:3:14"},"nodeType":"YulFunctionCall","src":"7577:32:14"},{"name":"end","nodeType":"YulIdentifier","src":"7611:3:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7574:2:14"},"nodeType":"YulFunctionCall","src":"7574:41:14"},"nodeType":"YulIf","src":"7571:128:14"}]},"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"7194:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"7202:3:14","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"7210:8:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"7220:6:14","type":""}],"src":"7152:553:14"},{"body":{"nodeType":"YulBlock","src":"7898:1214:14","statements":[{"body":{"nodeType":"YulBlock","src":"7945:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"7947:77:14"},"nodeType":"YulFunctionCall","src":"7947:79:14"},"nodeType":"YulExpressionStatement","src":"7947:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7919:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"7928:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7915:3:14"},"nodeType":"YulFunctionCall","src":"7915:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"7940:3:14","type":"","value":"224"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7911:3:14"},"nodeType":"YulFunctionCall","src":"7911:33:14"},"nodeType":"YulIf","src":"7908:120:14"},{"nodeType":"YulBlock","src":"8038:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8053:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8067:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8057:6:14","type":""}]},{"nodeType":"YulAssignment","src":"8082:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8117:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"8128:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8113:3:14"},"nodeType":"YulFunctionCall","src":"8113:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8137:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8092:20:14"},"nodeType":"YulFunctionCall","src":"8092:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8082:6:14"}]}]},{"nodeType":"YulBlock","src":"8165:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8180:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8194:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8184:6:14","type":""}]},{"nodeType":"YulAssignment","src":"8210:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8245:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"8256:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8241:3:14"},"nodeType":"YulFunctionCall","src":"8241:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8265:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"8220:20:14"},"nodeType":"YulFunctionCall","src":"8220:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"8210:6:14"}]}]},{"nodeType":"YulBlock","src":"8293:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8308:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8322:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8312:6:14","type":""}]},{"nodeType":"YulAssignment","src":"8338:62:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8372:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"8383:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8368:3:14"},"nodeType":"YulFunctionCall","src":"8368:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8392:7:14"}],"functionName":{"name":"abi_decode_t_uint96","nodeType":"YulIdentifier","src":"8348:19:14"},"nodeType":"YulFunctionCall","src":"8348:52:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"8338:6:14"}]}]},{"nodeType":"YulBlock","src":"8420:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8435:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8449:2:14","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8439:6:14","type":""}]},{"nodeType":"YulAssignment","src":"8465:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8500:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"8511:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8496:3:14"},"nodeType":"YulFunctionCall","src":"8496:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8520:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8475:20:14"},"nodeType":"YulFunctionCall","src":"8475:53:14"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"8465:6:14"}]}]},{"nodeType":"YulBlock","src":"8548:119:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8563:17:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8577:3:14","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8567:6:14","type":""}]},{"nodeType":"YulAssignment","src":"8594:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8629:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"8640:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8625:3:14"},"nodeType":"YulFunctionCall","src":"8625:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8649:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"8604:20:14"},"nodeType":"YulFunctionCall","src":"8604:53:14"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"8594:6:14"}]}]},{"nodeType":"YulBlock","src":"8677:119:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8692:17:14","value":{"kind":"number","nodeType":"YulLiteral","src":"8706:3:14","type":"","value":"160"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8696:6:14","type":""}]},{"nodeType":"YulAssignment","src":"8723:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8758:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"8769:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8754:3:14"},"nodeType":"YulFunctionCall","src":"8754:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8778:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8733:20:14"},"nodeType":"YulFunctionCall","src":"8733:53:14"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"8723:6:14"}]}]},{"nodeType":"YulBlock","src":"8806:299:14","statements":[{"nodeType":"YulVariableDeclaration","src":"8821:47:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8852:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8863:3:14","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8848:3:14"},"nodeType":"YulFunctionCall","src":"8848:19:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8835:12:14"},"nodeType":"YulFunctionCall","src":"8835:33:14"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8825:6:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"8915:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"8917:77:14"},"nodeType":"YulFunctionCall","src":"8917:79:14"},"nodeType":"YulExpressionStatement","src":"8917:79:14"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8887:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8895:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8884:2:14"},"nodeType":"YulFunctionCall","src":"8884:30:14"},"nodeType":"YulIf","src":"8881:117:14"},{"nodeType":"YulAssignment","src":"9012:83:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9067:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"9078:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9063:3:14"},"nodeType":"YulFunctionCall","src":"9063:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9087:7:14"}],"functionName":{"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulIdentifier","src":"9030:32:14"},"nodeType":"YulFunctionCall","src":"9030:65:14"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"9012:6:14"},{"name":"value7","nodeType":"YulIdentifier","src":"9020:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7812:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7823:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7835:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7843:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7851:6:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"7859:6:14","type":""},{"name":"value4","nodeType":"YulTypedName","src":"7867:6:14","type":""},{"name":"value5","nodeType":"YulTypedName","src":"7875:6:14","type":""},{"name":"value6","nodeType":"YulTypedName","src":"7883:6:14","type":""},{"name":"value7","nodeType":"YulTypedName","src":"7891:6:14","type":""}],"src":"7711:1401:14"},{"body":{"nodeType":"YulBlock","src":"9183:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9200:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9223:5:14"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"9205:17:14"},"nodeType":"YulFunctionCall","src":"9205:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9193:6:14"},"nodeType":"YulFunctionCall","src":"9193:37:14"},"nodeType":"YulExpressionStatement","src":"9193:37:14"}]},"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9171:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"9178:3:14","type":""}],"src":"9118:118:14"},{"body":{"nodeType":"YulBlock","src":"9340:124:14","statements":[{"nodeType":"YulAssignment","src":"9350:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9362:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9373:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9358:3:14"},"nodeType":"YulFunctionCall","src":"9358:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9350:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9430:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9443:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9454:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:14"},"nodeType":"YulFunctionCall","src":"9439:17:14"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"9386:43:14"},"nodeType":"YulFunctionCall","src":"9386:71:14"},"nodeType":"YulExpressionStatement","src":"9386:71:14"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9312:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9324:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9335:4:14","type":""}],"src":"9242:222:14"},{"body":{"nodeType":"YulBlock","src":"9604:777:14","statements":[{"body":{"nodeType":"YulBlock","src":"9651:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"9653:77:14"},"nodeType":"YulFunctionCall","src":"9653:79:14"},"nodeType":"YulExpressionStatement","src":"9653:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9625:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"9634:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9621:3:14"},"nodeType":"YulFunctionCall","src":"9621:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"9646:3:14","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9617:3:14"},"nodeType":"YulFunctionCall","src":"9617:33:14"},"nodeType":"YulIf","src":"9614:120:14"},{"nodeType":"YulBlock","src":"9744:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"9759:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"9773:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9763:6:14","type":""}]},{"nodeType":"YulAssignment","src":"9788:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9823:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"9834:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9819:3:14"},"nodeType":"YulFunctionCall","src":"9819:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9843:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"9798:20:14"},"nodeType":"YulFunctionCall","src":"9798:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"9788:6:14"}]}]},{"nodeType":"YulBlock","src":"9871:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"9886:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"9900:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9890:6:14","type":""}]},{"nodeType":"YulAssignment","src":"9916:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9951:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"9962:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9947:3:14"},"nodeType":"YulFunctionCall","src":"9947:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9971:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"9926:20:14"},"nodeType":"YulFunctionCall","src":"9926:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"9916:6:14"}]}]},{"nodeType":"YulBlock","src":"9999:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"10014:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"10028:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10018:6:14","type":""}]},{"nodeType":"YulAssignment","src":"10044:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10079:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"10090:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10075:3:14"},"nodeType":"YulFunctionCall","src":"10075:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10099:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"10054:20:14"},"nodeType":"YulFunctionCall","src":"10054:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"10044:6:14"}]}]},{"nodeType":"YulBlock","src":"10127:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"10142:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"10156:2:14","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10146:6:14","type":""}]},{"nodeType":"YulAssignment","src":"10172:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10207:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"10218:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10203:3:14"},"nodeType":"YulFunctionCall","src":"10203:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10227:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"10182:20:14"},"nodeType":"YulFunctionCall","src":"10182:53:14"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"10172:6:14"}]}]},{"nodeType":"YulBlock","src":"10255:119:14","statements":[{"nodeType":"YulVariableDeclaration","src":"10270:17:14","value":{"kind":"number","nodeType":"YulLiteral","src":"10284:3:14","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10274:6:14","type":""}]},{"nodeType":"YulAssignment","src":"10301:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10336:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"10347:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10332:3:14"},"nodeType":"YulFunctionCall","src":"10332:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10356:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"10311:20:14"},"nodeType":"YulFunctionCall","src":"10311:53:14"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"10301:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9542:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9553:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9565:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9573:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"9581:6:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"9589:6:14","type":""},{"name":"value4","nodeType":"YulTypedName","src":"9597:6:14","type":""}],"src":"9470:911:14"},{"body":{"nodeType":"YulBlock","src":"10623:799:14","statements":[{"nodeType":"YulVariableDeclaration","src":"10633:26:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10649:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10654:4:14","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10645:3:14"},"nodeType":"YulFunctionCall","src":"10645:14:14"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"10637:4:14","type":""}]},{"nodeType":"YulBlock","src":"10669:176:14","statements":[{"nodeType":"YulVariableDeclaration","src":"10716:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10746:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"10753:4:14","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10742:3:14"},"nodeType":"YulFunctionCall","src":"10742:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10736:5:14"},"nodeType":"YulFunctionCall","src":"10736:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10720:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10806:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10824:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10829:4:14","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10820:3:14"},"nodeType":"YulFunctionCall","src":"10820:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"10772:33:14"},"nodeType":"YulFunctionCall","src":"10772:63:14"},"nodeType":"YulExpressionStatement","src":"10772:63:14"}]},{"nodeType":"YulBlock","src":"10855:180:14","statements":[{"nodeType":"YulVariableDeclaration","src":"10906:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10936:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"10943:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10932:3:14"},"nodeType":"YulFunctionCall","src":"10932:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10926:5:14"},"nodeType":"YulFunctionCall","src":"10926:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10910:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10996:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11014:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11019:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11010:3:14"},"nodeType":"YulFunctionCall","src":"11010:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"10962:33:14"},"nodeType":"YulFunctionCall","src":"10962:63:14"},"nodeType":"YulExpressionStatement","src":"10962:63:14"}]},{"nodeType":"YulBlock","src":"11045:178:14","statements":[{"nodeType":"YulVariableDeclaration","src":"11094:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11124:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"11131:4:14","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11120:3:14"},"nodeType":"YulFunctionCall","src":"11120:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11114:5:14"},"nodeType":"YulFunctionCall","src":"11114:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"11098:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"11184:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11202:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11207:4:14","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11198:3:14"},"nodeType":"YulFunctionCall","src":"11198:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"11150:33:14"},"nodeType":"YulFunctionCall","src":"11150:63:14"},"nodeType":"YulExpressionStatement","src":"11150:63:14"}]},{"nodeType":"YulBlock","src":"11233:182:14","statements":[{"nodeType":"YulVariableDeclaration","src":"11286:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11316:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"11323:4:14","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11312:3:14"},"nodeType":"YulFunctionCall","src":"11312:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11306:5:14"},"nodeType":"YulFunctionCall","src":"11306:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"11290:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"11376:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11394:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11399:4:14","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11390:3:14"},"nodeType":"YulFunctionCall","src":"11390:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"11342:33:14"},"nodeType":"YulFunctionCall","src":"11342:63:14"},"nodeType":"YulExpressionStatement","src":"11342:63:14"}]}]},"name":"abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10610:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"10617:3:14","type":""}],"src":"10489:933:14"},{"body":{"nodeType":"YulBlock","src":"11594:193:14","statements":[{"nodeType":"YulAssignment","src":"11604:27:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11616:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11627:3:14","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11612:3:14"},"nodeType":"YulFunctionCall","src":"11612:19:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11604:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11753:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11766:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11777:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11762:3:14"},"nodeType":"YulFunctionCall","src":"11762:17:14"}],"functionName":{"name":"abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11641:111:14"},"nodeType":"YulFunctionCall","src":"11641:139:14"},"nodeType":"YulExpressionStatement","src":"11641:139:14"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$2516_memory_ptr__to_t_struct$_TokenFeeSettings_$2516_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11566:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11578:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11589:4:14","type":""}],"src":"11428:359:14"},{"body":{"nodeType":"YulBlock","src":"11858:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11875:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11898:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"11880:17:14"},"nodeType":"YulFunctionCall","src":"11880:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11868:6:14"},"nodeType":"YulFunctionCall","src":"11868:37:14"},"nodeType":"YulExpressionStatement","src":"11868:37:14"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11846:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11853:3:14","type":""}],"src":"11793:118:14"},{"body":{"nodeType":"YulBlock","src":"12015:124:14","statements":[{"nodeType":"YulAssignment","src":"12025:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12037:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12048:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12033:3:14"},"nodeType":"YulFunctionCall","src":"12033:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12025:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12105:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12118:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12129:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12114:3:14"},"nodeType":"YulFunctionCall","src":"12114:17:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"12061:43:14"},"nodeType":"YulFunctionCall","src":"12061:71:14"},"nodeType":"YulExpressionStatement","src":"12061:71:14"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11987:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11999:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12010:4:14","type":""}],"src":"11917:222:14"},{"body":{"nodeType":"YulBlock","src":"12189:57:14","statements":[{"nodeType":"YulAssignment","src":"12199:41:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12214:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"12221:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12210:3:14"},"nodeType":"YulFunctionCall","src":"12210:30:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"12199:7:14"}]}]},"name":"cleanup_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12171:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"12181:7:14","type":""}],"src":"12145:101:14"},{"body":{"nodeType":"YulBlock","src":"12315:52:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12332:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12354:5:14"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"12337:16:14"},"nodeType":"YulFunctionCall","src":"12337:23:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12325:6:14"},"nodeType":"YulFunctionCall","src":"12325:36:14"},"nodeType":"YulExpressionStatement","src":"12325:36:14"}]},"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12303:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"12310:3:14","type":""}],"src":"12252:115:14"},{"body":{"nodeType":"YulBlock","src":"12438:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12455:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12478:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"12460:17:14"},"nodeType":"YulFunctionCall","src":"12460:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12448:6:14"},"nodeType":"YulFunctionCall","src":"12448:37:14"},"nodeType":"YulExpressionStatement","src":"12448:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12426:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"12433:3:14","type":""}],"src":"12373:118:14"},{"body":{"nodeType":"YulBlock","src":"12621:204:14","statements":[{"nodeType":"YulAssignment","src":"12631:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12643:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12654:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12639:3:14"},"nodeType":"YulFunctionCall","src":"12639:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12631:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12709:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12722:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12733:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12718:3:14"},"nodeType":"YulFunctionCall","src":"12718:17:14"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"12667:41:14"},"nodeType":"YulFunctionCall","src":"12667:69:14"},"nodeType":"YulExpressionStatement","src":"12667:69:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"12790:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12803:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12814:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12799:3:14"},"nodeType":"YulFunctionCall","src":"12799:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"12746:43:14"},"nodeType":"YulFunctionCall","src":"12746:72:14"},"nodeType":"YulExpressionStatement","src":"12746:72:14"}]},"name":"abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12585:9:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12597:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12605:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12616:4:14","type":""}],"src":"12497:328:14"},{"body":{"nodeType":"YulBlock","src":"12931:519:14","statements":[{"body":{"nodeType":"YulBlock","src":"12977:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"12979:77:14"},"nodeType":"YulFunctionCall","src":"12979:79:14"},"nodeType":"YulExpressionStatement","src":"12979:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"12952:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"12961:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12948:3:14"},"nodeType":"YulFunctionCall","src":"12948:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"12973:2:14","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"12944:3:14"},"nodeType":"YulFunctionCall","src":"12944:32:14"},"nodeType":"YulIf","src":"12941:119:14"},{"nodeType":"YulBlock","src":"13070:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"13085:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"13099:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13089:6:14","type":""}]},{"nodeType":"YulAssignment","src":"13114:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13149:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"13160:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13145:3:14"},"nodeType":"YulFunctionCall","src":"13145:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13169:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"13124:20:14"},"nodeType":"YulFunctionCall","src":"13124:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"13114:6:14"}]}]},{"nodeType":"YulBlock","src":"13197:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"13212:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"13226:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13216:6:14","type":""}]},{"nodeType":"YulAssignment","src":"13242:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13277:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"13288:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13273:3:14"},"nodeType":"YulFunctionCall","src":"13273:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13297:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"13252:20:14"},"nodeType":"YulFunctionCall","src":"13252:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"13242:6:14"}]}]},{"nodeType":"YulBlock","src":"13325:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"13340:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"13354:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"13344:6:14","type":""}]},{"nodeType":"YulAssignment","src":"13370:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13405:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"13416:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13401:3:14"},"nodeType":"YulFunctionCall","src":"13401:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"13425:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"13380:20:14"},"nodeType":"YulFunctionCall","src":"13380:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"13370:6:14"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12885:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"12896:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"12908:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12916:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"12924:6:14","type":""}],"src":"12831:619:14"},{"body":{"nodeType":"YulBlock","src":"13498:78:14","statements":[{"body":{"nodeType":"YulBlock","src":"13554:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13563:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13566:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13556:6:14"},"nodeType":"YulFunctionCall","src":"13556:12:14"},"nodeType":"YulExpressionStatement","src":"13556:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13521:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13545:5:14"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"13528:16:14"},"nodeType":"YulFunctionCall","src":"13528:23:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"13518:2:14"},"nodeType":"YulFunctionCall","src":"13518:34:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"13511:6:14"},"nodeType":"YulFunctionCall","src":"13511:42:14"},"nodeType":"YulIf","src":"13508:62:14"}]},"name":"validator_revert_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"13491:5:14","type":""}],"src":"13456:120:14"},{"body":{"nodeType":"YulBlock","src":"13633:86:14","statements":[{"nodeType":"YulAssignment","src":"13643:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"13665:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"13652:12:14"},"nodeType":"YulFunctionCall","src":"13652:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"13643:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13707:5:14"}],"functionName":{"name":"validator_revert_t_uint64","nodeType":"YulIdentifier","src":"13681:25:14"},"nodeType":"YulFunctionCall","src":"13681:32:14"},"nodeType":"YulExpressionStatement","src":"13681:32:14"}]},"name":"abi_decode_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"13611:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"13619:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"13627:5:14","type":""}],"src":"13582:137:14"},{"body":{"nodeType":"YulBlock","src":"13841:647:14","statements":[{"body":{"nodeType":"YulBlock","src":"13888:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"13890:77:14"},"nodeType":"YulFunctionCall","src":"13890:79:14"},"nodeType":"YulExpressionStatement","src":"13890:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"13862:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"13871:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13858:3:14"},"nodeType":"YulFunctionCall","src":"13858:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"13883:3:14","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"13854:3:14"},"nodeType":"YulFunctionCall","src":"13854:33:14"},"nodeType":"YulIf","src":"13851:120:14"},{"nodeType":"YulBlock","src":"13981:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"13996:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"14010:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14000:6:14","type":""}]},{"nodeType":"YulAssignment","src":"14025:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14060:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"14071:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14056:3:14"},"nodeType":"YulFunctionCall","src":"14056:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14080:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"14035:20:14"},"nodeType":"YulFunctionCall","src":"14035:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"14025:6:14"}]}]},{"nodeType":"YulBlock","src":"14108:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"14123:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"14137:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14127:6:14","type":""}]},{"nodeType":"YulAssignment","src":"14153:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14188:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"14199:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14184:3:14"},"nodeType":"YulFunctionCall","src":"14184:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14208:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"14163:20:14"},"nodeType":"YulFunctionCall","src":"14163:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"14153:6:14"}]}]},{"nodeType":"YulBlock","src":"14236:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"14251:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"14265:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14255:6:14","type":""}]},{"nodeType":"YulAssignment","src":"14281:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14316:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"14327:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14312:3:14"},"nodeType":"YulFunctionCall","src":"14312:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14336:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"14291:20:14"},"nodeType":"YulFunctionCall","src":"14291:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"14281:6:14"}]}]},{"nodeType":"YulBlock","src":"14364:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"14379:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"14393:2:14","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14383:6:14","type":""}]},{"nodeType":"YulAssignment","src":"14409:62:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14443:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"14454:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14439:3:14"},"nodeType":"YulFunctionCall","src":"14439:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14463:7:14"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"14419:19:14"},"nodeType":"YulFunctionCall","src":"14419:52:14"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"14409:6:14"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13787:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"13798:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"13810:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"13818:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"13826:6:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"13834:6:14","type":""}],"src":"13725:763:14"},{"body":{"nodeType":"YulBlock","src":"14590:73:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14607:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"14612:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14600:6:14"},"nodeType":"YulFunctionCall","src":"14600:19:14"},"nodeType":"YulExpressionStatement","src":"14600:19:14"},{"nodeType":"YulAssignment","src":"14628:29:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14647:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"14652:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14643:3:14"},"nodeType":"YulFunctionCall","src":"14643:14:14"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"14628:11:14"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14562:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"14567:6:14","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"14578:11:14","type":""}],"src":"14494:169:14"},{"body":{"nodeType":"YulBlock","src":"14775:65:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14797:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"14805:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14793:3:14"},"nodeType":"YulFunctionCall","src":"14793:14:14"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"14809:23:14","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14786:6:14"},"nodeType":"YulFunctionCall","src":"14786:47:14"},"nodeType":"YulExpressionStatement","src":"14786:47:14"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14767:6:14","type":""}],"src":"14669:171:14"},{"body":{"nodeType":"YulBlock","src":"14992:220:14","statements":[{"nodeType":"YulAssignment","src":"15002:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15068:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"15073:2:14","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15009:58:14"},"nodeType":"YulFunctionCall","src":"15009:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"15002:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15174:3:14"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"15085:88:14"},"nodeType":"YulFunctionCall","src":"15085:93:14"},"nodeType":"YulExpressionStatement","src":"15085:93:14"},{"nodeType":"YulAssignment","src":"15187:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15198:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"15203:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15194:3:14"},"nodeType":"YulFunctionCall","src":"15194:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"15187:3:14"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14980:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14988:3:14","type":""}],"src":"14846:366:14"},{"body":{"nodeType":"YulBlock","src":"15389:248:14","statements":[{"nodeType":"YulAssignment","src":"15399:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15411:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15422:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15407:3:14"},"nodeType":"YulFunctionCall","src":"15407:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15399:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15446:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15457:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15442:3:14"},"nodeType":"YulFunctionCall","src":"15442:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15465:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"15471:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15461:3:14"},"nodeType":"YulFunctionCall","src":"15461:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15435:6:14"},"nodeType":"YulFunctionCall","src":"15435:47:14"},"nodeType":"YulExpressionStatement","src":"15435:47:14"},{"nodeType":"YulAssignment","src":"15491:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15625:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15499:124:14"},"nodeType":"YulFunctionCall","src":"15499:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15491:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15369:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15384:4:14","type":""}],"src":"15218:419:14"},{"body":{"nodeType":"YulBlock","src":"15749:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15771:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"15779:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15767:3:14"},"nodeType":"YulFunctionCall","src":"15767:14:14"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"15783:34:14","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15760:6:14"},"nodeType":"YulFunctionCall","src":"15760:58:14"},"nodeType":"YulExpressionStatement","src":"15760:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15839:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"15847:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15835:3:14"},"nodeType":"YulFunctionCall","src":"15835:15:14"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"15852:7:14","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15828:6:14"},"nodeType":"YulFunctionCall","src":"15828:32:14"},"nodeType":"YulExpressionStatement","src":"15828:32:14"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15741:6:14","type":""}],"src":"15643:224:14"},{"body":{"nodeType":"YulBlock","src":"16019:220:14","statements":[{"nodeType":"YulAssignment","src":"16029:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16095:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"16100:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16036:58:14"},"nodeType":"YulFunctionCall","src":"16036:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16029:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16201:3:14"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"16112:88:14"},"nodeType":"YulFunctionCall","src":"16112:93:14"},"nodeType":"YulExpressionStatement","src":"16112:93:14"},{"nodeType":"YulAssignment","src":"16214:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16225:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"16230:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16221:3:14"},"nodeType":"YulFunctionCall","src":"16221:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16214:3:14"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16007:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16015:3:14","type":""}],"src":"15873:366:14"},{"body":{"nodeType":"YulBlock","src":"16416:248:14","statements":[{"nodeType":"YulAssignment","src":"16426:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16438:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16449:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16434:3:14"},"nodeType":"YulFunctionCall","src":"16434:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16426:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16473:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16484:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16469:3:14"},"nodeType":"YulFunctionCall","src":"16469:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16492:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"16498:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16488:3:14"},"nodeType":"YulFunctionCall","src":"16488:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16462:6:14"},"nodeType":"YulFunctionCall","src":"16462:47:14"},"nodeType":"YulExpressionStatement","src":"16462:47:14"},{"nodeType":"YulAssignment","src":"16518:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16652:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16526:124:14"},"nodeType":"YulFunctionCall","src":"16526:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16518:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16396:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16411:4:14","type":""}],"src":"16245:419:14"},{"body":{"nodeType":"YulBlock","src":"16776:120:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16798:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"16806:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16794:3:14"},"nodeType":"YulFunctionCall","src":"16794:14:14"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"16810:34:14","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16787:6:14"},"nodeType":"YulFunctionCall","src":"16787:58:14"},"nodeType":"YulExpressionStatement","src":"16787:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16866:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"16874:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16862:3:14"},"nodeType":"YulFunctionCall","src":"16862:15:14"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"16879:9:14","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16855:6:14"},"nodeType":"YulFunctionCall","src":"16855:34:14"},"nodeType":"YulExpressionStatement","src":"16855:34:14"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"16768:6:14","type":""}],"src":"16670:226:14"},{"body":{"nodeType":"YulBlock","src":"17048:220:14","statements":[{"nodeType":"YulAssignment","src":"17058:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17124:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"17129:2:14","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17065:58:14"},"nodeType":"YulFunctionCall","src":"17065:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17058:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17230:3:14"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"17141:88:14"},"nodeType":"YulFunctionCall","src":"17141:93:14"},"nodeType":"YulExpressionStatement","src":"17141:93:14"},{"nodeType":"YulAssignment","src":"17243:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17254:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"17259:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17250:3:14"},"nodeType":"YulFunctionCall","src":"17250:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17243:3:14"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17036:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17044:3:14","type":""}],"src":"16902:366:14"},{"body":{"nodeType":"YulBlock","src":"17445:248:14","statements":[{"nodeType":"YulAssignment","src":"17455:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17467:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"17478:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17463:3:14"},"nodeType":"YulFunctionCall","src":"17463:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17455:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17502:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"17513:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17498:3:14"},"nodeType":"YulFunctionCall","src":"17498:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17521:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"17527:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17517:3:14"},"nodeType":"YulFunctionCall","src":"17517:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17491:6:14"},"nodeType":"YulFunctionCall","src":"17491:47:14"},"nodeType":"YulExpressionStatement","src":"17491:47:14"},{"nodeType":"YulAssignment","src":"17547:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17681:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17555:124:14"},"nodeType":"YulFunctionCall","src":"17555:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17547:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17425:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17440:4:14","type":""}],"src":"17274:419:14"},{"body":{"nodeType":"YulBlock","src":"17805:58:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"17827:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"17835:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17823:3:14"},"nodeType":"YulFunctionCall","src":"17823:14:14"},{"hexValue":"4f6e6c7941676772656761746f72","kind":"string","nodeType":"YulLiteral","src":"17839:16:14","type":"","value":"OnlyAggregator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17816:6:14"},"nodeType":"YulFunctionCall","src":"17816:40:14"},"nodeType":"YulExpressionStatement","src":"17816:40:14"}]},"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"17797:6:14","type":""}],"src":"17699:164:14"},{"body":{"nodeType":"YulBlock","src":"18015:220:14","statements":[{"nodeType":"YulAssignment","src":"18025:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18091:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"18096:2:14","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18032:58:14"},"nodeType":"YulFunctionCall","src":"18032:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"18025:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18197:3:14"}],"functionName":{"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulIdentifier","src":"18108:88:14"},"nodeType":"YulFunctionCall","src":"18108:93:14"},"nodeType":"YulExpressionStatement","src":"18108:93:14"},{"nodeType":"YulAssignment","src":"18210:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18221:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"18226:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18217:3:14"},"nodeType":"YulFunctionCall","src":"18217:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"18210:3:14"}]}]},"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"18003:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"18011:3:14","type":""}],"src":"17869:366:14"},{"body":{"nodeType":"YulBlock","src":"18412:248:14","statements":[{"nodeType":"YulAssignment","src":"18422:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18434:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"18445:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18430:3:14"},"nodeType":"YulFunctionCall","src":"18430:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18422:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18469:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"18480:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18465:3:14"},"nodeType":"YulFunctionCall","src":"18465:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18488:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"18494:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18484:3:14"},"nodeType":"YulFunctionCall","src":"18484:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18458:6:14"},"nodeType":"YulFunctionCall","src":"18458:47:14"},"nodeType":"YulExpressionStatement","src":"18458:47:14"},{"nodeType":"YulAssignment","src":"18514:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18648:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18522:124:14"},"nodeType":"YulFunctionCall","src":"18522:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18514:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18392:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18407:4:14","type":""}],"src":"18241:419:14"},{"body":{"nodeType":"YulBlock","src":"18772:58:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"18794:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"18802:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18790:3:14"},"nodeType":"YulFunctionCall","src":"18790:14:14"},{"hexValue":"4f7264657246756c66696c6c6564","kind":"string","nodeType":"YulLiteral","src":"18806:16:14","type":"","value":"OrderFulfilled"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18783:6:14"},"nodeType":"YulFunctionCall","src":"18783:40:14"},"nodeType":"YulExpressionStatement","src":"18783:40:14"}]},"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"18764:6:14","type":""}],"src":"18666:164:14"},{"body":{"nodeType":"YulBlock","src":"18982:220:14","statements":[{"nodeType":"YulAssignment","src":"18992:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19058:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"19063:2:14","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18999:58:14"},"nodeType":"YulFunctionCall","src":"18999:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"18992:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19164:3:14"}],"functionName":{"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulIdentifier","src":"19075:88:14"},"nodeType":"YulFunctionCall","src":"19075:93:14"},"nodeType":"YulExpressionStatement","src":"19075:93:14"},{"nodeType":"YulAssignment","src":"19177:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19188:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"19193:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19184:3:14"},"nodeType":"YulFunctionCall","src":"19184:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"19177:3:14"}]}]},"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"18970:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"18978:3:14","type":""}],"src":"18836:366:14"},{"body":{"nodeType":"YulBlock","src":"19379:248:14","statements":[{"nodeType":"YulAssignment","src":"19389:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19401:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"19412:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19397:3:14"},"nodeType":"YulFunctionCall","src":"19397:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19389:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19436:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"19447:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19432:3:14"},"nodeType":"YulFunctionCall","src":"19432:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"19455:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"19461:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"19451:3:14"},"nodeType":"YulFunctionCall","src":"19451:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19425:6:14"},"nodeType":"YulFunctionCall","src":"19425:47:14"},"nodeType":"YulExpressionStatement","src":"19425:47:14"},{"nodeType":"YulAssignment","src":"19481:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"19615:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"19489:124:14"},"nodeType":"YulFunctionCall","src":"19489:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19481:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19359:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19374:4:14","type":""}],"src":"19208:419:14"},{"body":{"nodeType":"YulBlock","src":"19739:57:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"19761:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"19769:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19757:3:14"},"nodeType":"YulFunctionCall","src":"19757:14:14"},{"hexValue":"4f72646572526566756e646564","kind":"string","nodeType":"YulLiteral","src":"19773:15:14","type":"","value":"OrderRefunded"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19750:6:14"},"nodeType":"YulFunctionCall","src":"19750:39:14"},"nodeType":"YulExpressionStatement","src":"19750:39:14"}]},"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"19731:6:14","type":""}],"src":"19633:163:14"},{"body":{"nodeType":"YulBlock","src":"19948:220:14","statements":[{"nodeType":"YulAssignment","src":"19958:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20024:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"20029:2:14","type":"","value":"13"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"19965:58:14"},"nodeType":"YulFunctionCall","src":"19965:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"19958:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20130:3:14"}],"functionName":{"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulIdentifier","src":"20041:88:14"},"nodeType":"YulFunctionCall","src":"20041:93:14"},"nodeType":"YulExpressionStatement","src":"20041:93:14"},{"nodeType":"YulAssignment","src":"20143:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20154:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"20159:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20150:3:14"},"nodeType":"YulFunctionCall","src":"20150:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"20143:3:14"}]}]},"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"19936:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"19944:3:14","type":""}],"src":"19802:366:14"},{"body":{"nodeType":"YulBlock","src":"20345:248:14","statements":[{"nodeType":"YulAssignment","src":"20355:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20367:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"20378:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20363:3:14"},"nodeType":"YulFunctionCall","src":"20363:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20355:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20402:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"20413:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20398:3:14"},"nodeType":"YulFunctionCall","src":"20398:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"20421:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"20427:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20417:3:14"},"nodeType":"YulFunctionCall","src":"20417:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20391:6:14"},"nodeType":"YulFunctionCall","src":"20391:47:14"},"nodeType":"YulExpressionStatement","src":"20391:47:14"},{"nodeType":"YulAssignment","src":"20447:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"20581:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"20455:124:14"},"nodeType":"YulFunctionCall","src":"20455:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20447:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20325:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20340:4:14","type":""}],"src":"20174:419:14"},{"body":{"nodeType":"YulBlock","src":"20705:65:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"20727:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"20735:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20723:3:14"},"nodeType":"YulFunctionCall","src":"20723:14:14"},{"hexValue":"4665654578636565647350726f746f636f6c466565","kind":"string","nodeType":"YulLiteral","src":"20739:23:14","type":"","value":"FeeExceedsProtocolFee"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20716:6:14"},"nodeType":"YulFunctionCall","src":"20716:47:14"},"nodeType":"YulExpressionStatement","src":"20716:47:14"}]},"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"20697:6:14","type":""}],"src":"20599:171:14"},{"body":{"nodeType":"YulBlock","src":"20922:220:14","statements":[{"nodeType":"YulAssignment","src":"20932:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20998:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"21003:2:14","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"20939:58:14"},"nodeType":"YulFunctionCall","src":"20939:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"20932:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21104:3:14"}],"functionName":{"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulIdentifier","src":"21015:88:14"},"nodeType":"YulFunctionCall","src":"21015:93:14"},"nodeType":"YulExpressionStatement","src":"21015:93:14"},{"nodeType":"YulAssignment","src":"21117:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21128:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"21133:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21124:3:14"},"nodeType":"YulFunctionCall","src":"21124:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"21117:3:14"}]}]},"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"20910:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"20918:3:14","type":""}],"src":"20776:366:14"},{"body":{"nodeType":"YulBlock","src":"21319:248:14","statements":[{"nodeType":"YulAssignment","src":"21329:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21341:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"21352:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21337:3:14"},"nodeType":"YulFunctionCall","src":"21337:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21329:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21376:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"21387:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21372:3:14"},"nodeType":"YulFunctionCall","src":"21372:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"21395:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"21401:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21391:3:14"},"nodeType":"YulFunctionCall","src":"21391:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21365:6:14"},"nodeType":"YulFunctionCall","src":"21365:47:14"},"nodeType":"YulExpressionStatement","src":"21365:47:14"},{"nodeType":"YulAssignment","src":"21421:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"21555:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"21429:124:14"},"nodeType":"YulFunctionCall","src":"21429:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21421:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21299:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21314:4:14","type":""}],"src":"21148:419:14"},{"body":{"nodeType":"YulBlock","src":"21699:206:14","statements":[{"nodeType":"YulAssignment","src":"21709:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21721:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"21732:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21717:3:14"},"nodeType":"YulFunctionCall","src":"21717:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21709:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"21789:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21802:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"21813:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21798:3:14"},"nodeType":"YulFunctionCall","src":"21798:17:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"21745:43:14"},"nodeType":"YulFunctionCall","src":"21745:71:14"},"nodeType":"YulExpressionStatement","src":"21745:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"21870:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21883:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"21894:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21879:3:14"},"nodeType":"YulFunctionCall","src":"21879:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"21826:43:14"},"nodeType":"YulFunctionCall","src":"21826:72:14"},"nodeType":"YulExpressionStatement","src":"21826:72:14"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21663:9:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"21675:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"21683:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21694:4:14","type":""}],"src":"21573:332:14"},{"body":{"nodeType":"YulBlock","src":"21951:76:14","statements":[{"body":{"nodeType":"YulBlock","src":"22005:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22014:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22017:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22007:6:14"},"nodeType":"YulFunctionCall","src":"22007:12:14"},"nodeType":"YulExpressionStatement","src":"22007:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21974:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21996:5:14"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"21981:14:14"},"nodeType":"YulFunctionCall","src":"21981:21:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"21971:2:14"},"nodeType":"YulFunctionCall","src":"21971:32:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"21964:6:14"},"nodeType":"YulFunctionCall","src":"21964:40:14"},"nodeType":"YulIf","src":"21961:60:14"}]},"name":"validator_revert_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21944:5:14","type":""}],"src":"21911:116:14"},{"body":{"nodeType":"YulBlock","src":"22093:77:14","statements":[{"nodeType":"YulAssignment","src":"22103:22:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"22118:6:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"22112:5:14"},"nodeType":"YulFunctionCall","src":"22112:13:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"22103:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22158:5:14"}],"functionName":{"name":"validator_revert_t_bool","nodeType":"YulIdentifier","src":"22134:23:14"},"nodeType":"YulFunctionCall","src":"22134:30:14"},"nodeType":"YulExpressionStatement","src":"22134:30:14"}]},"name":"abi_decode_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"22071:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"22079:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"22087:5:14","type":""}],"src":"22033:137:14"},{"body":{"nodeType":"YulBlock","src":"22250:271:14","statements":[{"body":{"nodeType":"YulBlock","src":"22296:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"22298:77:14"},"nodeType":"YulFunctionCall","src":"22298:79:14"},"nodeType":"YulExpressionStatement","src":"22298:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"22271:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"22280:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22267:3:14"},"nodeType":"YulFunctionCall","src":"22267:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"22292:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"22263:3:14"},"nodeType":"YulFunctionCall","src":"22263:32:14"},"nodeType":"YulIf","src":"22260:119:14"},{"nodeType":"YulBlock","src":"22389:125:14","statements":[{"nodeType":"YulVariableDeclaration","src":"22404:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"22418:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"22408:6:14","type":""}]},{"nodeType":"YulAssignment","src":"22433:71:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22476:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"22487:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22472:3:14"},"nodeType":"YulFunctionCall","src":"22472:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"22496:7:14"}],"functionName":{"name":"abi_decode_t_bool_fromMemory","nodeType":"YulIdentifier","src":"22443:28:14"},"nodeType":"YulFunctionCall","src":"22443:61:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"22433:6:14"}]}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22220:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"22231:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"22243:6:14","type":""}],"src":"22176:345:14"},{"body":{"nodeType":"YulBlock","src":"22555:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22572:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22575:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22565:6:14"},"nodeType":"YulFunctionCall","src":"22565:88:14"},"nodeType":"YulExpressionStatement","src":"22565:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22669:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"22672:4:14","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22662:6:14"},"nodeType":"YulFunctionCall","src":"22662:15:14"},"nodeType":"YulExpressionStatement","src":"22662:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22693:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22696:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22686:6:14"},"nodeType":"YulFunctionCall","src":"22686:15:14"},"nodeType":"YulExpressionStatement","src":"22686:15:14"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"22527:180:14"},{"body":{"nodeType":"YulBlock","src":"22758:149:14","statements":[{"nodeType":"YulAssignment","src":"22768:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22791:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22773:17:14"},"nodeType":"YulFunctionCall","src":"22773:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"22768:1:14"}]},{"nodeType":"YulAssignment","src":"22802:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"22825:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22807:17:14"},"nodeType":"YulFunctionCall","src":"22807:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"22802:1:14"}]},{"nodeType":"YulAssignment","src":"22836:17:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22848:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"22851:1:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22844:3:14"},"nodeType":"YulFunctionCall","src":"22844:9:14"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"22836:4:14"}]},{"body":{"nodeType":"YulBlock","src":"22878:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"22880:16:14"},"nodeType":"YulFunctionCall","src":"22880:18:14"},"nodeType":"YulExpressionStatement","src":"22880:18:14"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"22869:4:14"},{"name":"x","nodeType":"YulIdentifier","src":"22875:1:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"22866:2:14"},"nodeType":"YulFunctionCall","src":"22866:11:14"},"nodeType":"YulIf","src":"22863:37:14"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"22744:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"22747:1:14","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"22753:4:14","type":""}],"src":"22713:194:14"},{"body":{"nodeType":"YulBlock","src":"22957:147:14","statements":[{"nodeType":"YulAssignment","src":"22967:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"22990:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"22972:17:14"},"nodeType":"YulFunctionCall","src":"22972:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"22967:1:14"}]},{"nodeType":"YulAssignment","src":"23001:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"23024:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"23006:17:14"},"nodeType":"YulFunctionCall","src":"23006:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"23001:1:14"}]},{"nodeType":"YulAssignment","src":"23035:16:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"23046:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"23049:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23042:3:14"},"nodeType":"YulFunctionCall","src":"23042:9:14"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"23035:3:14"}]},{"body":{"nodeType":"YulBlock","src":"23075:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"23077:16:14"},"nodeType":"YulFunctionCall","src":"23077:18:14"},"nodeType":"YulExpressionStatement","src":"23077:18:14"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"23067:1:14"},{"name":"sum","nodeType":"YulIdentifier","src":"23070:3:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"23064:2:14"},"nodeType":"YulFunctionCall","src":"23064:10:14"},"nodeType":"YulIf","src":"23061:36:14"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"22944:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"22947:1:14","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"22953:3:14","type":""}],"src":"22913:191:14"},{"body":{"nodeType":"YulBlock","src":"23208:124:14","statements":[{"nodeType":"YulAssignment","src":"23218:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23230:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"23241:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23226:3:14"},"nodeType":"YulFunctionCall","src":"23226:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23218:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"23298:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23311:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"23322:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23307:3:14"},"nodeType":"YulFunctionCall","src":"23307:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"23254:43:14"},"nodeType":"YulFunctionCall","src":"23254:71:14"},"nodeType":"YulExpressionStatement","src":"23254:71:14"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23180:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"23192:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23203:4:14","type":""}],"src":"23110:222:14"},{"body":{"nodeType":"YulBlock","src":"23444:122:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"23466:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"23474:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23462:3:14"},"nodeType":"YulFunctionCall","src":"23462:14:14"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"23478:34:14","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23455:6:14"},"nodeType":"YulFunctionCall","src":"23455:58:14"},"nodeType":"YulExpressionStatement","src":"23455:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"23534:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"23542:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23530:3:14"},"nodeType":"YulFunctionCall","src":"23530:15:14"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"23547:11:14","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23523:6:14"},"nodeType":"YulFunctionCall","src":"23523:36:14"},"nodeType":"YulExpressionStatement","src":"23523:36:14"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"23436:6:14","type":""}],"src":"23338:228:14"},{"body":{"nodeType":"YulBlock","src":"23718:220:14","statements":[{"nodeType":"YulAssignment","src":"23728:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23794:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"23799:2:14","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"23735:58:14"},"nodeType":"YulFunctionCall","src":"23735:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"23728:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23900:3:14"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"23811:88:14"},"nodeType":"YulFunctionCall","src":"23811:93:14"},"nodeType":"YulExpressionStatement","src":"23811:93:14"},{"nodeType":"YulAssignment","src":"23913:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23924:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"23929:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23920:3:14"},"nodeType":"YulFunctionCall","src":"23920:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"23913:3:14"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"23706:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"23714:3:14","type":""}],"src":"23572:366:14"},{"body":{"nodeType":"YulBlock","src":"24115:248:14","statements":[{"nodeType":"YulAssignment","src":"24125:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24137:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"24148:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24133:3:14"},"nodeType":"YulFunctionCall","src":"24133:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24125:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24172:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"24183:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24168:3:14"},"nodeType":"YulFunctionCall","src":"24168:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24191:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"24197:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"24187:3:14"},"nodeType":"YulFunctionCall","src":"24187:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24161:6:14"},"nodeType":"YulFunctionCall","src":"24161:47:14"},"nodeType":"YulExpressionStatement","src":"24161:47:14"},{"nodeType":"YulAssignment","src":"24217:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24351:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24225:124:14"},"nodeType":"YulFunctionCall","src":"24225:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24217:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24095:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24110:4:14","type":""}],"src":"23944:419:14"},{"body":{"nodeType":"YulBlock","src":"24475:62:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"24497:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"24505:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24493:3:14"},"nodeType":"YulFunctionCall","src":"24493:14:14"},{"hexValue":"496e76616c69644d65737361676548617368","kind":"string","nodeType":"YulLiteral","src":"24509:20:14","type":"","value":"InvalidMessageHash"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24486:6:14"},"nodeType":"YulFunctionCall","src":"24486:44:14"},"nodeType":"YulExpressionStatement","src":"24486:44:14"}]},"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"24467:6:14","type":""}],"src":"24369:168:14"},{"body":{"nodeType":"YulBlock","src":"24689:220:14","statements":[{"nodeType":"YulAssignment","src":"24699:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24765:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"24770:2:14","type":"","value":"18"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24706:58:14"},"nodeType":"YulFunctionCall","src":"24706:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"24699:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24871:3:14"}],"functionName":{"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulIdentifier","src":"24782:88:14"},"nodeType":"YulFunctionCall","src":"24782:93:14"},"nodeType":"YulExpressionStatement","src":"24782:93:14"},{"nodeType":"YulAssignment","src":"24884:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24895:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"24900:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24891:3:14"},"nodeType":"YulFunctionCall","src":"24891:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"24884:3:14"}]}]},"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"24677:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"24685:3:14","type":""}],"src":"24543:366:14"},{"body":{"nodeType":"YulBlock","src":"25086:248:14","statements":[{"nodeType":"YulAssignment","src":"25096:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25108:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"25119:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25104:3:14"},"nodeType":"YulFunctionCall","src":"25104:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25096:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25143:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"25154:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25139:3:14"},"nodeType":"YulFunctionCall","src":"25139:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25162:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"25168:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"25158:3:14"},"nodeType":"YulFunctionCall","src":"25158:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25132:6:14"},"nodeType":"YulFunctionCall","src":"25132:47:14"},"nodeType":"YulExpressionStatement","src":"25132:47:14"},{"nodeType":"YulAssignment","src":"25188:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25322:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"25196:124:14"},"nodeType":"YulFunctionCall","src":"25196:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25188:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25066:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25081:4:14","type":""}],"src":"24915:419:14"},{"body":{"nodeType":"YulBlock","src":"25494:288:14","statements":[{"nodeType":"YulAssignment","src":"25504:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25516:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"25527:2:14","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25512:3:14"},"nodeType":"YulFunctionCall","src":"25512:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25504:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"25584:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25597:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"25608:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25593:3:14"},"nodeType":"YulFunctionCall","src":"25593:17:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"25540:43:14"},"nodeType":"YulFunctionCall","src":"25540:71:14"},"nodeType":"YulExpressionStatement","src":"25540:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"25665:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25678:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"25689:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25674:3:14"},"nodeType":"YulFunctionCall","src":"25674:18:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"25621:43:14"},"nodeType":"YulFunctionCall","src":"25621:72:14"},"nodeType":"YulExpressionStatement","src":"25621:72:14"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"25747:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25760:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"25771:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25756:3:14"},"nodeType":"YulFunctionCall","src":"25756:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"25703:43:14"},"nodeType":"YulFunctionCall","src":"25703:72:14"},"nodeType":"YulExpressionStatement","src":"25703:72:14"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25450:9:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"25462:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"25470:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"25478:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25489:4:14","type":""}],"src":"25340:442:14"},{"body":{"nodeType":"YulBlock","src":"25831:190:14","statements":[{"nodeType":"YulAssignment","src":"25841:33:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"25868:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"25850:17:14"},"nodeType":"YulFunctionCall","src":"25850:24:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"25841:5:14"}]},{"body":{"nodeType":"YulBlock","src":"25964:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"25966:16:14"},"nodeType":"YulFunctionCall","src":"25966:18:14"},"nodeType":"YulExpressionStatement","src":"25966:18:14"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"25889:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"25896:66:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"25886:2:14"},"nodeType":"YulFunctionCall","src":"25886:77:14"},"nodeType":"YulIf","src":"25883:103:14"},{"nodeType":"YulAssignment","src":"25995:20:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"26006:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"26013:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26002:3:14"},"nodeType":"YulFunctionCall","src":"26002:13:14"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"25995:3:14"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"25817:5:14","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"25827:3:14","type":""}],"src":"25788:233:14"},{"body":{"nodeType":"YulBlock","src":"26181:288:14","statements":[{"nodeType":"YulAssignment","src":"26191:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26203:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"26214:2:14","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26199:3:14"},"nodeType":"YulFunctionCall","src":"26199:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26191:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"26271:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26284:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"26295:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26280:3:14"},"nodeType":"YulFunctionCall","src":"26280:17:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"26227:43:14"},"nodeType":"YulFunctionCall","src":"26227:71:14"},"nodeType":"YulExpressionStatement","src":"26227:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"26352:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26365:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"26376:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26361:3:14"},"nodeType":"YulFunctionCall","src":"26361:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"26308:43:14"},"nodeType":"YulFunctionCall","src":"26308:72:14"},"nodeType":"YulExpressionStatement","src":"26308:72:14"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"26434:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26447:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"26458:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26443:3:14"},"nodeType":"YulFunctionCall","src":"26443:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"26390:43:14"},"nodeType":"YulFunctionCall","src":"26390:72:14"},"nodeType":"YulExpressionStatement","src":"26390:72:14"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26137:9:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"26149:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"26157:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"26165:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26176:4:14","type":""}],"src":"26027:442:14"},{"body":{"nodeType":"YulBlock","src":"26581:62:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"26603:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"26611:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26599:3:14"},"nodeType":"YulFunctionCall","src":"26599:14:14"},{"hexValue":"4f72646572416c7265616479457869737473","kind":"string","nodeType":"YulLiteral","src":"26615:20:14","type":"","value":"OrderAlreadyExists"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26592:6:14"},"nodeType":"YulFunctionCall","src":"26592:44:14"},"nodeType":"YulExpressionStatement","src":"26592:44:14"}]},"name":"store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"26573:6:14","type":""}],"src":"26475:168:14"},{"body":{"nodeType":"YulBlock","src":"26795:220:14","statements":[{"nodeType":"YulAssignment","src":"26805:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26871:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"26876:2:14","type":"","value":"18"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26812:58:14"},"nodeType":"YulFunctionCall","src":"26812:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"26805:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26977:3:14"}],"functionName":{"name":"store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","nodeType":"YulIdentifier","src":"26888:88:14"},"nodeType":"YulFunctionCall","src":"26888:93:14"},"nodeType":"YulExpressionStatement","src":"26888:93:14"},{"nodeType":"YulAssignment","src":"26990:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27001:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"27006:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26997:3:14"},"nodeType":"YulFunctionCall","src":"26997:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"26990:3:14"}]}]},"name":"abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"26783:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"26791:3:14","type":""}],"src":"26649:366:14"},{"body":{"nodeType":"YulBlock","src":"27192:248:14","statements":[{"nodeType":"YulAssignment","src":"27202:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27214:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"27225:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27210:3:14"},"nodeType":"YulFunctionCall","src":"27210:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27202:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27249:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"27260:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27245:3:14"},"nodeType":"YulFunctionCall","src":"27245:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27268:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"27274:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"27264:3:14"},"nodeType":"YulFunctionCall","src":"27264:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27238:6:14"},"nodeType":"YulFunctionCall","src":"27238:47:14"},"nodeType":"YulExpressionStatement","src":"27238:47:14"},{"nodeType":"YulAssignment","src":"27294:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27428:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27302:124:14"},"nodeType":"YulFunctionCall","src":"27302:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27294:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27172:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27187:4:14","type":""}],"src":"27021:419:14"},{"body":{"nodeType":"YulBlock","src":"27552:73:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"27574:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"27582:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27570:3:14"},"nodeType":"YulFunctionCall","src":"27570:14:14"},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","kind":"string","nodeType":"YulLiteral","src":"27586:31:14","type":"","value":"TokenFeeSettingsNotConfigured"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27563:6:14"},"nodeType":"YulFunctionCall","src":"27563:55:14"},"nodeType":"YulExpressionStatement","src":"27563:55:14"}]},"name":"store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"27544:6:14","type":""}],"src":"27446:179:14"},{"body":{"nodeType":"YulBlock","src":"27777:220:14","statements":[{"nodeType":"YulAssignment","src":"27787:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27853:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"27858:2:14","type":"","value":"29"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27794:58:14"},"nodeType":"YulFunctionCall","src":"27794:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"27787:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27959:3:14"}],"functionName":{"name":"store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","nodeType":"YulIdentifier","src":"27870:88:14"},"nodeType":"YulFunctionCall","src":"27870:93:14"},"nodeType":"YulExpressionStatement","src":"27870:93:14"},{"nodeType":"YulAssignment","src":"27972:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27983:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"27988:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27979:3:14"},"nodeType":"YulFunctionCall","src":"27979:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"27972:3:14"}]}]},"name":"abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"27765:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"27773:3:14","type":""}],"src":"27631:366:14"},{"body":{"nodeType":"YulBlock","src":"28174:248:14","statements":[{"nodeType":"YulAssignment","src":"28184:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28196:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"28207:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28192:3:14"},"nodeType":"YulFunctionCall","src":"28192:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28184:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28231:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"28242:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28227:3:14"},"nodeType":"YulFunctionCall","src":"28227:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"28250:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"28256:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"28246:3:14"},"nodeType":"YulFunctionCall","src":"28246:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28220:6:14"},"nodeType":"YulFunctionCall","src":"28220:47:14"},"nodeType":"YulExpressionStatement","src":"28220:47:14"},{"nodeType":"YulAssignment","src":"28276:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"28410:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"28284:124:14"},"nodeType":"YulFunctionCall","src":"28284:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28276:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28154:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28169:4:14","type":""}],"src":"28003:419:14"},{"body":{"nodeType":"YulBlock","src":"28476:362:14","statements":[{"nodeType":"YulAssignment","src":"28486:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"28509:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"28491:17:14"},"nodeType":"YulFunctionCall","src":"28491:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"28486:1:14"}]},{"nodeType":"YulAssignment","src":"28520:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"28543:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"28525:17:14"},"nodeType":"YulFunctionCall","src":"28525:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"28520:1:14"}]},{"nodeType":"YulVariableDeclaration","src":"28554:28:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"28577:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"28580:1:14"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"28573:3:14"},"nodeType":"YulFunctionCall","src":"28573:9:14"},"variables":[{"name":"product_raw","nodeType":"YulTypedName","src":"28558:11:14","type":""}]},{"nodeType":"YulAssignment","src":"28591:41:14","value":{"arguments":[{"name":"product_raw","nodeType":"YulIdentifier","src":"28620:11:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"28602:17:14"},"nodeType":"YulFunctionCall","src":"28602:30:14"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"28591:7:14"}]},{"body":{"nodeType":"YulBlock","src":"28809:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"28811:16:14"},"nodeType":"YulFunctionCall","src":"28811:18:14"},"nodeType":"YulExpressionStatement","src":"28811:18:14"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"28742:1:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"28735:6:14"},"nodeType":"YulFunctionCall","src":"28735:9:14"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"28765:1:14"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"28772:7:14"},{"name":"x","nodeType":"YulIdentifier","src":"28781:1:14"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"28768:3:14"},"nodeType":"YulFunctionCall","src":"28768:15:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"28762:2:14"},"nodeType":"YulFunctionCall","src":"28762:22:14"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"28715:2:14"},"nodeType":"YulFunctionCall","src":"28715:83:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"28695:6:14"},"nodeType":"YulFunctionCall","src":"28695:113:14"},"nodeType":"YulIf","src":"28692:139:14"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"28459:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"28462:1:14","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"28468:7:14","type":""}],"src":"28428:410:14"},{"body":{"nodeType":"YulBlock","src":"28872:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"28889:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"28892:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28882:6:14"},"nodeType":"YulFunctionCall","src":"28882:88:14"},"nodeType":"YulExpressionStatement","src":"28882:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"28986:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"28989:4:14","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28979:6:14"},"nodeType":"YulFunctionCall","src":"28979:15:14"},"nodeType":"YulExpressionStatement","src":"28979:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"29010:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"29013:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"29003:6:14"},"nodeType":"YulFunctionCall","src":"29003:15:14"},"nodeType":"YulExpressionStatement","src":"29003:15:14"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"28844:180:14"},{"body":{"nodeType":"YulBlock","src":"29072:143:14","statements":[{"nodeType":"YulAssignment","src":"29082:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29105:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29087:17:14"},"nodeType":"YulFunctionCall","src":"29087:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"29082:1:14"}]},{"nodeType":"YulAssignment","src":"29116:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29139:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29121:17:14"},"nodeType":"YulFunctionCall","src":"29121:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"29116:1:14"}]},{"body":{"nodeType":"YulBlock","src":"29163:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"29165:16:14"},"nodeType":"YulFunctionCall","src":"29165:18:14"},"nodeType":"YulExpressionStatement","src":"29165:18:14"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29160:1:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"29153:6:14"},"nodeType":"YulFunctionCall","src":"29153:9:14"},"nodeType":"YulIf","src":"29150:35:14"},{"nodeType":"YulAssignment","src":"29195:14:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29204:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"29207:1:14"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"29200:3:14"},"nodeType":"YulFunctionCall","src":"29200:9:14"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"29195:1:14"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"29061:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"29064:1:14","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"29070:1:14","type":""}],"src":"29030:185:14"},{"body":{"nodeType":"YulBlock","src":"29253:28:14","statements":[{"nodeType":"YulAssignment","src":"29263:12:14","value":{"name":"value","nodeType":"YulIdentifier","src":"29270:5:14"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"29263:3:14"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"29239:5:14","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"29249:3:14","type":""}],"src":"29221:60:14"},{"body":{"nodeType":"YulBlock","src":"29346:81:14","statements":[{"nodeType":"YulAssignment","src":"29356:65:14","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"29413:5:14"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"29396:16:14"},"nodeType":"YulFunctionCall","src":"29396:23:14"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"29387:8:14"},"nodeType":"YulFunctionCall","src":"29387:33:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29369:17:14"},"nodeType":"YulFunctionCall","src":"29369:52:14"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"29356:9:14"}]}]},"name":"convert_t_uint96_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"29326:5:14","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"29336:9:14","type":""}],"src":"29287:140:14"},{"body":{"nodeType":"YulBlock","src":"29497:65:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"29514:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"29549:5:14"}],"functionName":{"name":"convert_t_uint96_to_t_uint256","nodeType":"YulIdentifier","src":"29519:29:14"},"nodeType":"YulFunctionCall","src":"29519:36:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29507:6:14"},"nodeType":"YulFunctionCall","src":"29507:49:14"},"nodeType":"YulExpressionStatement","src":"29507:49:14"}]},"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"29485:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"29492:3:14","type":""}],"src":"29433:129:14"},{"body":{"nodeType":"YulBlock","src":"29632:82:14","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"29655:3:14"},{"name":"src","nodeType":"YulIdentifier","src":"29660:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"29665:6:14"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"29642:12:14"},"nodeType":"YulFunctionCall","src":"29642:30:14"},"nodeType":"YulExpressionStatement","src":"29642:30:14"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"29692:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"29697:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29688:3:14"},"nodeType":"YulFunctionCall","src":"29688:16:14"},{"kind":"number","nodeType":"YulLiteral","src":"29706:1:14","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29681:6:14"},"nodeType":"YulFunctionCall","src":"29681:27:14"},"nodeType":"YulExpressionStatement","src":"29681:27:14"}]},"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"29614:3:14","type":""},{"name":"dst","nodeType":"YulTypedName","src":"29619:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"29624:6:14","type":""}],"src":"29568:146:14"},{"body":{"nodeType":"YulBlock","src":"29768:54:14","statements":[{"nodeType":"YulAssignment","src":"29778:38:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"29796:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"29803:2:14","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29792:3:14"},"nodeType":"YulFunctionCall","src":"29792:14:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"29812:2:14","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"29808:3:14"},"nodeType":"YulFunctionCall","src":"29808:7:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"29788:3:14"},"nodeType":"YulFunctionCall","src":"29788:28:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"29778:6:14"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"29751:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"29761:6:14","type":""}],"src":"29720:102:14"},{"body":{"nodeType":"YulBlock","src":"29954:215:14","statements":[{"nodeType":"YulAssignment","src":"29964:78:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30030:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"30035:6:14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"29971:58:14"},"nodeType":"YulFunctionCall","src":"29971:71:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"29964:3:14"}]},{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"30089:5:14"},{"name":"pos","nodeType":"YulIdentifier","src":"30096:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"30101:6:14"}],"functionName":{"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"30052:36:14"},"nodeType":"YulFunctionCall","src":"30052:56:14"},"nodeType":"YulExpressionStatement","src":"30052:56:14"},{"nodeType":"YulAssignment","src":"30117:46:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30128:3:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"30155:6:14"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"30133:21:14"},"nodeType":"YulFunctionCall","src":"30133:29:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30124:3:14"},"nodeType":"YulFunctionCall","src":"30124:39:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"30117:3:14"}]}]},"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"29927:5:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"29934:6:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"29942:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"29950:3:14","type":""}],"src":"29852:317:14"},{"body":{"nodeType":"YulBlock","src":"30386:451:14","statements":[{"nodeType":"YulAssignment","src":"30396:27:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30408:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"30419:3:14","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30404:3:14"},"nodeType":"YulFunctionCall","src":"30404:19:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30396:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"30477:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30490:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"30501:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30486:3:14"},"nodeType":"YulFunctionCall","src":"30486:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"30433:43:14"},"nodeType":"YulFunctionCall","src":"30433:71:14"},"nodeType":"YulExpressionStatement","src":"30433:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"30558:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30571:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"30582:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30567:3:14"},"nodeType":"YulFunctionCall","src":"30567:18:14"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"30514:43:14"},"nodeType":"YulFunctionCall","src":"30514:72:14"},"nodeType":"YulExpressionStatement","src":"30514:72:14"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"30639:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30652:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"30663:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30648:3:14"},"nodeType":"YulFunctionCall","src":"30648:18:14"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"30596:42:14"},"nodeType":"YulFunctionCall","src":"30596:71:14"},"nodeType":"YulExpressionStatement","src":"30596:71:14"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30688:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"30699:2:14","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30684:3:14"},"nodeType":"YulFunctionCall","src":"30684:18:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"30708:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"30714:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"30704:3:14"},"nodeType":"YulFunctionCall","src":"30704:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30677:6:14"},"nodeType":"YulFunctionCall","src":"30677:48:14"},"nodeType":"YulExpressionStatement","src":"30677:48:14"},{"nodeType":"YulAssignment","src":"30734:96:14","value":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"30808:6:14"},{"name":"value4","nodeType":"YulIdentifier","src":"30816:6:14"},{"name":"tail","nodeType":"YulIdentifier","src":"30825:4:14"}],"functionName":{"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"30742:65:14"},"nodeType":"YulFunctionCall","src":"30742:88:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30734:4:14"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"30326:9:14","type":""},{"name":"value4","nodeType":"YulTypedName","src":"30338:6:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"30346:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"30354:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"30362:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"30370:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"30381:4:14","type":""}],"src":"30175:662:14"},{"body":{"nodeType":"YulBlock","src":"30949:127:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"30971:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"30979:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30967:3:14"},"nodeType":"YulFunctionCall","src":"30967:14:14"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561","kind":"string","nodeType":"YulLiteral","src":"30983:34:14","type":"","value":"Initializable: contract is alrea"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30960:6:14"},"nodeType":"YulFunctionCall","src":"30960:58:14"},"nodeType":"YulExpressionStatement","src":"30960:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"31039:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"31047:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31035:3:14"},"nodeType":"YulFunctionCall","src":"31035:15:14"},{"hexValue":"647920696e697469616c697a6564","kind":"string","nodeType":"YulLiteral","src":"31052:16:14","type":"","value":"dy initialized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31028:6:14"},"nodeType":"YulFunctionCall","src":"31028:41:14"},"nodeType":"YulExpressionStatement","src":"31028:41:14"}]},"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"30941:6:14","type":""}],"src":"30843:233:14"},{"body":{"nodeType":"YulBlock","src":"31228:220:14","statements":[{"nodeType":"YulAssignment","src":"31238:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31304:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"31309:2:14","type":"","value":"46"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31245:58:14"},"nodeType":"YulFunctionCall","src":"31245:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"31238:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31410:3:14"}],"functionName":{"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulIdentifier","src":"31321:88:14"},"nodeType":"YulFunctionCall","src":"31321:93:14"},"nodeType":"YulExpressionStatement","src":"31321:93:14"},{"nodeType":"YulAssignment","src":"31423:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31434:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"31439:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31430:3:14"},"nodeType":"YulFunctionCall","src":"31430:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"31423:3:14"}]}]},"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"31216:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"31224:3:14","type":""}],"src":"31082:366:14"},{"body":{"nodeType":"YulBlock","src":"31625:248:14","statements":[{"nodeType":"YulAssignment","src":"31635:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31647:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"31658:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31643:3:14"},"nodeType":"YulFunctionCall","src":"31643:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31635:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31682:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"31693:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31678:3:14"},"nodeType":"YulFunctionCall","src":"31678:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31701:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"31707:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"31697:3:14"},"nodeType":"YulFunctionCall","src":"31697:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31671:6:14"},"nodeType":"YulFunctionCall","src":"31671:47:14"},"nodeType":"YulExpressionStatement","src":"31671:47:14"},{"nodeType":"YulAssignment","src":"31727:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31861:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31735:124:14"},"nodeType":"YulFunctionCall","src":"31735:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31727:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31605:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31620:4:14","type":""}],"src":"31454:419:14"},{"body":{"nodeType":"YulBlock","src":"31932:32:14","statements":[{"nodeType":"YulAssignment","src":"31942:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"31953:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"31942:7:14"}]}]},"name":"cleanup_t_rational_1_by_1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"31914:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"31924:7:14","type":""}],"src":"31879:85:14"},{"body":{"nodeType":"YulBlock","src":"32013:43:14","statements":[{"nodeType":"YulAssignment","src":"32023:27:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32038:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"32045:4:14","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"32034:3:14"},"nodeType":"YulFunctionCall","src":"32034:16:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"32023:7:14"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"31995:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"32005:7:14","type":""}],"src":"31970:86:14"},{"body":{"nodeType":"YulBlock","src":"32128:88:14","statements":[{"nodeType":"YulAssignment","src":"32138:72:14","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32202:5:14"}],"functionName":{"name":"cleanup_t_rational_1_by_1","nodeType":"YulIdentifier","src":"32176:25:14"},"nodeType":"YulFunctionCall","src":"32176:32:14"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"32167:8:14"},"nodeType":"YulFunctionCall","src":"32167:42:14"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"32151:15:14"},"nodeType":"YulFunctionCall","src":"32151:59:14"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"32138:9:14"}]}]},"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32108:5:14","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"32118:9:14","type":""}],"src":"32062:154:14"},{"body":{"nodeType":"YulBlock","src":"32293:72:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"32310:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32352:5:14"}],"functionName":{"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulIdentifier","src":"32315:36:14"},"nodeType":"YulFunctionCall","src":"32315:43:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32303:6:14"},"nodeType":"YulFunctionCall","src":"32303:56:14"},"nodeType":"YulExpressionStatement","src":"32303:56:14"}]},"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32281:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"32288:3:14","type":""}],"src":"32222:143:14"},{"body":{"nodeType":"YulBlock","src":"32475:130:14","statements":[{"nodeType":"YulAssignment","src":"32485:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32497:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"32508:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32493:3:14"},"nodeType":"YulFunctionCall","src":"32493:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"32485:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"32571:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32584:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"32595:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32580:3:14"},"nodeType":"YulFunctionCall","src":"32580:17:14"}],"functionName":{"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"32521:49:14"},"nodeType":"YulFunctionCall","src":"32521:77:14"},"nodeType":"YulExpressionStatement","src":"32521:77:14"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"32447:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"32459:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"32470:4:14","type":""}],"src":"32371:234:14"},{"body":{"nodeType":"YulBlock","src":"32717:72:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"32739:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"32747:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32735:3:14"},"nodeType":"YulFunctionCall","src":"32735:14:14"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"32751:30:14","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32728:6:14"},"nodeType":"YulFunctionCall","src":"32728:54:14"},"nodeType":"YulExpressionStatement","src":"32728:54:14"}]},"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"32709:6:14","type":""}],"src":"32611:178:14"},{"body":{"nodeType":"YulBlock","src":"32941:220:14","statements":[{"nodeType":"YulAssignment","src":"32951:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33017:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"33022:2:14","type":"","value":"28"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"32958:58:14"},"nodeType":"YulFunctionCall","src":"32958:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"32951:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33123:3:14"}],"functionName":{"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulIdentifier","src":"33034:88:14"},"nodeType":"YulFunctionCall","src":"33034:93:14"},"nodeType":"YulExpressionStatement","src":"33034:93:14"},{"nodeType":"YulAssignment","src":"33136:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33147:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"33152:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33143:3:14"},"nodeType":"YulFunctionCall","src":"33143:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"33136:3:14"}]}]},"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"32929:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"32937:3:14","type":""}],"src":"32795:366:14"},{"body":{"nodeType":"YulBlock","src":"33338:248:14","statements":[{"nodeType":"YulAssignment","src":"33348:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33360:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"33371:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33356:3:14"},"nodeType":"YulFunctionCall","src":"33356:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"33348:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33395:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"33406:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33391:3:14"},"nodeType":"YulFunctionCall","src":"33391:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"33414:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"33420:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"33410:3:14"},"nodeType":"YulFunctionCall","src":"33410:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33384:6:14"},"nodeType":"YulFunctionCall","src":"33384:47:14"},"nodeType":"YulExpressionStatement","src":"33384:47:14"},{"nodeType":"YulAssignment","src":"33440:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"33574:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"33448:124:14"},"nodeType":"YulFunctionCall","src":"33448:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"33440:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"33318:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"33333:4:14","type":""}],"src":"33167:419:14"},{"body":{"nodeType":"YulBlock","src":"33698:116:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"33720:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"33728:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33716:3:14"},"nodeType":"YulFunctionCall","src":"33716:14:14"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"33732:34:14","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33709:6:14"},"nodeType":"YulFunctionCall","src":"33709:58:14"},"nodeType":"YulExpressionStatement","src":"33709:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"33788:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"33796:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33784:3:14"},"nodeType":"YulFunctionCall","src":"33784:15:14"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"33801:5:14","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33777:6:14"},"nodeType":"YulFunctionCall","src":"33777:30:14"},"nodeType":"YulExpressionStatement","src":"33777:30:14"}]},"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"33690:6:14","type":""}],"src":"33592:222:14"},{"body":{"nodeType":"YulBlock","src":"33966:220:14","statements":[{"nodeType":"YulAssignment","src":"33976:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34042:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"34047:2:14","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"33983:58:14"},"nodeType":"YulFunctionCall","src":"33983:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"33976:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34148:3:14"}],"functionName":{"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulIdentifier","src":"34059:88:14"},"nodeType":"YulFunctionCall","src":"34059:93:14"},"nodeType":"YulExpressionStatement","src":"34059:93:14"},{"nodeType":"YulAssignment","src":"34161:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34172:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"34177:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34168:3:14"},"nodeType":"YulFunctionCall","src":"34168:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"34161:3:14"}]}]},"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"33954:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"33962:3:14","type":""}],"src":"33820:366:14"},{"body":{"nodeType":"YulBlock","src":"34363:248:14","statements":[{"nodeType":"YulAssignment","src":"34373:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34385:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"34396:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34381:3:14"},"nodeType":"YulFunctionCall","src":"34381:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34373:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34420:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"34431:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34416:3:14"},"nodeType":"YulFunctionCall","src":"34416:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34439:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"34445:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"34435:3:14"},"nodeType":"YulFunctionCall","src":"34435:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34409:6:14"},"nodeType":"YulFunctionCall","src":"34409:47:14"},"nodeType":"YulExpressionStatement","src":"34409:47:14"},{"nodeType":"YulAssignment","src":"34465:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34599:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"34473:124:14"},"nodeType":"YulFunctionCall","src":"34473:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34465:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"34343:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"34358:4:14","type":""}],"src":"34192:419:14"},{"body":{"nodeType":"YulBlock","src":"34723:120:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"34745:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"34753:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34741:3:14"},"nodeType":"YulFunctionCall","src":"34741:14:14"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"34757:34:14","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34734:6:14"},"nodeType":"YulFunctionCall","src":"34734:58:14"},"nodeType":"YulExpressionStatement","src":"34734:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"34813:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"34821:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34809:3:14"},"nodeType":"YulFunctionCall","src":"34809:15:14"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"34826:9:14","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34802:6:14"},"nodeType":"YulFunctionCall","src":"34802:34:14"},"nodeType":"YulExpressionStatement","src":"34802:34:14"}]},"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"34715:6:14","type":""}],"src":"34617:226:14"},{"body":{"nodeType":"YulBlock","src":"34995:220:14","statements":[{"nodeType":"YulAssignment","src":"35005:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35071:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"35076:2:14","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"35012:58:14"},"nodeType":"YulFunctionCall","src":"35012:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"35005:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35177:3:14"}],"functionName":{"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulIdentifier","src":"35088:88:14"},"nodeType":"YulFunctionCall","src":"35088:93:14"},"nodeType":"YulExpressionStatement","src":"35088:93:14"},{"nodeType":"YulAssignment","src":"35190:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35201:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"35206:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35197:3:14"},"nodeType":"YulFunctionCall","src":"35197:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"35190:3:14"}]}]},"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"34983:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"34991:3:14","type":""}],"src":"34849:366:14"},{"body":{"nodeType":"YulBlock","src":"35392:248:14","statements":[{"nodeType":"YulAssignment","src":"35402:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"35414:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"35425:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35410:3:14"},"nodeType":"YulFunctionCall","src":"35410:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"35402:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"35449:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"35460:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35445:3:14"},"nodeType":"YulFunctionCall","src":"35445:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"35468:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"35474:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"35464:3:14"},"nodeType":"YulFunctionCall","src":"35464:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35438:6:14"},"nodeType":"YulFunctionCall","src":"35438:47:14"},"nodeType":"YulExpressionStatement","src":"35438:47:14"},{"nodeType":"YulAssignment","src":"35494:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"35628:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"35502:124:14"},"nodeType":"YulFunctionCall","src":"35502:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"35494:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"35372:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"35387:4:14","type":""}],"src":"35221:419:14"},{"body":{"nodeType":"YulBlock","src":"35752:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"35774:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"35782:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35770:3:14"},"nodeType":"YulFunctionCall","src":"35770:14:14"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"35786:34:14","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35763:6:14"},"nodeType":"YulFunctionCall","src":"35763:58:14"},"nodeType":"YulExpressionStatement","src":"35763:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"35842:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"35850:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35838:3:14"},"nodeType":"YulFunctionCall","src":"35838:15:14"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"35855:7:14","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35831:6:14"},"nodeType":"YulFunctionCall","src":"35831:32:14"},"nodeType":"YulExpressionStatement","src":"35831:32:14"}]},"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"35744:6:14","type":""}],"src":"35646:224:14"},{"body":{"nodeType":"YulBlock","src":"36022:220:14","statements":[{"nodeType":"YulAssignment","src":"36032:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36098:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"36103:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"36039:58:14"},"nodeType":"YulFunctionCall","src":"36039:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"36032:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36204:3:14"}],"functionName":{"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulIdentifier","src":"36115:88:14"},"nodeType":"YulFunctionCall","src":"36115:93:14"},"nodeType":"YulExpressionStatement","src":"36115:93:14"},{"nodeType":"YulAssignment","src":"36217:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36228:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"36233:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36224:3:14"},"nodeType":"YulFunctionCall","src":"36224:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"36217:3:14"}]}]},"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"36010:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"36018:3:14","type":""}],"src":"35876:366:14"},{"body":{"nodeType":"YulBlock","src":"36419:248:14","statements":[{"nodeType":"YulAssignment","src":"36429:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36441:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"36452:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36437:3:14"},"nodeType":"YulFunctionCall","src":"36437:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"36429:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36476:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"36487:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36472:3:14"},"nodeType":"YulFunctionCall","src":"36472:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"36495:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"36501:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"36491:3:14"},"nodeType":"YulFunctionCall","src":"36491:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36465:6:14"},"nodeType":"YulFunctionCall","src":"36465:47:14"},"nodeType":"YulExpressionStatement","src":"36465:47:14"},{"nodeType":"YulAssignment","src":"36521:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"36655:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"36529:124:14"},"nodeType":"YulFunctionCall","src":"36529:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"36521:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"36399:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"36414:4:14","type":""}],"src":"36248:419:14"},{"body":{"nodeType":"YulBlock","src":"36779:123:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"36801:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"36809:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36797:3:14"},"nodeType":"YulFunctionCall","src":"36797:14:14"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"36813:34:14","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36790:6:14"},"nodeType":"YulFunctionCall","src":"36790:58:14"},"nodeType":"YulExpressionStatement","src":"36790:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"36869:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"36877:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36865:3:14"},"nodeType":"YulFunctionCall","src":"36865:15:14"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"36882:12:14","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36858:6:14"},"nodeType":"YulFunctionCall","src":"36858:37:14"},"nodeType":"YulExpressionStatement","src":"36858:37:14"}]},"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"36771:6:14","type":""}],"src":"36673:229:14"},{"body":{"nodeType":"YulBlock","src":"37054:220:14","statements":[{"nodeType":"YulAssignment","src":"37064:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37130:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"37135:2:14","type":"","value":"42"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37071:58:14"},"nodeType":"YulFunctionCall","src":"37071:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"37064:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37236:3:14"}],"functionName":{"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulIdentifier","src":"37147:88:14"},"nodeType":"YulFunctionCall","src":"37147:93:14"},"nodeType":"YulExpressionStatement","src":"37147:93:14"},{"nodeType":"YulAssignment","src":"37249:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37260:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"37265:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37256:3:14"},"nodeType":"YulFunctionCall","src":"37256:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"37249:3:14"}]}]},"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"37042:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"37050:3:14","type":""}],"src":"36908:366:14"},{"body":{"nodeType":"YulBlock","src":"37451:248:14","statements":[{"nodeType":"YulAssignment","src":"37461:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37473:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"37484:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37469:3:14"},"nodeType":"YulFunctionCall","src":"37469:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37461:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37508:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"37519:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37504:3:14"},"nodeType":"YulFunctionCall","src":"37504:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37527:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"37533:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"37523:3:14"},"nodeType":"YulFunctionCall","src":"37523:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37497:6:14"},"nodeType":"YulFunctionCall","src":"37497:47:14"},"nodeType":"YulExpressionStatement","src":"37497:47:14"},{"nodeType":"YulAssignment","src":"37553:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37687:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37561:124:14"},"nodeType":"YulFunctionCall","src":"37561:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37553:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"37431:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"37446:4:14","type":""}],"src":"37280:419:14"},{"body":{"nodeType":"YulBlock","src":"37887:371:14","statements":[{"nodeType":"YulAssignment","src":"37897:27:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37909:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"37920:3:14","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37905:3:14"},"nodeType":"YulFunctionCall","src":"37905:19:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37897:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"37978:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37991:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"38002:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37987:3:14"},"nodeType":"YulFunctionCall","src":"37987:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"37934:43:14"},"nodeType":"YulFunctionCall","src":"37934:71:14"},"nodeType":"YulExpressionStatement","src":"37934:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"38059:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38072:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"38083:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38068:3:14"},"nodeType":"YulFunctionCall","src":"38068:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38015:43:14"},"nodeType":"YulFunctionCall","src":"38015:72:14"},"nodeType":"YulExpressionStatement","src":"38015:72:14"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"38141:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38154:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"38165:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38150:3:14"},"nodeType":"YulFunctionCall","src":"38150:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38097:43:14"},"nodeType":"YulFunctionCall","src":"38097:72:14"},"nodeType":"YulExpressionStatement","src":"38097:72:14"},{"expression":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"38223:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38236:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"38247:2:14","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38232:3:14"},"nodeType":"YulFunctionCall","src":"38232:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38179:43:14"},"nodeType":"YulFunctionCall","src":"38179:72:14"},"nodeType":"YulExpressionStatement","src":"38179:72:14"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"37835:9:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"37847:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"37855:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"37863:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"37871:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"37882:4:14","type":""}],"src":"37705:553:14"},{"body":{"nodeType":"YulBlock","src":"38370:67:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"38392:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"38400:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38388:3:14"},"nodeType":"YulFunctionCall","src":"38388:14:14"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"38404:25:14","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"38381:6:14"},"nodeType":"YulFunctionCall","src":"38381:49:14"},"nodeType":"YulExpressionStatement","src":"38381:49:14"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"38362:6:14","type":""}],"src":"38264:173:14"},{"body":{"nodeType":"YulBlock","src":"38589:220:14","statements":[{"nodeType":"YulAssignment","src":"38599:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"38665:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"38670:2:14","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"38606:58:14"},"nodeType":"YulFunctionCall","src":"38606:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"38599:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"38771:3:14"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"38682:88:14"},"nodeType":"YulFunctionCall","src":"38682:93:14"},"nodeType":"YulExpressionStatement","src":"38682:93:14"},{"nodeType":"YulAssignment","src":"38784:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"38795:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"38800:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38791:3:14"},"nodeType":"YulFunctionCall","src":"38791:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"38784:3:14"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"38577:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"38585:3:14","type":""}],"src":"38443:366:14"},{"body":{"nodeType":"YulBlock","src":"38986:248:14","statements":[{"nodeType":"YulAssignment","src":"38996:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39008:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"39019:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39004:3:14"},"nodeType":"YulFunctionCall","src":"39004:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38996:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39043:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"39054:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39039:3:14"},"nodeType":"YulFunctionCall","src":"39039:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"39062:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"39068:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"39058:3:14"},"nodeType":"YulFunctionCall","src":"39058:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39032:6:14"},"nodeType":"YulFunctionCall","src":"39032:47:14"},"nodeType":"YulExpressionStatement","src":"39032:47:14"},{"nodeType":"YulAssignment","src":"39088:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"39222:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"39096:124:14"},"nodeType":"YulFunctionCall","src":"39096:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"39088:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"38966:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"38981:4:14","type":""}],"src":"38815:419:14"},{"body":{"nodeType":"YulBlock","src":"39284:172:14","statements":[{"nodeType":"YulAssignment","src":"39294:24:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39316:1:14"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"39299:16:14"},"nodeType":"YulFunctionCall","src":"39299:19:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"39294:1:14"}]},{"nodeType":"YulAssignment","src":"39327:24:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"39349:1:14"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"39332:16:14"},"nodeType":"YulFunctionCall","src":"39332:19:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"39327:1:14"}]},{"nodeType":"YulAssignment","src":"39360:17:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39372:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"39375:1:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"39368:3:14"},"nodeType":"YulFunctionCall","src":"39368:9:14"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"39360:4:14"}]},{"body":{"nodeType":"YulBlock","src":"39427:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"39429:16:14"},"nodeType":"YulFunctionCall","src":"39429:18:14"},"nodeType":"YulExpressionStatement","src":"39429:18:14"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"39393:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"39399:26:14","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"39390:2:14"},"nodeType":"YulFunctionCall","src":"39390:36:14"},"nodeType":"YulIf","src":"39387:62:14"}]},"name":"checked_sub_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"39270:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"39273:1:14","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"39279:4:14","type":""}],"src":"39240:216:14"},{"body":{"nodeType":"YulBlock","src":"39520:80:14","statements":[{"nodeType":"YulAssignment","src":"39530:64:14","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"39586:5:14"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"39569:16:14"},"nodeType":"YulFunctionCall","src":"39569:23:14"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"39560:8:14"},"nodeType":"YulFunctionCall","src":"39560:33:14"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"39543:16:14"},"nodeType":"YulFunctionCall","src":"39543:51:14"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"39530:9:14"}]}]},"name":"convert_t_uint64_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"39500:5:14","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"39510:9:14","type":""}],"src":"39462:138:14"},{"body":{"nodeType":"YulBlock","src":"39669:64:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39686:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"39720:5:14"}],"functionName":{"name":"convert_t_uint64_to_t_uint96","nodeType":"YulIdentifier","src":"39691:28:14"},"nodeType":"YulFunctionCall","src":"39691:35:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39679:6:14"},"nodeType":"YulFunctionCall","src":"39679:48:14"},"nodeType":"YulExpressionStatement","src":"39679:48:14"}]},"name":"abi_encode_t_uint64_to_t_uint96_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"39657:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"39664:3:14","type":""}],"src":"39606:127:14"},{"body":{"nodeType":"YulBlock","src":"39863:204:14","statements":[{"nodeType":"YulAssignment","src":"39873:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39885:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"39896:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39881:3:14"},"nodeType":"YulFunctionCall","src":"39881:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"39873:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"39953:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39966:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"39977:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39962:3:14"},"nodeType":"YulFunctionCall","src":"39962:17:14"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"39909:43:14"},"nodeType":"YulFunctionCall","src":"39909:71:14"},"nodeType":"YulExpressionStatement","src":"39909:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"40032:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40045:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"40056:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40041:3:14"},"nodeType":"YulFunctionCall","src":"40041:18:14"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint96_fromStack","nodeType":"YulIdentifier","src":"39990:41:14"},"nodeType":"YulFunctionCall","src":"39990:70:14"},"nodeType":"YulExpressionStatement","src":"39990:70:14"}]},"name":"abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"39827:9:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"39839:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"39847:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"39858:4:14","type":""}],"src":"39739:328:14"},{"body":{"nodeType":"YulBlock","src":"40179:76:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"40201:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"40209:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40197:3:14"},"nodeType":"YulFunctionCall","src":"40197:14:14"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"40213:34:14","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40190:6:14"},"nodeType":"YulFunctionCall","src":"40190:58:14"},"nodeType":"YulExpressionStatement","src":"40190:58:14"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"40171:6:14","type":""}],"src":"40073:182:14"},{"body":{"nodeType":"YulBlock","src":"40407:220:14","statements":[{"nodeType":"YulAssignment","src":"40417:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40483:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"40488:2:14","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40424:58:14"},"nodeType":"YulFunctionCall","src":"40424:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"40417:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40589:3:14"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"40500:88:14"},"nodeType":"YulFunctionCall","src":"40500:93:14"},"nodeType":"YulExpressionStatement","src":"40500:93:14"},{"nodeType":"YulAssignment","src":"40602:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40613:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"40618:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40609:3:14"},"nodeType":"YulFunctionCall","src":"40609:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"40602:3:14"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"40395:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"40403:3:14","type":""}],"src":"40261:366:14"},{"body":{"nodeType":"YulBlock","src":"40804:248:14","statements":[{"nodeType":"YulAssignment","src":"40814:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40826:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"40837:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40822:3:14"},"nodeType":"YulFunctionCall","src":"40822:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40814:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40861:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"40872:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40857:3:14"},"nodeType":"YulFunctionCall","src":"40857:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"40880:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"40886:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"40876:3:14"},"nodeType":"YulFunctionCall","src":"40876:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40850:6:14"},"nodeType":"YulFunctionCall","src":"40850:47:14"},"nodeType":"YulExpressionStatement","src":"40850:47:14"},{"nodeType":"YulAssignment","src":"40906:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"41040:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40914:124:14"},"nodeType":"YulFunctionCall","src":"40914:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40906:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"40784:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"40799:4:14","type":""}],"src":"40633:419:14"},{"body":{"nodeType":"YulBlock","src":"41164:60:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"41186:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"41194:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41182:3:14"},"nodeType":"YulFunctionCall","src":"41182:14:14"},{"hexValue":"5061757361626c653a20706175736564","kind":"string","nodeType":"YulLiteral","src":"41198:18:14","type":"","value":"Pausable: paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41175:6:14"},"nodeType":"YulFunctionCall","src":"41175:42:14"},"nodeType":"YulExpressionStatement","src":"41175:42:14"}]},"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"41156:6:14","type":""}],"src":"41058:166:14"},{"body":{"nodeType":"YulBlock","src":"41376:220:14","statements":[{"nodeType":"YulAssignment","src":"41386:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41452:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"41457:2:14","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"41393:58:14"},"nodeType":"YulFunctionCall","src":"41393:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"41386:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41558:3:14"}],"functionName":{"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulIdentifier","src":"41469:88:14"},"nodeType":"YulFunctionCall","src":"41469:93:14"},"nodeType":"YulExpressionStatement","src":"41469:93:14"},{"nodeType":"YulAssignment","src":"41571:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41582:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"41587:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41578:3:14"},"nodeType":"YulFunctionCall","src":"41578:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"41571:3:14"}]}]},"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"41364:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"41372:3:14","type":""}],"src":"41230:366:14"},{"body":{"nodeType":"YulBlock","src":"41773:248:14","statements":[{"nodeType":"YulAssignment","src":"41783:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41795:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"41806:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41791:3:14"},"nodeType":"YulFunctionCall","src":"41791:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"41783:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41830:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"41841:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41826:3:14"},"nodeType":"YulFunctionCall","src":"41826:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"41849:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"41855:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"41845:3:14"},"nodeType":"YulFunctionCall","src":"41845:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41819:6:14"},"nodeType":"YulFunctionCall","src":"41819:47:14"},"nodeType":"YulExpressionStatement","src":"41819:47:14"},{"nodeType":"YulAssignment","src":"41875:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42009:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"41883:124:14"},"nodeType":"YulFunctionCall","src":"41883:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"41875:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"41753:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"41768:4:14","type":""}],"src":"41602:419:14"},{"body":{"nodeType":"YulBlock","src":"42133:61:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"42155:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"42163:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42151:3:14"},"nodeType":"YulFunctionCall","src":"42151:14:14"},{"hexValue":"546f6b656e4e6f74537570706f72746564","kind":"string","nodeType":"YulLiteral","src":"42167:19:14","type":"","value":"TokenNotSupported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42144:6:14"},"nodeType":"YulFunctionCall","src":"42144:43:14"},"nodeType":"YulExpressionStatement","src":"42144:43:14"}]},"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"42125:6:14","type":""}],"src":"42027:167:14"},{"body":{"nodeType":"YulBlock","src":"42346:220:14","statements":[{"nodeType":"YulAssignment","src":"42356:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42422:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"42427:2:14","type":"","value":"17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42363:58:14"},"nodeType":"YulFunctionCall","src":"42363:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"42356:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42528:3:14"}],"functionName":{"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulIdentifier","src":"42439:88:14"},"nodeType":"YulFunctionCall","src":"42439:93:14"},"nodeType":"YulExpressionStatement","src":"42439:93:14"},{"nodeType":"YulAssignment","src":"42541:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42552:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"42557:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42548:3:14"},"nodeType":"YulFunctionCall","src":"42548:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"42541:3:14"}]}]},"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"42334:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"42342:3:14","type":""}],"src":"42200:366:14"},{"body":{"nodeType":"YulBlock","src":"42743:248:14","statements":[{"nodeType":"YulAssignment","src":"42753:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42765:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"42776:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42761:3:14"},"nodeType":"YulFunctionCall","src":"42761:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42753:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42800:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"42811:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42796:3:14"},"nodeType":"YulFunctionCall","src":"42796:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42819:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"42825:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"42815:3:14"},"nodeType":"YulFunctionCall","src":"42815:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42789:6:14"},"nodeType":"YulFunctionCall","src":"42789:47:14"},"nodeType":"YulExpressionStatement","src":"42789:47:14"},{"nodeType":"YulAssignment","src":"42845:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42979:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42853:124:14"},"nodeType":"YulFunctionCall","src":"42853:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42845:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"42723:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"42738:4:14","type":""}],"src":"42572:419:14"},{"body":{"nodeType":"YulBlock","src":"43103:56:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"43125:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"43133:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43121:3:14"},"nodeType":"YulFunctionCall","src":"43121:14:14"},{"hexValue":"416d6f756e7449735a65726f","kind":"string","nodeType":"YulLiteral","src":"43137:14:14","type":"","value":"AmountIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43114:6:14"},"nodeType":"YulFunctionCall","src":"43114:38:14"},"nodeType":"YulExpressionStatement","src":"43114:38:14"}]},"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"43095:6:14","type":""}],"src":"42997:162:14"},{"body":{"nodeType":"YulBlock","src":"43311:220:14","statements":[{"nodeType":"YulAssignment","src":"43321:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43387:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"43392:2:14","type":"","value":"12"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43328:58:14"},"nodeType":"YulFunctionCall","src":"43328:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"43321:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43493:3:14"}],"functionName":{"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulIdentifier","src":"43404:88:14"},"nodeType":"YulFunctionCall","src":"43404:93:14"},"nodeType":"YulExpressionStatement","src":"43404:93:14"},{"nodeType":"YulAssignment","src":"43506:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43517:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"43522:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43513:3:14"},"nodeType":"YulFunctionCall","src":"43513:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"43506:3:14"}]}]},"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"43299:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"43307:3:14","type":""}],"src":"43165:366:14"},{"body":{"nodeType":"YulBlock","src":"43708:248:14","statements":[{"nodeType":"YulAssignment","src":"43718:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43730:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"43741:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43726:3:14"},"nodeType":"YulFunctionCall","src":"43726:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43718:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43765:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"43776:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43761:3:14"},"nodeType":"YulFunctionCall","src":"43761:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43784:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"43790:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"43780:3:14"},"nodeType":"YulFunctionCall","src":"43780:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43754:6:14"},"nodeType":"YulFunctionCall","src":"43754:47:14"},"nodeType":"YulExpressionStatement","src":"43754:47:14"},{"nodeType":"YulAssignment","src":"43810:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43944:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43818:124:14"},"nodeType":"YulFunctionCall","src":"43818:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43810:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"43688:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"43703:4:14","type":""}],"src":"43537:419:14"},{"body":{"nodeType":"YulBlock","src":"44068:60:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"44090:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"44098:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44086:3:14"},"nodeType":"YulFunctionCall","src":"44086:14:14"},{"hexValue":"5468726f775a65726f41646472657373","kind":"string","nodeType":"YulLiteral","src":"44102:18:14","type":"","value":"ThrowZeroAddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44079:6:14"},"nodeType":"YulFunctionCall","src":"44079:42:14"},"nodeType":"YulExpressionStatement","src":"44079:42:14"}]},"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"44060:6:14","type":""}],"src":"43962:166:14"},{"body":{"nodeType":"YulBlock","src":"44280:220:14","statements":[{"nodeType":"YulAssignment","src":"44290:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44356:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"44361:2:14","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44297:58:14"},"nodeType":"YulFunctionCall","src":"44297:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"44290:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44462:3:14"}],"functionName":{"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulIdentifier","src":"44373:88:14"},"nodeType":"YulFunctionCall","src":"44373:93:14"},"nodeType":"YulExpressionStatement","src":"44373:93:14"},{"nodeType":"YulAssignment","src":"44475:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44486:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"44491:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44482:3:14"},"nodeType":"YulFunctionCall","src":"44482:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"44475:3:14"}]}]},"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"44268:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"44276:3:14","type":""}],"src":"44134:366:14"},{"body":{"nodeType":"YulBlock","src":"44677:248:14","statements":[{"nodeType":"YulAssignment","src":"44687:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44699:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"44710:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44695:3:14"},"nodeType":"YulFunctionCall","src":"44695:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44687:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44734:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"44745:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44730:3:14"},"nodeType":"YulFunctionCall","src":"44730:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44753:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"44759:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"44749:3:14"},"nodeType":"YulFunctionCall","src":"44749:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44723:6:14"},"nodeType":"YulFunctionCall","src":"44723:47:14"},"nodeType":"YulExpressionStatement","src":"44723:47:14"},{"nodeType":"YulAssignment","src":"44779:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44913:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44787:124:14"},"nodeType":"YulFunctionCall","src":"44787:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44779:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"44657:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"44672:4:14","type":""}],"src":"44506:419:14"},{"body":{"nodeType":"YulBlock","src":"45037:69:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"45059:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"45067:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45055:3:14"},"nodeType":"YulFunctionCall","src":"45055:14:14"},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","kind":"string","nodeType":"YulLiteral","src":"45071:27:14","type":"","value":"InvalidSenderFeeRecipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45048:6:14"},"nodeType":"YulFunctionCall","src":"45048:51:14"},"nodeType":"YulExpressionStatement","src":"45048:51:14"}]},"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"45029:6:14","type":""}],"src":"44931:175:14"},{"body":{"nodeType":"YulBlock","src":"45258:220:14","statements":[{"nodeType":"YulAssignment","src":"45268:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45334:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"45339:2:14","type":"","value":"25"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45275:58:14"},"nodeType":"YulFunctionCall","src":"45275:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"45268:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45440:3:14"}],"functionName":{"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulIdentifier","src":"45351:88:14"},"nodeType":"YulFunctionCall","src":"45351:93:14"},"nodeType":"YulExpressionStatement","src":"45351:93:14"},{"nodeType":"YulAssignment","src":"45453:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45464:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"45469:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45460:3:14"},"nodeType":"YulFunctionCall","src":"45460:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"45453:3:14"}]}]},"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"45246:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"45254:3:14","type":""}],"src":"45112:366:14"},{"body":{"nodeType":"YulBlock","src":"45655:248:14","statements":[{"nodeType":"YulAssignment","src":"45665:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45677:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"45688:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45673:3:14"},"nodeType":"YulFunctionCall","src":"45673:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45665:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45712:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"45723:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45708:3:14"},"nodeType":"YulFunctionCall","src":"45708:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45731:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"45737:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"45727:3:14"},"nodeType":"YulFunctionCall","src":"45727:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45701:6:14"},"nodeType":"YulFunctionCall","src":"45701:47:14"},"nodeType":"YulExpressionStatement","src":"45701:47:14"},{"nodeType":"YulAssignment","src":"45757:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45891:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45765:124:14"},"nodeType":"YulFunctionCall","src":"45765:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45757:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"45635:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"45650:4:14","type":""}],"src":"45484:419:14"},{"body":{"nodeType":"YulBlock","src":"46015:124:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"46037:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"46045:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46033:3:14"},"nodeType":"YulFunctionCall","src":"46033:14:14"},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069","kind":"string","nodeType":"YulLiteral","src":"46049:34:14","type":"","value":"Initializable: contract is not i"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46026:6:14"},"nodeType":"YulFunctionCall","src":"46026:58:14"},"nodeType":"YulExpressionStatement","src":"46026:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"46105:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"46113:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46101:3:14"},"nodeType":"YulFunctionCall","src":"46101:15:14"},{"hexValue":"6e697469616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"46118:13:14","type":"","value":"nitializing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46094:6:14"},"nodeType":"YulFunctionCall","src":"46094:38:14"},"nodeType":"YulExpressionStatement","src":"46094:38:14"}]},"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"46007:6:14","type":""}],"src":"45909:230:14"},{"body":{"nodeType":"YulBlock","src":"46291:220:14","statements":[{"nodeType":"YulAssignment","src":"46301:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46367:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"46372:2:14","type":"","value":"43"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46308:58:14"},"nodeType":"YulFunctionCall","src":"46308:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"46301:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46473:3:14"}],"functionName":{"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulIdentifier","src":"46384:88:14"},"nodeType":"YulFunctionCall","src":"46384:93:14"},"nodeType":"YulExpressionStatement","src":"46384:93:14"},{"nodeType":"YulAssignment","src":"46486:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46497:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"46502:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46493:3:14"},"nodeType":"YulFunctionCall","src":"46493:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"46486:3:14"}]}]},"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"46279:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"46287:3:14","type":""}],"src":"46145:366:14"},{"body":{"nodeType":"YulBlock","src":"46688:248:14","statements":[{"nodeType":"YulAssignment","src":"46698:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46710:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"46721:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46706:3:14"},"nodeType":"YulFunctionCall","src":"46706:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46698:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46745:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"46756:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46741:3:14"},"nodeType":"YulFunctionCall","src":"46741:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46764:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"46770:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"46760:3:14"},"nodeType":"YulFunctionCall","src":"46760:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46734:6:14"},"nodeType":"YulFunctionCall","src":"46734:47:14"},"nodeType":"YulExpressionStatement","src":"46734:47:14"},{"nodeType":"YulAssignment","src":"46790:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46924:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46798:124:14"},"nodeType":"YulFunctionCall","src":"46798:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46790:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"46668:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"46683:4:14","type":""}],"src":"46517:419:14"},{"body":{"nodeType":"YulBlock","src":"47096:288:14","statements":[{"nodeType":"YulAssignment","src":"47106:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47118:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47129:2:14","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47114:3:14"},"nodeType":"YulFunctionCall","src":"47114:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47106:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"47186:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47199:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47210:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47195:3:14"},"nodeType":"YulFunctionCall","src":"47195:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"47142:43:14"},"nodeType":"YulFunctionCall","src":"47142:71:14"},"nodeType":"YulExpressionStatement","src":"47142:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"47267:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47280:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47291:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47276:3:14"},"nodeType":"YulFunctionCall","src":"47276:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"47223:43:14"},"nodeType":"YulFunctionCall","src":"47223:72:14"},"nodeType":"YulExpressionStatement","src":"47223:72:14"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"47349:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47362:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47373:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47358:3:14"},"nodeType":"YulFunctionCall","src":"47358:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"47305:43:14"},"nodeType":"YulFunctionCall","src":"47305:72:14"},"nodeType":"YulExpressionStatement","src":"47305:72:14"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"47052:9:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"47064:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"47072:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"47080:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"47091:4:14","type":""}],"src":"46942:442:14"},{"body":{"nodeType":"YulBlock","src":"47516:206:14","statements":[{"nodeType":"YulAssignment","src":"47526:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47538:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47549:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47534:3:14"},"nodeType":"YulFunctionCall","src":"47534:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47526:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"47606:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47619:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47630:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47615:3:14"},"nodeType":"YulFunctionCall","src":"47615:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"47562:43:14"},"nodeType":"YulFunctionCall","src":"47562:71:14"},"nodeType":"YulExpressionStatement","src":"47562:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"47687:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47700:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"47711:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47696:3:14"},"nodeType":"YulFunctionCall","src":"47696:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"47643:43:14"},"nodeType":"YulFunctionCall","src":"47643:72:14"},"nodeType":"YulExpressionStatement","src":"47643:72:14"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"47480:9:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"47492:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"47500:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"47511:4:14","type":""}],"src":"47390:332:14"},{"body":{"nodeType":"YulBlock","src":"47834:64:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"47856:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"47864:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47852:3:14"},"nodeType":"YulFunctionCall","src":"47852:14:14"},{"hexValue":"5061757361626c653a206e6f7420706175736564","kind":"string","nodeType":"YulLiteral","src":"47868:22:14","type":"","value":"Pausable: not paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"47845:6:14"},"nodeType":"YulFunctionCall","src":"47845:46:14"},"nodeType":"YulExpressionStatement","src":"47845:46:14"}]},"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"47826:6:14","type":""}],"src":"47728:170:14"},{"body":{"nodeType":"YulBlock","src":"48050:220:14","statements":[{"nodeType":"YulAssignment","src":"48060:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48126:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"48131:2:14","type":"","value":"20"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"48067:58:14"},"nodeType":"YulFunctionCall","src":"48067:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"48060:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48232:3:14"}],"functionName":{"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulIdentifier","src":"48143:88:14"},"nodeType":"YulFunctionCall","src":"48143:93:14"},"nodeType":"YulExpressionStatement","src":"48143:93:14"},{"nodeType":"YulAssignment","src":"48245:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48256:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"48261:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48252:3:14"},"nodeType":"YulFunctionCall","src":"48252:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"48245:3:14"}]}]},"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"48038:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"48046:3:14","type":""}],"src":"47904:366:14"},{"body":{"nodeType":"YulBlock","src":"48447:248:14","statements":[{"nodeType":"YulAssignment","src":"48457:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48469:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"48480:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48465:3:14"},"nodeType":"YulFunctionCall","src":"48465:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48457:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48504:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"48515:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48500:3:14"},"nodeType":"YulFunctionCall","src":"48500:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"48523:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"48529:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"48519:3:14"},"nodeType":"YulFunctionCall","src":"48519:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"48493:6:14"},"nodeType":"YulFunctionCall","src":"48493:47:14"},"nodeType":"YulExpressionStatement","src":"48493:47:14"},{"nodeType":"YulAssignment","src":"48549:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"48683:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"48557:124:14"},"nodeType":"YulFunctionCall","src":"48557:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48549:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"48427:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"48442:4:14","type":""}],"src":"48276:419:14"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_bytes32(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_bool_to_t_bool(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function cleanup_t_uint96(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffff)\n }\n\n function abi_encode_t_uint96_to_t_uint96(value, pos) {\n mstore(pos, cleanup_t_uint96(value))\n }\n\n // struct IGateway.Order -> struct IGateway.Order\n function abi_encode_t_struct$_Order_$2855_memory_ptr_to_t_struct$_Order_$2855_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x0140)\n\n {\n // sender\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x00))\n }\n\n {\n // token\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderFeeRecipient\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x40))\n }\n\n {\n // senderFee\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // protocolFee\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n {\n // isFulfilled\n\n let memberValue0 := mload(add(value, 0xa0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xa0))\n }\n\n {\n // isRefunded\n\n let memberValue0 := mload(add(value, 0xc0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xc0))\n }\n\n {\n // refundAddress\n\n let memberValue0 := mload(add(value, 0xe0))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0xe0))\n }\n\n {\n // currentBPS\n\n let memberValue0 := mload(add(value, 0x0100))\n abi_encode_t_uint96_to_t_uint96(memberValue0, add(pos, 0x0100))\n }\n\n {\n // amount\n\n let memberValue0 := mload(add(value, 0x0120))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x0120))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_Order_$2855_memory_ptr__to_t_struct$_Order_$2855_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 320)\n\n abi_encode_t_struct$_Order_$2855_memory_ptr_to_t_struct$_Order_$2855_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_uint96(value) {\n if iszero(eq(value, cleanup_t_uint96(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint96(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint96(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n // string\n function abi_decode_t_string_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7 {\n if slt(sub(dataEnd, headStart), 224) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint96(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 192))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value6, value7 := abi_decode_t_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n // struct GatewaySettingManager.TokenFeeSettings -> struct GatewaySettingManager.TokenFeeSettings\n function abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x80)\n\n {\n // senderToProvider\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // providerToAggregator\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderToAggregator\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x40))\n }\n\n {\n // providerToAggregatorFx\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_TokenFeeSettings_$2516_memory_ptr__to_t_struct$_TokenFeeSettings_$2516_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_uint64(value) {\n if iszero(eq(value, cleanup_t_uint64(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint64(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint64(value)\n }\n\n function abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(memPtr) {\n\n mstore(add(memPtr, 0), \"OnlyAggregator\")\n\n }\n\n function abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderFulfilled\")\n\n }\n\n function abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderRefunded\")\n\n }\n\n function abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 13)\n store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(memPtr) {\n\n mstore(add(memPtr, 0), \"FeeExceedsProtocolFee\")\n\n }\n\n function abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidMessageHash\")\n\n }\n\n function abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\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 tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderAlreadyExists\")\n\n }\n\n function abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenFeeSettingsNotConfigured\")\n\n }\n\n function abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint96_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint96(value)))\n }\n\n function abi_encode_t_uint96_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_uint96_to_t_uint256(value))\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n // string -> string\n function abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n\n copy_calldata_to_memory_with_cleanup(start, pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint96_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(value3, value4, tail)\n\n }\n\n function store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is alrea\")\n\n mstore(add(memPtr, 32), \"dy initialized\")\n\n }\n\n function abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_rational_1_by_1(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function convert_t_rational_1_by_1_to_t_uint8(value) -> converted {\n converted := cleanup_t_uint8(identity(cleanup_t_rational_1_by_1(value)))\n }\n\n function abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_rational_1_by_1_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: token not supported\")\n\n }\n\n function abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to provi\")\n\n mstore(add(memPtr, 32), \"der\")\n\n }\n\n function abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator\")\n\n }\n\n function abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to aggre\")\n\n mstore(add(memPtr, 32), \"gator\")\n\n }\n\n function abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator fx\")\n\n }\n\n function abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_sub_t_uint96(x, y) -> diff {\n x := cleanup_t_uint96(x)\n y := cleanup_t_uint96(y)\n diff := sub(x, y)\n\n if gt(diff, 0xffffffffffffffffffffffff) { panic_error_0x11() }\n\n }\n\n function convert_t_uint64_to_t_uint96(value) -> converted {\n converted := cleanup_t_uint96(identity(cleanup_t_uint64(value)))\n }\n\n function abi_encode_t_uint64_to_t_uint96_fromStack(value, pos) {\n mstore(pos, convert_t_uint64_to_t_uint96(value))\n }\n\n function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint64_to_t_uint96_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenNotSupported\")\n\n }\n\n function abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 17)\n store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(memPtr) {\n\n mstore(add(memPtr, 0), \"AmountIsZero\")\n\n }\n\n function abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 12)\n store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(memPtr) {\n\n mstore(add(memPtr, 0), \"ThrowZeroAddress\")\n\n }\n\n function abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidSenderFeeRecipient\")\n\n }\n\n function abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is not i\")\n\n mstore(add(memPtr, 32), \"nitializing\")\n\n }\n\n function abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b506004361061011f575f3560e01c80638129fc1c116100ab578063b810c6361161006f578063b810c636146102b9578063cd992400146102d8578063e30c3978146102f4578063f22ee70414610312578063f2fde38b146103425761011f565b80638129fc1c1461023b5780638456cb5914610245578063898861b01461024f5780638bfa05491461026b5780638da5cb5b1461029b5761011f565b806371eedb88116100f257806371eedb881461017157806375151b63146101a1578063768c6ec0146101d157806379ba509714610201578063809804f71461020b5761011f565b80633f4ba83a1461012357806340ebc6771461012d5780635c975abb14610149578063715018a614610167575b5f80fd5b61012b61035e565b005b6101476004803603810190610142919061300a565b610370565b005b610151610634565b60405161015e9190613062565b60405180910390f35b61016f610649565b005b61018b600480360381019061018691906130ae565b61065c565b6040516101989190613062565b60405180910390f35b6101bb60048036038101906101b691906130ec565b610ab7565b6040516101c89190613062565b60405180910390f35b6101eb60048036038101906101e69190613117565b610b0f565b6040516101f8919061325f565b60405180910390f35b610209610d1f565b005b61022560048036038101906102209190613304565b610dab565b60405161023291906133d0565b60405180910390f35b6102436113f0565b005b61024d61153a565b005b610269600480360381019061026491906133e9565b61154c565b005b610285600480360381019061028091906130ec565b6117ca565b60405161029291906134b3565b60405180910390f35b6102a3611848565b6040516102b091906134db565b60405180910390f35b6102c1611870565b6040516102cf929190613525565b60405180910390f35b6102f260048036038101906102ed919061354c565b611893565b005b6102fc611a15565b60405161030991906134db565b60405180910390f35b61032c600480360381019061032791906135c6565b611a3d565b6040516103399190613062565b60405180910390f35b61035c600480360381019061035791906130ec565b612001565b005b6103666120ad565b61036e61212b565b565b6103786120ad565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103dd90613684565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036104e8578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361049e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049590613712565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506105e4565b7f61676772656761746f720000000000000000000000000000000000000000000083036105e3578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361059e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610595906137a0565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b801561062f578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b5f60cd5f9054906101000a900460ff16905090565b6106516120ad565b61065a5f61218c565b565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390613808565b60405180910390fd5b60ff5f8381526020019081526020015f206005015f9054906101000a900460ff161561074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490613870565b60405180910390fd5b60ff5f8381526020019081526020015f2060050160019054906101000a900460ff16156107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a6906138d8565b60405180910390fd5b8260ff5f8481526020019081526020015f20600401541015610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90613940565b60405180910390fd5b5f8311156108e05760ff5f8381526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b815260040161089e92919061395e565b6020604051808303815f875af11580156108ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108de91906139af565b505b600160ff5f8481526020019081526020015f2060050160016101000a81548160ff0219169083151502179055505f60ff5f8481526020019081526020015f206006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f8360ff5f8581526020019081526020015f20600701546109709190613a07565b905060ff5f8481526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8681526020019081526020015f2060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660ff5f8781526020019081526020015f206003015484610a169190613a3a565b6040518363ffffffff1660e01b8152600401610a3392919061395e565b6020604051808303815f875af1158015610a4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7391906139af565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610aa49190613a6d565b60405180910390a2600191505092915050565b5f6001609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610b065760019050610b0a565b5f90505b919050565b610b17612e9e565b60ff5f8381526020019081526020015f20604051806101400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820154815260200160048201548152602001600582015f9054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600682015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b5f610d286121bc565b90508073ffffffffffffffffffffffffffffffffffffffff16610d49611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690613af6565b60405180910390fd5b610da88161218c565b50565b5f610db46121c3565b610dc1898986898961220d565b5f8383905003610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613b5e565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888c610e309190613a3a565b6040518463ffffffff1660e01b8152600401610e4e93929190613b7c565b6020604051808303815f875af1158015610e6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8e91906139af565b506101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190610edd90613bb1565b9190505550336101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205446604051602001610f3593929190613bf8565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff1660ff5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613c77565b60405180910390fd5b5f6064886bffffffffffffffffffffffff160361100c575f90506110e5565b5f609b5f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f8160600151116110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90613cdf565b60405180910390fd5b60975481606001518b6110d79190613cfd565b6110e19190613d6b565b9150505b6040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018b73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020015f151581526020015f151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff1681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610100820151816006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a6040516113db959493929190613e1e565b60405180910390a45098975050505050505050565b5f8060019054906101000a900460ff1615905080801561141f575060015f8054906101000a900460ff1660ff16105b8061144b575061142e306123ba565b15801561144a575060015f8054906101000a900460ff1660ff16145b5b61148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613eda565b60405180910390fd5b60015f806101000a81548160ff021916908360ff16021790555080156114c55760015f60016101000a81548160ff0219169083151502179055505b620186a06097819055506114d76123dc565b6114df612434565b8015611537575f8060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161152e9190613f3d565b60405180910390a15b50565b6115426120ad565b61154a61248c565b565b6115546120ad565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613fa0565b60405180910390fd5b609754841115611619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116109061402e565b60405180910390fd5b60975483111561165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906140bc565b60405180910390fd5b6097548211156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a9061414a565b60405180910390fd5b6097548111156116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df906141d8565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516117bb94939291906141f6565b60405180910390a25050505050565b6117d2612f51565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f8060985f9054906101000a900467ffffffffffffffff16609754915091509091565b61189b6120ad565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613684565b60405180910390fd5b60018114806119185750600281145b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614283565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611a105780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c83604051611a079190613a6d565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac490613808565b60405180910390fd5b60ff5f8581526020019081526020015f206005015f9054906101000a900460ff1615611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613870565b60405180910390fd5b60ff5f8581526020019081526020015f2060050160019054906101000a900460ff1615611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b87906138d8565b60405180910390fd5b5f60ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f60ff5f8781526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690508367ffffffffffffffff1660ff5f8881526020019081526020015f206006015f8282829054906101000a90046bffffffffffffffffffffffff16611c4891906142a1565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f60ff5f8881526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d3357600160ff5f8881526020019081526020015f206005015f6101000a81548160ff0219169083151502179055505f60ff5f8881526020019081526020015f206003015414611d32575f60ff5f8881526020019081526020015f206004015403611d2757611d2286866124ee565b611d31565b611d3086612953565b5b5b5b5f818567ffffffffffffffff1660ff5f8a81526020019081526020015f2060070154611d5f9190613cfd565b611d699190613d6b565b90508060ff5f8981526020019081526020015f206007015f828254611d8e9190613a07565b925050819055505f60ff5f8981526020019081526020015f20600401541115611f25575f609b5f60ff5f8b81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f609754826060015184611e6a9190613cfd565b611e749190613d6b565b90508083611e829190613a07565b92508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611ee192919061395e565b6020604051808303815f875af1158015611efd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2191906139af565b5050505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb87836040518363ffffffff1660e01b8152600401611f6092919061395e565b6020604051808303815f875af1158015611f7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa091906139af565b508573ffffffffffffffffffffffffffffffffffffffff16877f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8a88604051611fea929190614310565b60405180910390a360019350505050949350505050565b6120096120ad565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16612068611848565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6120b56121bc565b73ffffffffffffffffffffffffffffffffffffffff166120d3611848565b73ffffffffffffffffffffffffffffffffffffffff1614612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614381565b60405180910390fd5b565b612133612cc9565b5f60cd5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121756121bc565b60405161218291906134db565b60405180910390a1565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556121b981612d12565b50565b5f33905090565b6121cb610634565b1561220b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612202906143e9565b60405180910390fd5b565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541461228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228490614451565b60405180910390fd5b5f84036122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c6906144b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490614521565b60405180910390fd5b5f81146123b3575f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614589565b60405180910390fd5b5b5050505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f60019054906101000a900460ff1661242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190614617565b60405180910390fd5b612432612dd5565b565b5f60019054906101000a900460ff16612482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247990614617565b60405180910390fd5b61248a612e35565b565b6124946121c3565b600160cd5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124d76121bc565b6040516124e491906134db565b60405180910390a1565b5f609b5f60ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8581526020019081526020015f206003015490505f609754835f0151836125be9190613cfd565b6125c89190613d6b565b90505f6097548460200151836125de9190613cfd565b6125e89190613d6b565b90505f82846125f79190613a07565b90505f8111156126e45760ff5f8881526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8a81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016126a292919061395e565b6020604051808303815f875af11580156126be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126e291906139af565b505b5f82846126f19190613a07565b11156127b25760ff5f8881526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8784866127539190613a07565b6040518363ffffffff1660e01b815260040161277092919061395e565b6020604051808303815f875af115801561278c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b091906139af565b505b5f82111561288c5760ff5f8881526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161284a92919061395e565b6020604051808303815f875af1158015612866573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288a91906139af565b505b8060ff5f8981526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3867f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a48284866129329190613a07565b8560405161294293929190614635565b60405180910390a250505050505050565b5f609b5f60ff5f8581526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8481526020019081526020015f206003015490505f6097548360400151609754612a269190613a07565b83612a319190613cfd565b612a3b9190613d6b565b90505f8183612a4a9190613a07565b90505f821115612b375760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8881526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612af592919061395e565b6020604051808303815f875af1158015612b11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b3591906139af565b505b5f811115612c115760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612bcf92919061395e565b6020604051808303815f875af1158015612beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c0f91906139af565b505b8160ff5f8781526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3847f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a8383604051612cba92919061466a565b60405180910390a25050505050565b612cd1610634565b612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d07906146db565b60405180910390fd5b565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60019054906101000a900460ff16612e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1a90614617565b60405180910390fd5b612e33612e2e6121bc565b61218c565b565b5f60019054906101000a900460ff16612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90614617565b60405180910390fd5b5f60cd5f6101000a81548160ff021916908315150217905550565b6040518061014001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f151581526020015f151581526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f6bffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f819050919050565b612f8f81612f7d565b8114612f99575f80fd5b50565b5f81359050612faa81612f86565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd982612fb0565b9050919050565b612fe981612fcf565b8114612ff3575f80fd5b50565b5f8135905061300481612fe0565b92915050565b5f80604083850312156130205761301f612f75565b5b5f61302d85828601612f9c565b925050602061303e85828601612ff6565b9150509250929050565b5f8115159050919050565b61305c81613048565b82525050565b5f6020820190506130755f830184613053565b92915050565b5f819050919050565b61308d8161307b565b8114613097575f80fd5b50565b5f813590506130a881613084565b92915050565b5f80604083850312156130c4576130c3612f75565b5b5f6130d18582860161309a565b92505060206130e285828601612f9c565b9150509250929050565b5f6020828403121561310157613100612f75565b5b5f61310e84828501612ff6565b91505092915050565b5f6020828403121561312c5761312b612f75565b5b5f61313984828501612f9c565b91505092915050565b61314b81612fcf565b82525050565b61315a8161307b565b82525050565b61316981613048565b82525050565b5f6bffffffffffffffffffffffff82169050919050565b61318f8161316f565b82525050565b61014082015f8201516131aa5f850182613142565b5060208201516131bd6020850182613142565b5060408201516131d06040850182613142565b5060608201516131e36060850182613151565b5060808201516131f66080850182613151565b5060a082015161320960a0850182613160565b5060c082015161321c60c0850182613160565b5060e082015161322f60e0850182613142565b50610100820151613244610100850182613186565b50610120820151613259610120850182613151565b50505050565b5f610140820190506132735f830184613195565b92915050565b6132828161316f565b811461328c575f80fd5b50565b5f8135905061329d81613279565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126132c4576132c36132a3565b5b8235905067ffffffffffffffff8111156132e1576132e06132a7565b5b6020830191508360018202830111156132fd576132fc6132ab565b5b9250929050565b5f805f805f805f8060e0898b0312156133205761331f612f75565b5b5f61332d8b828c01612ff6565b985050602061333e8b828c0161309a565b975050604061334f8b828c0161328f565b96505060606133608b828c01612ff6565b95505060806133718b828c0161309a565b94505060a06133828b828c01612ff6565b93505060c089013567ffffffffffffffff8111156133a3576133a2612f79565b5b6133af8b828c016132af565b92509250509295985092959890939650565b6133ca81612f7d565b82525050565b5f6020820190506133e35f8301846133c1565b92915050565b5f805f805f60a0868803121561340257613401612f75565b5b5f61340f88828901612ff6565b95505060206134208882890161309a565b94505060406134318882890161309a565b93505060606134428882890161309a565b92505060806134538882890161309a565b9150509295509295909350565b608082015f8201516134745f850182613151565b5060208201516134876020850182613151565b50604082015161349a6040850182613151565b5060608201516134ad6060850182613151565b50505050565b5f6080820190506134c65f830184613460565b92915050565b6134d581612fcf565b82525050565b5f6020820190506134ee5f8301846134cc565b92915050565b5f67ffffffffffffffff82169050919050565b613510816134f4565b82525050565b61351f8161307b565b82525050565b5f6040820190506135385f830185613507565b6135456020830184613516565b9392505050565b5f805f6060848603121561356357613562612f75565b5b5f61357086828701612f9c565b935050602061358186828701612ff6565b92505060406135928682870161309a565b9150509250925092565b6135a5816134f4565b81146135af575f80fd5b50565b5f813590506135c08161359c565b92915050565b5f805f80608085870312156135de576135dd612f75565b5b5f6135eb87828801612f9c565b94505060206135fc87828801612f9c565b935050604061360d87828801612ff6565b925050606061361e878288016135b2565b91505092959194509250565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f61366e60158361362a565b91506136798261363a565b602082019050919050565b5f6020820190508181035f83015261369b81613662565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f6136fc60258361362a565b9150613707826136a2565b604082019050919050565b5f6020820190508181035f830152613729816136f0565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f61378a60278361362a565b915061379582613730565b604082019050919050565b5f6020820190508181035f8301526137b78161377e565b9050919050565b7f4f6e6c7941676772656761746f720000000000000000000000000000000000005f82015250565b5f6137f2600e8361362a565b91506137fd826137be565b602082019050919050565b5f6020820190508181035f83015261381f816137e6565b9050919050565b7f4f7264657246756c66696c6c65640000000000000000000000000000000000005f82015250565b5f61385a600e8361362a565b915061386582613826565b602082019050919050565b5f6020820190508181035f8301526138878161384e565b9050919050565b7f4f72646572526566756e646564000000000000000000000000000000000000005f82015250565b5f6138c2600d8361362a565b91506138cd8261388e565b602082019050919050565b5f6020820190508181035f8301526138ef816138b6565b9050919050565b7f4665654578636565647350726f746f636f6c46656500000000000000000000005f82015250565b5f61392a60158361362a565b9150613935826138f6565b602082019050919050565b5f6020820190508181035f8301526139578161391e565b9050919050565b5f6040820190506139715f8301856134cc565b61397e6020830184613516565b9392505050565b61398e81613048565b8114613998575f80fd5b50565b5f815190506139a981613985565b92915050565b5f602082840312156139c4576139c3612f75565b5b5f6139d18482850161399b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613a118261307b565b9150613a1c8361307b565b9250828203905081811115613a3457613a336139da565b5b92915050565b5f613a448261307b565b9150613a4f8361307b565b9250828201905080821115613a6757613a666139da565b5b92915050565b5f602082019050613a805f830184613516565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613ae060298361362a565b9150613aeb82613a86565b604082019050919050565b5f6020820190508181035f830152613b0d81613ad4565b9050919050565b7f496e76616c69644d6573736167654861736800000000000000000000000000005f82015250565b5f613b4860128361362a565b9150613b5382613b14565b602082019050919050565b5f6020820190508181035f830152613b7581613b3c565b9050919050565b5f606082019050613b8f5f8301866134cc565b613b9c60208301856134cc565b613ba96040830184613516565b949350505050565b5f613bbb8261307b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bed57613bec6139da565b5b600182019050919050565b5f606082019050613c0b5f8301866134cc565b613c186020830185613516565b613c256040830184613516565b949350505050565b7f4f72646572416c726561647945786973747300000000000000000000000000005f82015250565b5f613c6160128361362a565b9150613c6c82613c2d565b602082019050919050565b5f6020820190508181035f830152613c8e81613c55565b9050919050565b7f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000005f82015250565b5f613cc9601d8361362a565b9150613cd482613c95565b602082019050919050565b5f6020820190508181035f830152613cf681613cbd565b9050919050565b5f613d078261307b565b9150613d128361307b565b9250828202613d208161307b565b91508282048414831517613d3757613d366139da565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613d758261307b565b9150613d808361307b565b925082613d9057613d8f613d3e565b5b828204905092915050565b5f819050919050565b5f613dbe613db9613db48461316f565b613d9b565b61307b565b9050919050565b613dce81613da4565b82525050565b828183375f83830152505050565b5f601f19601f8301169050919050565b5f613dfd838561362a565b9350613e0a838584613dd4565b613e1383613de2565b840190509392505050565b5f608082019050613e315f830188613516565b613e3e60208301876133c1565b613e4b6040830186613dc5565b8181036060830152613e5e818486613df2565b90509695505050505050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f613ec4602e8361362a565b9150613ecf82613e6a565b604082019050919050565b5f6020820190508181035f830152613ef181613eb8565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f613f27613f22613f1d84613ef8565b613d9b565b613f01565b9050919050565b613f3781613f0d565b82525050565b5f602082019050613f505f830184613f2e565b92915050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f613f8a601c8361362a565b9150613f9582613f56565b602082019050919050565b5f6020820190508181035f830152613fb781613f7e565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f61401860238361362a565b915061402382613fbe565b604082019050919050565b5f6020820190508181035f8301526140458161400c565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f6140a660278361362a565b91506140b18261404c565b604082019050919050565b5f6020820190508181035f8301526140d38161409a565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f61413460258361362a565b915061413f826140da565b604082019050919050565b5f6020820190508181035f83015261416181614128565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f6141c2602a8361362a565b91506141cd82614168565b604082019050919050565b5f6020820190508181035f8301526141ef816141b6565b9050919050565b5f6080820190506142095f830187613516565b6142166020830186613516565b6142236040830185613516565b6142306060830184613516565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f61426d60178361362a565b915061427882614239565b602082019050919050565b5f6020820190508181035f83015261429a81614261565b9050919050565b5f6142ab8261316f565b91506142b68361316f565b925082820390506bffffffffffffffffffffffff8111156142da576142d96139da565b5b92915050565b5f6142fa6142f56142f0846134f4565b613d9b565b61316f565b9050919050565b61430a816142e0565b82525050565b5f6040820190506143235f8301856133c1565b6143306020830184614301565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61436b60208361362a565b915061437682614337565b602082019050919050565b5f6020820190508181035f8301526143988161435f565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f6143d360108361362a565b91506143de8261439f565b602082019050919050565b5f6020820190508181035f830152614400816143c7565b9050919050565b7f546f6b656e4e6f74537570706f727465640000000000000000000000000000005f82015250565b5f61443b60118361362a565b915061444682614407565b602082019050919050565b5f6020820190508181035f8301526144688161442f565b9050919050565b7f416d6f756e7449735a65726f00000000000000000000000000000000000000005f82015250565b5f6144a3600c8361362a565b91506144ae8261446f565b602082019050919050565b5f6020820190508181035f8301526144d081614497565b9050919050565b7f5468726f775a65726f41646472657373000000000000000000000000000000005f82015250565b5f61450b60108361362a565b9150614516826144d7565b602082019050919050565b5f6020820190508181035f830152614538816144ff565b9050919050565b7f496e76616c696453656e646572466565526563697069656e74000000000000005f82015250565b5f61457360198361362a565b915061457e8261453f565b602082019050919050565b5f6020820190508181035f8301526145a081614567565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f614601602b8361362a565b915061460c826145a7565b604082019050919050565b5f6020820190508181035f83015261462e816145f5565b9050919050565b5f6060820190506146485f830186613516565b6146556020830185613516565b6146626040830184613516565b949350505050565b5f60408201905061467d5f830185613516565b61468a6020830184613516565b9392505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6146c560148361362a565b91506146d082614691565b602082019050919050565b5f6020820190508181035f8301526146f2816146b9565b905091905056fea2646970667358221220f9977596da9ad2a245337cc030a1f8009fd0587d8173b6e1aca3add1d9f85ff764736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x11F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8129FC1C GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xB810C636 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xB810C636 EQ PUSH2 0x2B9 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x2D8 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2F4 JUMPI DUP1 PUSH4 0xF22EE704 EQ PUSH2 0x312 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x342 JUMPI PUSH2 0x11F JUMP JUMPDEST DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0x24F JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x29B JUMPI PUSH2 0x11F JUMP JUMPDEST DUP1 PUSH4 0x71EEDB88 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x171 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x809804F7 EQ PUSH2 0x20B JUMPI PUSH2 0x11F JUMP JUMPDEST DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x167 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x12B PUSH2 0x35E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x147 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x142 SWAP2 SWAP1 PUSH2 0x300A JUMP JUMPDEST PUSH2 0x370 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x151 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15E SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16F PUSH2 0x649 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0x30AE JUMP JUMPDEST PUSH2 0x65C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B6 SWAP2 SWAP1 PUSH2 0x30EC JUMP JUMPDEST PUSH2 0xAB7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C8 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E6 SWAP2 SWAP1 PUSH2 0x3117 JUMP JUMPDEST PUSH2 0xB0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F8 SWAP2 SWAP1 PUSH2 0x325F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH2 0xD1F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x3304 JUMP JUMPDEST PUSH2 0xDAB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x33D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x13F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24D PUSH2 0x153A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x269 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x264 SWAP2 SWAP1 PUSH2 0x33E9 JUMP JUMPDEST PUSH2 0x154C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x285 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x280 SWAP2 SWAP1 PUSH2 0x30EC JUMP JUMPDEST PUSH2 0x17CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x292 SWAP2 SWAP1 PUSH2 0x34B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A3 PUSH2 0x1848 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B0 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C1 PUSH2 0x1870 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CF SWAP3 SWAP2 SWAP1 PUSH2 0x3525 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2ED SWAP2 SWAP1 PUSH2 0x354C JUMP JUMPDEST PUSH2 0x1893 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2FC PUSH2 0x1A15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x309 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x327 SWAP2 SWAP1 PUSH2 0x35C6 JUMP JUMPDEST PUSH2 0x1A3D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x357 SWAP2 SWAP1 PUSH2 0x30EC JUMP JUMPDEST PUSH2 0x2001 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x366 PUSH2 0x20AD JUMP JUMPDEST PUSH2 0x36E PUSH2 0x212B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x378 PUSH2 0x20AD JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3E6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3DD SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x4E8 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x49E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x495 SWAP1 PUSH2 0x3712 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x5E4 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x5E3 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x59E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x595 SWAP1 PUSH2 0x37A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x62F JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x651 PUSH2 0x20AD JUMP JUMPDEST PUSH2 0x65A PUSH0 PUSH2 0x218C JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6E3 SWAP1 PUSH2 0x3808 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x74D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x744 SWAP1 PUSH2 0x3870 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x7AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A6 SWAP1 PUSH2 0x38D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0x806 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7FD SWAP1 PUSH2 0x3940 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 GT ISZERO PUSH2 0x8E0 JUMPI PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x89E SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8BA JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x8DE SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 DUP4 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x970 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP1 POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0xA16 SWAP2 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA33 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA4F JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xA73 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xAA4 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SUB PUSH2 0xB06 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xB0A JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB17 PUSH2 0x2E9E JUMP JUMPDEST PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xD28 PUSH2 0x21BC JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD49 PUSH2 0x1A15 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD96 SWAP1 PUSH2 0x3AF6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDA8 DUP2 PUSH2 0x218C JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xDB4 PUSH2 0x21C3 JUMP JUMPDEST PUSH2 0xDC1 DUP10 DUP10 DUP7 DUP10 DUP10 PUSH2 0x220D JUMP JUMPDEST PUSH0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0xE06 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDFD SWAP1 PUSH2 0x3B5E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP13 PUSH2 0xE30 SWAP2 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE4E SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE6A JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xE8E SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xEDD SWAP1 PUSH2 0x3BB1 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x100 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD CHAINID PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF35 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3BF8 JUMP JUMPDEST 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFE4 SWAP1 PUSH2 0x3C77 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x64 DUP9 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x100C JUMPI PUSH0 SWAP1 POP PUSH2 0x10E5 JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 DUP2 PUSH1 0x60 ADD MLOAD GT PUSH2 0x10C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10BB SWAP1 PUSH2 0x3CDF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 PUSH1 0x60 ADD MLOAD DUP12 PUSH2 0x10D7 SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x10E1 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x40CCD1CEB111A3C186EF9911E1B876DC1F789ED331B86097B3B8851055B6A137 DUP5 DUP7 DUP14 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x13DB SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3E1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x141F JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x144B JUMPI POP PUSH2 0x142E ADDRESS PUSH2 0x23BA JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x144A JUMPI POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x148A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1481 SWAP1 PUSH2 0x3EDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x14C5 JUMPI PUSH1 0x1 PUSH0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x14D7 PUSH2 0x23DC JUMP JUMPDEST PUSH2 0x14DF PUSH2 0x2434 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1537 JUMPI PUSH0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x152E SWAP2 SWAP1 PUSH2 0x3F3D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x1542 PUSH2 0x20AD JUMP JUMPDEST PUSH2 0x154A PUSH2 0x248C JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1554 PUSH2 0x20AD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x15D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15CB SWAP1 PUSH2 0x3FA0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x1619 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1610 SWAP1 PUSH2 0x402E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x165E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1655 SWAP1 PUSH2 0x40BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x16A3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x169A SWAP1 PUSH2 0x414A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x16E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16DF SWAP1 PUSH2 0x41D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x17BB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x41F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x17D2 PUSH2 0x2F51 JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x98 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x97 SLOAD SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x189B PUSH2 0x20AD JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1909 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1900 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x1918 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x1957 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x194E SWAP1 PUSH2 0x4283 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1A10 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A07 SWAP2 SWAP1 PUSH2 0x3A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1ACD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AC4 SWAP1 PUSH2 0x3808 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B2E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B25 SWAP1 PUSH2 0x3870 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B90 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B87 SWAP1 PUSH2 0x38D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C48 SWAP2 SWAP1 PUSH2 0x42A1 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x6 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1D33 JUMPI PUSH1 0x1 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ PUSH2 0x1D32 JUMPI PUSH0 PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD SUB PUSH2 0x1D27 JUMPI PUSH2 0x1D22 DUP7 DUP7 PUSH2 0x24EE JUMP JUMPDEST PUSH2 0x1D31 JUMP JUMPDEST PUSH2 0x1D30 DUP7 PUSH2 0x2953 JUMP JUMPDEST JUMPDEST JUMPDEST JUMPDEST PUSH0 DUP2 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1D5F SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x1D69 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1D8E SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD SLOAD GT ISZERO PUSH2 0x1F25 JUMPI PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP3 PUSH1 0x60 ADD MLOAD DUP5 PUSH2 0x1E6A SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x1E74 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP DUP1 DUP4 PUSH2 0x1E82 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP3 POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EE1 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EFD JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1F21 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP POP POP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP8 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F60 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F7C JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1FA0 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP8 PUSH32 0x98ECE21E01A01CBE1D1C0DAD3B053C8FBD368F99BE78BE958FCF1D1D13FD249A DUP11 DUP9 PUSH1 0x40 MLOAD PUSH2 0x1FEA SWAP3 SWAP2 SWAP1 PUSH2 0x4310 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP4 POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2009 PUSH2 0x20AD JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2068 PUSH2 0x1848 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x20B5 PUSH2 0x21BC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20D3 PUSH2 0x1848 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2129 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2120 SWAP1 PUSH2 0x4381 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2133 PUSH2 0x2CC9 JUMP JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x2175 PUSH2 0x21BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2182 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x21B9 DUP2 PUSH2 0x2D12 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x21CB PUSH2 0x634 JUMP JUMPDEST ISZERO PUSH2 0x220B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2202 SWAP1 PUSH2 0x43E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x228D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2284 SWAP1 PUSH2 0x4451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP5 SUB PUSH2 0x22CF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22C6 SWAP1 PUSH2 0x44B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x233D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2334 SWAP1 PUSH2 0x4521 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 EQ PUSH2 0x23B3 JUMPI PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x23B2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23A9 SWAP1 PUSH2 0x4589 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x242A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2421 SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2432 PUSH2 0x2DD5 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2482 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2479 SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x248A PUSH2 0x2E35 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x2494 PUSH2 0x21C3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x24D7 PUSH2 0x21BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24E4 SWAP2 SWAP1 PUSH2 0x34DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH0 ADD MLOAD DUP4 PUSH2 0x25BE SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x25C8 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP4 PUSH2 0x25DE SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x25E8 SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP PUSH0 DUP3 DUP5 PUSH2 0x25F7 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT ISZERO PUSH2 0x26E4 JUMPI PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x26A2 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x26BE JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x26E2 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 DUP5 PUSH2 0x26F1 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST GT ISZERO PUSH2 0x27B2 JUMPI PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP8 DUP5 DUP7 PUSH2 0x2753 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2770 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x278C JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x27B0 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 GT ISZERO PUSH2 0x288C JUMPI PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x284A SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2866 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x288A SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST DUP1 PUSH1 0xFF PUSH0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP7 PUSH32 0x831C7CC0006D91462607C476603366C48469D125DE6228C0791A7090EFD7F7A4 DUP3 DUP5 DUP7 PUSH2 0x2932 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH2 0x2942 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4635 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x9B PUSH0 PUSH1 0xFF PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP PUSH0 PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH1 0x97 SLOAD PUSH2 0x2A26 SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST DUP4 PUSH2 0x2A31 SWAP2 SWAP1 PUSH2 0x3CFD JUMP JUMPDEST PUSH2 0x2A3B SWAP2 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 DUP4 PUSH2 0x2A4A SWAP2 SWAP1 PUSH2 0x3A07 JUMP JUMPDEST SWAP1 POP PUSH0 DUP3 GT ISZERO PUSH2 0x2B37 JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0xFF PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AF5 SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B11 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2B35 SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST PUSH0 DUP2 GT ISZERO PUSH2 0x2C11 JUMPI PUSH1 0xFF PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2BCF SWAP3 SWAP2 SWAP1 PUSH2 0x395E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2BEB JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2C0F SWAP2 SWAP1 PUSH2 0x39AF JUMP JUMPDEST POP JUMPDEST DUP2 PUSH1 0xFF PUSH0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 PUSH32 0x88592047496A7850992DC5E8CD92A9B633CEF0D191A4F5E87FD745C7D382630A DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x2CBA SWAP3 SWAP2 SWAP1 PUSH2 0x466A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2CD1 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x2D10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D07 SWAP1 PUSH2 0x46DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2E23 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E1A SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2E33 PUSH2 0x2E2E PUSH2 0x21BC JUMP JUMPDEST PUSH2 0x218C JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2E83 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E7A SWAP1 PUSH2 0x4617 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xCD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2F8F DUP2 PUSH2 0x2F7D JUMP JUMPDEST DUP2 EQ PUSH2 0x2F99 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FAA DUP2 PUSH2 0x2F86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2FD9 DUP3 PUSH2 0x2FB0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2FE9 DUP2 PUSH2 0x2FCF JUMP JUMPDEST DUP2 EQ PUSH2 0x2FF3 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3004 DUP2 PUSH2 0x2FE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3020 JUMPI PUSH2 0x301F PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x302D DUP6 DUP3 DUP7 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x303E DUP6 DUP3 DUP7 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x305C DUP2 PUSH2 0x3048 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3075 PUSH0 DUP4 ADD DUP5 PUSH2 0x3053 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x308D DUP2 PUSH2 0x307B JUMP JUMPDEST DUP2 EQ PUSH2 0x3097 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30A8 DUP2 PUSH2 0x3084 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x30C4 JUMPI PUSH2 0x30C3 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x30D1 DUP6 DUP3 DUP7 ADD PUSH2 0x309A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x30E2 DUP6 DUP3 DUP7 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3101 JUMPI PUSH2 0x3100 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x310E DUP5 DUP3 DUP6 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x312C JUMPI PUSH2 0x312B PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3139 DUP5 DUP3 DUP6 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x314B DUP2 PUSH2 0x2FCF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x315A DUP2 PUSH2 0x307B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3169 DUP2 PUSH2 0x3048 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x318F DUP2 PUSH2 0x316F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x31AA PUSH0 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x31BD PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x31D0 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x31E3 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x31F6 PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x3209 PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x3160 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x321C PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x3160 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x322F PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x3142 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x3244 PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x3186 JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x3259 PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x3273 PUSH0 DUP4 ADD DUP5 PUSH2 0x3195 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3282 DUP2 PUSH2 0x316F JUMP JUMPDEST DUP2 EQ PUSH2 0x328C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x329D DUP2 PUSH2 0x3279 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x32C4 JUMPI PUSH2 0x32C3 PUSH2 0x32A3 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32E1 JUMPI PUSH2 0x32E0 PUSH2 0x32A7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x32FD JUMPI PUSH2 0x32FC PUSH2 0x32AB JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xE0 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x3320 JUMPI PUSH2 0x331F PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x332D DUP12 DUP3 DUP13 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x20 PUSH2 0x333E DUP12 DUP3 DUP13 ADD PUSH2 0x309A JUMP JUMPDEST SWAP8 POP POP PUSH1 0x40 PUSH2 0x334F DUP12 DUP3 DUP13 ADD PUSH2 0x328F JUMP JUMPDEST SWAP7 POP POP PUSH1 0x60 PUSH2 0x3360 DUP12 DUP3 DUP13 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x80 PUSH2 0x3371 DUP12 DUP3 DUP13 ADD PUSH2 0x309A JUMP JUMPDEST SWAP5 POP POP PUSH1 0xA0 PUSH2 0x3382 DUP12 DUP3 DUP13 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xC0 DUP10 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x33A3 JUMPI PUSH2 0x33A2 PUSH2 0x2F79 JUMP JUMPDEST JUMPDEST PUSH2 0x33AF DUP12 DUP3 DUP13 ADD PUSH2 0x32AF JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 SWAP1 SWAP4 SWAP7 POP JUMP JUMPDEST PUSH2 0x33CA DUP2 PUSH2 0x2F7D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x33E3 PUSH0 DUP4 ADD DUP5 PUSH2 0x33C1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3402 JUMPI PUSH2 0x3401 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x340F DUP9 DUP3 DUP10 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x3420 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x3431 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x3442 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x3453 DUP9 DUP3 DUP10 ADD PUSH2 0x309A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x3474 PUSH0 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x3487 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x349A PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x34AD PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x3151 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x34C6 PUSH0 DUP4 ADD DUP5 PUSH2 0x3460 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x34D5 DUP2 PUSH2 0x2FCF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x34EE PUSH0 DUP4 ADD DUP5 PUSH2 0x34CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3510 DUP2 PUSH2 0x34F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x351F DUP2 PUSH2 0x307B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3538 PUSH0 DUP4 ADD DUP6 PUSH2 0x3507 JUMP JUMPDEST PUSH2 0x3545 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3563 JUMPI PUSH2 0x3562 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3570 DUP7 DUP3 DUP8 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x3581 DUP7 DUP3 DUP8 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x3592 DUP7 DUP3 DUP8 ADD PUSH2 0x309A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x35A5 DUP2 PUSH2 0x34F4 JUMP JUMPDEST DUP2 EQ PUSH2 0x35AF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x35C0 DUP2 PUSH2 0x359C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x35DE JUMPI PUSH2 0x35DD PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x35EB DUP8 DUP3 DUP9 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x35FC DUP8 DUP3 DUP9 ADD PUSH2 0x2F9C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x360D DUP8 DUP3 DUP9 ADD PUSH2 0x2FF6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x361E DUP8 DUP3 DUP9 ADD PUSH2 0x35B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x366E PUSH1 0x15 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3679 DUP3 PUSH2 0x363A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x369B DUP2 PUSH2 0x3662 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x36FC PUSH1 0x25 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3707 DUP3 PUSH2 0x36A2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3729 DUP2 PUSH2 0x36F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x378A PUSH1 0x27 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3795 DUP3 PUSH2 0x3730 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x37B7 DUP2 PUSH2 0x377E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x37F2 PUSH1 0xE DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x37FD DUP3 PUSH2 0x37BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x381F DUP2 PUSH2 0x37E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x385A PUSH1 0xE DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3865 DUP3 PUSH2 0x3826 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3887 DUP2 PUSH2 0x384E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x38C2 PUSH1 0xD DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x38CD DUP3 PUSH2 0x388E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x38EF DUP2 PUSH2 0x38B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x392A PUSH1 0x15 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3935 DUP3 PUSH2 0x38F6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3957 DUP2 PUSH2 0x391E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3971 PUSH0 DUP4 ADD DUP6 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x397E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x398E DUP2 PUSH2 0x3048 JUMP JUMPDEST DUP2 EQ PUSH2 0x3998 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x39A9 DUP2 PUSH2 0x3985 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39C4 JUMPI PUSH2 0x39C3 PUSH2 0x2F75 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x39D1 DUP5 DUP3 DUP6 ADD PUSH2 0x399B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3A11 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3A1C DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3A34 JUMPI PUSH2 0x3A33 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3A44 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3A4F DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3A67 JUMPI PUSH2 0x3A66 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3A80 PUSH0 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3AE0 PUSH1 0x29 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3AEB DUP3 PUSH2 0x3A86 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3B0D DUP2 PUSH2 0x3AD4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3B48 PUSH1 0x12 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3B53 DUP3 PUSH2 0x3B14 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3B75 DUP2 PUSH2 0x3B3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3B8F PUSH0 DUP4 ADD DUP7 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x3B9C PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x3BA9 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3BBB DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3BED JUMPI PUSH2 0x3BEC PUSH2 0x39DA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3C0B PUSH0 DUP4 ADD DUP7 PUSH2 0x34CC JUMP JUMPDEST PUSH2 0x3C18 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x3C25 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F72646572416C72656164794578697374730000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3C61 PUSH1 0x12 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3C6C DUP3 PUSH2 0x3C2D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3C8E DUP2 PUSH2 0x3C55 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3CC9 PUSH1 0x1D DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3CD4 DUP3 PUSH2 0x3C95 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3CF6 DUP2 PUSH2 0x3CBD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3D07 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3D12 DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3D20 DUP2 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x3D37 JUMPI PUSH2 0x3D36 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x3D75 DUP3 PUSH2 0x307B JUMP JUMPDEST SWAP2 POP PUSH2 0x3D80 DUP4 PUSH2 0x307B JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3D90 JUMPI PUSH2 0x3D8F PUSH2 0x3D3E JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3DBE PUSH2 0x3DB9 PUSH2 0x3DB4 DUP5 PUSH2 0x316F JUMP JUMPDEST PUSH2 0x3D9B JUMP JUMPDEST PUSH2 0x307B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3DCE DUP2 PUSH2 0x3DA4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3DFD DUP4 DUP6 PUSH2 0x362A JUMP JUMPDEST SWAP4 POP PUSH2 0x3E0A DUP4 DUP6 DUP5 PUSH2 0x3DD4 JUMP JUMPDEST PUSH2 0x3E13 DUP4 PUSH2 0x3DE2 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3E31 PUSH0 DUP4 ADD DUP9 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x3E3E PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x33C1 JUMP JUMPDEST PUSH2 0x3E4B PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x3DC5 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3E5E DUP2 DUP5 DUP7 PUSH2 0x3DF2 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3EC4 PUSH1 0x2E DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3ECF DUP3 PUSH2 0x3E6A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3EF1 DUP2 PUSH2 0x3EB8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3F27 PUSH2 0x3F22 PUSH2 0x3F1D DUP5 PUSH2 0x3EF8 JUMP JUMPDEST PUSH2 0x3D9B JUMP JUMPDEST PUSH2 0x3F01 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F37 DUP2 PUSH2 0x3F0D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3F50 PUSH0 DUP4 ADD DUP5 PUSH2 0x3F2E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3F8A PUSH1 0x1C DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x3F95 DUP3 PUSH2 0x3F56 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3FB7 DUP2 PUSH2 0x3F7E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4018 PUSH1 0x23 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4023 DUP3 PUSH2 0x3FBE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4045 DUP2 PUSH2 0x400C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x40A6 PUSH1 0x27 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x40B1 DUP3 PUSH2 0x404C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x40D3 DUP2 PUSH2 0x409A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4134 PUSH1 0x25 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x413F DUP3 PUSH2 0x40DA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4161 DUP2 PUSH2 0x4128 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x41C2 PUSH1 0x2A DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x41CD DUP3 PUSH2 0x4168 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x41EF DUP2 PUSH2 0x41B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x4209 PUSH0 DUP4 ADD DUP8 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4216 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4223 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4230 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x426D PUSH1 0x17 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4278 DUP3 PUSH2 0x4239 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x429A DUP2 PUSH2 0x4261 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x42AB DUP3 PUSH2 0x316F JUMP JUMPDEST SWAP2 POP PUSH2 0x42B6 DUP4 PUSH2 0x316F JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x42DA JUMPI PUSH2 0x42D9 PUSH2 0x39DA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x42FA PUSH2 0x42F5 PUSH2 0x42F0 DUP5 PUSH2 0x34F4 JUMP JUMPDEST PUSH2 0x3D9B JUMP JUMPDEST PUSH2 0x316F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x430A DUP2 PUSH2 0x42E0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x4323 PUSH0 DUP4 ADD DUP6 PUSH2 0x33C1 JUMP JUMPDEST PUSH2 0x4330 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4301 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x436B PUSH1 0x20 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4376 DUP3 PUSH2 0x4337 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4398 DUP2 PUSH2 0x435F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x43D3 PUSH1 0x10 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x43DE DUP3 PUSH2 0x439F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4400 DUP2 PUSH2 0x43C7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x443B PUSH1 0x11 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4446 DUP3 PUSH2 0x4407 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4468 DUP2 PUSH2 0x442F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x44A3 PUSH1 0xC DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x44AE DUP3 PUSH2 0x446F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x44D0 DUP2 PUSH2 0x4497 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x450B PUSH1 0x10 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x4516 DUP3 PUSH2 0x44D7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x4538 DUP2 PUSH2 0x44FF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4573 PUSH1 0x19 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x457E DUP3 PUSH2 0x453F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x45A0 DUP2 PUSH2 0x4567 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4601 PUSH1 0x2B DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x460C DUP3 PUSH2 0x45A7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x462E DUP2 PUSH2 0x45F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x4648 PUSH0 DUP4 ADD DUP7 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4655 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x4662 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x467D PUSH0 DUP4 ADD DUP6 PUSH2 0x3516 JUMP JUMPDEST PUSH2 0x468A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3516 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x46C5 PUSH1 0x14 DUP4 PUSH2 0x362A JUMP JUMPDEST SWAP2 POP PUSH2 0x46D0 DUP3 PUSH2 0x4691 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x46F2 DUP2 PUSH2 0x46B9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF9 SWAP8 PUSH22 0x96DA9AD2A245337CC030A1F8009FD0587D8173B6E1AC LOG3 0xAD 0xD1 0xD9 0xF8 PUSH0 0xF7 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"390:10167:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421:56;;;:::i;:::-;;2508:551:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1879:84:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2085:101:1;;;:::i;:::-;;6433:920:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7742:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7586:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2031:212:0;;;:::i;:::-;;1709:1765:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;795:114;;;:::i;:::-;;1325:52;;;:::i;:::-;;3670:988:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4838:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7930:109:10;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1944:335:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4531:1863:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1421:56:10;1355:13:1;:11;:13::i;:::-;1463:10:10::1;:8;:10::i;:::-;1421:56::o:0;2508:551:11:-;1355:13:1;:11;:13::i;:::-;2616:1:11::1;2599:19;;:5;:19;;::::0;2591:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2648:12;2668:18;:4;:18:::0;2664:326:::1;;2720:5;2701:24;;:15;;;;;;;;;;;:24;;::::0;2693:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2790:5;2772:15;;:23;;;;;;;;;;;;;;;;;;2810:4;2800:14;;2664:326;;;2829:20;:4;:20:::0;2825:165:::1;;2886:5;2864:27;;:18;;;;;;;;;;;:27;;::::0;2856:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2961:5;2940:18;;:26;;;;;;;;;;;;;;;;;;2981:4;2971:14;;2825:165;2664:326;2997:7;2993:63;;;3045:5;3016:35;;3039:4;3016:35;;;;;;;;;;2993:63;2587:472;2508:551:::0;;:::o;1879:84:3:-;1926:4;1949:7;;;;;;;;;;;1942:14;;1879:84;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;6433:920:10:-;6514:4;1044:18;;;;;;;;;;;1030:32;;:10;:32;;;1022:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;6584:5:::1;:15;6590:8;6584:15;;;;;;;;;;;:27;;;;;;;;;;;;6583:28;6575:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;6643:5;:15;6649:8;6643:15;;;;;;;;;;;:26;;;;;;;;;;;;6642:27;6634:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;6730:4;6699:5;:15;6705:8;6699:15;;;;;;;;;;;:27;;;:35;;6691:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;6776:1;6769:4;:8;6765:127;;;6833:5;:15;6839:8;6833:15;;;;;;;;;;;:21;;;;;;;;;;;;6826:38;;;6865:15;;;;;;;;;;;6882:4;6826:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6765:127;6949:4;6920:5;:15;6926:8;6920:15;;;;;;;;;;;:26;;;:33;;;;;;;;;;;;;;;;;;6986:1;6957:5;:15;6963:8;6957:15;;;;;;;;;;;:26;;;:30;;;;;;;;;;;;;;;;;;7026:20;7074:4;7049:5;:15;7055:8;7049:15;;;;;;;;;;;:22;;;:29;;;;:::i;:::-;7026:52;;7155:5;:15;7161:8;7155:15;;;;;;;;;;;:21;;;;;;;;;;;;7148:38;;;7191:5;:15;7197:8;7191:15;;;;;;;;;;;:29;;;;;;;;;;;;7240:5;:15;7246:8;7240:15;;;;;;;;;;;:25;;;7225:12;:40;;;;:::i;:::-;7148:121;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7324:8;7304:29;7318:4;7304:29;;;;;;:::i;:::-;;;;;;;;7345:4;7338:11;;;6433:920:::0;;;;:::o;7742:142::-;7807:4;7850:1;7821:17;:25;7839:6;7821:25;;;;;;;;;;;;;;;;:30;7817:47;;7860:4;7853:11;;;;7817:47;7875:5;7868:12;;7742:142;;;;:::o;7586:107::-;7649:12;;:::i;:::-;7674:5;:15;7680:8;7674:15;;;;;;;;;;;7667:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7586:107;;;:::o;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;1709:1765:10:-;1928:15;1503:19:3;:17;:19::i;:::-;1979:74:10::1;1988:6;1996:7;2005:14;2021:19;2042:10;1979:8;:74::i;:::-;2121:1;2098:11;;2092:25;;:30:::0;2084:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2205:6;2198:27;;;2226:10;2246:4;2263:10;2253:7;:20;;;;:::i;:::-;2198:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2329:6;:18;2336:10;2329:18;;;;;;;;;;;;;;;;:20;;;;;;;;;:::i;:::-;;;;;;2448:10;2460:6;:18;2467:10;2460:18;;;;;;;;;;;;;;;;2480:13;2437:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2427:68;;;;;;2417:78;;2541:1;2508:35;;:5;:14;2514:7;2508:14;;;;;;;;;;;:21;;;;;;;;;;;;:35;;;2500:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2595:20;2632:3;2623:5;:12;;::::0;2619:381:::1;;2689:1;2674:16;;2619:381;;;2780:32;2815:17;:25;2833:6;2815:25;;;;;;;;;;;;;;;2780:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;2887:1;2853:8;:31;;;:35;2845:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2988:7;;2953:8;:31;;;2943:7;:41;;;;:::i;:::-;2942:53;;;;:::i;:::-;2927:68;;2701:299;2619:381;3020:283;;;;;;;;3039:10;3020:283;;;;;;3061:6;3020:283;;;;;;3092:19;3020:283;;;;;;3127:10;3020:283;;;;3155:12;3020:283;;;;3185:5;3020:283;;;;;;3207:5;3020:283;;;;;;3232:14;3020:283;;;;;;3270:7;;3020:283;;;;;;;;3291:7;3020:283;;::::0;3003:5:::1;:14;3009:7;3003:14;;;;;;;;;;;:300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3390:5;:14;3396:7;3390:14;;;;;;;;;;;:21;;;3379:6;3343:127;;3360:14;3343:127;;;3416:12;3433:7;3445:5;3455:11;;3343:127;;;;;;;;;;:::i;:::-;;;;;;;;1945:1529;1709:1765:::0;;;;;;;;;;:::o;795:114::-;3279:19:2;3302:13;;;;;;;;;;;3301:14;3279:36;;3347:14;:34;;;;;3380:1;3365:12;;;;;;;;;;:16;;;3347:34;3346:108;;;;3388:44;3426:4;3388:29;:44::i;:::-;3387:45;:66;;;;;3452:1;3436:12;;;;;;;;;;:17;;;3387:66;3346:108;3325:201;;;;;;;;;;;;:::i;:::-;;;;;;;;;3551:1;3536:12;;:16;;;;;;;;;;;;;;;;;;3566:14;3562:65;;;3612:4;3596:13;;:20;;;;;;;;;;;;;;;;;;3562:65;852:7:10::1;842;:17;;;;863:21;:19;:21::i;:::-;888:17;:15;:17::i;:::-;3651:14:2::0;3647:99;;;3697:5;3681:13;;:21;;;;;;;;;;;;;;;;;;3721:14;3733:1;3721:14;;;;;;:::i;:::-;;;;;;;;3647:99;3269:483;795:114:10:o;1325:52::-;1355:13:1;:11;:13::i;:::-;1365:8:10::1;:6;:8::i;:::-;1325:52::o:0;3670:988:11:-;1355:13:1;:11;:13::i;:::-;3902:1:11::1;3874:17;:24;3892:5;3874:24;;;;;;;;;;;;;;;;:29;3866:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3968:7;;3948:16;:27;;3940:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4051:7;;4027:20;:31;;4019:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4136:7;;4114:18;:29;;4106:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4223:7;;4197:22;:33;;4189:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:202;;;;;;;;4349:16;4309:202;;;;4392:20;4309:202;;;;4437:18;4309:202;;;;4484:22;4309:202;;::::0;4282:17:::1;:24;4300:5;4282:24;;;;;;;;;;;;;;;:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4549:5;4521:133;;;4559:16;4580:20;4605:18;4628:22;4521:133;;;;;;;;;:::i;:::-;;;;;;;;3670:988:::0;;;;;:::o;4838:131::-;4905:23;;:::i;:::-;4941:17;:24;4959:5;4941:24;;;;;;;;;;;;;;;4934:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4838:131;;;:::o;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;7930:109:10:-;7978:6;7986:7;8007:18;;;;;;;;;;;8027:7;;7999:36;;;;7930:109;;:::o;1944:335:11:-;1355:13:1;:11;:13::i;:::-;2065:1:11::1;2048:19;;:5;:19;;::::0;2040:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:1;2105:6;:11;:26;;;;2130:1;2120:6;:11;2105:26;2097:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2167:15;:4;:15:::0;2163:113:::1;;2216:6;2189:17;:24;2207:5;2189:24;;;;;;;;;;;;;;;:33;;;;2257:5;2232:39;;2251:4;2232:39;2264:6;2232:39;;;;;;:::i;:::-;;;;;;;;2163:113;1944:335:::0;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;4531:1863:10:-;4683:4;1044:18;;;;;;;;;;;1030:32;;:10;:32;;;1022:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4753:5:::1;:15;4759:8;4753:15;;;;;;;;;;;:27;;;;;;;;;;;;4752:28;4744:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4812:5;:15;4818:8;4812:15;;;;;;;;;;;:26;;;;;;;;;;;;4811:27;4803:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;4893:13;4909:5;:15;4915:8;4909:15;;;;;;;;;;;:21;;;;;;;;;;;;4893:37;;4997:23;5023:5;:15;5029:8;5023:15;;;;;;;;;;;:26;;;;;;;;;;;;4997:52;;;;5083:14;5053:44;;:5;:15;5059:8;5053:15;;;;;;;;;;;:26;;;:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5136:1;5106:5;:15;5112:8;5106:15;;;;;;;;;;;:26;;;;;;;;;;;;:31;;::::0;5102:487:::1;;5219:4;5189:5;:15;5195:8;5189:15;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;5262:1;5233:5;:15;5239:8;5233:15;;;;;;;;;;;:25;;;:30;5229:356;;5357:1;5326:5;:15;5332:8;5326:15;;;;;;;;;;;:27;;;:32:::0;5322:258:::1;;5409:62;5442:8;5452:18;5409:32;:62::i;:::-;5322:258;;;5534:39;5564:8;5534:29;:39::i;:::-;5322:258;5229:356;5102:487;5629:31;5710:15;5689:14;5664:39;;:5;:15;5670:8;5664:15;;;;;;;;;;;:22;;;:39;;;;:::i;:::-;5663:62;;;;:::i;:::-;5629:96;;5755:23;5729:5;:15;5735:8;5729:15;;;;;;;;;;;:22;;;:49;;;;;;;:::i;:::-;;;;;;;;5817:1;5787:5;:15;5793:8;5787:15;;;;;;;;;;;:27;;;:31;5783:413;;;5887:32;5922:17;:40;5940:5;:15;5946:8;5940:15;;;;;;;;;;;:21;;;;;;;;;;;;5922:40;;;;;;;;;;;;;;;5887:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;5967:19;6055:7;;6016:8;:31;;;5990:23;:57;;;;:::i;:::-;5989:73;;;;:::i;:::-;5967:95;;6094:11;6067:38;;;;;:::i;:::-;;;6146:5;6139:22;;;6162:15;;;;;;;;;;;6179:11;6139:52;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5820:376;;5783:413;6207:5;6200:22;;;6223:18;6243:23;6200:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6339:18;6301:73;;6329:8;6301:73;6314:13;6359:14;6301:73;;;;;;;:::i;:::-;;;;;;;;6386:4;6379:11;;;;;4531:1863:::0;;;;;;:::o;1436:178:0:-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;2697:117:3:-;1750:16;:14;:16::i;:::-;2765:5:::1;2755:7;;:15;;;;;;;;;;;;;;;;;;2785:22;2794:12;:10;:12::i;:::-;2785:22;;;;;;:::i;:::-;;;;;;;;2697:117::o:0;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;2031:106:3:-;2101:8;:6;:8::i;:::-;2100:9;2092:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:106::o;3867:427:10:-;4059:1;4030:17;:25;4048:6;4030:25;;;;;;;;;;;;;;;;:30;4022:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4105:1;4094:7;:12;4086:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;4161:1;4135:28;;:14;:28;;;4127:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4207:1;4193:10;:15;4189:102;;4254:1;4223:33;;:19;:33;;;4215:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4189:102;3867:427;;;;;:::o;1423:320:4:-;1483:4;1735:1;1713:7;:19;;;:23;1706:30;;1423:320;;;:::o;889:100:0:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;956:26:0::1;:24;:26::i;:::-;889:100::o:0;1084:97:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1147:27:3::1;:25;:27::i;:::-;1084:97::o:0;2450:115::-;1503:19;:17;:19::i;:::-;2519:4:::1;2509:7;;:14;;;;;;;;;;;;;;;;;;2538:20;2545:12;:10;:12::i;:::-;2538:20;;;;;;:::i;:::-;;;;;;;;2450:115::o:0;8253:1283:10:-;8361:32;8396:17;:40;8414:5;:15;8420:8;8414:15;;;;;;;;;;;:21;;;;;;;;;;;;8396:40;;;;;;;;;;;;;;;8361:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8440:17;8460:5;:15;8466:8;8460:15;;;;;;;;;;;:25;;;8440:45;;8528:22;8595:7;;8566:8;:25;;;8554:9;:37;;;;:::i;:::-;8553:49;;;;:::i;:::-;8528:74;;8606:24;8684:7;;8651:8;:29;;;8634:14;:46;;;;:::i;:::-;8633:58;;;;:::i;:::-;8606:85;;8695:20;8730:14;8718:9;:26;;;;:::i;:::-;8695:49;;8797:1;8782:12;:16;8778:133;;;8812:5;:15;8818:8;8812:15;;;;;;;;;;;:21;;;;;;;;;;;;8805:38;;;8849:5;:15;8855:8;8849:15;;;;;;;;;;;:34;;;;;;;;;;;;8889:12;8805:101;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8778:133;9036:1;9017:16;9000:14;:33;;;;:::i;:::-;:37;8996:159;;;9051:5;:15;9057:8;9051:15;;;;;;;;;;;:21;;;;;;;;;;;;9044:38;;;9088:18;9129:16;9112:14;:33;;;;:::i;:::-;9044:106;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8996:159;9227:1;9208:16;:20;9204:109;;;9242:5;:15;9248:8;9242:15;;;;;;;;;;;:21;;;;;;;;;;;;9235:38;;;9274:15;;;;;;;;;;;9291:16;9235:73;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9204:109;9396:12;9360:5;:15;9366:8;9360:15;;;;;;;;;;;:34;;;;;;;;;;;;9339:70;;;;;;;;;;;;9444:8;9418:114;9457:12;9491:16;9474:14;:33;;;;:::i;:::-;9512:16;9418:114;;;;;;;;:::i;:::-;;;;;;;;8357:1179;;;;;8253:1283;;:::o;9655:900::-;9725:32;9760:17;:40;9778:5;:15;9784:8;9778:15;;;;;;;;;;;:21;;;;;;;;;;;;9760:40;;;;;;;;;;;;;;;9725:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9804:17;9824:5;:15;9830:8;9824:15;;;;;;;;;;;:25;;;9804:45;;9920:20;9999:7;;9967:8;:27;;;9957:7;;:37;;;;:::i;:::-;9944:9;:51;;;;:::i;:::-;9943:63;;;;:::i;:::-;9920:86;;10010:24;10049:12;10037:9;:24;;;;:::i;:::-;10010:51;;10114:1;10099:12;:16;10095:133;;;10129:5;:15;10135:8;10129:15;;;;;;;;;;;:21;;;;;;;;;;;;10122:38;;;10166:5;:15;10172:8;10166:15;;;;;;;;;;;:34;;;;;;;;;;;;10206:12;10122:101;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10095:133;10300:1;10281:16;:20;10277:109;;;10315:5;:15;10321:8;10315:15;;;;;;;;;;;:21;;;;;;;;;;;;10308:38;;;10347:15;;;;;;;;;;;10364:16;10308:73;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10277:109;10469:12;10433:5;:15;10439:8;10433:15;;;;;;;;;;;:34;;;;;;;;;;;;10412:70;;;;;;;;;;;;10510:8;10491:60;10520:12;10534:16;10491:60;;;;;;;:::i;:::-;;;;;;;;9721:834;;;;9655:900;:::o;2209:106:3:-;2275:8;:6;:8::i;:::-;2267:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2209:106::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;1125:111::-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1197:32:1::1;1216:12;:10;:12::i;:::-;1197:18;:32::i;:::-;1125:111::o:0;1187:95:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1270:5:3::1;1260:7;;:15;;;;;;;;;;;;;;;;;;1187:95::o:0;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88:117:14:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:90::-;1711:7;1754:5;1747:13;1740:21;1729:32;;1677:90;;;:::o;1773:109::-;1854:21;1869:5;1854:21;:::i;:::-;1849:3;1842:34;1773:109;;:::o;1888:210::-;1975:4;2013:2;2002:9;1998:18;1990:26;;2026:65;2088:1;2077:9;2073:17;2064:6;2026:65;:::i;:::-;1888:210;;;;:::o;2104:77::-;2141:7;2170:5;2159:16;;2104:77;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:474::-;2528:6;2536;2585:2;2573:9;2564:7;2560:23;2556:32;2553:119;;;2591:79;;:::i;:::-;2553:119;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2838:2;2864:53;2909:7;2900:6;2889:9;2885:22;2864:53;:::i;:::-;2854:63;;2809:118;2460:474;;;;;:::o;2940:329::-;2999:6;3048:2;3036:9;3027:7;3023:23;3019:32;3016:119;;;3054:79;;:::i;:::-;3016:119;3174:1;3199:53;3244:7;3235:6;3224:9;3220:22;3199:53;:::i;:::-;3189:63;;3145:117;2940:329;;;;:::o;3275:::-;3334:6;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3275:329;;;;:::o;3610:108::-;3687:24;3705:5;3687:24;:::i;:::-;3682:3;3675:37;3610:108;;:::o;3724:::-;3801:24;3819:5;3801:24;:::i;:::-;3796:3;3789:37;3724:108;;:::o;3838:99::-;3909:21;3924:5;3909:21;:::i;:::-;3904:3;3897:34;3838:99;;:::o;3943:109::-;3979:7;4019:26;4012:5;4008:38;3997:49;;3943:109;;;:::o;4058:105::-;4133:23;4150:5;4133:23;:::i;:::-;4128:3;4121:36;4058:105;;:::o;4223:1950::-;4366:6;4361:3;4357:16;4457:4;4450:5;4446:16;4440:23;4476:63;4533:4;4528:3;4524:14;4510:12;4476:63;:::i;:::-;4383:166;4632:4;4625:5;4621:16;4615:23;4651:63;4708:4;4703:3;4699:14;4685:12;4651:63;:::i;:::-;4559:165;4820:4;4813:5;4809:16;4803:23;4839:63;4896:4;4891:3;4887:14;4873:12;4839:63;:::i;:::-;4734:178;4999:4;4992:5;4988:16;4982:23;5018:63;5075:4;5070:3;5066:14;5052:12;5018:63;:::i;:::-;4922:169;5180:4;5173:5;5169:16;5163:23;5199:63;5256:4;5251:3;5247:14;5233:12;5199:63;:::i;:::-;5101:171;5361:4;5354:5;5350:16;5344:23;5380:57;5431:4;5426:3;5422:14;5408:12;5380:57;:::i;:::-;5282:165;5535:4;5528:5;5524:16;5518:23;5554:57;5605:4;5600:3;5596:14;5582:12;5554:57;:::i;:::-;5457:164;5712:4;5705:5;5701:16;5695:23;5731:63;5788:4;5783:3;5779:14;5765:12;5731:63;:::i;:::-;5631:173;5892:6;5885:5;5881:18;5875:25;5913:63;5968:6;5963:3;5959:16;5945:12;5913:63;:::i;:::-;5814:172;6070:6;6063:5;6059:18;6053:25;6091:65;6148:6;6143:3;6139:16;6125:12;6091:65;:::i;:::-;5996:170;4335:1838;4223:1950;;:::o;6179:315::-;6318:4;6356:3;6345:9;6341:19;6333:27;;6370:117;6484:1;6473:9;6469:17;6460:6;6370:117;:::i;:::-;6179:315;;;;:::o;6500:120::-;6572:23;6589:5;6572:23;:::i;:::-;6565:5;6562:34;6552:62;;6610:1;6607;6600:12;6552:62;6500:120;:::o;6626:137::-;6671:5;6709:6;6696:20;6687:29;;6725:32;6751:5;6725:32;:::i;:::-;6626:137;;;;:::o;6769:117::-;6878:1;6875;6868:12;6892:117;7001:1;6998;6991:12;7015:117;7124:1;7121;7114:12;7152:553;7210:8;7220:6;7270:3;7263:4;7255:6;7251:17;7247:27;7237:122;;7278:79;;:::i;:::-;7237:122;7391:6;7378:20;7368:30;;7421:18;7413:6;7410:30;7407:117;;;7443:79;;:::i;:::-;7407:117;7557:4;7549:6;7545:17;7533:29;;7611:3;7603:4;7595:6;7591:17;7581:8;7577:32;7574:41;7571:128;;;7618:79;;:::i;:::-;7571:128;7152:553;;;;;:::o;7711:1401::-;7835:6;7843;7851;7859;7867;7875;7883;7891;7940:3;7928:9;7919:7;7915:23;7911:33;7908:120;;;7947:79;;:::i;:::-;7908:120;8067:1;8092:53;8137:7;8128:6;8117:9;8113:22;8092:53;:::i;:::-;8082:63;;8038:117;8194:2;8220:53;8265:7;8256:6;8245:9;8241:22;8220:53;:::i;:::-;8210:63;;8165:118;8322:2;8348:52;8392:7;8383:6;8372:9;8368:22;8348:52;:::i;:::-;8338:62;;8293:117;8449:2;8475:53;8520:7;8511:6;8500:9;8496:22;8475:53;:::i;:::-;8465:63;;8420:118;8577:3;8604:53;8649:7;8640:6;8629:9;8625:22;8604:53;:::i;:::-;8594:63;;8548:119;8706:3;8733:53;8778:7;8769:6;8758:9;8754:22;8733:53;:::i;:::-;8723:63;;8677:119;8863:3;8852:9;8848:19;8835:33;8895:18;8887:6;8884:30;8881:117;;;8917:79;;:::i;:::-;8881:117;9030:65;9087:7;9078:6;9067:9;9063:22;9030:65;:::i;:::-;9012:83;;;;8806:299;7711:1401;;;;;;;;;;;:::o;9118:118::-;9205:24;9223:5;9205:24;:::i;:::-;9200:3;9193:37;9118:118;;:::o;9242:222::-;9335:4;9373:2;9362:9;9358:18;9350:26;;9386:71;9454:1;9443:9;9439:17;9430:6;9386:71;:::i;:::-;9242:222;;;;:::o;9470:911::-;9565:6;9573;9581;9589;9597;9646:3;9634:9;9625:7;9621:23;9617:33;9614:120;;;9653:79;;:::i;:::-;9614:120;9773:1;9798:53;9843:7;9834:6;9823:9;9819:22;9798:53;:::i;:::-;9788:63;;9744:117;9900:2;9926:53;9971:7;9962:6;9951:9;9947:22;9926:53;:::i;:::-;9916:63;;9871:118;10028:2;10054:53;10099:7;10090:6;10079:9;10075:22;10054:53;:::i;:::-;10044:63;;9999:118;10156:2;10182:53;10227:7;10218:6;10207:9;10203:22;10182:53;:::i;:::-;10172:63;;10127:118;10284:3;10311:53;10356:7;10347:6;10336:9;10332:22;10311:53;:::i;:::-;10301:63;;10255:119;9470:911;;;;;;;;:::o;10489:933::-;10654:4;10649:3;10645:14;10753:4;10746:5;10742:16;10736:23;10772:63;10829:4;10824:3;10820:14;10806:12;10772:63;:::i;:::-;10669:176;10943:4;10936:5;10932:16;10926:23;10962:63;11019:4;11014:3;11010:14;10996:12;10962:63;:::i;:::-;10855:180;11131:4;11124:5;11120:16;11114:23;11150:63;11207:4;11202:3;11198:14;11184:12;11150:63;:::i;:::-;11045:178;11323:4;11316:5;11312:16;11306:23;11342:63;11399:4;11394:3;11390:14;11376:12;11342:63;:::i;:::-;11233:182;10623:799;10489:933;;:::o;11428:359::-;11589:4;11627:3;11616:9;11612:19;11604:27;;11641:139;11777:1;11766:9;11762:17;11753:6;11641:139;:::i;:::-;11428:359;;;;:::o;11793:118::-;11880:24;11898:5;11880:24;:::i;:::-;11875:3;11868:37;11793:118;;:::o;11917:222::-;12010:4;12048:2;12037:9;12033:18;12025:26;;12061:71;12129:1;12118:9;12114:17;12105:6;12061:71;:::i;:::-;11917:222;;;;:::o;12145:101::-;12181:7;12221:18;12214:5;12210:30;12199:41;;12145:101;;;:::o;12252:115::-;12337:23;12354:5;12337:23;:::i;:::-;12332:3;12325:36;12252:115;;:::o;12373:118::-;12460:24;12478:5;12460:24;:::i;:::-;12455:3;12448:37;12373:118;;:::o;12497:328::-;12616:4;12654:2;12643:9;12639:18;12631:26;;12667:69;12733:1;12722:9;12718:17;12709:6;12667:69;:::i;:::-;12746:72;12814:2;12803:9;12799:18;12790:6;12746:72;:::i;:::-;12497:328;;;;;:::o;12831:619::-;12908:6;12916;12924;12973:2;12961:9;12952:7;12948:23;12944:32;12941:119;;;12979:79;;:::i;:::-;12941:119;13099:1;13124:53;13169:7;13160:6;13149:9;13145:22;13124:53;:::i;:::-;13114:63;;13070:117;13226:2;13252:53;13297:7;13288:6;13277:9;13273:22;13252:53;:::i;:::-;13242:63;;13197:118;13354:2;13380:53;13425:7;13416:6;13405:9;13401:22;13380:53;:::i;:::-;13370:63;;13325:118;12831:619;;;;;:::o;13456:120::-;13528:23;13545:5;13528:23;:::i;:::-;13521:5;13518:34;13508:62;;13566:1;13563;13556:12;13508:62;13456:120;:::o;13582:137::-;13627:5;13665:6;13652:20;13643:29;;13681:32;13707:5;13681:32;:::i;:::-;13582:137;;;;:::o;13725:763::-;13810:6;13818;13826;13834;13883:3;13871:9;13862:7;13858:23;13854:33;13851:120;;;13890:79;;:::i;:::-;13851:120;14010:1;14035:53;14080:7;14071:6;14060:9;14056:22;14035:53;:::i;:::-;14025:63;;13981:117;14137:2;14163:53;14208:7;14199:6;14188:9;14184:22;14163:53;:::i;:::-;14153:63;;14108:118;14265:2;14291:53;14336:7;14327:6;14316:9;14312:22;14291:53;:::i;:::-;14281:63;;14236:118;14393:2;14419:52;14463:7;14454:6;14443:9;14439:22;14419:52;:::i;:::-;14409:62;;14364:117;13725:763;;;;;;;:::o;14494:169::-;14578:11;14612:6;14607:3;14600:19;14652:4;14647:3;14643:14;14628:29;;14494:169;;;;:::o;14669:171::-;14809:23;14805:1;14797:6;14793:14;14786:47;14669:171;:::o;14846:366::-;14988:3;15009:67;15073:2;15068:3;15009:67;:::i;:::-;15002:74;;15085:93;15174:3;15085:93;:::i;:::-;15203:2;15198:3;15194:12;15187:19;;14846:366;;;:::o;15218:419::-;15384:4;15422:2;15411:9;15407:18;15399:26;;15471:9;15465:4;15461:20;15457:1;15446:9;15442:17;15435:47;15499:131;15625:4;15499:131;:::i;:::-;15491:139;;15218:419;;;:::o;15643:224::-;15783:34;15779:1;15771:6;15767:14;15760:58;15852:7;15847:2;15839:6;15835:15;15828:32;15643:224;:::o;15873:366::-;16015:3;16036:67;16100:2;16095:3;16036:67;:::i;:::-;16029:74;;16112:93;16201:3;16112:93;:::i;:::-;16230:2;16225:3;16221:12;16214:19;;15873:366;;;:::o;16245:419::-;16411:4;16449:2;16438:9;16434:18;16426:26;;16498:9;16492:4;16488:20;16484:1;16473:9;16469:17;16462:47;16526:131;16652:4;16526:131;:::i;:::-;16518:139;;16245:419;;;:::o;16670:226::-;16810:34;16806:1;16798:6;16794:14;16787:58;16879:9;16874:2;16866:6;16862:15;16855:34;16670:226;:::o;16902:366::-;17044:3;17065:67;17129:2;17124:3;17065:67;:::i;:::-;17058:74;;17141:93;17230:3;17141:93;:::i;:::-;17259:2;17254:3;17250:12;17243:19;;16902:366;;;:::o;17274:419::-;17440:4;17478:2;17467:9;17463:18;17455:26;;17527:9;17521:4;17517:20;17513:1;17502:9;17498:17;17491:47;17555:131;17681:4;17555:131;:::i;:::-;17547:139;;17274:419;;;:::o;17699:164::-;17839:16;17835:1;17827:6;17823:14;17816:40;17699:164;:::o;17869:366::-;18011:3;18032:67;18096:2;18091:3;18032:67;:::i;:::-;18025:74;;18108:93;18197:3;18108:93;:::i;:::-;18226:2;18221:3;18217:12;18210:19;;17869:366;;;:::o;18241:419::-;18407:4;18445:2;18434:9;18430:18;18422:26;;18494:9;18488:4;18484:20;18480:1;18469:9;18465:17;18458:47;18522:131;18648:4;18522:131;:::i;:::-;18514:139;;18241:419;;;:::o;18666:164::-;18806:16;18802:1;18794:6;18790:14;18783:40;18666:164;:::o;18836:366::-;18978:3;18999:67;19063:2;19058:3;18999:67;:::i;:::-;18992:74;;19075:93;19164:3;19075:93;:::i;:::-;19193:2;19188:3;19184:12;19177:19;;18836:366;;;:::o;19208:419::-;19374:4;19412:2;19401:9;19397:18;19389:26;;19461:9;19455:4;19451:20;19447:1;19436:9;19432:17;19425:47;19489:131;19615:4;19489:131;:::i;:::-;19481:139;;19208:419;;;:::o;19633:163::-;19773:15;19769:1;19761:6;19757:14;19750:39;19633:163;:::o;19802:366::-;19944:3;19965:67;20029:2;20024:3;19965:67;:::i;:::-;19958:74;;20041:93;20130:3;20041:93;:::i;:::-;20159:2;20154:3;20150:12;20143:19;;19802:366;;;:::o;20174:419::-;20340:4;20378:2;20367:9;20363:18;20355:26;;20427:9;20421:4;20417:20;20413:1;20402:9;20398:17;20391:47;20455:131;20581:4;20455:131;:::i;:::-;20447:139;;20174:419;;;:::o;20599:171::-;20739:23;20735:1;20727:6;20723:14;20716:47;20599:171;:::o;20776:366::-;20918:3;20939:67;21003:2;20998:3;20939:67;:::i;:::-;20932:74;;21015:93;21104:3;21015:93;:::i;:::-;21133:2;21128:3;21124:12;21117:19;;20776:366;;;:::o;21148:419::-;21314:4;21352:2;21341:9;21337:18;21329:26;;21401:9;21395:4;21391:20;21387:1;21376:9;21372:17;21365:47;21429:131;21555:4;21429:131;:::i;:::-;21421:139;;21148:419;;;:::o;21573:332::-;21694:4;21732:2;21721:9;21717:18;21709:26;;21745:71;21813:1;21802:9;21798:17;21789:6;21745:71;:::i;:::-;21826:72;21894:2;21883:9;21879:18;21870:6;21826:72;:::i;:::-;21573:332;;;;;:::o;21911:116::-;21981:21;21996:5;21981:21;:::i;:::-;21974:5;21971:32;21961:60;;22017:1;22014;22007:12;21961:60;21911:116;:::o;22033:137::-;22087:5;22118:6;22112:13;22103:22;;22134:30;22158:5;22134:30;:::i;:::-;22033:137;;;;:::o;22176:345::-;22243:6;22292:2;22280:9;22271:7;22267:23;22263:32;22260:119;;;22298:79;;:::i;:::-;22260:119;22418:1;22443:61;22496:7;22487:6;22476:9;22472:22;22443:61;:::i;:::-;22433:71;;22389:125;22176:345;;;;:::o;22527:180::-;22575:77;22572:1;22565:88;22672:4;22669:1;22662:15;22696:4;22693:1;22686:15;22713:194;22753:4;22773:20;22791:1;22773:20;:::i;:::-;22768:25;;22807:20;22825:1;22807:20;:::i;:::-;22802:25;;22851:1;22848;22844:9;22836:17;;22875:1;22869:4;22866:11;22863:37;;;22880:18;;:::i;:::-;22863:37;22713:194;;;;:::o;22913:191::-;22953:3;22972:20;22990:1;22972:20;:::i;:::-;22967:25;;23006:20;23024:1;23006:20;:::i;:::-;23001:25;;23049:1;23046;23042:9;23035:16;;23070:3;23067:1;23064:10;23061:36;;;23077:18;;:::i;:::-;23061:36;22913:191;;;;:::o;23110:222::-;23203:4;23241:2;23230:9;23226:18;23218:26;;23254:71;23322:1;23311:9;23307:17;23298:6;23254:71;:::i;:::-;23110:222;;;;:::o;23338:228::-;23478:34;23474:1;23466:6;23462:14;23455:58;23547:11;23542:2;23534:6;23530:15;23523:36;23338:228;:::o;23572:366::-;23714:3;23735:67;23799:2;23794:3;23735:67;:::i;:::-;23728:74;;23811:93;23900:3;23811:93;:::i;:::-;23929:2;23924:3;23920:12;23913:19;;23572:366;;;:::o;23944:419::-;24110:4;24148:2;24137:9;24133:18;24125:26;;24197:9;24191:4;24187:20;24183:1;24172:9;24168:17;24161:47;24225:131;24351:4;24225:131;:::i;:::-;24217:139;;23944:419;;;:::o;24369:168::-;24509:20;24505:1;24497:6;24493:14;24486:44;24369:168;:::o;24543:366::-;24685:3;24706:67;24770:2;24765:3;24706:67;:::i;:::-;24699:74;;24782:93;24871:3;24782:93;:::i;:::-;24900:2;24895:3;24891:12;24884:19;;24543:366;;;:::o;24915:419::-;25081:4;25119:2;25108:9;25104:18;25096:26;;25168:9;25162:4;25158:20;25154:1;25143:9;25139:17;25132:47;25196:131;25322:4;25196:131;:::i;:::-;25188:139;;24915:419;;;:::o;25340:442::-;25489:4;25527:2;25516:9;25512:18;25504:26;;25540:71;25608:1;25597:9;25593:17;25584:6;25540:71;:::i;:::-;25621:72;25689:2;25678:9;25674:18;25665:6;25621:72;:::i;:::-;25703;25771:2;25760:9;25756:18;25747:6;25703:72;:::i;:::-;25340:442;;;;;;:::o;25788:233::-;25827:3;25850:24;25868:5;25850:24;:::i;:::-;25841:33;;25896:66;25889:5;25886:77;25883:103;;25966:18;;:::i;:::-;25883:103;26013:1;26006:5;26002:13;25995:20;;25788:233;;;:::o;26027:442::-;26176:4;26214:2;26203:9;26199:18;26191:26;;26227:71;26295:1;26284:9;26280:17;26271:6;26227:71;:::i;:::-;26308:72;26376:2;26365:9;26361:18;26352:6;26308:72;:::i;:::-;26390;26458:2;26447:9;26443:18;26434:6;26390:72;:::i;:::-;26027:442;;;;;;:::o;26475:168::-;26615:20;26611:1;26603:6;26599:14;26592:44;26475:168;:::o;26649:366::-;26791:3;26812:67;26876:2;26871:3;26812:67;:::i;:::-;26805:74;;26888:93;26977:3;26888:93;:::i;:::-;27006:2;27001:3;26997:12;26990:19;;26649:366;;;:::o;27021:419::-;27187:4;27225:2;27214:9;27210:18;27202:26;;27274:9;27268:4;27264:20;27260:1;27249:9;27245:17;27238:47;27302:131;27428:4;27302:131;:::i;:::-;27294:139;;27021:419;;;:::o;27446:179::-;27586:31;27582:1;27574:6;27570:14;27563:55;27446:179;:::o;27631:366::-;27773:3;27794:67;27858:2;27853:3;27794:67;:::i;:::-;27787:74;;27870:93;27959:3;27870:93;:::i;:::-;27988:2;27983:3;27979:12;27972:19;;27631:366;;;:::o;28003:419::-;28169:4;28207:2;28196:9;28192:18;28184:26;;28256:9;28250:4;28246:20;28242:1;28231:9;28227:17;28220:47;28284:131;28410:4;28284:131;:::i;:::-;28276:139;;28003:419;;;:::o;28428:410::-;28468:7;28491:20;28509:1;28491:20;:::i;:::-;28486:25;;28525:20;28543:1;28525:20;:::i;:::-;28520:25;;28580:1;28577;28573:9;28602:30;28620:11;28602:30;:::i;:::-;28591:41;;28781:1;28772:7;28768:15;28765:1;28762:22;28742:1;28735:9;28715:83;28692:139;;28811:18;;:::i;:::-;28692:139;28476:362;28428:410;;;;:::o;28844:180::-;28892:77;28889:1;28882:88;28989:4;28986:1;28979:15;29013:4;29010:1;29003:15;29030:185;29070:1;29087:20;29105:1;29087:20;:::i;:::-;29082:25;;29121:20;29139:1;29121:20;:::i;:::-;29116:25;;29160:1;29150:35;;29165:18;;:::i;:::-;29150:35;29207:1;29204;29200:9;29195:14;;29030:185;;;;:::o;29221:60::-;29249:3;29270:5;29263:12;;29221:60;;;:::o;29287:140::-;29336:9;29369:52;29387:33;29396:23;29413:5;29396:23;:::i;:::-;29387:33;:::i;:::-;29369:52;:::i;:::-;29356:65;;29287:140;;;:::o;29433:129::-;29519:36;29549:5;29519:36;:::i;:::-;29514:3;29507:49;29433:129;;:::o;29568:146::-;29665:6;29660:3;29655;29642:30;29706:1;29697:6;29692:3;29688:16;29681:27;29568:146;;;:::o;29720:102::-;29761:6;29812:2;29808:7;29803:2;29796:5;29792:14;29788:28;29778:38;;29720:102;;;:::o;29852:317::-;29950:3;29971:71;30035:6;30030:3;29971:71;:::i;:::-;29964:78;;30052:56;30101:6;30096:3;30089:5;30052:56;:::i;:::-;30133:29;30155:6;30133:29;:::i;:::-;30128:3;30124:39;30117:46;;29852:317;;;;;:::o;30175:662::-;30381:4;30419:3;30408:9;30404:19;30396:27;;30433:71;30501:1;30490:9;30486:17;30477:6;30433:71;:::i;:::-;30514:72;30582:2;30571:9;30567:18;30558:6;30514:72;:::i;:::-;30596:71;30663:2;30652:9;30648:18;30639:6;30596:71;:::i;:::-;30714:9;30708:4;30704:20;30699:2;30688:9;30684:18;30677:48;30742:88;30825:4;30816:6;30808;30742:88;:::i;:::-;30734:96;;30175:662;;;;;;;;:::o;30843:233::-;30983:34;30979:1;30971:6;30967:14;30960:58;31052:16;31047:2;31039:6;31035:15;31028:41;30843:233;:::o;31082:366::-;31224:3;31245:67;31309:2;31304:3;31245:67;:::i;:::-;31238:74;;31321:93;31410:3;31321:93;:::i;:::-;31439:2;31434:3;31430:12;31423:19;;31082:366;;;:::o;31454:419::-;31620:4;31658:2;31647:9;31643:18;31635:26;;31707:9;31701:4;31697:20;31693:1;31682:9;31678:17;31671:47;31735:131;31861:4;31735:131;:::i;:::-;31727:139;;31454:419;;;:::o;31879:85::-;31924:7;31953:5;31942:16;;31879:85;;;:::o;31970:86::-;32005:7;32045:4;32038:5;32034:16;32023:27;;31970:86;;;:::o;32062:154::-;32118:9;32151:59;32167:42;32176:32;32202:5;32176:32;:::i;:::-;32167:42;:::i;:::-;32151:59;:::i;:::-;32138:72;;32062:154;;;:::o;32222:143::-;32315:43;32352:5;32315:43;:::i;:::-;32310:3;32303:56;32222:143;;:::o;32371:234::-;32470:4;32508:2;32497:9;32493:18;32485:26;;32521:77;32595:1;32584:9;32580:17;32571:6;32521:77;:::i;:::-;32371:234;;;;:::o;32611:178::-;32751:30;32747:1;32739:6;32735:14;32728:54;32611:178;:::o;32795:366::-;32937:3;32958:67;33022:2;33017:3;32958:67;:::i;:::-;32951:74;;33034:93;33123:3;33034:93;:::i;:::-;33152:2;33147:3;33143:12;33136:19;;32795:366;;;:::o;33167:419::-;33333:4;33371:2;33360:9;33356:18;33348:26;;33420:9;33414:4;33410:20;33406:1;33395:9;33391:17;33384:47;33448:131;33574:4;33448:131;:::i;:::-;33440:139;;33167:419;;;:::o;33592:222::-;33732:34;33728:1;33720:6;33716:14;33709:58;33801:5;33796:2;33788:6;33784:15;33777:30;33592:222;:::o;33820:366::-;33962:3;33983:67;34047:2;34042:3;33983:67;:::i;:::-;33976:74;;34059:93;34148:3;34059:93;:::i;:::-;34177:2;34172:3;34168:12;34161:19;;33820:366;;;:::o;34192:419::-;34358:4;34396:2;34385:9;34381:18;34373:26;;34445:9;34439:4;34435:20;34431:1;34420:9;34416:17;34409:47;34473:131;34599:4;34473:131;:::i;:::-;34465:139;;34192:419;;;:::o;34617:226::-;34757:34;34753:1;34745:6;34741:14;34734:58;34826:9;34821:2;34813:6;34809:15;34802:34;34617:226;:::o;34849:366::-;34991:3;35012:67;35076:2;35071:3;35012:67;:::i;:::-;35005:74;;35088:93;35177:3;35088:93;:::i;:::-;35206:2;35201:3;35197:12;35190:19;;34849:366;;;:::o;35221:419::-;35387:4;35425:2;35414:9;35410:18;35402:26;;35474:9;35468:4;35464:20;35460:1;35449:9;35445:17;35438:47;35502:131;35628:4;35502:131;:::i;:::-;35494:139;;35221:419;;;:::o;35646:224::-;35786:34;35782:1;35774:6;35770:14;35763:58;35855:7;35850:2;35842:6;35838:15;35831:32;35646:224;:::o;35876:366::-;36018:3;36039:67;36103:2;36098:3;36039:67;:::i;:::-;36032:74;;36115:93;36204:3;36115:93;:::i;:::-;36233:2;36228:3;36224:12;36217:19;;35876:366;;;:::o;36248:419::-;36414:4;36452:2;36441:9;36437:18;36429:26;;36501:9;36495:4;36491:20;36487:1;36476:9;36472:17;36465:47;36529:131;36655:4;36529:131;:::i;:::-;36521:139;;36248:419;;;:::o;36673:229::-;36813:34;36809:1;36801:6;36797:14;36790:58;36882:12;36877:2;36869:6;36865:15;36858:37;36673:229;:::o;36908:366::-;37050:3;37071:67;37135:2;37130:3;37071:67;:::i;:::-;37064:74;;37147:93;37236:3;37147:93;:::i;:::-;37265:2;37260:3;37256:12;37249:19;;36908:366;;;:::o;37280:419::-;37446:4;37484:2;37473:9;37469:18;37461:26;;37533:9;37527:4;37523:20;37519:1;37508:9;37504:17;37497:47;37561:131;37687:4;37561:131;:::i;:::-;37553:139;;37280:419;;;:::o;37705:553::-;37882:4;37920:3;37909:9;37905:19;37897:27;;37934:71;38002:1;37991:9;37987:17;37978:6;37934:71;:::i;:::-;38015:72;38083:2;38072:9;38068:18;38059:6;38015:72;:::i;:::-;38097;38165:2;38154:9;38150:18;38141:6;38097:72;:::i;:::-;38179;38247:2;38236:9;38232:18;38223:6;38179:72;:::i;:::-;37705:553;;;;;;;:::o;38264:173::-;38404:25;38400:1;38392:6;38388:14;38381:49;38264:173;:::o;38443:366::-;38585:3;38606:67;38670:2;38665:3;38606:67;:::i;:::-;38599:74;;38682:93;38771:3;38682:93;:::i;:::-;38800:2;38795:3;38791:12;38784:19;;38443:366;;;:::o;38815:419::-;38981:4;39019:2;39008:9;39004:18;38996:26;;39068:9;39062:4;39058:20;39054:1;39043:9;39039:17;39032:47;39096:131;39222:4;39096:131;:::i;:::-;39088:139;;38815:419;;;:::o;39240:216::-;39279:4;39299:19;39316:1;39299:19;:::i;:::-;39294:24;;39332:19;39349:1;39332:19;:::i;:::-;39327:24;;39375:1;39372;39368:9;39360:17;;39399:26;39393:4;39390:36;39387:62;;;39429:18;;:::i;:::-;39387:62;39240:216;;;;:::o;39462:138::-;39510:9;39543:51;39560:33;39569:23;39586:5;39569:23;:::i;:::-;39560:33;:::i;:::-;39543:51;:::i;:::-;39530:64;;39462:138;;;:::o;39606:127::-;39691:35;39720:5;39691:35;:::i;:::-;39686:3;39679:48;39606:127;;:::o;39739:328::-;39858:4;39896:2;39885:9;39881:18;39873:26;;39909:71;39977:1;39966:9;39962:17;39953:6;39909:71;:::i;:::-;39990:70;40056:2;40045:9;40041:18;40032:6;39990:70;:::i;:::-;39739:328;;;;;:::o;40073:182::-;40213:34;40209:1;40201:6;40197:14;40190:58;40073:182;:::o;40261:366::-;40403:3;40424:67;40488:2;40483:3;40424:67;:::i;:::-;40417:74;;40500:93;40589:3;40500:93;:::i;:::-;40618:2;40613:3;40609:12;40602:19;;40261:366;;;:::o;40633:419::-;40799:4;40837:2;40826:9;40822:18;40814:26;;40886:9;40880:4;40876:20;40872:1;40861:9;40857:17;40850:47;40914:131;41040:4;40914:131;:::i;:::-;40906:139;;40633:419;;;:::o;41058:166::-;41198:18;41194:1;41186:6;41182:14;41175:42;41058:166;:::o;41230:366::-;41372:3;41393:67;41457:2;41452:3;41393:67;:::i;:::-;41386:74;;41469:93;41558:3;41469:93;:::i;:::-;41587:2;41582:3;41578:12;41571:19;;41230:366;;;:::o;41602:419::-;41768:4;41806:2;41795:9;41791:18;41783:26;;41855:9;41849:4;41845:20;41841:1;41830:9;41826:17;41819:47;41883:131;42009:4;41883:131;:::i;:::-;41875:139;;41602:419;;;:::o;42027:167::-;42167:19;42163:1;42155:6;42151:14;42144:43;42027:167;:::o;42200:366::-;42342:3;42363:67;42427:2;42422:3;42363:67;:::i;:::-;42356:74;;42439:93;42528:3;42439:93;:::i;:::-;42557:2;42552:3;42548:12;42541:19;;42200:366;;;:::o;42572:419::-;42738:4;42776:2;42765:9;42761:18;42753:26;;42825:9;42819:4;42815:20;42811:1;42800:9;42796:17;42789:47;42853:131;42979:4;42853:131;:::i;:::-;42845:139;;42572:419;;;:::o;42997:162::-;43137:14;43133:1;43125:6;43121:14;43114:38;42997:162;:::o;43165:366::-;43307:3;43328:67;43392:2;43387:3;43328:67;:::i;:::-;43321:74;;43404:93;43493:3;43404:93;:::i;:::-;43522:2;43517:3;43513:12;43506:19;;43165:366;;;:::o;43537:419::-;43703:4;43741:2;43730:9;43726:18;43718:26;;43790:9;43784:4;43780:20;43776:1;43765:9;43761:17;43754:47;43818:131;43944:4;43818:131;:::i;:::-;43810:139;;43537:419;;;:::o;43962:166::-;44102:18;44098:1;44090:6;44086:14;44079:42;43962:166;:::o;44134:366::-;44276:3;44297:67;44361:2;44356:3;44297:67;:::i;:::-;44290:74;;44373:93;44462:3;44373:93;:::i;:::-;44491:2;44486:3;44482:12;44475:19;;44134:366;;;:::o;44506:419::-;44672:4;44710:2;44699:9;44695:18;44687:26;;44759:9;44753:4;44749:20;44745:1;44734:9;44730:17;44723:47;44787:131;44913:4;44787:131;:::i;:::-;44779:139;;44506:419;;;:::o;44931:175::-;45071:27;45067:1;45059:6;45055:14;45048:51;44931:175;:::o;45112:366::-;45254:3;45275:67;45339:2;45334:3;45275:67;:::i;:::-;45268:74;;45351:93;45440:3;45351:93;:::i;:::-;45469:2;45464:3;45460:12;45453:19;;45112:366;;;:::o;45484:419::-;45650:4;45688:2;45677:9;45673:18;45665:26;;45737:9;45731:4;45727:20;45723:1;45712:9;45708:17;45701:47;45765:131;45891:4;45765:131;:::i;:::-;45757:139;;45484:419;;;:::o;45909:230::-;46049:34;46045:1;46037:6;46033:14;46026:58;46118:13;46113:2;46105:6;46101:15;46094:38;45909:230;:::o;46145:366::-;46287:3;46308:67;46372:2;46367:3;46308:67;:::i;:::-;46301:74;;46384:93;46473:3;46384:93;:::i;:::-;46502:2;46497:3;46493:12;46486:19;;46145:366;;;:::o;46517:419::-;46683:4;46721:2;46710:9;46706:18;46698:26;;46770:9;46764:4;46760:20;46756:1;46745:9;46741:17;46734:47;46798:131;46924:4;46798:131;:::i;:::-;46790:139;;46517:419;;;:::o;46942:442::-;47091:4;47129:2;47118:9;47114:18;47106:26;;47142:71;47210:1;47199:9;47195:17;47186:6;47142:71;:::i;:::-;47223:72;47291:2;47280:9;47276:18;47267:6;47223:72;:::i;:::-;47305;47373:2;47362:9;47358:18;47349:6;47305:72;:::i;:::-;46942:442;;;;;;:::o;47390:332::-;47511:4;47549:2;47538:9;47534:18;47526:26;;47562:71;47630:1;47619:9;47615:17;47606:6;47562:71;:::i;:::-;47643:72;47711:2;47700:9;47696:18;47687:6;47643:72;:::i;:::-;47390:332;;;;;:::o;47728:170::-;47868:22;47864:1;47856:6;47852:14;47845:46;47728:170;:::o;47904:366::-;48046:3;48067:67;48131:2;48126:3;48067:67;:::i;:::-;48060:74;;48143:93;48232:3;48143:93;:::i;:::-;48261:2;48256:3;48252:12;48245:19;;47904:366;;;:::o;48276:419::-;48442:4;48480:2;48469:9;48465:18;48457:26;;48529:9;48523:4;48519:20;48515:1;48504:9;48500:17;48493:47;48557:131;48683:4;48557:131;:::i;:::-;48549:139;;48276:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"3644600","executionCost":"infinite","totalCost":"infinite"},"external":{"acceptOwnership()":"54738","createOrder(address,uint256,uint96,address,uint256,address,string)":"infinite","getFeeDetails()":"4708","getOrderInfo(bytes32)":"infinite","getTokenFeeSettings(address)":"infinite","initialize()":"191231","isTokenSupported(address)":"2914","owner()":"2626","pause()":"infinite","paused()":"2541","pendingOwner()":"2581","refund(uint256,bytes32)":"infinite","renounceOwnership()":"54750","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","settle(bytes32,bytes32,address,uint64)":"infinite","transferOwnership(address)":"infinite","unpause()":"infinite","updateProtocolAddress(bytes32,address)":"31104"},"internal":{"_handleFxTransferFeeSplitting(bytes32)":"infinite","_handleLocalTransferFeeSplitting(bytes32,address)":"infinite","_handler(address,uint256,address,address,uint256)":"infinite"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getFeeDetails()":"b810c636","getOrderInfo(bytes32)":"768c6ec0","getTokenFeeSettings(address)":"8bfa0549","initialize()":"8129fc1c","isTokenSupported(address)":"75151b63","owner()":"8da5cb5b","pause()":"8456cb59","paused()":"5c975abb","pendingOwner()":"e30c3978","refund(uint256,bytes32)":"71eedb88","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","settle(bytes32,bytes32,address,uint64)":"f22ee704","transferOwnership(address)":"f2fde38b","unpause()":"3f4ba83a","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"settlePercent\",\"type\":\"uint96\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getFeeDetails\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint96)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"See {createOrder-IGateway}. \"},\"getFeeDetails()\":{\"details\":\"See {getFeeDetails-IGateway}. \"},\"getOrderInfo(bytes32)\":{\"details\":\"See {getOrderInfo-IGateway}. \"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"initialize()\":{\"details\":\"Initialize function.\"},\"isTokenSupported(address)\":{\"details\":\"See {isTokenSupported-IGateway}. \"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"Pause the contract.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"refund(uint256,bytes32)\":{\"details\":\"See {refund-IGateway}. \"},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"settle(bytes32,bytes32,address,uint64)\":{\"details\":\"See {settle-IGateway}. \"},\"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.\"},\"unpause()\":{\"details\":\"Unpause the contract.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"title\":\"Gateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"This contract serves as a gateway for creating orders and managing settlements.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Gateway.sol\":\"Gateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/Gateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\\n\\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\\n\\n/**\\n * @title Gateway\\n * @notice This contract serves as a gateway for creating orders and managing settlements.\\n */\\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\\n\\tstruct fee {\\n\\t\\tuint256 protocolFee;\\n\\t\\tuint256 liquidityProviderAmount;\\n\\t}\\n\\n\\tmapping(bytes32 => Order) private order;\\n\\tmapping(address => uint256) private _nonce;\\n\\tuint256[50] private __gap;\\n\\n\\t/// @custom:oz-upgrades-unsafe-allow constructor\\n\\tconstructor() {\\n\\t\\t_disableInitializers();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Initialize function.\\n\\t */\\n\\tfunction initialize() external initializer {\\n\\t\\tMAX_BPS = 100_000;\\n\\t\\t__Ownable2Step_init();\\n\\t\\t__Pausable_init();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Modifier that allows only the aggregator to call a function.\\n\\t */\\n\\tmodifier onlyAggregator() {\\n\\t\\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\\n\\t\\t_;\\n\\t}\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Pause the contract.\\n\\t */\\n\\tfunction pause() external onlyOwner {\\n\\t\\t_pause();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Unpause the contract.\\n\\t */\\n\\tfunction unpause() external onlyOwner {\\n\\t\\t_unpause();\\n\\t}\\n\\n\\t/* ##################################################################\\n USER CALLS\\n ################################################################## */\\n\\t/** @dev See {createOrder-IGateway}. */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external whenNotPaused returns (bytes32 orderId) {\\n\\t\\t// checks that are required\\n\\t\\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\\n\\n\\t\\t// validate messageHash\\n\\t\\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\\n\\n\\t\\t// transfer token from msg.sender to contract\\n\\t\\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\\n\\n\\t\\t// increase users nonce to avoid replay attacks\\n\\t\\t_nonce[msg.sender]++;\\n\\n\\t\\t// generate transaction id for the transaction with chain id\\n\\t\\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid));\\n\\n\\t\\trequire(order[orderId].sender == address(0), 'OrderAlreadyExists');\\n\\n\\t\\t// update transaction\\n\\t\\tuint256 _protocolFee;\\n\\t\\tif (_rate == 100) {\\n\\t\\t\\t// local transfer (rate = 1)\\n\\t\\t\\t_protocolFee = 0;\\n\\t\\t} else {\\n\\t\\t\\t// fx transfer (rate != 1) - use token-specific providerToAggregatorFx\\n\\t\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\\n\\t\\t\\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\\n\\t\\t\\t_protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\\n\\t\\t}\\n\\t\\torder[orderId] = Order({\\n\\t\\t\\tsender: msg.sender,\\n\\t\\t\\ttoken: _token,\\n\\t\\t\\tsenderFeeRecipient: _senderFeeRecipient,\\n\\t\\t\\tsenderFee: _senderFee,\\n\\t\\t\\tprotocolFee: _protocolFee,\\n\\t\\t\\tisFulfilled: false,\\n\\t\\t\\tisRefunded: false,\\n\\t\\t\\trefundAddress: _refundAddress,\\n\\t\\t\\tcurrentBPS: uint64(MAX_BPS),\\n\\t\\t\\tamount: _amount\\n\\t\\t});\\n\\n\\t\\t// emit order created event\\n\\t\\temit OrderCreated(\\n\\t\\t\\t_refundAddress,\\n\\t\\t\\t_token,\\n\\t\\t\\torder[orderId].amount,\\n\\t\\t\\t_protocolFee,\\n\\t\\t\\torderId,\\n\\t\\t\\t_rate,\\n\\t\\t\\tmessageHash\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Internal function to handle order creation.\\n\\t * @param _token The address of the token being traded.\\n\\t * @param _amount The amount of tokens being traded.\\n\\t * @param _refundAddress The address to refund the tokens in case of cancellation.\\n\\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\\n\\t * @param _senderFee The amount of the sender fee.\\n\\t */\\n\\tfunction _handler(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\taddress _refundAddress,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee\\n\\t) internal view {\\n\\t\\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\\n\\t\\trequire(_amount != 0, 'AmountIsZero');\\n\\t\\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\\n\\n\\t\\tif (_senderFee != 0) {\\n\\t\\t\\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\\n\\t\\t}\\n\\t}\\n\\n\\t/* ##################################################################\\n AGGREGATOR FUNCTIONS\\n ################################################################## */\\n\\t/** @dev See {settle-IGateway}. */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\n\\t\\t// load the token into memory\\n\\t\\taddress token = order[_orderId].token;\\n\\n\\t\\t// subtract sum of amount based on the input _settlePercent\\n\\t\\tuint256 currentOrderBPS = order[_orderId].currentBPS;\\n\\t\\torder[_orderId].currentBPS -= _settlePercent;\\n\\n\\t\\tif (order[_orderId].currentBPS == 0) {\\n\\t\\t\\t// update the transaction to be fulfilled\\n\\t\\t\\torder[_orderId].isFulfilled = true;\\n\\n\\t\\t\\tif (order[_orderId].senderFee != 0) {\\n\\t\\t\\t\\t// Handle fee splitting based on transfer type\\n\\t\\t\\t\\tif (order[_orderId].protocolFee == 0) {\\n\\t\\t\\t\\t\\t// local transfer - split sender fee\\n\\t\\t\\t\\t\\t_handleLocalTransferFeeSplitting(_orderId, _liquidityProvider);\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// fx transfer - sender keeps all fee\\n\\t\\t\\t\\t\\t_handleFxTransferFeeSplitting(_orderId);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// transfer to liquidity provider\\n\\t\\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) /\\n\\t\\t\\tcurrentOrderBPS;\\n\\t\\torder[_orderId].amount -= liquidityProviderAmount;\\n\\n\\t\\tif (order[_orderId].protocolFee > 0) {\\n\\t\\t\\t// FX transfer - use token-specific providerToAggregatorFx\\n\\t\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\\n\\t\\t\\tuint256 protocolFee = (liquidityProviderAmount * settings.providerToAggregatorFx) /\\n\\t\\t\\t\\tMAX_BPS;\\n\\t\\t\\tliquidityProviderAmount -= protocolFee;\\n\\n\\t\\t\\t// transfer protocol fee\\n\\t\\t\\tIERC20(token).transfer(treasuryAddress, protocolFee);\\n\\t\\t}\\n\\n\\t\\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\\n\\n\\t\\t// emit settled event\\n\\t\\temit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/** @dev See {refund-IGateway}. */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\t\\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\\n\\n\\t\\tif (_fee > 0) {\\n\\t\\t\\t// transfer refund fee to the treasury\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\\n\\t\\t}\\n\\n\\t\\t// reset state values\\n\\t\\torder[_orderId].isRefunded = true;\\n\\t\\torder[_orderId].currentBPS = 0;\\n\\n\\t\\t// deduct fee from order amount\\n\\t\\tuint256 refundAmount = order[_orderId].amount - _fee;\\n\\n\\t\\t// transfer refund amount and sender fee to the refund address\\n\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\torder[_orderId].refundAddress,\\n\\t\\t\\trefundAmount + order[_orderId].senderFee\\n\\t\\t);\\n\\n\\t\\t// emit refunded event\\n\\t\\temit OrderRefunded(_fee, _orderId);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/* ##################################################################\\n VIEW CALLS\\n ################################################################## */\\n\\t/** @dev See {getOrderInfo-IGateway}. */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\\n\\t\\treturn order[_orderId];\\n\\t}\\n\\n\\t/** @dev See {isTokenSupported-IGateway}. */\\n\\tfunction isTokenSupported(address _token) external view returns (bool) {\\n\\t\\tif (_isTokenSupported[_token] == 1) return true;\\n\\t\\treturn false;\\n\\t}\\n\\n\\t/** @dev See {getFeeDetails-IGateway}. */\\n\\tfunction getFeeDetails() external view returns (uint64, uint256) {\\n\\t\\treturn (protocolFeePercent, MAX_BPS);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Handles fee splitting for local transfers (rate = 1).\\n\\t * @param _orderId The order ID to process.\\n\\t * @param _liquidityProvider The address of the liquidity provider who fulfilled the order.\\n\\t */\\n\\tfunction _handleLocalTransferFeeSplitting(\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider\\n\\t) internal {\\n\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\\n\\t\\tuint256 senderFee = order[_orderId].senderFee;\\n\\n\\t\\t// Calculate splits based on config\\n\\t\\tuint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS;\\n\\t\\tuint256 aggregatorAmount = (providerAmount * settings.providerToAggregator) / MAX_BPS;\\n\\t\\tuint256 senderAmount = senderFee - providerAmount;\\n\\n\\t\\t// Transfer sender portion\\n\\t\\tif (senderAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\tsenderAmount\\n\\t\\t\\t);\\n\\t\\t}\\n\\n\\t\\t// Transfer provider portion to the liquidity provider who fulfilled the order\\n\\t\\tif (providerAmount - aggregatorAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\t_liquidityProvider,\\n\\t\\t\\t\\tproviderAmount - aggregatorAmount\\n\\t\\t\\t);\\n\\t\\t}\\n\\n\\t\\t// Transfer aggregator portion to treasury\\n\\t\\tif (aggregatorAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\\n\\t\\t}\\n\\n\\t\\t// Emit events\\n\\t\\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\\n\\t\\temit LocalTransferFeeSplit(\\n\\t\\t\\t_orderId,\\n\\t\\t\\tsenderAmount,\\n\\t\\t\\tproviderAmount - aggregatorAmount,\\n\\t\\t\\taggregatorAmount\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Handles fee splitting for FX transfers (rate != 1).\\n\\t * @param _orderId The order ID to process.\\n\\t */\\n\\tfunction _handleFxTransferFeeSplitting(bytes32 _orderId) internal {\\n\\t\\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\\n\\t\\tuint256 senderFee = order[_orderId].senderFee;\\n\\n\\t\\t// Calculate sender portion based on senderToAggregator setting\\n\\t\\tuint256 senderAmount = (senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS;\\n\\t\\tuint256 aggregatorAmount = senderFee - senderAmount;\\n\\n\\t\\t// Transfer sender portion\\n\\t\\tif (senderAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\tsenderAmount\\n\\t\\t\\t);\\n\\t\\t}\\n\\n\\t\\t// Transfer aggregator portion to treasury\\n\\t\\tif (aggregatorAmount > 0) {\\n\\t\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount);\\n\\t\\t}\\n\\n\\t\\t// Emit events\\n\\t\\temit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount);\\n\\t\\temit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount);\\n\\t}\\n}\\n\",\"keccak256\":\"0x8fac4e547f3a97569204d9bd8da9778b37176fc44b73adefc24a42e30e595418\",\"license\":\"UNLICENSED\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\t// Token-specific fee settings\\n\\tstruct TokenFeeSettings {\\n\\t\\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\\n\\t\\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\\n\\t\\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\\n\\t\\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\\n\\t}\\n\\n\\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\\n\\n\\tuint256[49] private __gap;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\tevent TokenFeeSettingsUpdated(\\n\\t\\taddress indexed token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets token-specific fee settings for stablecoins.\\n\\t * @param token The token address to configure.\\n\\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\\n\\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\\n\\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\\n\\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\\n\\t * Requirements:\\n\\t * - The token must be supported.\\n\\t * - Fee percentages must be within valid ranges.\\n\\t */\\n\\tfunction setTokenFeeSettings(\\n\\t\\taddress token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t) external onlyOwner {\\n\\t\\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\\n\\t\\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\\n\\t\\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\\n\\t\\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\\n\\t\\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\\n\\n\\t\\t_tokenFeeSettings[token] = TokenFeeSettings({\\n\\t\\t\\tsenderToProvider: senderToProvider,\\n\\t\\t\\tproviderToAggregator: providerToAggregator,\\n\\t\\t\\tsenderToAggregator: senderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx: providerToAggregatorFx\\n\\t\\t});\\n\\n\\t\\temit TokenFeeSettingsUpdated(\\n\\t\\t\\ttoken,\\n\\t\\t\\tsenderToProvider,\\n\\t\\t\\tproviderToAggregator,\\n\\t\\t\\tsenderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Gets token-specific fee settings.\\n\\t * @param token The token address to query.\\n\\t * @return TokenFeeSettings struct containing all fee settings for the token.\\n\\t */\\n\\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\\n\\t\\treturn _tokenFeeSettings[token];\\n\\t}\\n}\\n\",\"keccak256\":\"0xaf9cfac3872d9a7d9cf0c63ba1b8b2ad24598224821ce0a9c75fc2e8af7361df\",\"license\":\"UNLICENSED\"},\"contracts/interfaces/IGateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGateway {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint96 settlePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/**\\n\\t * @dev Emitted when a local transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param providerAmount The amount that goes to the provider.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent LocalTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 providerAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an FX transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent FxTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n\\n\\t/**\\n\\t * @notice Gets the fee details of Gateway.\\n\\t * @return protocolReward The protocol reward amount.\\n\\t * @return max_bps The maximum basis points.\\n\\t */\\n\\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\\n}\\n\",\"keccak256\":\"0x9bcc76affc6ee7679e3b8276bb93d6253d6804a337cf31617cb46a7f22a6c727\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/Gateway.sol:Gateway","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/Gateway.sol:Gateway","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/Gateway.sol:Gateway","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/Gateway.sol:Gateway","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":2497,"contract":"contracts/Gateway.sol:Gateway","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":2499,"contract":"contracts/Gateway.sol:Gateway","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":2501,"contract":"contracts/Gateway.sol:Gateway","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":2503,"contract":"contracts/Gateway.sol:Gateway","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":2507,"contract":"contracts/Gateway.sol:Gateway","label":"_isTokenSupported","offset":0,"slot":"154","type":"t_mapping(t_address,t_uint256)"},{"astId":2521,"contract":"contracts/Gateway.sol:Gateway","label":"_tokenFeeSettings","offset":0,"slot":"155","type":"t_mapping(t_address,t_struct(TokenFeeSettings)2516_storage)"},{"astId":2525,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"156","type":"t_array(t_uint256)49_storage"},{"astId":430,"contract":"contracts/Gateway.sol:Gateway","label":"_paused","offset":0,"slot":"205","type":"t_bool"},{"astId":535,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"206","type":"t_array(t_uint256)49_storage"},{"astId":1662,"contract":"contracts/Gateway.sol:Gateway","label":"order","offset":0,"slot":"255","type":"t_mapping(t_bytes32,t_struct(Order)2855_storage)"},{"astId":1666,"contract":"contracts/Gateway.sol:Gateway","label":"_nonce","offset":0,"slot":"256","type":"t_mapping(t_address,t_uint256)"},{"astId":1670,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"257","type":"t_array(t_uint256)50_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_struct(TokenFeeSettings)2516_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)","numberOfBytes":"32","value":"t_struct(TokenFeeSettings)2516_storage"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_bytes32,t_struct(Order)2855_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct IGateway.Order)","numberOfBytes":"32","value":"t_struct(Order)2855_storage"},"t_struct(Order)2855_storage":{"encoding":"inplace","label":"struct IGateway.Order","members":[{"astId":2836,"contract":"contracts/Gateway.sol:Gateway","label":"sender","offset":0,"slot":"0","type":"t_address"},{"astId":2838,"contract":"contracts/Gateway.sol:Gateway","label":"token","offset":0,"slot":"1","type":"t_address"},{"astId":2840,"contract":"contracts/Gateway.sol:Gateway","label":"senderFeeRecipient","offset":0,"slot":"2","type":"t_address"},{"astId":2842,"contract":"contracts/Gateway.sol:Gateway","label":"senderFee","offset":0,"slot":"3","type":"t_uint256"},{"astId":2844,"contract":"contracts/Gateway.sol:Gateway","label":"protocolFee","offset":0,"slot":"4","type":"t_uint256"},{"astId":2846,"contract":"contracts/Gateway.sol:Gateway","label":"isFulfilled","offset":0,"slot":"5","type":"t_bool"},{"astId":2848,"contract":"contracts/Gateway.sol:Gateway","label":"isRefunded","offset":1,"slot":"5","type":"t_bool"},{"astId":2850,"contract":"contracts/Gateway.sol:Gateway","label":"refundAddress","offset":2,"slot":"5","type":"t_address"},{"astId":2852,"contract":"contracts/Gateway.sol:Gateway","label":"currentBPS","offset":0,"slot":"6","type":"t_uint96"},{"astId":2854,"contract":"contracts/Gateway.sol:Gateway","label":"amount","offset":0,"slot":"7","type":"t_uint256"}],"numberOfBytes":"256"},"t_struct(TokenFeeSettings)2516_storage":{"encoding":"inplace","label":"struct GatewaySettingManager.TokenFeeSettings","members":[{"astId":2509,"contract":"contracts/Gateway.sol:Gateway","label":"senderToProvider","offset":0,"slot":"0","type":"t_uint256"},{"astId":2511,"contract":"contracts/Gateway.sol:Gateway","label":"providerToAggregator","offset":0,"slot":"1","type":"t_uint256"},{"astId":2513,"contract":"contracts/Gateway.sol:Gateway","label":"senderToAggregator","offset":0,"slot":"2","type":"t_uint256"},{"astId":2515,"contract":"contracts/Gateway.sol:Gateway","label":"providerToAggregatorFx","offset":0,"slot":"3","type":"t_uint256"}],"numberOfBytes":"128"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"},"t_uint96":{"encoding":"inplace","label":"uint96","numberOfBytes":"12"}}},"userdoc":{"kind":"user","methods":{},"notice":"This contract serves as a gateway for creating orders and managing settlements.","version":1}}},"contracts/GatewaySettingManager.sol":{"GatewaySettingManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"getTokenFeeSettings(address)":{"details":"Gets token-specific fee settings.","params":{"token":"The token address to query."},"returns":{"_0":"TokenFeeSettings struct containing all fee settings for the token."}},"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."},"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":{"details":"Sets token-specific fee settings for stablecoins.","params":{"providerToAggregator":"Percentage of provider's share that goes to aggregator (local mode).","providerToAggregatorFx":"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.","senderToAggregator":"Percentage of sender fee that goes to aggregator (fx mode).","senderToProvider":"Percentage of sender fee that goes to provider (local mode).","token":"The token address to configure."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"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."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"608060405234801561000f575f80fd5b506114c88061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610091575f3560e01c80638bfa0549116100645780638bfa0549146100e15780638da5cb5b14610111578063cd9924001461012f578063e30c39781461014b578063f2fde38b1461016957610091565b806340ebc67714610095578063715018a6146100b157806379ba5097146100bb578063898861b0146100c5575b5f80fd5b6100af60048036038101906100aa9190610c8f565b610185565b005b6100b9610449565b005b6100c361045c565b005b6100df60048036038101906100da9190610d00565b6104e8565b005b6100fb60048036038101906100f69190610d77565b610766565b6040516101089190610e04565b60405180910390f35b6101196107e4565b6040516101269190610e2c565b60405180910390f35b61014960048036038101906101449190610e45565b61080c565b005b61015361098e565b6040516101609190610e2c565b60405180910390f35b610183600480360381019061017e9190610d77565b6109b6565b005b61018d610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f290610eef565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036102fd578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036102b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102aa90610f7d565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506103f9565b7f61676772656761746f720000000000000000000000000000000000000000000083036103f8578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa9061100b565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610444578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b610451610a62565b61045a5f610ae0565b565b5f610465610b10565b90508073ffffffffffffffffffffffffffffffffffffffff1661048661098e565b73ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611099565b60405180910390fd5b6104e581610ae0565b50565b6104f0610a62565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056790611101565b60405180910390fd5b6097548411156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac9061118f565b60405180910390fd5b6097548311156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f19061121d565b60405180910390fd5b60975482111561063f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610636906112ab565b60405180910390fd5b609754811115610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90611339565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516107579493929190611366565b60405180910390a25050505050565b61076e610bda565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610814610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990610eef565b60405180910390fd5b60018114806108915750600281145b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c7906113f3565b60405180910390fd5b7f746f6b656e00000000000000000000000000000000000000000000000000000083036109895780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516109809190611411565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109be610a62565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a1d6107e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a6a610b10565b73ffffffffffffffffffffffffffffffffffffffff16610a886107e4565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611474565b60405180910390fd5b565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610b0d81610b17565b50565b5f33905090565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b610c1481610c02565b8114610c1e575f80fd5b50565b5f81359050610c2f81610c0b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c5e82610c35565b9050919050565b610c6e81610c54565b8114610c78575f80fd5b50565b5f81359050610c8981610c65565b92915050565b5f8060408385031215610ca557610ca4610bfe565b5b5f610cb285828601610c21565b9250506020610cc385828601610c7b565b9150509250929050565b5f819050919050565b610cdf81610ccd565b8114610ce9575f80fd5b50565b5f81359050610cfa81610cd6565b92915050565b5f805f805f60a08688031215610d1957610d18610bfe565b5b5f610d2688828901610c7b565b9550506020610d3788828901610cec565b9450506040610d4888828901610cec565b9350506060610d5988828901610cec565b9250506080610d6a88828901610cec565b9150509295509295909350565b5f60208284031215610d8c57610d8b610bfe565b5b5f610d9984828501610c7b565b91505092915050565b610dab81610ccd565b82525050565b608082015f820151610dc55f850182610da2565b506020820151610dd86020850182610da2565b506040820151610deb6040850182610da2565b506060820151610dfe6060850182610da2565b50505050565b5f608082019050610e175f830184610db1565b92915050565b610e2681610c54565b82525050565b5f602082019050610e3f5f830184610e1d565b92915050565b5f805f60608486031215610e5c57610e5b610bfe565b5b5f610e6986828701610c21565b9350506020610e7a86828701610c7b565b9250506040610e8b86828701610cec565b9150509250925092565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f610ed9601583610e95565b9150610ee482610ea5565b602082019050919050565b5f6020820190508181035f830152610f0681610ecd565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f610f67602583610e95565b9150610f7282610f0d565b604082019050919050565b5f6020820190508181035f830152610f9481610f5b565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f610ff5602783610e95565b915061100082610f9b565b604082019050919050565b5f6020820190508181035f83015261102281610fe9565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f611083602983610e95565b915061108e82611029565b604082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f6110eb601c83610e95565b91506110f6826110b7565b602082019050919050565b5f6020820190508181035f830152611118816110df565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f611179602383610e95565b91506111848261111f565b604082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f611207602783610e95565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f611295602583610e95565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f611323602a83610e95565b915061132e826112c9565b604082019050919050565b5f6020820190508181035f83015261135081611317565b9050919050565b61136081610ccd565b82525050565b5f6080820190506113795f830187611357565b6113866020830186611357565b6113936040830185611357565b6113a06060830184611357565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6113dd601783610e95565b91506113e8826113a9565b602082019050919050565b5f6020820190508181035f83015261140a816113d1565b9050919050565b5f6020820190506114245f830184611357565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61145e602083610e95565b91506114698261142a565b602082019050919050565b5f6020820190508181035f83015261148b81611452565b905091905056fea2646970667358221220501f5547a2da906016cb57c16e745ed8301050ccb83749f526f2c5a06972904864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x14C8 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x91 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x12F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x169 JUMPI PUSH2 0x91 JUMP JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x95 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xBB JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xC5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xAF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAA SWAP2 SWAP1 PUSH2 0xC8F JUMP JUMPDEST PUSH2 0x185 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB9 PUSH2 0x449 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC3 PUSH2 0x45C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xDF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDA SWAP2 SWAP1 PUSH2 0xD00 JUMP JUMPDEST PUSH2 0x4E8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF6 SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x7E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xE45 JUMP JUMPDEST PUSH2 0x80C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x98E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x183 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17E SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x9B6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F2 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x2FD JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AA SWAP1 PUSH2 0xF7D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x3F9 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x3F8 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3AA SWAP1 PUSH2 0x100B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x444 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x451 PUSH2 0xA62 JUMP JUMPDEST PUSH2 0x45A PUSH0 PUSH2 0xAE0 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x465 PUSH2 0xB10 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x486 PUSH2 0x98E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0x1099 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E5 DUP2 PUSH2 0xAE0 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4F0 PUSH2 0xA62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x570 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x567 SWAP1 PUSH2 0x1101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5AC SWAP1 PUSH2 0x118F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x5FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F1 SWAP1 PUSH2 0x121D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x63F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x636 SWAP1 PUSH2 0x12AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x684 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67B SWAP1 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x757 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x76E PUSH2 0xBDA JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x814 PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x882 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x879 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x891 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x8D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C7 SWAP1 PUSH2 0x13F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x989 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x980 SWAP2 SWAP1 PUSH2 0x1411 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BE PUSH2 0xA62 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA1D PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0xA6A PUSH2 0xB10 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA88 PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xADE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAD5 SWAP1 PUSH2 0x1474 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0xB0D DUP2 PUSH2 0xB17 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC14 DUP2 PUSH2 0xC02 JUMP JUMPDEST DUP2 EQ PUSH2 0xC1E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC2F DUP2 PUSH2 0xC0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC5E DUP3 PUSH2 0xC35 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC6E DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP2 EQ PUSH2 0xC78 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC89 DUP2 PUSH2 0xC65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCA5 JUMPI PUSH2 0xCA4 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCB2 DUP6 DUP3 DUP7 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCC3 DUP6 DUP3 DUP7 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCDF DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP2 EQ PUSH2 0xCE9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCFA DUP2 PUSH2 0xCD6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xD19 JUMPI PUSH2 0xD18 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD26 DUP9 DUP3 DUP10 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0xD37 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0xD48 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0xD59 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0xD6A DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8C JUMPI PUSH2 0xD8B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD99 DUP5 DUP3 DUP6 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xDAB DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0xDC5 PUSH0 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0xDD8 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0xDEB PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0xDFE PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xE17 PUSH0 DUP4 ADD DUP5 PUSH2 0xDB1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE26 DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE3F PUSH0 DUP4 ADD DUP5 PUSH2 0xE1D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE5C JUMPI PUSH2 0xE5B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE69 DUP7 DUP3 DUP8 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xED9 PUSH1 0x15 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xEE4 DUP3 PUSH2 0xEA5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF06 DUP2 PUSH2 0xECD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF67 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xF72 DUP3 PUSH2 0xF0D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF94 DUP2 PUSH2 0xF5B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xFF5 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1000 DUP3 PUSH2 0xF9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1022 DUP2 PUSH2 0xFE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1083 PUSH1 0x29 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x108E DUP3 PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10B0 DUP2 PUSH2 0x1077 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x10EB PUSH1 0x1C DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x10F6 DUP3 PUSH2 0x10B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1118 DUP2 PUSH2 0x10DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1179 PUSH1 0x23 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1184 DUP3 PUSH2 0x111F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x11A6 DUP2 PUSH2 0x116D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1207 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1212 DUP3 PUSH2 0x11AD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1234 DUP2 PUSH2 0x11FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1295 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x12A0 DUP3 PUSH2 0x123B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12C2 DUP2 PUSH2 0x1289 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1323 PUSH1 0x2A DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x132E DUP3 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1350 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1360 DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1379 PUSH0 DUP4 ADD DUP8 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1386 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1393 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x13A0 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x13DD PUSH1 0x17 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x13E8 DUP3 PUSH2 0x13A9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x140A DUP2 PUSH2 0x13D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1424 PUSH0 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x145E PUSH1 0x20 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1469 DUP3 PUSH2 0x142A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x148B DUP2 PUSH2 0x1452 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0x1F SSTORE SELFBALANCE LOG2 0xDA SWAP1 PUSH1 0x16 0xCB JUMPI 0xC1 PUSH15 0x745ED8301050CCB83749F526F2C5A0 PUSH10 0x72904864736F6C634300 ADDMOD EQ STOP CALLER ","sourceMap":"276:4695:11:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_176":{"entryPoint":2658,"id":176,"parameterSlots":0,"returnSlots":0},"@_msgSender_894":{"entryPoint":2832,"id":894,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_233":{"entryPoint":2839,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":2784,"id":78,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":1116,"id":100,"parameterSlots":0,"returnSlots":0},"@getTokenFeeSettings_2765":{"entryPoint":1894,"id":2765,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":2020,"id":162,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":2446,"id":41,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":1097,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_2751":{"entryPoint":1256,"id":2751,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_2606":{"entryPoint":2060,"id":2606,"parameterSlots":3,"returnSlots":0},"@transferOwnership_61":{"entryPoint":2486,"id":61,"parameterSlots":1,"returnSlots":0},"@updateProtocolAddress_2678":{"entryPoint":389,"id":2678,"parameterSlots":2,"returnSlots":0},"abi_decode_t_address":{"entryPoint":3195,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":3105,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":3308,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3447,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":3328,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":3215,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":3653,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":3613,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":3789,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack":{"entryPoint":4603,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":4215,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack":{"entryPoint":4887,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack":{"entryPoint":4319,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack":{"entryPoint":4461,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":5073,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":5202,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack":{"entryPoint":4745,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":3931,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":4073,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack":{"entryPoint":3505,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256":{"entryPoint":3490,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":4951,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":3628,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3823,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4637,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4249,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4921,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4353,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4495,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5107,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5236,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4779,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3965,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4107,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$2516_memory_ptr__to_t_struct$_TokenFeeSettings_$2516_memory_ptr__fromStack_reversed":{"entryPoint":3588,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":5137,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":4966,"id":null,"parameterSlots":5,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":3733,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":3156,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":3074,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":3125,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":3277,"id":null,"parameterSlots":1,"returnSlots":1},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":3070,"id":null,"parameterSlots":0,"returnSlots":0},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":3749,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b":{"entryPoint":4525,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":4137,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029":{"entryPoint":4809,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c":{"entryPoint":4279,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8":{"entryPoint":4383,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":5033,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":5162,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d":{"entryPoint":4667,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":3853,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":3995,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":3173,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":3083,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":3286,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:17981:14","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:14","statements":[{"nodeType":"YulAssignment","src":"57:19:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:14","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:14"},"nodeType":"YulFunctionCall","src":"67:9:14"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:14"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:14","type":""}],"src":"7:75:14"},{"body":{"nodeType":"YulBlock","src":"177:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:14"},"nodeType":"YulFunctionCall","src":"187:12:14"},"nodeType":"YulExpressionStatement","src":"187:12:14"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:14"},{"body":{"nodeType":"YulBlock","src":"300:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:14"},"nodeType":"YulFunctionCall","src":"310:12:14"},"nodeType":"YulExpressionStatement","src":"310:12:14"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:14"},{"body":{"nodeType":"YulBlock","src":"379:32:14","statements":[{"nodeType":"YulAssignment","src":"389:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:14"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:14","type":""}],"src":"334:77:14"},{"body":{"nodeType":"YulBlock","src":"460:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:14"},"nodeType":"YulFunctionCall","src":"519:12:14"},"nodeType":"YulExpressionStatement","src":"519:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:14"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:14"},"nodeType":"YulFunctionCall","src":"490:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:14"},"nodeType":"YulFunctionCall","src":"480:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:14"},"nodeType":"YulFunctionCall","src":"473:43:14"},"nodeType":"YulIf","src":"470:63:14"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:14","type":""}],"src":"417:122:14"},{"body":{"nodeType":"YulBlock","src":"597:87:14","statements":[{"nodeType":"YulAssignment","src":"607:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:14"},"nodeType":"YulFunctionCall","src":"616:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:14"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:14"},"nodeType":"YulFunctionCall","src":"645:33:14"},"nodeType":"YulExpressionStatement","src":"645:33:14"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:14","type":""}],"src":"545:139:14"},{"body":{"nodeType":"YulBlock","src":"735:81:14","statements":[{"nodeType":"YulAssignment","src":"745:65:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"760:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"767:42:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"756:3:14"},"nodeType":"YulFunctionCall","src":"756:54:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"745:7:14"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"717:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"727:7:14","type":""}],"src":"690:126:14"},{"body":{"nodeType":"YulBlock","src":"867:51:14","statements":[{"nodeType":"YulAssignment","src":"877:35:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"906:5:14"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"888:17:14"},"nodeType":"YulFunctionCall","src":"888:24:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"877:7:14"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"849:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"859:7:14","type":""}],"src":"822:96:14"},{"body":{"nodeType":"YulBlock","src":"967:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"1024:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1033:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1036:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1026:6:14"},"nodeType":"YulFunctionCall","src":"1026:12:14"},"nodeType":"YulExpressionStatement","src":"1026:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"990:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1015:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"997:17:14"},"nodeType":"YulFunctionCall","src":"997:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"987:2:14"},"nodeType":"YulFunctionCall","src":"987:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"980:6:14"},"nodeType":"YulFunctionCall","src":"980:43:14"},"nodeType":"YulIf","src":"977:63:14"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"960:5:14","type":""}],"src":"924:122:14"},{"body":{"nodeType":"YulBlock","src":"1104:87:14","statements":[{"nodeType":"YulAssignment","src":"1114:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1136:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1123:12:14"},"nodeType":"YulFunctionCall","src":"1123:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1114:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1179:5:14"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"1152:26:14"},"nodeType":"YulFunctionCall","src":"1152:33:14"},"nodeType":"YulExpressionStatement","src":"1152:33:14"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1082:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"1090:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1098:5:14","type":""}],"src":"1052:139:14"},{"body":{"nodeType":"YulBlock","src":"1280:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"1326:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"1328:77:14"},"nodeType":"YulFunctionCall","src":"1328:79:14"},"nodeType":"YulExpressionStatement","src":"1328:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1301:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"1310:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1297:3:14"},"nodeType":"YulFunctionCall","src":"1297:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"1322:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1293:3:14"},"nodeType":"YulFunctionCall","src":"1293:32:14"},"nodeType":"YulIf","src":"1290:119:14"},{"nodeType":"YulBlock","src":"1419:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"1434:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"1448:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1438:6:14","type":""}]},{"nodeType":"YulAssignment","src":"1463:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1498:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"1509:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:14"},"nodeType":"YulFunctionCall","src":"1494:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1518:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"1473:20:14"},"nodeType":"YulFunctionCall","src":"1473:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1463:6:14"}]}]},{"nodeType":"YulBlock","src":"1546:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"1561:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"1575:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1565:6:14","type":""}]},{"nodeType":"YulAssignment","src":"1591:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1626:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"1637:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1622:3:14"},"nodeType":"YulFunctionCall","src":"1622:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1646:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"1601:20:14"},"nodeType":"YulFunctionCall","src":"1601:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1591:6:14"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1242:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1253:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1265:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1273:6:14","type":""}],"src":"1197:474:14"},{"body":{"nodeType":"YulBlock","src":"1722:32:14","statements":[{"nodeType":"YulAssignment","src":"1732:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"1743:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1732:7:14"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1704:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1714:7:14","type":""}],"src":"1677:77:14"},{"body":{"nodeType":"YulBlock","src":"1803:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"1860:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1869:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1872:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1862:6:14"},"nodeType":"YulFunctionCall","src":"1862:12:14"},"nodeType":"YulExpressionStatement","src":"1862:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1826:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1851:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"1833:17:14"},"nodeType":"YulFunctionCall","src":"1833:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1823:2:14"},"nodeType":"YulFunctionCall","src":"1823:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1816:6:14"},"nodeType":"YulFunctionCall","src":"1816:43:14"},"nodeType":"YulIf","src":"1813:63:14"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1796:5:14","type":""}],"src":"1760:122:14"},{"body":{"nodeType":"YulBlock","src":"1940:87:14","statements":[{"nodeType":"YulAssignment","src":"1950:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1972:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1959:12:14"},"nodeType":"YulFunctionCall","src":"1959:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1950:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2015:5:14"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"1988:26:14"},"nodeType":"YulFunctionCall","src":"1988:33:14"},"nodeType":"YulExpressionStatement","src":"1988:33:14"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1918:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"1926:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"1934:5:14","type":""}],"src":"1888:139:14"},{"body":{"nodeType":"YulBlock","src":"2167:777:14","statements":[{"body":{"nodeType":"YulBlock","src":"2214:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2216:77:14"},"nodeType":"YulFunctionCall","src":"2216:79:14"},"nodeType":"YulExpressionStatement","src":"2216:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2188:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"2197:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2184:3:14"},"nodeType":"YulFunctionCall","src":"2184:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"2209:3:14","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2180:3:14"},"nodeType":"YulFunctionCall","src":"2180:33:14"},"nodeType":"YulIf","src":"2177:120:14"},{"nodeType":"YulBlock","src":"2307:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2322:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2336:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2326:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2351:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2386:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2397:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2382:3:14"},"nodeType":"YulFunctionCall","src":"2382:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2406:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"2361:20:14"},"nodeType":"YulFunctionCall","src":"2361:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2351:6:14"}]}]},{"nodeType":"YulBlock","src":"2434:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2449:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2463:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2453:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2479:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2514:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2525:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2510:3:14"},"nodeType":"YulFunctionCall","src":"2510:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2534:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2489:20:14"},"nodeType":"YulFunctionCall","src":"2489:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2479:6:14"}]}]},{"nodeType":"YulBlock","src":"2562:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2577:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2591:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2581:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2607:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2642:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2653:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2638:3:14"},"nodeType":"YulFunctionCall","src":"2638:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2662:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2617:20:14"},"nodeType":"YulFunctionCall","src":"2617:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2607:6:14"}]}]},{"nodeType":"YulBlock","src":"2690:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2705:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2719:2:14","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2709:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2735:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2770:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2781:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2766:3:14"},"nodeType":"YulFunctionCall","src":"2766:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2790:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2745:20:14"},"nodeType":"YulFunctionCall","src":"2745:53:14"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"2735:6:14"}]}]},{"nodeType":"YulBlock","src":"2818:119:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2833:17:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2847:3:14","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2837:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2864:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2899:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2910:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2895:3:14"},"nodeType":"YulFunctionCall","src":"2895:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2919:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2874:20:14"},"nodeType":"YulFunctionCall","src":"2874:53:14"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"2864:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2105:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2116:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2128:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2136:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2144:6:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"2152:6:14","type":""},{"name":"value4","nodeType":"YulTypedName","src":"2160:6:14","type":""}],"src":"2033:911:14"},{"body":{"nodeType":"YulBlock","src":"3016:263:14","statements":[{"body":{"nodeType":"YulBlock","src":"3062:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3064:77:14"},"nodeType":"YulFunctionCall","src":"3064:79:14"},"nodeType":"YulExpressionStatement","src":"3064:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3037:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"3046:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3033:3:14"},"nodeType":"YulFunctionCall","src":"3033:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"3058:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3029:3:14"},"nodeType":"YulFunctionCall","src":"3029:32:14"},"nodeType":"YulIf","src":"3026:119:14"},{"nodeType":"YulBlock","src":"3155:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3170:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"3184:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3174:6:14","type":""}]},{"nodeType":"YulAssignment","src":"3199:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3234:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"3245:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3230:3:14"},"nodeType":"YulFunctionCall","src":"3230:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3254:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"3209:20:14"},"nodeType":"YulFunctionCall","src":"3209:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3199:6:14"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2986:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2997:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3009:6:14","type":""}],"src":"2950:329:14"},{"body":{"nodeType":"YulBlock","src":"3340:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3357:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3380:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3362:17:14"},"nodeType":"YulFunctionCall","src":"3362:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3350:6:14"},"nodeType":"YulFunctionCall","src":"3350:37:14"},"nodeType":"YulExpressionStatement","src":"3350:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3328:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3335:3:14","type":""}],"src":"3285:108:14"},{"body":{"nodeType":"YulBlock","src":"3635:799:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3645:26:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3661:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"3666:4:14","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3657:3:14"},"nodeType":"YulFunctionCall","src":"3657:14:14"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"3649:4:14","type":""}]},{"nodeType":"YulBlock","src":"3681:176:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3728:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3758:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"3765:4:14","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3754:3:14"},"nodeType":"YulFunctionCall","src":"3754:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3748:5:14"},"nodeType":"YulFunctionCall","src":"3748:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"3732:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"3818:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3836:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"3841:4:14","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3832:3:14"},"nodeType":"YulFunctionCall","src":"3832:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"3784:33:14"},"nodeType":"YulFunctionCall","src":"3784:63:14"},"nodeType":"YulExpressionStatement","src":"3784:63:14"}]},{"nodeType":"YulBlock","src":"3867:180:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3918:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3948:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"3955:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3944:3:14"},"nodeType":"YulFunctionCall","src":"3944:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3938:5:14"},"nodeType":"YulFunctionCall","src":"3938:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"3922:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4008:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4026:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4031:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4022:3:14"},"nodeType":"YulFunctionCall","src":"4022:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"3974:33:14"},"nodeType":"YulFunctionCall","src":"3974:63:14"},"nodeType":"YulExpressionStatement","src":"3974:63:14"}]},{"nodeType":"YulBlock","src":"4057:178:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4106:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4136:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4143:4:14","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4132:3:14"},"nodeType":"YulFunctionCall","src":"4132:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4126:5:14"},"nodeType":"YulFunctionCall","src":"4126:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4110:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4196:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4214:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4219:4:14","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4210:3:14"},"nodeType":"YulFunctionCall","src":"4210:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"4162:33:14"},"nodeType":"YulFunctionCall","src":"4162:63:14"},"nodeType":"YulExpressionStatement","src":"4162:63:14"}]},{"nodeType":"YulBlock","src":"4245:182:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4298:43:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4328:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4335:4:14","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4324:3:14"},"nodeType":"YulFunctionCall","src":"4324:16:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4318:5:14"},"nodeType":"YulFunctionCall","src":"4318:23:14"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"4302:12:14","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"4388:12:14"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4406:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"4411:4:14","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4402:3:14"},"nodeType":"YulFunctionCall","src":"4402:14:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"4354:33:14"},"nodeType":"YulFunctionCall","src":"4354:63:14"},"nodeType":"YulExpressionStatement","src":"4354:63:14"}]}]},"name":"abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3622:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3629:3:14","type":""}],"src":"3501:933:14"},{"body":{"nodeType":"YulBlock","src":"4606:193:14","statements":[{"nodeType":"YulAssignment","src":"4616:27:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4628:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4639:3:14","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4624:3:14"},"nodeType":"YulFunctionCall","src":"4624:19:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4616:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4765:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4778:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4789:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4774:3:14"},"nodeType":"YulFunctionCall","src":"4774:17:14"}],"functionName":{"name":"abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"4653:111:14"},"nodeType":"YulFunctionCall","src":"4653:139:14"},"nodeType":"YulExpressionStatement","src":"4653:139:14"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$2516_memory_ptr__to_t_struct$_TokenFeeSettings_$2516_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4578:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4590:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4601:4:14","type":""}],"src":"4440:359:14"},{"body":{"nodeType":"YulBlock","src":"4870:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4887:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4910:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"4892:17:14"},"nodeType":"YulFunctionCall","src":"4892:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4880:6:14"},"nodeType":"YulFunctionCall","src":"4880:37:14"},"nodeType":"YulExpressionStatement","src":"4880:37:14"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4858:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4865:3:14","type":""}],"src":"4805:118:14"},{"body":{"nodeType":"YulBlock","src":"5027:124:14","statements":[{"nodeType":"YulAssignment","src":"5037:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5049:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"5060:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5045:3:14"},"nodeType":"YulFunctionCall","src":"5045:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5037:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5117:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5130:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"5141:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5126:3:14"},"nodeType":"YulFunctionCall","src":"5126:17:14"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"5073:43:14"},"nodeType":"YulFunctionCall","src":"5073:71:14"},"nodeType":"YulExpressionStatement","src":"5073:71:14"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4999:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5011:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5022:4:14","type":""}],"src":"4929:222:14"},{"body":{"nodeType":"YulBlock","src":"5257:519:14","statements":[{"body":{"nodeType":"YulBlock","src":"5303:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5305:77:14"},"nodeType":"YulFunctionCall","src":"5305:79:14"},"nodeType":"YulExpressionStatement","src":"5305:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5278:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"5287:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5274:3:14"},"nodeType":"YulFunctionCall","src":"5274:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"5299:2:14","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5270:3:14"},"nodeType":"YulFunctionCall","src":"5270:32:14"},"nodeType":"YulIf","src":"5267:119:14"},{"nodeType":"YulBlock","src":"5396:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5411:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5425:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5415:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5440:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5475:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5486:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5471:3:14"},"nodeType":"YulFunctionCall","src":"5471:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5495:7:14"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"5450:20:14"},"nodeType":"YulFunctionCall","src":"5450:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5440:6:14"}]}]},{"nodeType":"YulBlock","src":"5523:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5538:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5552:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5542:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5568:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5603:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5614:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5599:3:14"},"nodeType":"YulFunctionCall","src":"5599:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5623:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5578:20:14"},"nodeType":"YulFunctionCall","src":"5578:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5568:6:14"}]}]},{"nodeType":"YulBlock","src":"5651:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5666:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5680:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5670:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5696:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5731:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5742:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5727:3:14"},"nodeType":"YulFunctionCall","src":"5727:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5751:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"5706:20:14"},"nodeType":"YulFunctionCall","src":"5706:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5696:6:14"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5211:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5222:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5234:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5242:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5250:6:14","type":""}],"src":"5157:619:14"},{"body":{"nodeType":"YulBlock","src":"5878:73:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5895:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"5900:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5888:6:14"},"nodeType":"YulFunctionCall","src":"5888:19:14"},"nodeType":"YulExpressionStatement","src":"5888:19:14"},{"nodeType":"YulAssignment","src":"5916:29:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5935:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5940:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5931:3:14"},"nodeType":"YulFunctionCall","src":"5931:14:14"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"5916:11:14"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5850:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"5855:6:14","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"5866:11:14","type":""}],"src":"5782:169:14"},{"body":{"nodeType":"YulBlock","src":"6063:65:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6085:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6093:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6081:3:14"},"nodeType":"YulFunctionCall","src":"6081:14:14"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"6097:23:14","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6074:6:14"},"nodeType":"YulFunctionCall","src":"6074:47:14"},"nodeType":"YulExpressionStatement","src":"6074:47:14"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"6055:6:14","type":""}],"src":"5957:171:14"},{"body":{"nodeType":"YulBlock","src":"6280:220:14","statements":[{"nodeType":"YulAssignment","src":"6290:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6356:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"6361:2:14","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6297:58:14"},"nodeType":"YulFunctionCall","src":"6297:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6290:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6462:3:14"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"6373:88:14"},"nodeType":"YulFunctionCall","src":"6373:93:14"},"nodeType":"YulExpressionStatement","src":"6373:93:14"},{"nodeType":"YulAssignment","src":"6475:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6486:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"6491:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6482:3:14"},"nodeType":"YulFunctionCall","src":"6482:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"6475:3:14"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"6268:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6276:3:14","type":""}],"src":"6134:366:14"},{"body":{"nodeType":"YulBlock","src":"6677:248:14","statements":[{"nodeType":"YulAssignment","src":"6687:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6699:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"6710:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6695:3:14"},"nodeType":"YulFunctionCall","src":"6695:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6687:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6734:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"6745:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6730:3:14"},"nodeType":"YulFunctionCall","src":"6730:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6753:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"6759:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6749:3:14"},"nodeType":"YulFunctionCall","src":"6749:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6723:6:14"},"nodeType":"YulFunctionCall","src":"6723:47:14"},"nodeType":"YulExpressionStatement","src":"6723:47:14"},{"nodeType":"YulAssignment","src":"6779:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6913:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6787:124:14"},"nodeType":"YulFunctionCall","src":"6787:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6779:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6657:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6672:4:14","type":""}],"src":"6506:419:14"},{"body":{"nodeType":"YulBlock","src":"7037:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7059:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7067:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7055:3:14"},"nodeType":"YulFunctionCall","src":"7055:14:14"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"7071:34:14","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7048:6:14"},"nodeType":"YulFunctionCall","src":"7048:58:14"},"nodeType":"YulExpressionStatement","src":"7048:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7127:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7135:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7123:3:14"},"nodeType":"YulFunctionCall","src":"7123:15:14"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"7140:7:14","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7116:6:14"},"nodeType":"YulFunctionCall","src":"7116:32:14"},"nodeType":"YulExpressionStatement","src":"7116:32:14"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"7029:6:14","type":""}],"src":"6931:224:14"},{"body":{"nodeType":"YulBlock","src":"7307:220:14","statements":[{"nodeType":"YulAssignment","src":"7317:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7383:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"7388:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7324:58:14"},"nodeType":"YulFunctionCall","src":"7324:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7317:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7489:3:14"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"7400:88:14"},"nodeType":"YulFunctionCall","src":"7400:93:14"},"nodeType":"YulExpressionStatement","src":"7400:93:14"},{"nodeType":"YulAssignment","src":"7502:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7513:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"7518:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7509:3:14"},"nodeType":"YulFunctionCall","src":"7509:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7502:3:14"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7295:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7303:3:14","type":""}],"src":"7161:366:14"},{"body":{"nodeType":"YulBlock","src":"7704:248:14","statements":[{"nodeType":"YulAssignment","src":"7714:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7726:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7737:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7722:3:14"},"nodeType":"YulFunctionCall","src":"7722:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7714:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7761:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7772:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7757:3:14"},"nodeType":"YulFunctionCall","src":"7757:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7780:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"7786:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7776:3:14"},"nodeType":"YulFunctionCall","src":"7776:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7750:6:14"},"nodeType":"YulFunctionCall","src":"7750:47:14"},"nodeType":"YulExpressionStatement","src":"7750:47:14"},{"nodeType":"YulAssignment","src":"7806:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7940:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7814:124:14"},"nodeType":"YulFunctionCall","src":"7814:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7806:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7684:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7699:4:14","type":""}],"src":"7533:419:14"},{"body":{"nodeType":"YulBlock","src":"8064:120:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8086:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8094:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8082:3:14"},"nodeType":"YulFunctionCall","src":"8082:14:14"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"8098:34:14","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8075:6:14"},"nodeType":"YulFunctionCall","src":"8075:58:14"},"nodeType":"YulExpressionStatement","src":"8075:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8154:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8162:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8150:3:14"},"nodeType":"YulFunctionCall","src":"8150:15:14"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"8167:9:14","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8143:6:14"},"nodeType":"YulFunctionCall","src":"8143:34:14"},"nodeType":"YulExpressionStatement","src":"8143:34:14"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"8056:6:14","type":""}],"src":"7958:226:14"},{"body":{"nodeType":"YulBlock","src":"8336:220:14","statements":[{"nodeType":"YulAssignment","src":"8346:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8412:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"8417:2:14","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8353:58:14"},"nodeType":"YulFunctionCall","src":"8353:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8346:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8518:3:14"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"8429:88:14"},"nodeType":"YulFunctionCall","src":"8429:93:14"},"nodeType":"YulExpressionStatement","src":"8429:93:14"},{"nodeType":"YulAssignment","src":"8531:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8542:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"8547:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8538:3:14"},"nodeType":"YulFunctionCall","src":"8538:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"8531:3:14"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8324:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"8332:3:14","type":""}],"src":"8190:366:14"},{"body":{"nodeType":"YulBlock","src":"8733:248:14","statements":[{"nodeType":"YulAssignment","src":"8743:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8755:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8766:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8751:3:14"},"nodeType":"YulFunctionCall","src":"8751:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8743:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8790:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8801:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8786:3:14"},"nodeType":"YulFunctionCall","src":"8786:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8809:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"8815:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8805:3:14"},"nodeType":"YulFunctionCall","src":"8805:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8779:6:14"},"nodeType":"YulFunctionCall","src":"8779:47:14"},"nodeType":"YulExpressionStatement","src":"8779:47:14"},{"nodeType":"YulAssignment","src":"8835:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8969:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8843:124:14"},"nodeType":"YulFunctionCall","src":"8843:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8835:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8713:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8728:4:14","type":""}],"src":"8562:419:14"},{"body":{"nodeType":"YulBlock","src":"9093:122:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9115:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"9123:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9111:3:14"},"nodeType":"YulFunctionCall","src":"9111:14:14"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"9127:34:14","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9104:6:14"},"nodeType":"YulFunctionCall","src":"9104:58:14"},"nodeType":"YulExpressionStatement","src":"9104:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9183:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"9191:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9179:3:14"},"nodeType":"YulFunctionCall","src":"9179:15:14"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"9196:11:14","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9172:6:14"},"nodeType":"YulFunctionCall","src":"9172:36:14"},"nodeType":"YulExpressionStatement","src":"9172:36:14"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"9085:6:14","type":""}],"src":"8987:228:14"},{"body":{"nodeType":"YulBlock","src":"9367:220:14","statements":[{"nodeType":"YulAssignment","src":"9377:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9443:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"9448:2:14","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9384:58:14"},"nodeType":"YulFunctionCall","src":"9384:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9377:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9549:3:14"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"9460:88:14"},"nodeType":"YulFunctionCall","src":"9460:93:14"},"nodeType":"YulExpressionStatement","src":"9460:93:14"},{"nodeType":"YulAssignment","src":"9562:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9573:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"9578:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9569:3:14"},"nodeType":"YulFunctionCall","src":"9569:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9562:3:14"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9355:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9363:3:14","type":""}],"src":"9221:366:14"},{"body":{"nodeType":"YulBlock","src":"9764:248:14","statements":[{"nodeType":"YulAssignment","src":"9774:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9786:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9797:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9782:3:14"},"nodeType":"YulFunctionCall","src":"9782:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9774:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9821:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9832:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9817:3:14"},"nodeType":"YulFunctionCall","src":"9817:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9840:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"9846:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9836:3:14"},"nodeType":"YulFunctionCall","src":"9836:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9810:6:14"},"nodeType":"YulFunctionCall","src":"9810:47:14"},"nodeType":"YulExpressionStatement","src":"9810:47:14"},{"nodeType":"YulAssignment","src":"9866:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10000:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9874:124:14"},"nodeType":"YulFunctionCall","src":"9874:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9866:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9744:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9759:4:14","type":""}],"src":"9593:419:14"},{"body":{"nodeType":"YulBlock","src":"10124:72:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10146:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"10154:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10142:3:14"},"nodeType":"YulFunctionCall","src":"10142:14:14"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"10158:30:14","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10135:6:14"},"nodeType":"YulFunctionCall","src":"10135:54:14"},"nodeType":"YulExpressionStatement","src":"10135:54:14"}]},"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"10116:6:14","type":""}],"src":"10018:178:14"},{"body":{"nodeType":"YulBlock","src":"10348:220:14","statements":[{"nodeType":"YulAssignment","src":"10358:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10424:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10429:2:14","type":"","value":"28"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10365:58:14"},"nodeType":"YulFunctionCall","src":"10365:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10358:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10530:3:14"}],"functionName":{"name":"store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","nodeType":"YulIdentifier","src":"10441:88:14"},"nodeType":"YulFunctionCall","src":"10441:93:14"},"nodeType":"YulExpressionStatement","src":"10441:93:14"},{"nodeType":"YulAssignment","src":"10543:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10554:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10559:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10550:3:14"},"nodeType":"YulFunctionCall","src":"10550:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"10543:3:14"}]}]},"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"10336:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10344:3:14","type":""}],"src":"10202:366:14"},{"body":{"nodeType":"YulBlock","src":"10745:248:14","statements":[{"nodeType":"YulAssignment","src":"10755:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10767:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"10778:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10763:3:14"},"nodeType":"YulFunctionCall","src":"10763:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10755:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10802:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"10813:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10798:3:14"},"nodeType":"YulFunctionCall","src":"10798:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10821:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"10827:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10817:3:14"},"nodeType":"YulFunctionCall","src":"10817:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10791:6:14"},"nodeType":"YulFunctionCall","src":"10791:47:14"},"nodeType":"YulExpressionStatement","src":"10791:47:14"},{"nodeType":"YulAssignment","src":"10847:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10981:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10855:124:14"},"nodeType":"YulFunctionCall","src":"10855:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10847:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10725:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10740:4:14","type":""}],"src":"10574:419:14"},{"body":{"nodeType":"YulBlock","src":"11105:116:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11127:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"11135:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11123:3:14"},"nodeType":"YulFunctionCall","src":"11123:14:14"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"11139:34:14","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11116:6:14"},"nodeType":"YulFunctionCall","src":"11116:58:14"},"nodeType":"YulExpressionStatement","src":"11116:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11195:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"11203:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11191:3:14"},"nodeType":"YulFunctionCall","src":"11191:15:14"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"11208:5:14","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11184:6:14"},"nodeType":"YulFunctionCall","src":"11184:30:14"},"nodeType":"YulExpressionStatement","src":"11184:30:14"}]},"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"11097:6:14","type":""}],"src":"10999:222:14"},{"body":{"nodeType":"YulBlock","src":"11373:220:14","statements":[{"nodeType":"YulAssignment","src":"11383:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11449:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11454:2:14","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11390:58:14"},"nodeType":"YulFunctionCall","src":"11390:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11383:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11555:3:14"}],"functionName":{"name":"store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","nodeType":"YulIdentifier","src":"11466:88:14"},"nodeType":"YulFunctionCall","src":"11466:93:14"},"nodeType":"YulExpressionStatement","src":"11466:93:14"},{"nodeType":"YulAssignment","src":"11568:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11579:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11584:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11575:3:14"},"nodeType":"YulFunctionCall","src":"11575:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11568:3:14"}]}]},"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"11361:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"11369:3:14","type":""}],"src":"11227:366:14"},{"body":{"nodeType":"YulBlock","src":"11770:248:14","statements":[{"nodeType":"YulAssignment","src":"11780:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11792:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11803:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11788:3:14"},"nodeType":"YulFunctionCall","src":"11788:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11780:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11827:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11838:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11823:3:14"},"nodeType":"YulFunctionCall","src":"11823:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11846:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"11852:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11842:3:14"},"nodeType":"YulFunctionCall","src":"11842:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11816:6:14"},"nodeType":"YulFunctionCall","src":"11816:47:14"},"nodeType":"YulExpressionStatement","src":"11816:47:14"},{"nodeType":"YulAssignment","src":"11872:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12006:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11880:124:14"},"nodeType":"YulFunctionCall","src":"11880:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11872:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11750:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11765:4:14","type":""}],"src":"11599:419:14"},{"body":{"nodeType":"YulBlock","src":"12130:120:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12152:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"12160:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12148:3:14"},"nodeType":"YulFunctionCall","src":"12148:14:14"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"12164:34:14","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12141:6:14"},"nodeType":"YulFunctionCall","src":"12141:58:14"},"nodeType":"YulExpressionStatement","src":"12141:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12220:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"12228:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12216:3:14"},"nodeType":"YulFunctionCall","src":"12216:15:14"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"12233:9:14","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12209:6:14"},"nodeType":"YulFunctionCall","src":"12209:34:14"},"nodeType":"YulExpressionStatement","src":"12209:34:14"}]},"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12122:6:14","type":""}],"src":"12024:226:14"},{"body":{"nodeType":"YulBlock","src":"12402:220:14","statements":[{"nodeType":"YulAssignment","src":"12412:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12478:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"12483:2:14","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12419:58:14"},"nodeType":"YulFunctionCall","src":"12419:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12412:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12584:3:14"}],"functionName":{"name":"store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","nodeType":"YulIdentifier","src":"12495:88:14"},"nodeType":"YulFunctionCall","src":"12495:93:14"},"nodeType":"YulExpressionStatement","src":"12495:93:14"},{"nodeType":"YulAssignment","src":"12597:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12608:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"12613:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12604:3:14"},"nodeType":"YulFunctionCall","src":"12604:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12597:3:14"}]}]},"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12390:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12398:3:14","type":""}],"src":"12256:366:14"},{"body":{"nodeType":"YulBlock","src":"12799:248:14","statements":[{"nodeType":"YulAssignment","src":"12809:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12821:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12832:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12817:3:14"},"nodeType":"YulFunctionCall","src":"12817:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12809:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12856:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12867:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12852:3:14"},"nodeType":"YulFunctionCall","src":"12852:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12875:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"12881:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12871:3:14"},"nodeType":"YulFunctionCall","src":"12871:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12845:6:14"},"nodeType":"YulFunctionCall","src":"12845:47:14"},"nodeType":"YulExpressionStatement","src":"12845:47:14"},{"nodeType":"YulAssignment","src":"12901:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13035:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12909:124:14"},"nodeType":"YulFunctionCall","src":"12909:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12901:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12779:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12794:4:14","type":""}],"src":"12628:419:14"},{"body":{"nodeType":"YulBlock","src":"13159:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13181:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"13189:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13177:3:14"},"nodeType":"YulFunctionCall","src":"13177:14:14"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"13193:34:14","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13170:6:14"},"nodeType":"YulFunctionCall","src":"13170:58:14"},"nodeType":"YulExpressionStatement","src":"13170:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13249:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"13257:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13245:3:14"},"nodeType":"YulFunctionCall","src":"13245:15:14"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"13262:7:14","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13238:6:14"},"nodeType":"YulFunctionCall","src":"13238:32:14"},"nodeType":"YulExpressionStatement","src":"13238:32:14"}]},"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"13151:6:14","type":""}],"src":"13053:224:14"},{"body":{"nodeType":"YulBlock","src":"13429:220:14","statements":[{"nodeType":"YulAssignment","src":"13439:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13505:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"13510:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13446:58:14"},"nodeType":"YulFunctionCall","src":"13446:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13439:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13611:3:14"}],"functionName":{"name":"store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","nodeType":"YulIdentifier","src":"13522:88:14"},"nodeType":"YulFunctionCall","src":"13522:93:14"},"nodeType":"YulExpressionStatement","src":"13522:93:14"},{"nodeType":"YulAssignment","src":"13624:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13635:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"13640:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13631:3:14"},"nodeType":"YulFunctionCall","src":"13631:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13624:3:14"}]}]},"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13417:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13425:3:14","type":""}],"src":"13283:366:14"},{"body":{"nodeType":"YulBlock","src":"13826:248:14","statements":[{"nodeType":"YulAssignment","src":"13836:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13848:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"13859:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13844:3:14"},"nodeType":"YulFunctionCall","src":"13844:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13836:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13883:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"13894:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13879:3:14"},"nodeType":"YulFunctionCall","src":"13879:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13902:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"13908:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13898:3:14"},"nodeType":"YulFunctionCall","src":"13898:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13872:6:14"},"nodeType":"YulFunctionCall","src":"13872:47:14"},"nodeType":"YulExpressionStatement","src":"13872:47:14"},{"nodeType":"YulAssignment","src":"13928:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14062:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13936:124:14"},"nodeType":"YulFunctionCall","src":"13936:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13928:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13806:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13821:4:14","type":""}],"src":"13655:419:14"},{"body":{"nodeType":"YulBlock","src":"14186:123:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14208:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"14216:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14204:3:14"},"nodeType":"YulFunctionCall","src":"14204:14:14"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"14220:34:14","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14197:6:14"},"nodeType":"YulFunctionCall","src":"14197:58:14"},"nodeType":"YulExpressionStatement","src":"14197:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14276:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"14284:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14272:3:14"},"nodeType":"YulFunctionCall","src":"14272:15:14"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"14289:12:14","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14265:6:14"},"nodeType":"YulFunctionCall","src":"14265:37:14"},"nodeType":"YulExpressionStatement","src":"14265:37:14"}]},"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14178:6:14","type":""}],"src":"14080:229:14"},{"body":{"nodeType":"YulBlock","src":"14461:220:14","statements":[{"nodeType":"YulAssignment","src":"14471:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14537:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"14542:2:14","type":"","value":"42"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14478:58:14"},"nodeType":"YulFunctionCall","src":"14478:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"14471:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14643:3:14"}],"functionName":{"name":"store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","nodeType":"YulIdentifier","src":"14554:88:14"},"nodeType":"YulFunctionCall","src":"14554:93:14"},"nodeType":"YulExpressionStatement","src":"14554:93:14"},{"nodeType":"YulAssignment","src":"14656:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14667:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"14672:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14663:3:14"},"nodeType":"YulFunctionCall","src":"14663:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14656:3:14"}]}]},"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14449:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14457:3:14","type":""}],"src":"14315:366:14"},{"body":{"nodeType":"YulBlock","src":"14858:248:14","statements":[{"nodeType":"YulAssignment","src":"14868:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14880:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"14891:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14876:3:14"},"nodeType":"YulFunctionCall","src":"14876:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14868:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14915:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"14926:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14911:3:14"},"nodeType":"YulFunctionCall","src":"14911:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14934:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"14940:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14930:3:14"},"nodeType":"YulFunctionCall","src":"14930:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14904:6:14"},"nodeType":"YulFunctionCall","src":"14904:47:14"},"nodeType":"YulExpressionStatement","src":"14904:47:14"},{"nodeType":"YulAssignment","src":"14960:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15094:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14968:124:14"},"nodeType":"YulFunctionCall","src":"14968:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14960:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14838:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14853:4:14","type":""}],"src":"14687:419:14"},{"body":{"nodeType":"YulBlock","src":"15177:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15194:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15217:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"15199:17:14"},"nodeType":"YulFunctionCall","src":"15199:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15187:6:14"},"nodeType":"YulFunctionCall","src":"15187:37:14"},"nodeType":"YulExpressionStatement","src":"15187:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15165:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15172:3:14","type":""}],"src":"15112:118:14"},{"body":{"nodeType":"YulBlock","src":"15418:371:14","statements":[{"nodeType":"YulAssignment","src":"15428:27:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15440:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15451:3:14","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15436:3:14"},"nodeType":"YulFunctionCall","src":"15436:19:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15428:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15509:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15522:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15533:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15518:3:14"},"nodeType":"YulFunctionCall","src":"15518:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15465:43:14"},"nodeType":"YulFunctionCall","src":"15465:71:14"},"nodeType":"YulExpressionStatement","src":"15465:71:14"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"15590:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15603:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15614:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15599:3:14"},"nodeType":"YulFunctionCall","src":"15599:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15546:43:14"},"nodeType":"YulFunctionCall","src":"15546:72:14"},"nodeType":"YulExpressionStatement","src":"15546:72:14"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"15672:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15685:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15696:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15681:3:14"},"nodeType":"YulFunctionCall","src":"15681:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15628:43:14"},"nodeType":"YulFunctionCall","src":"15628:72:14"},"nodeType":"YulExpressionStatement","src":"15628:72:14"},{"expression":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"15754:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15767:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15778:2:14","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15763:3:14"},"nodeType":"YulFunctionCall","src":"15763:18:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15710:43:14"},"nodeType":"YulFunctionCall","src":"15710:72:14"},"nodeType":"YulExpressionStatement","src":"15710:72:14"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15366:9:14","type":""},{"name":"value3","nodeType":"YulTypedName","src":"15378:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15386:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15394:6:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15402:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15413:4:14","type":""}],"src":"15236:553:14"},{"body":{"nodeType":"YulBlock","src":"15901:67:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15923:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"15931:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15919:3:14"},"nodeType":"YulFunctionCall","src":"15919:14:14"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"15935:25:14","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15912:6:14"},"nodeType":"YulFunctionCall","src":"15912:49:14"},"nodeType":"YulExpressionStatement","src":"15912:49:14"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15893:6:14","type":""}],"src":"15795:173:14"},{"body":{"nodeType":"YulBlock","src":"16120:220:14","statements":[{"nodeType":"YulAssignment","src":"16130:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16196:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"16201:2:14","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16137:58:14"},"nodeType":"YulFunctionCall","src":"16137:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16130:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16302:3:14"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"16213:88:14"},"nodeType":"YulFunctionCall","src":"16213:93:14"},"nodeType":"YulExpressionStatement","src":"16213:93:14"},{"nodeType":"YulAssignment","src":"16315:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16326:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"16331:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16322:3:14"},"nodeType":"YulFunctionCall","src":"16322:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16315:3:14"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16108:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16116:3:14","type":""}],"src":"15974:366:14"},{"body":{"nodeType":"YulBlock","src":"16517:248:14","statements":[{"nodeType":"YulAssignment","src":"16527:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16539:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16550:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16535:3:14"},"nodeType":"YulFunctionCall","src":"16535:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16527:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16574:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16585:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16570:3:14"},"nodeType":"YulFunctionCall","src":"16570:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16593:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"16599:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16589:3:14"},"nodeType":"YulFunctionCall","src":"16589:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16563:6:14"},"nodeType":"YulFunctionCall","src":"16563:47:14"},"nodeType":"YulExpressionStatement","src":"16563:47:14"},{"nodeType":"YulAssignment","src":"16619:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16753:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16627:124:14"},"nodeType":"YulFunctionCall","src":"16627:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16619:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16497:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16512:4:14","type":""}],"src":"16346:419:14"},{"body":{"nodeType":"YulBlock","src":"16869:124:14","statements":[{"nodeType":"YulAssignment","src":"16879:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16891:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16902:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16887:3:14"},"nodeType":"YulFunctionCall","src":"16887:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16879:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16959:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16972:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16983:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16968:3:14"},"nodeType":"YulFunctionCall","src":"16968:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"16915:43:14"},"nodeType":"YulFunctionCall","src":"16915:71:14"},"nodeType":"YulExpressionStatement","src":"16915:71:14"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16841:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16853:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16864:4:14","type":""}],"src":"16771:222:14"},{"body":{"nodeType":"YulBlock","src":"17105:76:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"17127:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"17135:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17123:3:14"},"nodeType":"YulFunctionCall","src":"17123:14:14"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"17139:34:14","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17116:6:14"},"nodeType":"YulFunctionCall","src":"17116:58:14"},"nodeType":"YulExpressionStatement","src":"17116:58:14"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"17097:6:14","type":""}],"src":"16999:182:14"},{"body":{"nodeType":"YulBlock","src":"17333:220:14","statements":[{"nodeType":"YulAssignment","src":"17343:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17409:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"17414:2:14","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17350:58:14"},"nodeType":"YulFunctionCall","src":"17350:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17343:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17515:3:14"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"17426:88:14"},"nodeType":"YulFunctionCall","src":"17426:93:14"},"nodeType":"YulExpressionStatement","src":"17426:93:14"},{"nodeType":"YulAssignment","src":"17528:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17539:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"17544:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17535:3:14"},"nodeType":"YulFunctionCall","src":"17535:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17528:3:14"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17321:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17329:3:14","type":""}],"src":"17187:366:14"},{"body":{"nodeType":"YulBlock","src":"17730:248:14","statements":[{"nodeType":"YulAssignment","src":"17740:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17752:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"17763:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17748:3:14"},"nodeType":"YulFunctionCall","src":"17748:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17740:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17787:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"17798:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17783:3:14"},"nodeType":"YulFunctionCall","src":"17783:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17806:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"17812:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17802:3:14"},"nodeType":"YulFunctionCall","src":"17802:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17776:6:14"},"nodeType":"YulFunctionCall","src":"17776:47:14"},"nodeType":"YulExpressionStatement","src":"17776:47:14"},{"nodeType":"YulAssignment","src":"17832:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17966:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17840:124:14"},"nodeType":"YulFunctionCall","src":"17840:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17832:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17710:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17725:4:14","type":""}],"src":"17559:419:14"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n // struct GatewaySettingManager.TokenFeeSettings -> struct GatewaySettingManager.TokenFeeSettings\n function abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x80)\n\n {\n // senderToProvider\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // providerToAggregator\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderToAggregator\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x40))\n }\n\n {\n // providerToAggregatorFx\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_TokenFeeSettings_$2516_memory_ptr__to_t_struct$_TokenFeeSettings_$2516_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_struct$_TokenFeeSettings_$2516_memory_ptr_to_t_struct$_TokenFeeSettings_$2516_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: token not supported\")\n\n }\n\n function abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to provi\")\n\n mstore(add(memPtr, 32), \"der\")\n\n }\n\n function abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator\")\n\n }\n\n function abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid sender to aggre\")\n\n mstore(add(memPtr, 32), \"gator\")\n\n }\n\n function abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid provider to agg\")\n\n mstore(add(memPtr, 32), \"regator fx\")\n\n }\n\n function abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b5060043610610091575f3560e01c80638bfa0549116100645780638bfa0549146100e15780638da5cb5b14610111578063cd9924001461012f578063e30c39781461014b578063f2fde38b1461016957610091565b806340ebc67714610095578063715018a6146100b157806379ba5097146100bb578063898861b0146100c5575b5f80fd5b6100af60048036038101906100aa9190610c8f565b610185565b005b6100b9610449565b005b6100c361045c565b005b6100df60048036038101906100da9190610d00565b6104e8565b005b6100fb60048036038101906100f69190610d77565b610766565b6040516101089190610e04565b60405180910390f35b6101196107e4565b6040516101269190610e2c565b60405180910390f35b61014960048036038101906101449190610e45565b61080c565b005b61015361098e565b6040516101609190610e2c565b60405180910390f35b610183600480360381019061017e9190610d77565b6109b6565b005b61018d610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f290610eef565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036102fd578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036102b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102aa90610f7d565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506103f9565b7f61676772656761746f720000000000000000000000000000000000000000000083036103f8578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa9061100b565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610444578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b610451610a62565b61045a5f610ae0565b565b5f610465610b10565b90508073ffffffffffffffffffffffffffffffffffffffff1661048661098e565b73ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611099565b60405180910390fd5b6104e581610ae0565b50565b6104f0610a62565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056790611101565b60405180910390fd5b6097548411156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac9061118f565b60405180910390fd5b6097548311156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f19061121d565b60405180910390fd5b60975482111561063f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610636906112ab565b60405180910390fd5b609754811115610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90611339565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516107579493929190611366565b60405180910390a25050505050565b61076e610bda565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610814610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990610eef565b60405180910390fd5b60018114806108915750600281145b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c7906113f3565b60405180910390fd5b7f746f6b656e00000000000000000000000000000000000000000000000000000083036109895780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516109809190611411565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109be610a62565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a1d6107e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a6a610b10565b73ffffffffffffffffffffffffffffffffffffffff16610a886107e4565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611474565b60405180910390fd5b565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610b0d81610b17565b50565b5f33905090565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b610c1481610c02565b8114610c1e575f80fd5b50565b5f81359050610c2f81610c0b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c5e82610c35565b9050919050565b610c6e81610c54565b8114610c78575f80fd5b50565b5f81359050610c8981610c65565b92915050565b5f8060408385031215610ca557610ca4610bfe565b5b5f610cb285828601610c21565b9250506020610cc385828601610c7b565b9150509250929050565b5f819050919050565b610cdf81610ccd565b8114610ce9575f80fd5b50565b5f81359050610cfa81610cd6565b92915050565b5f805f805f60a08688031215610d1957610d18610bfe565b5b5f610d2688828901610c7b565b9550506020610d3788828901610cec565b9450506040610d4888828901610cec565b9350506060610d5988828901610cec565b9250506080610d6a88828901610cec565b9150509295509295909350565b5f60208284031215610d8c57610d8b610bfe565b5b5f610d9984828501610c7b565b91505092915050565b610dab81610ccd565b82525050565b608082015f820151610dc55f850182610da2565b506020820151610dd86020850182610da2565b506040820151610deb6040850182610da2565b506060820151610dfe6060850182610da2565b50505050565b5f608082019050610e175f830184610db1565b92915050565b610e2681610c54565b82525050565b5f602082019050610e3f5f830184610e1d565b92915050565b5f805f60608486031215610e5c57610e5b610bfe565b5b5f610e6986828701610c21565b9350506020610e7a86828701610c7b565b9250506040610e8b86828701610cec565b9150509250925092565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f610ed9601583610e95565b9150610ee482610ea5565b602082019050919050565b5f6020820190508181035f830152610f0681610ecd565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f610f67602583610e95565b9150610f7282610f0d565b604082019050919050565b5f6020820190508181035f830152610f9481610f5b565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f610ff5602783610e95565b915061100082610f9b565b604082019050919050565b5f6020820190508181035f83015261102281610fe9565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f611083602983610e95565b915061108e82611029565b604082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f6110eb601c83610e95565b91506110f6826110b7565b602082019050919050565b5f6020820190508181035f830152611118816110df565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f611179602383610e95565b91506111848261111f565b604082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f611207602783610e95565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f611295602583610e95565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f611323602a83610e95565b915061132e826112c9565b604082019050919050565b5f6020820190508181035f83015261135081611317565b9050919050565b61136081610ccd565b82525050565b5f6080820190506113795f830187611357565b6113866020830186611357565b6113936040830185611357565b6113a06060830184611357565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6113dd601783610e95565b91506113e8826113a9565b602082019050919050565b5f6020820190508181035f83015261140a816113d1565b9050919050565b5f6020820190506114245f830184611357565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61145e602083610e95565b91506114698261142a565b602082019050919050565b5f6020820190508181035f83015261148b81611452565b905091905056fea2646970667358221220501f5547a2da906016cb57c16e745ed8301050ccb83749f526f2c5a06972904864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x91 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x12F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x169 JUMPI PUSH2 0x91 JUMP JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x95 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xBB JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xC5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xAF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAA SWAP2 SWAP1 PUSH2 0xC8F JUMP JUMPDEST PUSH2 0x185 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB9 PUSH2 0x449 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC3 PUSH2 0x45C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xDF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDA SWAP2 SWAP1 PUSH2 0xD00 JUMP JUMPDEST PUSH2 0x4E8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF6 SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x7E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xE45 JUMP JUMPDEST PUSH2 0x80C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x98E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x183 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17E SWAP2 SWAP1 PUSH2 0xD77 JUMP JUMPDEST PUSH2 0x9B6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F2 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x2FD JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AA SWAP1 PUSH2 0xF7D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x3F9 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x3F8 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3AA SWAP1 PUSH2 0x100B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x444 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x451 PUSH2 0xA62 JUMP JUMPDEST PUSH2 0x45A PUSH0 PUSH2 0xAE0 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x465 PUSH2 0xB10 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x486 PUSH2 0x98E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0x1099 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E5 DUP2 PUSH2 0xAE0 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4F0 PUSH2 0xA62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9A PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD EQ PUSH2 0x570 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x567 SWAP1 PUSH2 0x1101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x5B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5AC SWAP1 PUSH2 0x118F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x5FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F1 SWAP1 PUSH2 0x121D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x63F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x636 SWAP1 PUSH2 0x12AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x684 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67B SWAP1 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x9B PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x757 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x76E PUSH2 0xBDA JUMP JUMPDEST PUSH1 0x9B PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x814 PUSH2 0xA62 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x882 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x879 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x891 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x8D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C7 SWAP1 PUSH2 0x13F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x989 JUMPI DUP1 PUSH1 0x9A PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x980 SWAP2 SWAP1 PUSH2 0x1411 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BE PUSH2 0xA62 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA1D PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0xA6A PUSH2 0xB10 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA88 PUSH2 0x7E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xADE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAD5 SWAP1 PUSH2 0x1474 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x65 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0xB0D DUP2 PUSH2 0xB17 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x33 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC14 DUP2 PUSH2 0xC02 JUMP JUMPDEST DUP2 EQ PUSH2 0xC1E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC2F DUP2 PUSH2 0xC0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC5E DUP3 PUSH2 0xC35 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC6E DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP2 EQ PUSH2 0xC78 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC89 DUP2 PUSH2 0xC65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCA5 JUMPI PUSH2 0xCA4 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xCB2 DUP6 DUP3 DUP7 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCC3 DUP6 DUP3 DUP7 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCDF DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP2 EQ PUSH2 0xCE9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xCFA DUP2 PUSH2 0xCD6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xD19 JUMPI PUSH2 0xD18 PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD26 DUP9 DUP3 DUP10 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0xD37 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0xD48 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0xD59 DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0xD6A DUP9 DUP3 DUP10 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8C JUMPI PUSH2 0xD8B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD99 DUP5 DUP3 DUP6 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xDAB DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0xDC5 PUSH0 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0xDD8 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0xDEB PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0xDFE PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0xDA2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xE17 PUSH0 DUP4 ADD DUP5 PUSH2 0xDB1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE26 DUP2 PUSH2 0xC54 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE3F PUSH0 DUP4 ADD DUP5 PUSH2 0xE1D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE5C JUMPI PUSH2 0xE5B PUSH2 0xBFE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE69 DUP7 DUP3 DUP8 ADD PUSH2 0xC21 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xC7B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xED9 PUSH1 0x15 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xEE4 DUP3 PUSH2 0xEA5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF06 DUP2 PUSH2 0xECD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF67 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0xF72 DUP3 PUSH2 0xF0D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF94 DUP2 PUSH2 0xF5B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xFF5 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1000 DUP3 PUSH2 0xF9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1022 DUP2 PUSH2 0xFE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1083 PUSH1 0x29 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x108E DUP3 PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10B0 DUP2 PUSH2 0x1077 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x10EB PUSH1 0x1C DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x10F6 DUP3 PUSH2 0x10B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1118 DUP2 PUSH2 0x10DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH0 DUP3 ADD MSTORE PUSH32 0x6465720000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1179 PUSH1 0x23 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1184 DUP3 PUSH2 0x111F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x11A6 DUP2 PUSH2 0x116D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7200000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1207 PUSH1 0x27 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1212 DUP3 PUSH2 0x11AD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1234 DUP2 PUSH2 0x11FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH0 DUP3 ADD MSTORE PUSH32 0x6761746F72000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1295 PUSH1 0x25 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x12A0 DUP3 PUSH2 0x123B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12C2 DUP2 PUSH2 0x1289 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH0 DUP3 ADD MSTORE PUSH32 0x72656761746F7220667800000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1323 PUSH1 0x2A DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x132E DUP3 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1350 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1360 DUP2 PUSH2 0xCCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1379 PUSH0 DUP4 ADD DUP8 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1386 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x1393 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1357 JUMP JUMPDEST PUSH2 0x13A0 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x13DD PUSH1 0x17 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x13E8 DUP3 PUSH2 0x13A9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x140A DUP2 PUSH2 0x13D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1424 PUSH0 DUP4 ADD DUP5 PUSH2 0x1357 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x145E PUSH1 0x20 DUP4 PUSH2 0xE95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1469 DUP3 PUSH2 0x142A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x148B DUP2 PUSH2 0x1452 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0x1F SSTORE SELFBALANCE LOG2 0xDA SWAP1 PUSH1 0x16 0xCB JUMPI 0xC1 PUSH15 0x745ED8301050CCB83749F526F2C5A0 PUSH10 0x72904864736F6C634300 ADDMOD EQ STOP CALLER ","sourceMap":"276:4695:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508:551;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2085:101:1;;;:::i;:::-;;2031:212:0;;;:::i;:::-;;3670:988:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4838:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1944:335:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2508:551:11;1355:13:1;:11;:13::i;:::-;2616:1:11::1;2599:19;;:5;:19;;::::0;2591:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2648:12;2668:18;:4;:18:::0;2664:326:::1;;2720:5;2701:24;;:15;;;;;;;;;;;:24;;::::0;2693:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2790:5;2772:15;;:23;;;;;;;;;;;;;;;;;;2810:4;2800:14;;2664:326;;;2829:20;:4;:20:::0;2825:165:::1;;2886:5;2864:27;;:18;;;;;;;;;;;:27;;::::0;2856:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2961:5;2940:18;;:26;;;;;;;;;;;;;;;;;;2981:4;2971:14;;2825:165;2664:326;2997:7;2993:63;;;3045:5;3016:35;;3039:4;3016:35;;;;;;;;;;2993:63;2587:472;2508:551:::0;;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;3670:988:11:-;1355:13:1;:11;:13::i;:::-;3902:1:11::1;3874:17;:24;3892:5;3874:24;;;;;;;;;;;;;;;;:29;3866:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3968:7;;3948:16;:27;;3940:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4051:7;;4027:20;:31;;4019:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4136:7;;4114:18;:29;;4106:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4223:7;;4197:22;:33;;4189:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:202;;;;;;;;4349:16;4309:202;;;;4392:20;4309:202;;;;4437:18;4309:202;;;;4484:22;4309:202;;::::0;4282:17:::1;:24;4300:5;4282:24;;;;;;;;;;;;;;;:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4549:5;4521:133;;;4559:16;4580:20;4605:18;4628:22;4521:133;;;;;;;;;:::i;:::-;;;;;;;;3670:988:::0;;;;;:::o;4838:131::-;4905:23;;:::i;:::-;4941:17;:24;4959:5;4941:24;;;;;;;;;;;;;;;4934:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4838:131;;;:::o;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;1944:335:11:-;1355:13:1;:11;:13::i;:::-;2065:1:11::1;2048:19;;:5;:19;;::::0;2040:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:1;2105:6;:11;:26;;;;2130:1;2120:6;:11;2105:26;2097:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2167:15;:4;:15:::0;2163:113:::1;;2216:6;2189:17;:24;2207:5;2189:24;;;;;;;;;;;;;;;:33;;;;2257:5;2232:39;;2251:4;2232:39;2264:6;2232:39;;;;;;:::i;:::-;;;;;;;;2163:113;1944:335:::0;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;1436:178::-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88:117:14:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:77::-;1714:7;1743:5;1732:16;;1677:77;;;:::o;1760:122::-;1833:24;1851:5;1833:24;:::i;:::-;1826:5;1823:35;1813:63;;1872:1;1869;1862:12;1813:63;1760:122;:::o;1888:139::-;1934:5;1972:6;1959:20;1950:29;;1988:33;2015:5;1988:33;:::i;:::-;1888:139;;;;:::o;2033:911::-;2128:6;2136;2144;2152;2160;2209:3;2197:9;2188:7;2184:23;2180:33;2177:120;;;2216:79;;:::i;:::-;2177:120;2336:1;2361:53;2406:7;2397:6;2386:9;2382:22;2361:53;:::i;:::-;2351:63;;2307:117;2463:2;2489:53;2534:7;2525:6;2514:9;2510:22;2489:53;:::i;:::-;2479:63;;2434:118;2591:2;2617:53;2662:7;2653:6;2642:9;2638:22;2617:53;:::i;:::-;2607:63;;2562:118;2719:2;2745:53;2790:7;2781:6;2770:9;2766:22;2745:53;:::i;:::-;2735:63;;2690:118;2847:3;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2818:119;2033:911;;;;;;;;:::o;2950:329::-;3009:6;3058:2;3046:9;3037:7;3033:23;3029:32;3026:119;;;3064:79;;:::i;:::-;3026:119;3184:1;3209:53;3254:7;3245:6;3234:9;3230:22;3209:53;:::i;:::-;3199:63;;3155:117;2950:329;;;;:::o;3285:108::-;3362:24;3380:5;3362:24;:::i;:::-;3357:3;3350:37;3285:108;;:::o;3501:933::-;3666:4;3661:3;3657:14;3765:4;3758:5;3754:16;3748:23;3784:63;3841:4;3836:3;3832:14;3818:12;3784:63;:::i;:::-;3681:176;3955:4;3948:5;3944:16;3938:23;3974:63;4031:4;4026:3;4022:14;4008:12;3974:63;:::i;:::-;3867:180;4143:4;4136:5;4132:16;4126:23;4162:63;4219:4;4214:3;4210:14;4196:12;4162:63;:::i;:::-;4057:178;4335:4;4328:5;4324:16;4318:23;4354:63;4411:4;4406:3;4402:14;4388:12;4354:63;:::i;:::-;4245:182;3635:799;3501:933;;:::o;4440:359::-;4601:4;4639:3;4628:9;4624:19;4616:27;;4653:139;4789:1;4778:9;4774:17;4765:6;4653:139;:::i;:::-;4440:359;;;;:::o;4805:118::-;4892:24;4910:5;4892:24;:::i;:::-;4887:3;4880:37;4805:118;;:::o;4929:222::-;5022:4;5060:2;5049:9;5045:18;5037:26;;5073:71;5141:1;5130:9;5126:17;5117:6;5073:71;:::i;:::-;4929:222;;;;:::o;5157:619::-;5234:6;5242;5250;5299:2;5287:9;5278:7;5274:23;5270:32;5267:119;;;5305:79;;:::i;:::-;5267:119;5425:1;5450:53;5495:7;5486:6;5475:9;5471:22;5450:53;:::i;:::-;5440:63;;5396:117;5552:2;5578:53;5623:7;5614:6;5603:9;5599:22;5578:53;:::i;:::-;5568:63;;5523:118;5680:2;5706:53;5751:7;5742:6;5731:9;5727:22;5706:53;:::i;:::-;5696:63;;5651:118;5157:619;;;;;:::o;5782:169::-;5866:11;5900:6;5895:3;5888:19;5940:4;5935:3;5931:14;5916:29;;5782:169;;;;:::o;5957:171::-;6097:23;6093:1;6085:6;6081:14;6074:47;5957:171;:::o;6134:366::-;6276:3;6297:67;6361:2;6356:3;6297:67;:::i;:::-;6290:74;;6373:93;6462:3;6373:93;:::i;:::-;6491:2;6486:3;6482:12;6475:19;;6134:366;;;:::o;6506:419::-;6672:4;6710:2;6699:9;6695:18;6687:26;;6759:9;6753:4;6749:20;6745:1;6734:9;6730:17;6723:47;6787:131;6913:4;6787:131;:::i;:::-;6779:139;;6506:419;;;:::o;6931:224::-;7071:34;7067:1;7059:6;7055:14;7048:58;7140:7;7135:2;7127:6;7123:15;7116:32;6931:224;:::o;7161:366::-;7303:3;7324:67;7388:2;7383:3;7324:67;:::i;:::-;7317:74;;7400:93;7489:3;7400:93;:::i;:::-;7518:2;7513:3;7509:12;7502:19;;7161:366;;;:::o;7533:419::-;7699:4;7737:2;7726:9;7722:18;7714:26;;7786:9;7780:4;7776:20;7772:1;7761:9;7757:17;7750:47;7814:131;7940:4;7814:131;:::i;:::-;7806:139;;7533:419;;;:::o;7958:226::-;8098:34;8094:1;8086:6;8082:14;8075:58;8167:9;8162:2;8154:6;8150:15;8143:34;7958:226;:::o;8190:366::-;8332:3;8353:67;8417:2;8412:3;8353:67;:::i;:::-;8346:74;;8429:93;8518:3;8429:93;:::i;:::-;8547:2;8542:3;8538:12;8531:19;;8190:366;;;:::o;8562:419::-;8728:4;8766:2;8755:9;8751:18;8743:26;;8815:9;8809:4;8805:20;8801:1;8790:9;8786:17;8779:47;8843:131;8969:4;8843:131;:::i;:::-;8835:139;;8562:419;;;:::o;8987:228::-;9127:34;9123:1;9115:6;9111:14;9104:58;9196:11;9191:2;9183:6;9179:15;9172:36;8987:228;:::o;9221:366::-;9363:3;9384:67;9448:2;9443:3;9384:67;:::i;:::-;9377:74;;9460:93;9549:3;9460:93;:::i;:::-;9578:2;9573:3;9569:12;9562:19;;9221:366;;;:::o;9593:419::-;9759:4;9797:2;9786:9;9782:18;9774:26;;9846:9;9840:4;9836:20;9832:1;9821:9;9817:17;9810:47;9874:131;10000:4;9874:131;:::i;:::-;9866:139;;9593:419;;;:::o;10018:178::-;10158:30;10154:1;10146:6;10142:14;10135:54;10018:178;:::o;10202:366::-;10344:3;10365:67;10429:2;10424:3;10365:67;:::i;:::-;10358:74;;10441:93;10530:3;10441:93;:::i;:::-;10559:2;10554:3;10550:12;10543:19;;10202:366;;;:::o;10574:419::-;10740:4;10778:2;10767:9;10763:18;10755:26;;10827:9;10821:4;10817:20;10813:1;10802:9;10798:17;10791:47;10855:131;10981:4;10855:131;:::i;:::-;10847:139;;10574:419;;;:::o;10999:222::-;11139:34;11135:1;11127:6;11123:14;11116:58;11208:5;11203:2;11195:6;11191:15;11184:30;10999:222;:::o;11227:366::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:419::-;11765:4;11803:2;11792:9;11788:18;11780:26;;11852:9;11846:4;11842:20;11838:1;11827:9;11823:17;11816:47;11880:131;12006:4;11880:131;:::i;:::-;11872:139;;11599:419;;;:::o;12024:226::-;12164:34;12160:1;12152:6;12148:14;12141:58;12233:9;12228:2;12220:6;12216:15;12209:34;12024:226;:::o;12256:366::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12256:366;;;:::o;12628:419::-;12794:4;12832:2;12821:9;12817:18;12809:26;;12881:9;12875:4;12871:20;12867:1;12856:9;12852:17;12845:47;12909:131;13035:4;12909:131;:::i;:::-;12901:139;;12628:419;;;:::o;13053:224::-;13193:34;13189:1;13181:6;13177:14;13170:58;13262:7;13257:2;13249:6;13245:15;13238:32;13053:224;:::o;13283:366::-;13425:3;13446:67;13510:2;13505:3;13446:67;:::i;:::-;13439:74;;13522:93;13611:3;13522:93;:::i;:::-;13640:2;13635:3;13631:12;13624:19;;13283:366;;;:::o;13655:419::-;13821:4;13859:2;13848:9;13844:18;13836:26;;13908:9;13902:4;13898:20;13894:1;13883:9;13879:17;13872:47;13936:131;14062:4;13936:131;:::i;:::-;13928:139;;13655:419;;;:::o;14080:229::-;14220:34;14216:1;14208:6;14204:14;14197:58;14289:12;14284:2;14276:6;14272:15;14265:37;14080:229;:::o;14315:366::-;14457:3;14478:67;14542:2;14537:3;14478:67;:::i;:::-;14471:74;;14554:93;14643:3;14554:93;:::i;:::-;14672:2;14667:3;14663:12;14656:19;;14315:366;;;:::o;14687:419::-;14853:4;14891:2;14880:9;14876:18;14868:26;;14940:9;14934:4;14930:20;14926:1;14915:9;14911:17;14904:47;14968:131;15094:4;14968:131;:::i;:::-;14960:139;;14687:419;;;:::o;15112:118::-;15199:24;15217:5;15199:24;:::i;:::-;15194:3;15187:37;15112:118;;:::o;15236:553::-;15413:4;15451:3;15440:9;15436:19;15428:27;;15465:71;15533:1;15522:9;15518:17;15509:6;15465:71;:::i;:::-;15546:72;15614:2;15603:9;15599:18;15590:6;15546:72;:::i;:::-;15628;15696:2;15685:9;15681:18;15672:6;15628:72;:::i;:::-;15710;15778:2;15767:9;15763:18;15754:6;15710:72;:::i;:::-;15236:553;;;;;;;:::o;15795:173::-;15935:25;15931:1;15923:6;15919:14;15912:49;15795:173;:::o;15974:366::-;16116:3;16137:67;16201:2;16196:3;16137:67;:::i;:::-;16130:74;;16213:93;16302:3;16213:93;:::i;:::-;16331:2;16326:3;16322:12;16315:19;;15974:366;;;:::o;16346:419::-;16512:4;16550:2;16539:9;16535:18;16527:26;;16599:9;16593:4;16589:20;16585:1;16574:9;16570:17;16563:47;16627:131;16753:4;16627:131;:::i;:::-;16619:139;;16346:419;;;:::o;16771:222::-;16864:4;16902:2;16891:9;16887:18;16879:26;;16915:71;16983:1;16972:9;16968:17;16959:6;16915:71;:::i;:::-;16771:222;;;;:::o;16999:182::-;17139:34;17135:1;17127:6;17123:14;17116:58;16999:182;:::o;17187:366::-;17329:3;17350:67;17414:2;17409:3;17350:67;:::i;:::-;17343:74;;17426:93;17515:3;17426:93;:::i;:::-;17544:2;17539:3;17535:12;17528:19;;17187:366;;;:::o;17559:419::-;17725:4;17763:2;17752:9;17748:18;17740:26;;17812:9;17806:4;17802:20;17798:1;17787:9;17783:17;17776:47;17840:131;17966:4;17840:131;:::i;:::-;17832:139;;17559:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"1064000","executionCost":"1105","totalCost":"1065105"},"external":{"acceptOwnership()":"54694","getTokenFeeSettings(address)":"infinite","owner()":"2537","pendingOwner()":"2581","renounceOwnership()":"54683","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","transferOwnership(address)":"infinite","updateProtocolAddress(bytes32,address)":"31059"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","getTokenFeeSettings(address)":"8bfa0549","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","transferOwnership(address)":"f2fde38b","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"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.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GatewaySettingManager.sol\":\"GatewaySettingManager\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\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 require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\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 require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\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 Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\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 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\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 require(_initializing, \\\"Initializable: contract is not initializing\\\");\\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 require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _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 _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\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 ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\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 /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\t// Token-specific fee settings\\n\\tstruct TokenFeeSettings {\\n\\t\\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\\n\\t\\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\\n\\t\\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\\n\\t\\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\\n\\t}\\n\\n\\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\\n\\n\\tuint256[49] private __gap;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\tevent TokenFeeSettingsUpdated(\\n\\t\\taddress indexed token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets token-specific fee settings for stablecoins.\\n\\t * @param token The token address to configure.\\n\\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\\n\\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\\n\\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\\n\\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\\n\\t * Requirements:\\n\\t * - The token must be supported.\\n\\t * - Fee percentages must be within valid ranges.\\n\\t */\\n\\tfunction setTokenFeeSettings(\\n\\t\\taddress token,\\n\\t\\tuint256 senderToProvider,\\n\\t\\tuint256 providerToAggregator,\\n\\t\\tuint256 senderToAggregator,\\n\\t\\tuint256 providerToAggregatorFx\\n\\t) external onlyOwner {\\n\\t\\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\\n\\t\\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\\n\\t\\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\\n\\t\\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\\n\\t\\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\\n\\n\\t\\t_tokenFeeSettings[token] = TokenFeeSettings({\\n\\t\\t\\tsenderToProvider: senderToProvider,\\n\\t\\t\\tproviderToAggregator: providerToAggregator,\\n\\t\\t\\tsenderToAggregator: senderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx: providerToAggregatorFx\\n\\t\\t});\\n\\n\\t\\temit TokenFeeSettingsUpdated(\\n\\t\\t\\ttoken,\\n\\t\\t\\tsenderToProvider,\\n\\t\\t\\tproviderToAggregator,\\n\\t\\t\\tsenderToAggregator,\\n\\t\\t\\tproviderToAggregatorFx\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Gets token-specific fee settings.\\n\\t * @param token The token address to query.\\n\\t * @return TokenFeeSettings struct containing all fee settings for the token.\\n\\t */\\n\\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\\n\\t\\treturn _tokenFeeSettings[token];\\n\\t}\\n}\\n\",\"keccak256\":\"0xaf9cfac3872d9a7d9cf0c63ba1b8b2ad24598224821ce0a9c75fc2e8af7361df\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":2497,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":2499,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":2501,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":2503,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":2507,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_isTokenSupported","offset":0,"slot":"154","type":"t_mapping(t_address,t_uint256)"},{"astId":2521,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_tokenFeeSettings","offset":0,"slot":"155","type":"t_mapping(t_address,t_struct(TokenFeeSettings)2516_storage)"},{"astId":2525,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"156","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_struct(TokenFeeSettings)2516_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)","numberOfBytes":"32","value":"t_struct(TokenFeeSettings)2516_storage"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_struct(TokenFeeSettings)2516_storage":{"encoding":"inplace","label":"struct GatewaySettingManager.TokenFeeSettings","members":[{"astId":2509,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"senderToProvider","offset":0,"slot":"0","type":"t_uint256"},{"astId":2511,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"providerToAggregator","offset":0,"slot":"1","type":"t_uint256"},{"astId":2513,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"senderToAggregator","offset":0,"slot":"2","type":"t_uint256"},{"astId":2515,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"providerToAggregatorFx","offset":0,"slot":"3","type":"t_uint256"}],"numberOfBytes":"128"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/interfaces/IGateway.sol":{"IGateway":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint96","name":"settlePercent","type":"uint96"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFeeDetails","outputs":[{"internalType":"uint64","name":"protocolReward","type":"uint64"},{"internalType":"uint256","name":"max_bps","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"FxTransferFeeSplit(bytes32,uint256,uint256)":{"details":"Emitted when an FX transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","senderAmount":"The amount that goes to the sender."}},"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)":{"details":"Emitted when a local transfer fee is split.","params":{"aggregatorAmount":"The amount that goes to the aggregator.","orderId":"The ID of the order.","providerAmount":"The amount that goes to the provider.","senderAmount":"The amount that goes to the sender."}},"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint96)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}}},"kind":"dev","methods":{"createOrder(address,uint256,uint96,address,uint256,address,string)":{"details":"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.","params":{"_amount":"The amount in the decimal of `_token` to be locked.","_rate":"The rate at which the sender intends to sell `_amount` of `_token`.","_refundAddress":"The address that will receive `_amount` in `_token` when there is a need to refund.","_senderFee":"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.","_senderFeeRecipient":"The address that will receive `_senderFee` in `_token`.","_token":"The address of the token.","messageHash":"The hash of the message."},"returns":{"_orderId":"The ID of the order."}},"getFeeDetails()":{"returns":{"max_bps":"The maximum basis points.","protocolReward":"The protocol reward amount."}},"getOrderInfo(bytes32)":{"params":{"_orderId":"The ID of the order."},"returns":{"_0":"Order The order details."}},"isTokenSupported(address)":{"params":{"_token":"The address of the token to check."},"returns":{"_0":"bool the token is supported."}},"refund(uint256,bytes32)":{"details":"Requirements: - Only aggregators can call this function.","params":{"_fee":"The amount to be deducted from the amount to be refunded.","_orderId":"The ID of the transaction."},"returns":{"_0":"bool the refund is successful."}},"settle(bytes32,bytes32,address,uint64)":{"params":{"_liquidityProvider":"The address of the liquidity provider.","_orderId":"The ID of the transaction.","_settlePercent":"The rate at which the transaction is settled.","_splitOrderId":"The ID of the split order."},"returns":{"_0":"bool the settlement is successful."}}},"title":"IGateway","version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getFeeDetails()":"b810c636","getOrderInfo(bytes32)":"768c6ec0","isTokenSupported(address)":"75151b63","refund(uint256,bytes32)":"71eedb88","settle(bytes32,bytes32,address,uint64)":"f22ee704"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"settlePercent\",\"type\":\"uint96\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getFeeDetails\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"protocolReward\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"max_bps\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint96)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}}},\"kind\":\"dev\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.\",\"params\":{\"_amount\":\"The amount in the decimal of `_token` to be locked.\",\"_rate\":\"The rate at which the sender intends to sell `_amount` of `_token`.\",\"_refundAddress\":\"The address that will receive `_amount` in `_token` when there is a need to refund.\",\"_senderFee\":\"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\",\"_senderFeeRecipient\":\"The address that will receive `_senderFee` in `_token`.\",\"_token\":\"The address of the token.\",\"messageHash\":\"The hash of the message.\"},\"returns\":{\"_orderId\":\"The ID of the order.\"}},\"getFeeDetails()\":{\"returns\":{\"max_bps\":\"The maximum basis points.\",\"protocolReward\":\"The protocol reward amount.\"}},\"getOrderInfo(bytes32)\":{\"params\":{\"_orderId\":\"The ID of the order.\"},\"returns\":{\"_0\":\"Order The order details.\"}},\"isTokenSupported(address)\":{\"params\":{\"_token\":\"The address of the token to check.\"},\"returns\":{\"_0\":\"bool the token is supported.\"}},\"refund(uint256,bytes32)\":{\"details\":\"Requirements: - Only aggregators can call this function.\",\"params\":{\"_fee\":\"The amount to be deducted from the amount to be refunded.\",\"_orderId\":\"The ID of the transaction.\"},\"returns\":{\"_0\":\"bool the refund is successful.\"}},\"settle(bytes32,bytes32,address,uint64)\":{\"params\":{\"_liquidityProvider\":\"The address of the liquidity provider.\",\"_orderId\":\"The ID of the transaction.\",\"_settlePercent\":\"The rate at which the transaction is settled.\",\"_splitOrderId\":\"The ID of the split order.\"},\"returns\":{\"_0\":\"bool the settlement is successful.\"}}},\"title\":\"IGateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"notice\":\"Locks the sender's amount of token into Gateway.\"},\"getFeeDetails()\":{\"notice\":\"Gets the fee details of Gateway.\"},\"getOrderInfo(bytes32)\":{\"notice\":\"Gets the details of an order.\"},\"isTokenSupported(address)\":{\"notice\":\"Checks if a token is supported by Gateway.\"},\"refund(uint256,bytes32)\":{\"notice\":\"Refunds to the specified refundable address.\"},\"settle(bytes32,bytes32,address,uint64)\":{\"notice\":\"Settles a transaction and distributes rewards accordingly.\"}},\"notice\":\"Interface for the Gateway contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IGateway.sol\":\"IGateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/interfaces/IGateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGateway {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint96 settlePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/**\\n\\t * @dev Emitted when a local transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param providerAmount The amount that goes to the provider.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent LocalTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 providerAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an FX transfer fee is split.\\n\\t * @param orderId The ID of the order.\\n\\t * @param senderAmount The amount that goes to the sender.\\n\\t * @param aggregatorAmount The amount that goes to the aggregator.\\n\\t */\\n\\tevent FxTransferFeeSplit(\\n\\t\\tbytes32 indexed orderId,\\n\\t\\tuint256 senderAmount,\\n\\t\\tuint256 aggregatorAmount\\n\\t);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n\\n\\t/**\\n\\t * @notice Gets the fee details of Gateway.\\n\\t * @return protocolReward The protocol reward amount.\\n\\t * @return max_bps The maximum basis points.\\n\\t */\\n\\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\\n}\\n\",\"keccak256\":\"0x9bcc76affc6ee7679e3b8276bb93d6253d6804a337cf31617cb46a7f22a6c727\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{"createOrder(address,uint256,uint96,address,uint256,address,string)":{"notice":"Locks the sender's amount of token into Gateway."},"getFeeDetails()":{"notice":"Gets the fee details of Gateway."},"getOrderInfo(bytes32)":{"notice":"Gets the details of an order."},"isTokenSupported(address)":{"notice":"Checks if a token is supported by Gateway."},"refund(uint256,bytes32)":{"notice":"Refunds to the specified refundable address."},"settle(bytes32,bytes32,address,uint64)":{"notice":"Settles a transaction and distributes rewards accordingly."}},"notice":"Interface for the Gateway contract.","version":1}}},"contracts/mocks/MockUSDC.sol":{"MockUSDT":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Mock mintable USDC","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 `amount` 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}."},"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}."},"decreaseAllowance(address,uint256)":{"details":"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."},"increaseAllowance(address,uint256)":{"details":"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."},"name()":{"details":"Returns the name of the token."},"symbol()":{"details":"Returns the symbol of the token, usually a shorter version of the name."},"totalSupply()":{"details":"See {IERC20-totalSupply}."},"transfer(address,uint256)":{"details":"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."},"transferFrom(address,address,uint256)":{"details":"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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 `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."}},"version":1},"evm":{"bytecode":{"functionDebugData":{"@_2946":{"entryPoint":null,"id":2946,"parameterSlots":0,"returnSlots":0},"@_962":{"entryPoint":null,"id":962,"parameterSlots":2,"returnSlots":0},"@_afterTokenTransfer_1503":{"entryPoint":559,"id":1503,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1492":{"entryPoint":554,"id":1492,"parameterSlots":3,"returnSlots":0},"@_mint_1321":{"entryPoint":197,"id":1321,"parameterSlots":2,"returnSlots":0},"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack":{"entryPoint":1460,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":1633,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1498,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":1650,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_t_string_storage":{"entryPoint":716,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":564,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":1404,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1575,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_t_string_storage":{"entryPoint":1025,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_t_uint256":{"entryPoint":846,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_t_bytes1":{"entryPoint":987,"id":null,"parameterSlots":2,"returnSlots":0},"convert_t_uint256_to_t_uint256":{"entryPoint":864,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":1176,"id":null,"parameterSlots":2,"returnSlots":0},"divide_by_32_ceil":{"entryPoint":734,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":664,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":1147,"id":null,"parameterSlots":2,"returnSlots":1},"identity":{"entryPoint":855,"id":null,"parameterSlots":1,"returnSlots":1},"mask_bytes_dynamic":{"entryPoint":1117,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1530,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x22":{"entryPoint":619,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":574,"id":null,"parameterSlots":0,"returnSlots":0},"prepare_store_t_uint256":{"entryPoint":903,"id":null,"parameterSlots":1,"returnSlots":1},"shift_left_dynamic":{"entryPoint":749,"id":null,"parameterSlots":2,"returnSlots":1},"shift_right_unsigned_dynamic":{"entryPoint":1105,"id":null,"parameterSlots":2,"returnSlots":1},"storage_set_to_zero_t_uint256":{"entryPoint":959,"id":null,"parameterSlots":2,"returnSlots":0},"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e":{"entryPoint":1420,"id":null,"parameterSlots":1,"returnSlots":0},"update_byte_slice_dynamic32":{"entryPoint":761,"id":null,"parameterSlots":3,"returnSlots":1},"update_storage_value_t_uint256_to_t_uint256":{"entryPoint":912,"id":null,"parameterSlots":3,"returnSlots":0},"zero_value_for_split_t_uint256":{"entryPoint":955,"id":null,"parameterSlots":0,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:7125:14","statements":[{"body":{"nodeType":"YulBlock","src":"66:40:14","statements":[{"nodeType":"YulAssignment","src":"77:22:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"87:5:14"},"nodeType":"YulFunctionCall","src":"87:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"77:6:14"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"49:5:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"59:6:14","type":""}],"src":"7:99:14"},{"body":{"nodeType":"YulBlock","src":"140:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"157:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"160:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"150:6:14"},"nodeType":"YulFunctionCall","src":"150:88:14"},"nodeType":"YulExpressionStatement","src":"150:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"254:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"257:4:14","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"247:6:14"},"nodeType":"YulFunctionCall","src":"247:15:14"},"nodeType":"YulExpressionStatement","src":"247:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"278:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"281:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"271:6:14"},"nodeType":"YulFunctionCall","src":"271:15:14"},"nodeType":"YulExpressionStatement","src":"271:15:14"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"112:180:14"},{"body":{"nodeType":"YulBlock","src":"326:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"343:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"346:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"336:6:14"},"nodeType":"YulFunctionCall","src":"336:88:14"},"nodeType":"YulExpressionStatement","src":"336:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"440:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"443:4:14","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"433:6:14"},"nodeType":"YulFunctionCall","src":"433:15:14"},"nodeType":"YulExpressionStatement","src":"433:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"464:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"467:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"457:6:14"},"nodeType":"YulFunctionCall","src":"457:15:14"},"nodeType":"YulExpressionStatement","src":"457:15:14"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"298:180:14"},{"body":{"nodeType":"YulBlock","src":"535:269:14","statements":[{"nodeType":"YulAssignment","src":"545:22:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"559:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"565:1:14","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"555:3:14"},"nodeType":"YulFunctionCall","src":"555:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"545:6:14"}]},{"nodeType":"YulVariableDeclaration","src":"576:38:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"606:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"612:1:14","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"602:3:14"},"nodeType":"YulFunctionCall","src":"602:12:14"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"580:18:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"653:51:14","statements":[{"nodeType":"YulAssignment","src":"667:27:14","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"681:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"689:4:14","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"677:3:14"},"nodeType":"YulFunctionCall","src":"677:17:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"667:6:14"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"633:18:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"626:6:14"},"nodeType":"YulFunctionCall","src":"626:26:14"},"nodeType":"YulIf","src":"623:81:14"},{"body":{"nodeType":"YulBlock","src":"756:42:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"770:16:14"},"nodeType":"YulFunctionCall","src":"770:18:14"},"nodeType":"YulExpressionStatement","src":"770:18:14"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"720:18:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"743:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"751:2:14","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"740:2:14"},"nodeType":"YulFunctionCall","src":"740:14:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"717:2:14"},"nodeType":"YulFunctionCall","src":"717:38:14"},"nodeType":"YulIf","src":"714:84:14"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"519:4:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"528:6:14","type":""}],"src":"484:320:14"},{"body":{"nodeType":"YulBlock","src":"864:87:14","statements":[{"nodeType":"YulAssignment","src":"874:11:14","value":{"name":"ptr","nodeType":"YulIdentifier","src":"882:3:14"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"874:4:14"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"902:1:14","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"905:3:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"895:6:14"},"nodeType":"YulFunctionCall","src":"895:14:14"},"nodeType":"YulExpressionStatement","src":"895:14:14"},{"nodeType":"YulAssignment","src":"918:26:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"936:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"939:4:14","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"926:9:14"},"nodeType":"YulFunctionCall","src":"926:18:14"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"918:4:14"}]}]},"name":"array_dataslot_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"851:3:14","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"859:4:14","type":""}],"src":"810:141:14"},{"body":{"nodeType":"YulBlock","src":"1001:49:14","statements":[{"nodeType":"YulAssignment","src":"1011:33:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1029:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"1036:2:14","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1025:3:14"},"nodeType":"YulFunctionCall","src":"1025:14:14"},{"kind":"number","nodeType":"YulLiteral","src":"1041:2:14","type":"","value":"32"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"1021:3:14"},"nodeType":"YulFunctionCall","src":"1021:23:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"1011:6:14"}]}]},"name":"divide_by_32_ceil","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"984:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"994:6:14","type":""}],"src":"957:93:14"},{"body":{"nodeType":"YulBlock","src":"1109:54:14","statements":[{"nodeType":"YulAssignment","src":"1119:37:14","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"1144:4:14"},{"name":"value","nodeType":"YulIdentifier","src":"1150:5:14"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1140:3:14"},"nodeType":"YulFunctionCall","src":"1140:16:14"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"1119:8:14"}]}]},"name":"shift_left_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"1084:4:14","type":""},{"name":"value","nodeType":"YulTypedName","src":"1090:5:14","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"1100:8:14","type":""}],"src":"1056:107:14"},{"body":{"nodeType":"YulBlock","src":"1245:317:14","statements":[{"nodeType":"YulVariableDeclaration","src":"1255:35:14","value":{"arguments":[{"name":"shiftBytes","nodeType":"YulIdentifier","src":"1276:10:14"},{"kind":"number","nodeType":"YulLiteral","src":"1288:1:14","type":"","value":"8"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"1272:3:14"},"nodeType":"YulFunctionCall","src":"1272:18:14"},"variables":[{"name":"shiftBits","nodeType":"YulTypedName","src":"1259:9:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1299:109:14","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"1330:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1341:66:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"1311:18:14"},"nodeType":"YulFunctionCall","src":"1311:97:14"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"1303:4:14","type":""}]},{"nodeType":"YulAssignment","src":"1417:51:14","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"1448:9:14"},{"name":"toInsert","nodeType":"YulIdentifier","src":"1459:8:14"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"1429:18:14"},"nodeType":"YulFunctionCall","src":"1429:39:14"},"variableNames":[{"name":"toInsert","nodeType":"YulIdentifier","src":"1417:8:14"}]},{"nodeType":"YulAssignment","src":"1477:30:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1490:5:14"},{"arguments":[{"name":"mask","nodeType":"YulIdentifier","src":"1501:4:14"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1497:3:14"},"nodeType":"YulFunctionCall","src":"1497:9:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1486:3:14"},"nodeType":"YulFunctionCall","src":"1486:21:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1477:5:14"}]},{"nodeType":"YulAssignment","src":"1516:40:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1529:5:14"},{"arguments":[{"name":"toInsert","nodeType":"YulIdentifier","src":"1540:8:14"},{"name":"mask","nodeType":"YulIdentifier","src":"1550:4:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1536:3:14"},"nodeType":"YulFunctionCall","src":"1536:19:14"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1526:2:14"},"nodeType":"YulFunctionCall","src":"1526:30:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"1516:6:14"}]}]},"name":"update_byte_slice_dynamic32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1206:5:14","type":""},{"name":"shiftBytes","nodeType":"YulTypedName","src":"1213:10:14","type":""},{"name":"toInsert","nodeType":"YulTypedName","src":"1225:8:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"1238:6:14","type":""}],"src":"1169:393:14"},{"body":{"nodeType":"YulBlock","src":"1613:32:14","statements":[{"nodeType":"YulAssignment","src":"1623:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"1634:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1623:7:14"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1595:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1605:7:14","type":""}],"src":"1568:77:14"},{"body":{"nodeType":"YulBlock","src":"1683:28:14","statements":[{"nodeType":"YulAssignment","src":"1693:12:14","value":{"name":"value","nodeType":"YulIdentifier","src":"1700:5:14"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"1693:3:14"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1669:5:14","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"1679:3:14","type":""}],"src":"1651:60:14"},{"body":{"nodeType":"YulBlock","src":"1777:82:14","statements":[{"nodeType":"YulAssignment","src":"1787:66:14","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1845:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"1827:17:14"},"nodeType":"YulFunctionCall","src":"1827:24:14"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"1818:8:14"},"nodeType":"YulFunctionCall","src":"1818:34:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"1800:17:14"},"nodeType":"YulFunctionCall","src":"1800:53:14"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"1787:9:14"}]}]},"name":"convert_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1757:5:14","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"1767:9:14","type":""}],"src":"1717:142:14"},{"body":{"nodeType":"YulBlock","src":"1912:28:14","statements":[{"nodeType":"YulAssignment","src":"1922:12:14","value":{"name":"value","nodeType":"YulIdentifier","src":"1929:5:14"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"1922:3:14"}]}]},"name":"prepare_store_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1898:5:14","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"1908:3:14","type":""}],"src":"1865:75:14"},{"body":{"nodeType":"YulBlock","src":"2022:193:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2032:63:14","value":{"arguments":[{"name":"value_0","nodeType":"YulIdentifier","src":"2087:7:14"}],"functionName":{"name":"convert_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"2056:30:14"},"nodeType":"YulFunctionCall","src":"2056:39:14"},"variables":[{"name":"convertedValue_0","nodeType":"YulTypedName","src":"2036:16:14","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2111:4:14"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2151:4:14"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"2145:5:14"},"nodeType":"YulFunctionCall","src":"2145:11:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2158:6:14"},{"arguments":[{"name":"convertedValue_0","nodeType":"YulIdentifier","src":"2190:16:14"}],"functionName":{"name":"prepare_store_t_uint256","nodeType":"YulIdentifier","src":"2166:23:14"},"nodeType":"YulFunctionCall","src":"2166:41:14"}],"functionName":{"name":"update_byte_slice_dynamic32","nodeType":"YulIdentifier","src":"2117:27:14"},"nodeType":"YulFunctionCall","src":"2117:91:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2104:6:14"},"nodeType":"YulFunctionCall","src":"2104:105:14"},"nodeType":"YulExpressionStatement","src":"2104:105:14"}]},"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"1999:4:14","type":""},{"name":"offset","nodeType":"YulTypedName","src":"2005:6:14","type":""},{"name":"value_0","nodeType":"YulTypedName","src":"2013:7:14","type":""}],"src":"1946:269:14"},{"body":{"nodeType":"YulBlock","src":"2270:24:14","statements":[{"nodeType":"YulAssignment","src":"2280:8:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2287:1:14","type":"","value":"0"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"2280:3:14"}]}]},"name":"zero_value_for_split_t_uint256","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"2266:3:14","type":""}],"src":"2221:73:14"},{"body":{"nodeType":"YulBlock","src":"2353:136:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2363:46:14","value":{"arguments":[],"functionName":{"name":"zero_value_for_split_t_uint256","nodeType":"YulIdentifier","src":"2377:30:14"},"nodeType":"YulFunctionCall","src":"2377:32:14"},"variables":[{"name":"zero_0","nodeType":"YulTypedName","src":"2367:6:14","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2462:4:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2468:6:14"},{"name":"zero_0","nodeType":"YulIdentifier","src":"2476:6:14"}],"functionName":{"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"2418:43:14"},"nodeType":"YulFunctionCall","src":"2418:65:14"},"nodeType":"YulExpressionStatement","src":"2418:65:14"}]},"name":"storage_set_to_zero_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"2339:4:14","type":""},{"name":"offset","nodeType":"YulTypedName","src":"2345:6:14","type":""}],"src":"2300:189:14"},{"body":{"nodeType":"YulBlock","src":"2545:136:14","statements":[{"body":{"nodeType":"YulBlock","src":"2612:63:14","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2656:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"2663:1:14","type":"","value":"0"}],"functionName":{"name":"storage_set_to_zero_t_uint256","nodeType":"YulIdentifier","src":"2626:29:14"},"nodeType":"YulFunctionCall","src":"2626:39:14"},"nodeType":"YulExpressionStatement","src":"2626:39:14"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2565:5:14"},{"name":"end","nodeType":"YulIdentifier","src":"2572:3:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2562:2:14"},"nodeType":"YulFunctionCall","src":"2562:14:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2577:26:14","statements":[{"nodeType":"YulAssignment","src":"2579:22:14","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2592:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"2599:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2588:3:14"},"nodeType":"YulFunctionCall","src":"2588:13:14"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2579:5:14"}]}]},"pre":{"nodeType":"YulBlock","src":"2559:2:14","statements":[]},"src":"2555:120:14"}]},"name":"clear_storage_range_t_bytes1","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"2533:5:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2540:3:14","type":""}],"src":"2495:186:14"},{"body":{"nodeType":"YulBlock","src":"2766:464:14","statements":[{"body":{"nodeType":"YulBlock","src":"2792:431:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2806:54:14","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"2854:5:14"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"2822:31:14"},"nodeType":"YulFunctionCall","src":"2822:38:14"},"variables":[{"name":"dataArea","nodeType":"YulTypedName","src":"2810:8:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2873:63:14","value":{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"2896:8:14"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2924:10:14"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"2906:17:14"},"nodeType":"YulFunctionCall","src":"2906:29:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2892:3:14"},"nodeType":"YulFunctionCall","src":"2892:44:14"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"2877:11:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"3093:27:14","statements":[{"nodeType":"YulAssignment","src":"3095:23:14","value":{"name":"dataArea","nodeType":"YulIdentifier","src":"3110:8:14"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"3095:11:14"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"3077:10:14"},{"kind":"number","nodeType":"YulLiteral","src":"3089:2:14","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3074:2:14"},"nodeType":"YulFunctionCall","src":"3074:18:14"},"nodeType":"YulIf","src":"3071:49:14"},{"expression":{"arguments":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"3162:11:14"},{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"3179:8:14"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"3207:3:14"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"3189:17:14"},"nodeType":"YulFunctionCall","src":"3189:22:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3175:3:14"},"nodeType":"YulFunctionCall","src":"3175:37:14"}],"functionName":{"name":"clear_storage_range_t_bytes1","nodeType":"YulIdentifier","src":"3133:28:14"},"nodeType":"YulFunctionCall","src":"3133:80:14"},"nodeType":"YulExpressionStatement","src":"3133:80:14"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2783:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"2788:2:14","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2780:2:14"},"nodeType":"YulFunctionCall","src":"2780:11:14"},"nodeType":"YulIf","src":"2777:446:14"}]},"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"2742:5:14","type":""},{"name":"len","nodeType":"YulTypedName","src":"2749:3:14","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"2754:10:14","type":""}],"src":"2687:543:14"},{"body":{"nodeType":"YulBlock","src":"3299:54:14","statements":[{"nodeType":"YulAssignment","src":"3309:37:14","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"3334:4:14"},{"name":"value","nodeType":"YulIdentifier","src":"3340:5:14"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3330:3:14"},"nodeType":"YulFunctionCall","src":"3330:16:14"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"3309:8:14"}]}]},"name":"shift_right_unsigned_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"3274:4:14","type":""},{"name":"value","nodeType":"YulTypedName","src":"3280:5:14","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"3290:8:14","type":""}],"src":"3236:117:14"},{"body":{"nodeType":"YulBlock","src":"3410:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3420:68:14","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3469:1:14","type":"","value":"8"},{"name":"bytes","nodeType":"YulIdentifier","src":"3472:5:14"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"3465:3:14"},"nodeType":"YulFunctionCall","src":"3465:13:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3484:1:14","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3480:3:14"},"nodeType":"YulFunctionCall","src":"3480:6:14"}],"functionName":{"name":"shift_right_unsigned_dynamic","nodeType":"YulIdentifier","src":"3436:28:14"},"nodeType":"YulFunctionCall","src":"3436:51:14"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3432:3:14"},"nodeType":"YulFunctionCall","src":"3432:56:14"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"3424:4:14","type":""}]},{"nodeType":"YulAssignment","src":"3497:25:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3511:4:14"},{"name":"mask","nodeType":"YulIdentifier","src":"3517:4:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3507:3:14"},"nodeType":"YulFunctionCall","src":"3507:15:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"3497:6:14"}]}]},"name":"mask_bytes_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3387:4:14","type":""},{"name":"bytes","nodeType":"YulTypedName","src":"3393:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"3403:6:14","type":""}],"src":"3359:169:14"},{"body":{"nodeType":"YulBlock","src":"3614:214:14","statements":[{"nodeType":"YulAssignment","src":"3747:37:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3774:4:14"},{"name":"len","nodeType":"YulIdentifier","src":"3780:3:14"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"3755:18:14"},"nodeType":"YulFunctionCall","src":"3755:29:14"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"3747:4:14"}]},{"nodeType":"YulAssignment","src":"3793:29:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3804:4:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3814:1:14","type":"","value":"2"},{"name":"len","nodeType":"YulIdentifier","src":"3817:3:14"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"3810:3:14"},"nodeType":"YulFunctionCall","src":"3810:11:14"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"3801:2:14"},"nodeType":"YulFunctionCall","src":"3801:21:14"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"3793:4:14"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3595:4:14","type":""},{"name":"len","nodeType":"YulTypedName","src":"3601:3:14","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"3609:4:14","type":""}],"src":"3533:295:14"},{"body":{"nodeType":"YulBlock","src":"3925:1303:14","statements":[{"nodeType":"YulVariableDeclaration","src":"3936:51:14","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3983:3:14"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"3950:32:14"},"nodeType":"YulFunctionCall","src":"3950:37:14"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"3940:6:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"4072:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4074:16:14"},"nodeType":"YulFunctionCall","src":"4074:18:14"},"nodeType":"YulExpressionStatement","src":"4074:18:14"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4044:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4052:18:14","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4041:2:14"},"nodeType":"YulFunctionCall","src":"4041:30:14"},"nodeType":"YulIf","src":"4038:56:14"},{"nodeType":"YulVariableDeclaration","src":"4104:52:14","value":{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4150:4:14"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"4144:5:14"},"nodeType":"YulFunctionCall","src":"4144:11:14"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"4118:25:14"},"nodeType":"YulFunctionCall","src":"4118:38:14"},"variables":[{"name":"oldLen","nodeType":"YulTypedName","src":"4108:6:14","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4249:4:14"},{"name":"oldLen","nodeType":"YulIdentifier","src":"4255:6:14"},{"name":"newLen","nodeType":"YulIdentifier","src":"4263:6:14"}],"functionName":{"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulIdentifier","src":"4203:45:14"},"nodeType":"YulFunctionCall","src":"4203:67:14"},"nodeType":"YulExpressionStatement","src":"4203:67:14"},{"nodeType":"YulVariableDeclaration","src":"4280:18:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4297:1:14","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"4284:9:14","type":""}]},{"nodeType":"YulAssignment","src":"4308:17:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4321:4:14","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4308:9:14"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"4372:611:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4386:37:14","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4405:6:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4417:4:14","type":"","value":"0x1f"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4413:3:14"},"nodeType":"YulFunctionCall","src":"4413:9:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4401:3:14"},"nodeType":"YulFunctionCall","src":"4401:22:14"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"4390:7:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4437:51:14","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4483:4:14"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"4451:31:14"},"nodeType":"YulFunctionCall","src":"4451:37:14"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"4441:6:14","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4501:10:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4510:1:14","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"4505:1:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"4569:163:14","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4594:6:14"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4612:3:14"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4617:9:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4608:3:14"},"nodeType":"YulFunctionCall","src":"4608:19:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4602:5:14"},"nodeType":"YulFunctionCall","src":"4602:26:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4587:6:14"},"nodeType":"YulFunctionCall","src":"4587:42:14"},"nodeType":"YulExpressionStatement","src":"4587:42:14"},{"nodeType":"YulAssignment","src":"4646:24:14","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4660:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4668:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4656:3:14"},"nodeType":"YulFunctionCall","src":"4656:14:14"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4646:6:14"}]},{"nodeType":"YulAssignment","src":"4687:31:14","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4704:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4715:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4700:3:14"},"nodeType":"YulFunctionCall","src":"4700:18:14"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4687:9:14"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4535:1:14"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"4538:7:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4532:2:14"},"nodeType":"YulFunctionCall","src":"4532:14:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4547:21:14","statements":[{"nodeType":"YulAssignment","src":"4549:17:14","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4558:1:14"},{"kind":"number","nodeType":"YulLiteral","src":"4561:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4554:3:14"},"nodeType":"YulFunctionCall","src":"4554:12:14"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"4549:1:14"}]}]},"pre":{"nodeType":"YulBlock","src":"4528:3:14","statements":[]},"src":"4524:208:14"},{"body":{"nodeType":"YulBlock","src":"4768:156:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4786:43:14","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4813:3:14"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4818:9:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4809:3:14"},"nodeType":"YulFunctionCall","src":"4809:19:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4803:5:14"},"nodeType":"YulFunctionCall","src":"4803:26:14"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"4790:9:14","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4853:6:14"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"4880:9:14"},{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4895:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4903:4:14","type":"","value":"0x1f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4891:3:14"},"nodeType":"YulFunctionCall","src":"4891:17:14"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"4861:18:14"},"nodeType":"YulFunctionCall","src":"4861:48:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4846:6:14"},"nodeType":"YulFunctionCall","src":"4846:64:14"},"nodeType":"YulExpressionStatement","src":"4846:64:14"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"4751:7:14"},{"name":"newLen","nodeType":"YulIdentifier","src":"4760:6:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4748:2:14"},"nodeType":"YulFunctionCall","src":"4748:19:14"},"nodeType":"YulIf","src":"4745:179:14"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4944:4:14"},{"arguments":[{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4958:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4966:1:14","type":"","value":"2"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"4954:3:14"},"nodeType":"YulFunctionCall","src":"4954:14:14"},{"kind":"number","nodeType":"YulLiteral","src":"4970:1:14","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4950:3:14"},"nodeType":"YulFunctionCall","src":"4950:22:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4937:6:14"},"nodeType":"YulFunctionCall","src":"4937:36:14"},"nodeType":"YulExpressionStatement","src":"4937:36:14"}]},"nodeType":"YulCase","src":"4365:618:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4370:1:14","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"5000:222:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5014:14:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5027:1:14","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"5018:5:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"5051:67:14","statements":[{"nodeType":"YulAssignment","src":"5069:35:14","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"5088:3:14"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"5093:9:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5084:3:14"},"nodeType":"YulFunctionCall","src":"5084:19:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5078:5:14"},"nodeType":"YulFunctionCall","src":"5078:26:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"5069:5:14"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"5044:6:14"},"nodeType":"YulIf","src":"5041:77:14"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5138:4:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5197:5:14"},{"name":"newLen","nodeType":"YulIdentifier","src":"5204:6:14"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"5144:52:14"},"nodeType":"YulFunctionCall","src":"5144:67:14"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"5131:6:14"},"nodeType":"YulFunctionCall","src":"5131:81:14"},"nodeType":"YulExpressionStatement","src":"5131:81:14"}]},"nodeType":"YulCase","src":"4992:230:14","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4345:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"4353:2:14","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4342:2:14"},"nodeType":"YulFunctionCall","src":"4342:14:14"},"nodeType":"YulSwitch","src":"4335:887:14"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"3914:4:14","type":""},{"name":"src","nodeType":"YulTypedName","src":"3920:3:14","type":""}],"src":"3833:1395:14"},{"body":{"nodeType":"YulBlock","src":"5330:73:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5347:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"5352:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5340:6:14"},"nodeType":"YulFunctionCall","src":"5340:19:14"},"nodeType":"YulExpressionStatement","src":"5340:19:14"},{"nodeType":"YulAssignment","src":"5368:29:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5387:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5392:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5383:3:14"},"nodeType":"YulFunctionCall","src":"5383:14:14"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"5368:11:14"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5302:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"5307:6:14","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"5318:11:14","type":""}],"src":"5234:169:14"},{"body":{"nodeType":"YulBlock","src":"5515:75:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5537:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"5545:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5533:3:14"},"nodeType":"YulFunctionCall","src":"5533:14:14"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"5549:33:14","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5526:6:14"},"nodeType":"YulFunctionCall","src":"5526:57:14"},"nodeType":"YulExpressionStatement","src":"5526:57:14"}]},"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"5507:6:14","type":""}],"src":"5409:181:14"},{"body":{"nodeType":"YulBlock","src":"5742:220:14","statements":[{"nodeType":"YulAssignment","src":"5752:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5818:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5823:2:14","type":"","value":"31"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"5759:58:14"},"nodeType":"YulFunctionCall","src":"5759:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"5752:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5924:3:14"}],"functionName":{"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulIdentifier","src":"5835:88:14"},"nodeType":"YulFunctionCall","src":"5835:93:14"},"nodeType":"YulExpressionStatement","src":"5835:93:14"},{"nodeType":"YulAssignment","src":"5937:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5948:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"5953:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5944:3:14"},"nodeType":"YulFunctionCall","src":"5944:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"5937:3:14"}]}]},"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5730:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"5738:3:14","type":""}],"src":"5596:366:14"},{"body":{"nodeType":"YulBlock","src":"6139:248:14","statements":[{"nodeType":"YulAssignment","src":"6149:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6161:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"6172:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6157:3:14"},"nodeType":"YulFunctionCall","src":"6157:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6149:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6196:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"6207:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6192:3:14"},"nodeType":"YulFunctionCall","src":"6192:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6215:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"6221:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6211:3:14"},"nodeType":"YulFunctionCall","src":"6211:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6185:6:14"},"nodeType":"YulFunctionCall","src":"6185:47:14"},"nodeType":"YulExpressionStatement","src":"6185:47:14"},{"nodeType":"YulAssignment","src":"6241:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6375:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6249:124:14"},"nodeType":"YulFunctionCall","src":"6249:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6241:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6119:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6134:4:14","type":""}],"src":"5968:419:14"},{"body":{"nodeType":"YulBlock","src":"6421:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6438:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6441:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6431:6:14"},"nodeType":"YulFunctionCall","src":"6431:88:14"},"nodeType":"YulExpressionStatement","src":"6431:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6535:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6538:4:14","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6528:6:14"},"nodeType":"YulFunctionCall","src":"6528:15:14"},"nodeType":"YulExpressionStatement","src":"6528:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6559:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6562:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6552:6:14"},"nodeType":"YulFunctionCall","src":"6552:15:14"},"nodeType":"YulExpressionStatement","src":"6552:15:14"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"6393:180:14"},{"body":{"nodeType":"YulBlock","src":"6623:147:14","statements":[{"nodeType":"YulAssignment","src":"6633:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6656:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6638:17:14"},"nodeType":"YulFunctionCall","src":"6638:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"6633:1:14"}]},{"nodeType":"YulAssignment","src":"6667:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"6690:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6672:17:14"},"nodeType":"YulFunctionCall","src":"6672:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"6667:1:14"}]},{"nodeType":"YulAssignment","src":"6701:16:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6712:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"6715:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6708:3:14"},"nodeType":"YulFunctionCall","src":"6708:9:14"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"6701:3:14"}]},{"body":{"nodeType":"YulBlock","src":"6741:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"6743:16:14"},"nodeType":"YulFunctionCall","src":"6743:18:14"},"nodeType":"YulExpressionStatement","src":"6743:18:14"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6733:1:14"},{"name":"sum","nodeType":"YulIdentifier","src":"6736:3:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6730:2:14"},"nodeType":"YulFunctionCall","src":"6730:10:14"},"nodeType":"YulIf","src":"6727:36:14"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"6610:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"6613:1:14","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"6619:3:14","type":""}],"src":"6579:191:14"},{"body":{"nodeType":"YulBlock","src":"6841:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6858:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6881:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6863:17:14"},"nodeType":"YulFunctionCall","src":"6863:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6851:6:14"},"nodeType":"YulFunctionCall","src":"6851:37:14"},"nodeType":"YulExpressionStatement","src":"6851:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6829:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"6836:3:14","type":""}],"src":"6776:118:14"},{"body":{"nodeType":"YulBlock","src":"6998:124:14","statements":[{"nodeType":"YulAssignment","src":"7008:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7020:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7031:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7016:3:14"},"nodeType":"YulFunctionCall","src":"7016:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7008:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7088:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7101:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7112:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7097:3:14"},"nodeType":"YulFunctionCall","src":"7097:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"7044:43:14"},"nodeType":"YulFunctionCall","src":"7044:71:14"},"nodeType":"YulExpressionStatement","src":"7044:71:14"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6970:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6982:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6993:4:14","type":""}],"src":"6900:222:14"}]},"contents":"{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\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\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b506040518060400160405280600881526020017f4d6f636b554453430000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d5553444300000000000000000000000000000000000000000000000000000081525081600390816200008e919062000498565b508060049081620000a0919062000498565b505050620000bf3369d3c21bcecceda1000000620000c560201b60201c565b6200068d565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012d90620005da565b60405180910390fd5b620001495f83836200022a60201b60201c565b8060025f8282546200015c919062000627565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200020b919062000672565b60405180910390a3620002265f83836200022f60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b057607f821691505b602082108103620002c657620002c56200026b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200032a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ed565b620003368683620002ed565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003806200037a62000374846200034e565b62000357565b6200034e565b9050919050565b5f819050919050565b6200039b8362000360565b620003b3620003aa8262000387565b848454620002f9565b825550505050565b5f90565b620003c9620003bb565b620003d681848462000390565b505050565b5b81811015620003fd57620003f15f82620003bf565b600181019050620003dc565b5050565b601f8211156200044c576200041681620002cc565b6200042184620002de565b8101602085101562000431578190505b620004496200044085620002de565b830182620003db565b50505b505050565b5f82821c905092915050565b5f6200046e5f198460080262000451565b1980831691505092915050565b5f6200048883836200045d565b9150826002028217905092915050565b620004a38262000234565b67ffffffffffffffff811115620004bf57620004be6200023e565b5b620004cb825462000298565b620004d882828562000401565b5f60209050601f8311600181146200050e575f8415620004f9578287015190505b6200050585826200047b565b86555062000574565b601f1984166200051e86620002cc565b5f5b82811015620005475784890151825560018201915060208501945060208101905062000520565b8683101562000567578489015162000563601f8916826200045d565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620005c2601f836200057c565b9150620005cf826200058c565b602082019050919050565b5f6020820190508181035f830152620005f381620005b4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000633826200034e565b915062000640836200034e565b92508282019050808211156200065b576200065a620005fa565b5b92915050565b6200066c816200034e565b82525050565b5f602082019050620006875f83018462000661565b92915050565b6117e3806200069b5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a578063a0712d6811610064578063a0712d681461024a578063a457c2d714610266578063a9059cbb14610296578063dd62ed3e146102c6576100e8565b806370a08231146101f257806395d89b41146102225780639975038c14610240576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f6565b6040516101019190610ee6565b60405180910390f35b610124600480360381019061011f9190610f97565b610386565b6040516101319190610fef565b60405180910390f35b6101426103a8565b60405161014f9190611017565b60405180910390f35b610172600480360381019061016d9190611030565b6103b1565b60405161017f9190610fef565b60405180910390f35b6101906103df565b60405161019d919061109b565b60405180910390f35b6101c060048036038101906101bb9190610f97565b6103e7565b6040516101cd9190610fef565b60405180910390f35b6101f060048036038101906101eb91906110b4565b61041d565b005b61020c600480360381019061020791906110df565b61042a565b6040516102199190611017565b60405180910390f35b61022a61046f565b6040516102379190610ee6565b60405180910390f35b6102486104ff565b005b610264600480360381019061025f91906110b4565b61055a565b005b610280600480360381019061027b9190610f97565b610567565b60405161028d9190610fef565b60405180910390f35b6102b060048036038101906102ab9190610f97565b6105dc565b6040516102bd9190610fef565b60405180910390f35b6102e060048036038101906102db919061110a565b6105fe565b6040516102ed9190611017565b60405180910390f35b60606003805461030590611175565b80601f016020809104026020016040519081016040528092919081815260200182805461033190611175565b801561037c5780601f106103535761010080835404028352916020019161037c565b820191905f5260205f20905b81548152906001019060200180831161035f57829003601f168201915b5050505050905090565b5f80610390610680565b905061039d818585610687565b600191505092915050565b5f600254905090565b5f806103bb610680565b90506103c885828561084a565b6103d38585856108d5565b60019150509392505050565b5f6012905090565b5f806103f1610680565b905061041281858561040385896105fe565b61040d91906111d2565b610687565b600191505092915050565b6104273382610b41565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461047e90611175565b80601f01602080910402602001604051908101604052809291908181526020018280546104aa90611175565b80156104f55780601f106104cc576101008083540402835291602001916104f5565b820191905f5260205f20905b8154815290600101906020018083116104d857829003601f168201915b5050505050905090565b5f6105093361042a565b90505f811161054d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105449061124f565b60405180910390fd5b6105573382610b41565b50565b6105643382610d04565b50565b5f80610571610680565b90505f61057e82866105fe565b9050838110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906112dd565b60405180910390fd5b6105d08286868403610687565b60019250505092915050565b5f806105e6610680565b90506105f38185856108d5565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec9061136b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a906113f9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161083d9190611017565b60405180910390a3505050565b5f61085584846105fe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108cf57818110156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611461565b60405180910390fd5b6108ce8484848403610687565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906114ef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a89061157d565b60405180910390fd5b6109bc838383610e52565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061160b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b289190611017565b60405180910390a3610b3b848484610e57565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690611699565b60405180910390fd5b610bba825f83610e52565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611727565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cec9190611017565b60405180910390a3610cff835f84610e57565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d699061178f565b60405180910390fd5b610d7d5f8383610e52565b8060025f828254610d8e91906111d2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e3b9190611017565b60405180910390a3610e4e5f8383610e57565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e93578082015181840152602081019050610e78565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb882610e5c565b610ec28185610e66565b9350610ed2818560208601610e76565b610edb81610e9e565b840191505092915050565b5f6020820190508181035f830152610efe8184610eae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3382610f0a565b9050919050565b610f4381610f29565b8114610f4d575f80fd5b50565b5f81359050610f5e81610f3a565b92915050565b5f819050919050565b610f7681610f64565b8114610f80575f80fd5b50565b5f81359050610f9181610f6d565b92915050565b5f8060408385031215610fad57610fac610f06565b5b5f610fba85828601610f50565b9250506020610fcb85828601610f83565b9150509250929050565b5f8115159050919050565b610fe981610fd5565b82525050565b5f6020820190506110025f830184610fe0565b92915050565b61101181610f64565b82525050565b5f60208201905061102a5f830184611008565b92915050565b5f805f6060848603121561104757611046610f06565b5b5f61105486828701610f50565b935050602061106586828701610f50565b925050604061107686828701610f83565b9150509250925092565b5f60ff82169050919050565b61109581611080565b82525050565b5f6020820190506110ae5f83018461108c565b92915050565b5f602082840312156110c9576110c8610f06565b5b5f6110d684828501610f83565b91505092915050565b5f602082840312156110f4576110f3610f06565b5b5f61110184828501610f50565b91505092915050565b5f80604083850312156111205761111f610f06565b5b5f61112d85828601610f50565b925050602061113e85828601610f50565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061118c57607f821691505b60208210810361119f5761119e611148565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111dc82610f64565b91506111e783610f64565b92508282019050808211156111ff576111fe6111a5565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e000000000000005f82015250565b5f611239601983610e66565b915061124482611205565b602082019050919050565b5f6020820190508181035f8301526112668161122d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112c7602583610e66565b91506112d28261126d565b604082019050919050565b5f6020820190508181035f8301526112f4816112bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611355602483610e66565b9150611360826112fb565b604082019050919050565b5f6020820190508181035f83015261138281611349565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113e3602283610e66565b91506113ee82611389565b604082019050919050565b5f6020820190508181035f830152611410816113d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61144b601d83610e66565b915061145682611417565b602082019050919050565b5f6020820190508181035f8301526114788161143f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6114d9602583610e66565b91506114e48261147f565b604082019050919050565b5f6020820190508181035f830152611506816114cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611567602383610e66565b91506115728261150d565b604082019050919050565b5f6020820190508181035f8301526115948161155b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6115f5602683610e66565b91506116008261159b565b604082019050919050565b5f6020820190508181035f830152611622816115e9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611683602183610e66565b915061168e82611629565b604082019050919050565b5f6020820190508181035f8301526116b081611677565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611711602283610e66565b915061171c826116b7565b604082019050919050565b5f6020820190508181035f83015261173e81611705565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611779601f83610e66565b915061178482611745565b602082019050919050565b5f6020820190508181035f8301526117a68161176d565b905091905056fea26469706673582212201d6c0a63de180dcbafc7f1d7104448374c63b6bd819bff8f3fff08e0a9233faf64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D6F636B55445343000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D55534443000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8E SWAP2 SWAP1 PUSH3 0x498 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA0 SWAP2 SWAP1 PUSH3 0x498 JUMP JUMPDEST POP POP POP PUSH3 0xBF CALLER PUSH10 0xD3C21BCECCEDA1000000 PUSH3 0xC5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x68D JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x136 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x12D SWAP1 PUSH3 0x5DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x149 PUSH0 DUP4 DUP4 PUSH3 0x22A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH3 0x15C SWAP2 SWAP1 PUSH3 0x627 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x20B SWAP2 SWAP1 PUSH3 0x672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x226 PUSH0 DUP4 DUP4 PUSH3 0x22F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2B0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2C6 JUMPI PUSH3 0x2C5 PUSH3 0x26B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x32A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x2ED JUMP JUMPDEST PUSH3 0x336 DUP7 DUP4 PUSH3 0x2ED JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x380 PUSH3 0x37A PUSH3 0x374 DUP5 PUSH3 0x34E JUMP JUMPDEST PUSH3 0x357 JUMP JUMPDEST PUSH3 0x34E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x39B DUP4 PUSH3 0x360 JUMP JUMPDEST PUSH3 0x3B3 PUSH3 0x3AA DUP3 PUSH3 0x387 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x2F9 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x3C9 PUSH3 0x3BB JUMP JUMPDEST PUSH3 0x3D6 DUP2 DUP5 DUP5 PUSH3 0x390 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x3FD JUMPI PUSH3 0x3F1 PUSH0 DUP3 PUSH3 0x3BF JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x3DC JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x44C JUMPI PUSH3 0x416 DUP2 PUSH3 0x2CC JUMP JUMPDEST PUSH3 0x421 DUP5 PUSH3 0x2DE JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x431 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x449 PUSH3 0x440 DUP6 PUSH3 0x2DE JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x3DB JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x46E PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x451 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x488 DUP4 DUP4 PUSH3 0x45D JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4A3 DUP3 PUSH3 0x234 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4BF JUMPI PUSH3 0x4BE PUSH3 0x23E JUMP JUMPDEST JUMPDEST PUSH3 0x4CB DUP3 SLOAD PUSH3 0x298 JUMP JUMPDEST PUSH3 0x4D8 DUP3 DUP3 DUP6 PUSH3 0x401 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x50E JUMPI PUSH0 DUP5 ISZERO PUSH3 0x4F9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x505 DUP6 DUP3 PUSH3 0x47B JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x574 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x51E DUP7 PUSH3 0x2CC JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x547 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x520 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x567 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x563 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x45D JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH3 0x5C2 PUSH1 0x1F DUP4 PUSH3 0x57C JUMP JUMPDEST SWAP2 POP PUSH3 0x5CF DUP3 PUSH3 0x58C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH3 0x5F3 DUP2 PUSH3 0x5B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH3 0x633 DUP3 PUSH3 0x34E JUMP JUMPDEST SWAP2 POP PUSH3 0x640 DUP4 PUSH3 0x34E JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH3 0x65B JUMPI PUSH3 0x65A PUSH3 0x5FA JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x66C DUP2 PUSH3 0x34E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x687 PUSH0 DUP4 ADD DUP5 PUSH3 0x661 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x17E3 DUP1 PUSH3 0x69B PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE8 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8A JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x24A JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x296 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2C6 JUMPI PUSH2 0xE8 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x9975038C EQ PUSH2 0x240 JUMPI PUSH2 0xE8 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xC6 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x158 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x188 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1D6 JUMPI PUSH2 0xE8 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEC JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x13A JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xF4 PUSH2 0x2F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x101 SWAP2 SWAP1 PUSH2 0xEE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x124 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11F SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x131 SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x142 PUSH2 0x3A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14F SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x172 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16D SWAP2 SWAP1 PUSH2 0x1030 JUMP JUMPDEST PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17F SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x190 PUSH2 0x3DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19D SWAP2 SWAP1 PUSH2 0x109B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x3E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x10B4 JUMP JUMPDEST PUSH2 0x41D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x10DF JUMP JUMPDEST PUSH2 0x42A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22A PUSH2 0x46F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x237 SWAP2 SWAP1 PUSH2 0xEE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x248 PUSH2 0x4FF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x264 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25F SWAP2 SWAP1 PUSH2 0x10B4 JUMP JUMPDEST PUSH2 0x55A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x280 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x27B SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x567 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28D SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AB SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BD SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DB SWAP2 SWAP1 PUSH2 0x110A JUMP JUMPDEST PUSH2 0x5FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2ED SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x305 SWAP1 PUSH2 0x1175 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 0x331 SWAP1 PUSH2 0x1175 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x37C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x353 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x37C 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 0x35F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x390 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x39D DUP2 DUP6 DUP6 PUSH2 0x687 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3BB PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x3C8 DUP6 DUP3 DUP6 PUSH2 0x84A JUMP JUMPDEST PUSH2 0x3D3 DUP6 DUP6 DUP6 PUSH2 0x8D5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3F1 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x412 DUP2 DUP6 DUP6 PUSH2 0x403 DUP6 DUP10 PUSH2 0x5FE JUMP JUMPDEST PUSH2 0x40D SWAP2 SWAP1 PUSH2 0x11D2 JUMP JUMPDEST PUSH2 0x687 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x427 CALLER DUP3 PUSH2 0xB41 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x47E SWAP1 PUSH2 0x1175 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 0x4AA SWAP1 PUSH2 0x1175 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4CC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4F5 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 0x4D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x509 CALLER PUSH2 0x42A JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT PUSH2 0x54D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x544 SWAP1 PUSH2 0x124F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x557 CALLER DUP3 PUSH2 0xB41 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x564 CALLER DUP3 PUSH2 0xD04 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x571 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x57E DUP3 DUP7 PUSH2 0x5FE JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x5C3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5BA SWAP1 PUSH2 0x12DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5D0 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x687 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x5E6 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x5F3 DUP2 DUP6 DUP6 PUSH2 0x8D5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x6F5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6EC SWAP1 PUSH2 0x136B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x763 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75A SWAP1 PUSH2 0x13F9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x83D SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x855 DUP5 DUP5 PUSH2 0x5FE JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x8CF JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x8C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8B8 SWAP1 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8CE DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x687 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x93A SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9A8 SWAP1 PUSH2 0x157D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9BC DUP4 DUP4 DUP4 PUSH2 0xE52 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA36 SWAP1 PUSH2 0x160B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB28 SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xB3B DUP5 DUP5 DUP5 PUSH2 0xE57 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBAF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBA6 SWAP1 PUSH2 0x1699 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBBA DUP3 PUSH0 DUP4 PUSH2 0xE52 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC3D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC34 SWAP1 PUSH2 0x1727 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xCEC SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xCFF DUP4 PUSH0 DUP5 PUSH2 0xE57 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xD72 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD69 SWAP1 PUSH2 0x178F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD7D PUSH0 DUP4 DUP4 PUSH2 0xE52 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD8E SWAP2 SWAP1 PUSH2 0x11D2 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE3B SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE4E PUSH0 DUP4 DUP4 PUSH2 0xE57 JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE93 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xE78 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xEB8 DUP3 PUSH2 0xE5C JUMP JUMPDEST PUSH2 0xEC2 DUP2 DUP6 PUSH2 0xE66 JUMP JUMPDEST SWAP4 POP PUSH2 0xED2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xE76 JUMP JUMPDEST PUSH2 0xEDB DUP2 PUSH2 0xE9E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xEFE DUP2 DUP5 PUSH2 0xEAE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF33 DUP3 PUSH2 0xF0A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF43 DUP2 PUSH2 0xF29 JUMP JUMPDEST DUP2 EQ PUSH2 0xF4D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF5E DUP2 PUSH2 0xF3A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF76 DUP2 PUSH2 0xF64 JUMP JUMPDEST DUP2 EQ PUSH2 0xF80 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF91 DUP2 PUSH2 0xF6D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFAD JUMPI PUSH2 0xFAC PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xFBA DUP6 DUP3 DUP7 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xFCB DUP6 DUP3 DUP7 ADD PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE9 DUP2 PUSH2 0xFD5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1002 PUSH0 DUP4 ADD DUP5 PUSH2 0xFE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1011 DUP2 PUSH2 0xF64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x102A PUSH0 DUP4 ADD DUP5 PUSH2 0x1008 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1047 JUMPI PUSH2 0x1046 PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1054 DUP7 DUP3 DUP8 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1065 DUP7 DUP3 DUP8 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1076 DUP7 DUP3 DUP8 ADD PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1095 DUP2 PUSH2 0x1080 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x10AE PUSH0 DUP4 ADD DUP5 PUSH2 0x108C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10C9 JUMPI PUSH2 0x10C8 PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x10D6 DUP5 DUP3 DUP6 ADD PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10F4 JUMPI PUSH2 0x10F3 PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1101 DUP5 DUP3 DUP6 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1120 JUMPI PUSH2 0x111F PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x112D DUP6 DUP3 DUP7 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x113E DUP6 DUP3 DUP7 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x118C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x119F JUMPI PUSH2 0x119E PUSH2 0x1148 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x11DC DUP3 PUSH2 0xF64 JUMP JUMPDEST SWAP2 POP PUSH2 0x11E7 DUP4 PUSH2 0xF64 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x11FF JUMPI PUSH2 0x11FE PUSH2 0x11A5 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4D6F636B555344543A204E6F7468696E6720746F206275726E00000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1239 PUSH1 0x19 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1244 DUP3 PUSH2 0x1205 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1266 DUP2 PUSH2 0x122D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x12C7 PUSH1 0x25 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x12D2 DUP3 PUSH2 0x126D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12F4 DUP2 PUSH2 0x12BB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1355 PUSH1 0x24 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1360 DUP3 PUSH2 0x12FB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1382 DUP2 PUSH2 0x1349 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x13E3 PUSH1 0x22 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x13EE DUP3 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1410 DUP2 PUSH2 0x13D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x144B PUSH1 0x1D DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1456 DUP3 PUSH2 0x1417 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1478 DUP2 PUSH2 0x143F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x14D9 PUSH1 0x25 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x14E4 DUP3 PUSH2 0x147F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1506 DUP2 PUSH2 0x14CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1567 PUSH1 0x23 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1572 DUP3 PUSH2 0x150D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1594 DUP2 PUSH2 0x155B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x15F5 PUSH1 0x26 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1600 DUP3 PUSH2 0x159B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1622 DUP2 PUSH2 0x15E9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1683 PUSH1 0x21 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x168E DUP3 PUSH2 0x1629 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x16B0 DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1711 PUSH1 0x22 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x171C DUP3 PUSH2 0x16B7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x173E DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1779 PUSH1 0x1F DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1784 DUP3 PUSH2 0x1745 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x17A6 DUP2 PUSH2 0x176D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR PUSH13 0xA63DE180DCBAFC7F1D7104448 CALLDATACOPY 0x4C PUSH4 0xB6BD819B SELFDESTRUCT DUP16 EXTCODEHASH SELFDESTRUCT ADDMOD 0xE0 0xA9 0x23 EXTCODEHASH 0xAF PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"162:496:13:-:0;;;195:89;;;;;;;;;;1980:113:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;246:31:13::1;252:10;264:12;246:5;;;:31;;:::i;:::-;162:496:::0;;8520:535:6;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;;;:49;;:::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;;;:48;;:::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:14:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5234:169::-;5318:11;5352:6;5347:3;5340:19;5392:4;5387:3;5383:14;5368:29;;5234:169;;;;:::o;5409:181::-;5549:33;5545:1;5537:6;5533:14;5526:57;5409:181;:::o;5596:366::-;5738:3;5759:67;5823:2;5818:3;5759:67;:::i;:::-;5752:74;;5835:93;5924:3;5835:93;:::i;:::-;5953:2;5948:3;5944:12;5937:19;;5596:366;;;:::o;5968:419::-;6134:4;6172:2;6161:9;6157:18;6149:26;;6221:9;6215:4;6211:20;6207:1;6196:9;6192:17;6185:47;6249:131;6375:4;6249:131;:::i;:::-;6241:139;;5968:419;;;:::o;6393:180::-;6441:77;6438:1;6431:88;6538:4;6535:1;6528:15;6562:4;6559:1;6552:15;6579:191;6619:3;6638:20;6656:1;6638:20;:::i;:::-;6633:25;;6672:20;6690:1;6672:20;:::i;:::-;6667:25;;6715:1;6712;6708:9;6701:16;;6736:3;6733:1;6730:10;6727:36;;;6743:18;;:::i;:::-;6727:36;6579:191;;;;:::o;6776:118::-;6863:24;6881:5;6863:24;:::i;:::-;6858:3;6851:37;6776:118;;:::o;6900:222::-;6993:4;7031:2;7020:9;7016:18;7008:26;;7044:71;7112:1;7101:9;7097:17;7088:6;7044:71;:::i;:::-;6900:222;;;;:::o;162:496:13:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1503":{"entryPoint":3671,"id":1503,"parameterSlots":3,"returnSlots":0},"@_approve_1438":{"entryPoint":1671,"id":1438,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1492":{"entryPoint":3666,"id":1492,"parameterSlots":3,"returnSlots":0},"@_burn_1393":{"entryPoint":2881,"id":1393,"parameterSlots":2,"returnSlots":0},"@_mint_1321":{"entryPoint":3332,"id":1321,"parameterSlots":2,"returnSlots":0},"@_msgSender_1619":{"entryPoint":1664,"id":1619,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1481":{"entryPoint":2122,"id":1481,"parameterSlots":3,"returnSlots":0},"@_transfer_1264":{"entryPoint":2261,"id":1264,"parameterSlots":3,"returnSlots":0},"@allowance_1059":{"entryPoint":1534,"id":1059,"parameterSlots":2,"returnSlots":1},"@approve_1084":{"entryPoint":902,"id":1084,"parameterSlots":2,"returnSlots":1},"@balanceOf_1016":{"entryPoint":1066,"id":1016,"parameterSlots":1,"returnSlots":1},"@burnAll_2994":{"entryPoint":1279,"id":2994,"parameterSlots":0,"returnSlots":0},"@burn_2970":{"entryPoint":1053,"id":2970,"parameterSlots":1,"returnSlots":0},"@decimals_992":{"entryPoint":991,"id":992,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_1187":{"entryPoint":1383,"id":1187,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_1146":{"entryPoint":999,"id":1146,"parameterSlots":2,"returnSlots":1},"@mint_2958":{"entryPoint":1370,"id":2958,"parameterSlots":1,"returnSlots":0},"@name_972":{"entryPoint":758,"id":972,"parameterSlots":0,"returnSlots":1},"@symbol_982":{"entryPoint":1135,"id":982,"parameterSlots":0,"returnSlots":1},"@totalSupply_1002":{"entryPoint":936,"id":1002,"parameterSlots":0,"returnSlots":1},"@transferFrom_1117":{"entryPoint":945,"id":1117,"parameterSlots":3,"returnSlots":1},"@transfer_1041":{"entryPoint":1500,"id":1041,"parameterSlots":2,"returnSlots":1},"abi_decode_t_address":{"entryPoint":3920,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":3971,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":4319,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4362,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":4144,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":3991,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256":{"entryPoint":4276,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":4064,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":3758,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack":{"entryPoint":5467,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack":{"entryPoint":5893,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack":{"entryPoint":5079,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack":{"entryPoint":5183,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack":{"entryPoint":5609,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack":{"entryPoint":4653,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack":{"entryPoint":5751,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack":{"entryPoint":5325,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack":{"entryPoint":4937,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack":{"entryPoint":4795,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack":{"entryPoint":5997,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":4104,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":4236,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":4079,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3814,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5501,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5927,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5113,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5217,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5643,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4687,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5785,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5359,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4971,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4829,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":6031,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":4119,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":4251,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":3676,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":3686,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":4562,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":3881,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":4053,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":3850,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":3940,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":4224,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":3702,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4469,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":4517,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x22":{"entryPoint":4424,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":3846,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":3742,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f":{"entryPoint":5389,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd":{"entryPoint":5815,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029":{"entryPoint":5001,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe":{"entryPoint":5143,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6":{"entryPoint":5531,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09":{"entryPoint":4613,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f":{"entryPoint":5673,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea":{"entryPoint":5247,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208":{"entryPoint":4859,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8":{"entryPoint":4717,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e":{"entryPoint":5957,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":3898,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":3949,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:18043:14","statements":[{"body":{"nodeType":"YulBlock","src":"66:40:14","statements":[{"nodeType":"YulAssignment","src":"77:22:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"87:5:14"},"nodeType":"YulFunctionCall","src":"87:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"77:6:14"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"49:5:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"59:6:14","type":""}],"src":"7:99:14"},{"body":{"nodeType":"YulBlock","src":"208:73:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"225:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"230:6:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"218:6:14"},"nodeType":"YulFunctionCall","src":"218:19:14"},"nodeType":"YulExpressionStatement","src":"218:19:14"},{"nodeType":"YulAssignment","src":"246:29:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"265:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"270:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"261:3:14"},"nodeType":"YulFunctionCall","src":"261:14:14"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"246:11:14"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"180:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"185:6:14","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"196:11:14","type":""}],"src":"112:169:14"},{"body":{"nodeType":"YulBlock","src":"349:184:14","statements":[{"nodeType":"YulVariableDeclaration","src":"359:10:14","value":{"kind":"number","nodeType":"YulLiteral","src":"368:1:14","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"363:1:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"428:63:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"453:3:14"},{"name":"i","nodeType":"YulIdentifier","src":"458:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"449:3:14"},"nodeType":"YulFunctionCall","src":"449:11:14"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"472:3:14"},{"name":"i","nodeType":"YulIdentifier","src":"477:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"468:3:14"},"nodeType":"YulFunctionCall","src":"468:11:14"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"462:5:14"},"nodeType":"YulFunctionCall","src":"462:18:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"442:6:14"},"nodeType":"YulFunctionCall","src":"442:39:14"},"nodeType":"YulExpressionStatement","src":"442:39:14"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"389:1:14"},{"name":"length","nodeType":"YulIdentifier","src":"392:6:14"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"386:2:14"},"nodeType":"YulFunctionCall","src":"386:13:14"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"400:19:14","statements":[{"nodeType":"YulAssignment","src":"402:15:14","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"411:1:14"},{"kind":"number","nodeType":"YulLiteral","src":"414:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"407:3:14"},"nodeType":"YulFunctionCall","src":"407:10:14"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"402:1:14"}]}]},"pre":{"nodeType":"YulBlock","src":"382:3:14","statements":[]},"src":"378:113:14"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"511:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"516:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"507:3:14"},"nodeType":"YulFunctionCall","src":"507:16:14"},{"kind":"number","nodeType":"YulLiteral","src":"525:1:14","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"500:6:14"},"nodeType":"YulFunctionCall","src":"500:27:14"},"nodeType":"YulExpressionStatement","src":"500:27:14"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"331:3:14","type":""},{"name":"dst","nodeType":"YulTypedName","src":"336:3:14","type":""},{"name":"length","nodeType":"YulTypedName","src":"341:6:14","type":""}],"src":"287:246:14"},{"body":{"nodeType":"YulBlock","src":"587:54:14","statements":[{"nodeType":"YulAssignment","src":"597:38:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"615:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"622:2:14","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"611:3:14"},"nodeType":"YulFunctionCall","src":"611:14:14"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"631:2:14","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"627:3:14"},"nodeType":"YulFunctionCall","src":"627:7:14"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"607:3:14"},"nodeType":"YulFunctionCall","src":"607:28:14"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"597:6:14"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"570:5:14","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"580:6:14","type":""}],"src":"539:102:14"},{"body":{"nodeType":"YulBlock","src":"739:285:14","statements":[{"nodeType":"YulVariableDeclaration","src":"749:53:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"796:5:14"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"763:32:14"},"nodeType":"YulFunctionCall","src":"763:39:14"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"753:6:14","type":""}]},{"nodeType":"YulAssignment","src":"811:78:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"877:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"882:6:14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"818:58:14"},"nodeType":"YulFunctionCall","src":"818:71:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"811:3:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"937:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"944:4:14","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"933:3:14"},"nodeType":"YulFunctionCall","src":"933:16:14"},{"name":"pos","nodeType":"YulIdentifier","src":"951:3:14"},{"name":"length","nodeType":"YulIdentifier","src":"956:6:14"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"898:34:14"},"nodeType":"YulFunctionCall","src":"898:65:14"},"nodeType":"YulExpressionStatement","src":"898:65:14"},{"nodeType":"YulAssignment","src":"972:46:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"983:3:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1010:6:14"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"988:21:14"},"nodeType":"YulFunctionCall","src":"988:29:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"979:3:14"},"nodeType":"YulFunctionCall","src":"979:39:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"972:3:14"}]}]},"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"720:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"727:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"735:3:14","type":""}],"src":"647:377:14"},{"body":{"nodeType":"YulBlock","src":"1148:195:14","statements":[{"nodeType":"YulAssignment","src":"1158:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1170:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1181:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1166:3:14"},"nodeType":"YulFunctionCall","src":"1166:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1158:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1205:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"1216:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1201:3:14"},"nodeType":"YulFunctionCall","src":"1201:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1224:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"1230:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1220:3:14"},"nodeType":"YulFunctionCall","src":"1220:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1194:6:14"},"nodeType":"YulFunctionCall","src":"1194:47:14"},"nodeType":"YulExpressionStatement","src":"1194:47:14"},{"nodeType":"YulAssignment","src":"1250:86:14","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1322:6:14"},{"name":"tail","nodeType":"YulIdentifier","src":"1331:4:14"}],"functionName":{"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1258:63:14"},"nodeType":"YulFunctionCall","src":"1258:78:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1250:4:14"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1120:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1132:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1143:4:14","type":""}],"src":"1030:313:14"},{"body":{"nodeType":"YulBlock","src":"1389:35:14","statements":[{"nodeType":"YulAssignment","src":"1399:19:14","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1415:2:14","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1409:5:14"},"nodeType":"YulFunctionCall","src":"1409:9:14"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1399:6:14"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1382:6:14","type":""}],"src":"1349:75:14"},{"body":{"nodeType":"YulBlock","src":"1519:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1536:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1539:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1529:6:14"},"nodeType":"YulFunctionCall","src":"1529:12:14"},"nodeType":"YulExpressionStatement","src":"1529:12:14"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"1430:117:14"},{"body":{"nodeType":"YulBlock","src":"1642:28:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1659:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1662:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1652:6:14"},"nodeType":"YulFunctionCall","src":"1652:12:14"},"nodeType":"YulExpressionStatement","src":"1652:12:14"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"1553:117:14"},{"body":{"nodeType":"YulBlock","src":"1721:81:14","statements":[{"nodeType":"YulAssignment","src":"1731:65:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1746:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"1753:42:14","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1742:3:14"},"nodeType":"YulFunctionCall","src":"1742:54:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1731:7:14"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1703:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1713:7:14","type":""}],"src":"1676:126:14"},{"body":{"nodeType":"YulBlock","src":"1853:51:14","statements":[{"nodeType":"YulAssignment","src":"1863:35:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1892:5:14"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"1874:17:14"},"nodeType":"YulFunctionCall","src":"1874:24:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1863:7:14"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1835:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1845:7:14","type":""}],"src":"1808:96:14"},{"body":{"nodeType":"YulBlock","src":"1953:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"2010:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2019:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2022:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2012:6:14"},"nodeType":"YulFunctionCall","src":"2012:12:14"},"nodeType":"YulExpressionStatement","src":"2012:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1976:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2001:5:14"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"1983:17:14"},"nodeType":"YulFunctionCall","src":"1983:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1973:2:14"},"nodeType":"YulFunctionCall","src":"1973:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1966:6:14"},"nodeType":"YulFunctionCall","src":"1966:43:14"},"nodeType":"YulIf","src":"1963:63:14"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1946:5:14","type":""}],"src":"1910:122:14"},{"body":{"nodeType":"YulBlock","src":"2090:87:14","statements":[{"nodeType":"YulAssignment","src":"2100:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2122:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2109:12:14"},"nodeType":"YulFunctionCall","src":"2109:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2100:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2165:5:14"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"2138:26:14"},"nodeType":"YulFunctionCall","src":"2138:33:14"},"nodeType":"YulExpressionStatement","src":"2138:33:14"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2068:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2076:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2084:5:14","type":""}],"src":"2038:139:14"},{"body":{"nodeType":"YulBlock","src":"2228:32:14","statements":[{"nodeType":"YulAssignment","src":"2238:16:14","value":{"name":"value","nodeType":"YulIdentifier","src":"2249:5:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"2238:7:14"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2210:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"2220:7:14","type":""}],"src":"2183:77:14"},{"body":{"nodeType":"YulBlock","src":"2309:79:14","statements":[{"body":{"nodeType":"YulBlock","src":"2366:16:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2375:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2378:1:14","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2368:6:14"},"nodeType":"YulFunctionCall","src":"2368:12:14"},"nodeType":"YulExpressionStatement","src":"2368:12:14"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2332:5:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2357:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"2339:17:14"},"nodeType":"YulFunctionCall","src":"2339:24:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2329:2:14"},"nodeType":"YulFunctionCall","src":"2329:35:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2322:6:14"},"nodeType":"YulFunctionCall","src":"2322:43:14"},"nodeType":"YulIf","src":"2319:63:14"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2302:5:14","type":""}],"src":"2266:122:14"},{"body":{"nodeType":"YulBlock","src":"2446:87:14","statements":[{"nodeType":"YulAssignment","src":"2456:29:14","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2478:6:14"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2465:12:14"},"nodeType":"YulFunctionCall","src":"2465:20:14"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2456:5:14"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2521:5:14"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"2494:26:14"},"nodeType":"YulFunctionCall","src":"2494:33:14"},"nodeType":"YulExpressionStatement","src":"2494:33:14"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2424:6:14","type":""},{"name":"end","nodeType":"YulTypedName","src":"2432:3:14","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2440:5:14","type":""}],"src":"2394:139:14"},{"body":{"nodeType":"YulBlock","src":"2622:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"2668:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2670:77:14"},"nodeType":"YulFunctionCall","src":"2670:79:14"},"nodeType":"YulExpressionStatement","src":"2670:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2643:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"2652:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2639:3:14"},"nodeType":"YulFunctionCall","src":"2639:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"2664:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2635:3:14"},"nodeType":"YulFunctionCall","src":"2635:32:14"},"nodeType":"YulIf","src":"2632:119:14"},{"nodeType":"YulBlock","src":"2761:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2776:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2790:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2780:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2805:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2840:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2851:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2836:3:14"},"nodeType":"YulFunctionCall","src":"2836:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2860:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"2815:20:14"},"nodeType":"YulFunctionCall","src":"2815:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2805:6:14"}]}]},{"nodeType":"YulBlock","src":"2888:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"2903:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"2917:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2907:6:14","type":""}]},{"nodeType":"YulAssignment","src":"2933:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2968:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"2979:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2964:3:14"},"nodeType":"YulFunctionCall","src":"2964:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2988:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2943:20:14"},"nodeType":"YulFunctionCall","src":"2943:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2933:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2584:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2595:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2607:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2615:6:14","type":""}],"src":"2539:474:14"},{"body":{"nodeType":"YulBlock","src":"3061:48:14","statements":[{"nodeType":"YulAssignment","src":"3071:32:14","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3096:5:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3089:6:14"},"nodeType":"YulFunctionCall","src":"3089:13:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3082:6:14"},"nodeType":"YulFunctionCall","src":"3082:21:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"3071:7:14"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3043:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"3053:7:14","type":""}],"src":"3019:90:14"},{"body":{"nodeType":"YulBlock","src":"3174:50:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3191:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3211:5:14"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"3196:14:14"},"nodeType":"YulFunctionCall","src":"3196:21:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3184:6:14"},"nodeType":"YulFunctionCall","src":"3184:34:14"},"nodeType":"YulExpressionStatement","src":"3184:34:14"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3162:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3169:3:14","type":""}],"src":"3115:109:14"},{"body":{"nodeType":"YulBlock","src":"3322:118:14","statements":[{"nodeType":"YulAssignment","src":"3332:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3344:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3355:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3340:3:14"},"nodeType":"YulFunctionCall","src":"3340:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3332:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3406:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3419:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3430:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3415:3:14"},"nodeType":"YulFunctionCall","src":"3415:17:14"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"3368:37:14"},"nodeType":"YulFunctionCall","src":"3368:65:14"},"nodeType":"YulExpressionStatement","src":"3368:65:14"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3294:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3306:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3317:4:14","type":""}],"src":"3230:210:14"},{"body":{"nodeType":"YulBlock","src":"3511:53:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3528:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3551:5:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3533:17:14"},"nodeType":"YulFunctionCall","src":"3533:24:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3521:6:14"},"nodeType":"YulFunctionCall","src":"3521:37:14"},"nodeType":"YulExpressionStatement","src":"3521:37:14"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3499:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3506:3:14","type":""}],"src":"3446:118:14"},{"body":{"nodeType":"YulBlock","src":"3668:124:14","statements":[{"nodeType":"YulAssignment","src":"3678:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3690:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3701:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3686:3:14"},"nodeType":"YulFunctionCall","src":"3686:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3678:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3758:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3771:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"3782:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3767:3:14"},"nodeType":"YulFunctionCall","src":"3767:17:14"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"3714:43:14"},"nodeType":"YulFunctionCall","src":"3714:71:14"},"nodeType":"YulExpressionStatement","src":"3714:71:14"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3640:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3652:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3663:4:14","type":""}],"src":"3570:222:14"},{"body":{"nodeType":"YulBlock","src":"3898:519:14","statements":[{"body":{"nodeType":"YulBlock","src":"3944:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3946:77:14"},"nodeType":"YulFunctionCall","src":"3946:79:14"},"nodeType":"YulExpressionStatement","src":"3946:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3919:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"3928:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3915:3:14"},"nodeType":"YulFunctionCall","src":"3915:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"3940:2:14","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3911:3:14"},"nodeType":"YulFunctionCall","src":"3911:32:14"},"nodeType":"YulIf","src":"3908:119:14"},{"nodeType":"YulBlock","src":"4037:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4052:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4066:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4056:6:14","type":""}]},{"nodeType":"YulAssignment","src":"4081:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4116:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"4127:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4112:3:14"},"nodeType":"YulFunctionCall","src":"4112:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4136:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4091:20:14"},"nodeType":"YulFunctionCall","src":"4091:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4081:6:14"}]}]},{"nodeType":"YulBlock","src":"4164:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4179:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4193:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4183:6:14","type":""}]},{"nodeType":"YulAssignment","src":"4209:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4244:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"4255:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4240:3:14"},"nodeType":"YulFunctionCall","src":"4240:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4264:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4219:20:14"},"nodeType":"YulFunctionCall","src":"4219:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4209:6:14"}]}]},{"nodeType":"YulBlock","src":"4292:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"4307:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"4321:2:14","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4311:6:14","type":""}]},{"nodeType":"YulAssignment","src":"4337:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4372:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"4383:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4368:3:14"},"nodeType":"YulFunctionCall","src":"4368:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4392:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"4347:20:14"},"nodeType":"YulFunctionCall","src":"4347:53:14"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"4337:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3852:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3863:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3875:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3883:6:14","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3891:6:14","type":""}],"src":"3798:619:14"},{"body":{"nodeType":"YulBlock","src":"4466:43:14","statements":[{"nodeType":"YulAssignment","src":"4476:27:14","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4491:5:14"},{"kind":"number","nodeType":"YulLiteral","src":"4498:4:14","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4487:3:14"},"nodeType":"YulFunctionCall","src":"4487:16:14"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4476:7:14"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4448:5:14","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4458:7:14","type":""}],"src":"4423:86:14"},{"body":{"nodeType":"YulBlock","src":"4576:51:14","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4593:3:14"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4614:5:14"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"4598:15:14"},"nodeType":"YulFunctionCall","src":"4598:22:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4586:6:14"},"nodeType":"YulFunctionCall","src":"4586:35:14"},"nodeType":"YulExpressionStatement","src":"4586:35:14"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4564:5:14","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4571:3:14","type":""}],"src":"4515:112:14"},{"body":{"nodeType":"YulBlock","src":"4727:120:14","statements":[{"nodeType":"YulAssignment","src":"4737:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4749:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4760:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4745:3:14"},"nodeType":"YulFunctionCall","src":"4745:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4737:4:14"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4813:6:14"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4826:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"4837:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4822:3:14"},"nodeType":"YulFunctionCall","src":"4822:17:14"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"4773:39:14"},"nodeType":"YulFunctionCall","src":"4773:67:14"},"nodeType":"YulExpressionStatement","src":"4773:67:14"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4699:9:14","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4711:6:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4722:4:14","type":""}],"src":"4633:214:14"},{"body":{"nodeType":"YulBlock","src":"4919:263:14","statements":[{"body":{"nodeType":"YulBlock","src":"4965:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"4967:77:14"},"nodeType":"YulFunctionCall","src":"4967:79:14"},"nodeType":"YulExpressionStatement","src":"4967:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4940:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"4949:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4936:3:14"},"nodeType":"YulFunctionCall","src":"4936:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"4961:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4932:3:14"},"nodeType":"YulFunctionCall","src":"4932:32:14"},"nodeType":"YulIf","src":"4929:119:14"},{"nodeType":"YulBlock","src":"5058:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5073:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5087:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5077:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5102:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5137:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5148:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5133:3:14"},"nodeType":"YulFunctionCall","src":"5133:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5157:7:14"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"5112:20:14"},"nodeType":"YulFunctionCall","src":"5112:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5102:6:14"}]}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4889:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4900:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4912:6:14","type":""}],"src":"4853:329:14"},{"body":{"nodeType":"YulBlock","src":"5254:263:14","statements":[{"body":{"nodeType":"YulBlock","src":"5300:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5302:77:14"},"nodeType":"YulFunctionCall","src":"5302:79:14"},"nodeType":"YulExpressionStatement","src":"5302:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5275:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"5284:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5271:3:14"},"nodeType":"YulFunctionCall","src":"5271:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"5296:2:14","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5267:3:14"},"nodeType":"YulFunctionCall","src":"5267:32:14"},"nodeType":"YulIf","src":"5264:119:14"},{"nodeType":"YulBlock","src":"5393:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5408:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5422:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5412:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5437:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5472:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5483:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5468:3:14"},"nodeType":"YulFunctionCall","src":"5468:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5492:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5447:20:14"},"nodeType":"YulFunctionCall","src":"5447:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5437:6:14"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5224:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5235:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5247:6:14","type":""}],"src":"5188:329:14"},{"body":{"nodeType":"YulBlock","src":"5606:391:14","statements":[{"body":{"nodeType":"YulBlock","src":"5652:83:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5654:77:14"},"nodeType":"YulFunctionCall","src":"5654:79:14"},"nodeType":"YulExpressionStatement","src":"5654:79:14"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5627:7:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"5636:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5623:3:14"},"nodeType":"YulFunctionCall","src":"5623:23:14"},{"kind":"number","nodeType":"YulLiteral","src":"5648:2:14","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5619:3:14"},"nodeType":"YulFunctionCall","src":"5619:32:14"},"nodeType":"YulIf","src":"5616:119:14"},{"nodeType":"YulBlock","src":"5745:117:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5760:15:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5774:1:14","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5764:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5789:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5824:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5835:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5820:3:14"},"nodeType":"YulFunctionCall","src":"5820:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5844:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5799:20:14"},"nodeType":"YulFunctionCall","src":"5799:53:14"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5789:6:14"}]}]},{"nodeType":"YulBlock","src":"5872:118:14","statements":[{"nodeType":"YulVariableDeclaration","src":"5887:16:14","value":{"kind":"number","nodeType":"YulLiteral","src":"5901:2:14","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5891:6:14","type":""}]},{"nodeType":"YulAssignment","src":"5917:63:14","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5952:9:14"},{"name":"offset","nodeType":"YulIdentifier","src":"5963:6:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5948:3:14"},"nodeType":"YulFunctionCall","src":"5948:22:14"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5972:7:14"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5927:20:14"},"nodeType":"YulFunctionCall","src":"5927:53:14"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5917:6:14"}]}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5568:9:14","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5579:7:14","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5591:6:14","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5599:6:14","type":""}],"src":"5523:474:14"},{"body":{"nodeType":"YulBlock","src":"6031:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6048:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6051:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6041:6:14"},"nodeType":"YulFunctionCall","src":"6041:88:14"},"nodeType":"YulExpressionStatement","src":"6041:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6145:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6148:4:14","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6138:6:14"},"nodeType":"YulFunctionCall","src":"6138:15:14"},"nodeType":"YulExpressionStatement","src":"6138:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6169:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6172:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6162:6:14"},"nodeType":"YulFunctionCall","src":"6162:15:14"},"nodeType":"YulExpressionStatement","src":"6162:15:14"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"6003:180:14"},{"body":{"nodeType":"YulBlock","src":"6240:269:14","statements":[{"nodeType":"YulAssignment","src":"6250:22:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"6264:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"6270:1:14","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"6260:3:14"},"nodeType":"YulFunctionCall","src":"6260:12:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"6250:6:14"}]},{"nodeType":"YulVariableDeclaration","src":"6281:38:14","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"6311:4:14"},{"kind":"number","nodeType":"YulLiteral","src":"6317:1:14","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6307:3:14"},"nodeType":"YulFunctionCall","src":"6307:12:14"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"6285:18:14","type":""}]},{"body":{"nodeType":"YulBlock","src":"6358:51:14","statements":[{"nodeType":"YulAssignment","src":"6372:27:14","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6386:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6394:4:14","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6382:3:14"},"nodeType":"YulFunctionCall","src":"6382:17:14"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"6372:6:14"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6338:18:14"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6331:6:14"},"nodeType":"YulFunctionCall","src":"6331:26:14"},"nodeType":"YulIf","src":"6328:81:14"},{"body":{"nodeType":"YulBlock","src":"6461:42:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"6475:16:14"},"nodeType":"YulFunctionCall","src":"6475:18:14"},"nodeType":"YulExpressionStatement","src":"6475:18:14"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6425:18:14"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6448:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"6456:2:14","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6445:2:14"},"nodeType":"YulFunctionCall","src":"6445:14:14"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6422:2:14"},"nodeType":"YulFunctionCall","src":"6422:38:14"},"nodeType":"YulIf","src":"6419:84:14"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"6224:4:14","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"6233:6:14","type":""}],"src":"6189:320:14"},{"body":{"nodeType":"YulBlock","src":"6543:152:14","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6560:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6563:77:14","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6553:6:14"},"nodeType":"YulFunctionCall","src":"6553:88:14"},"nodeType":"YulExpressionStatement","src":"6553:88:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6657:1:14","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6660:4:14","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6650:6:14"},"nodeType":"YulFunctionCall","src":"6650:15:14"},"nodeType":"YulExpressionStatement","src":"6650:15:14"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6681:1:14","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6684:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6674:6:14"},"nodeType":"YulFunctionCall","src":"6674:15:14"},"nodeType":"YulExpressionStatement","src":"6674:15:14"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"6515:180:14"},{"body":{"nodeType":"YulBlock","src":"6745:147:14","statements":[{"nodeType":"YulAssignment","src":"6755:25:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6778:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6760:17:14"},"nodeType":"YulFunctionCall","src":"6760:20:14"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"6755:1:14"}]},{"nodeType":"YulAssignment","src":"6789:25:14","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"6812:1:14"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6794:17:14"},"nodeType":"YulFunctionCall","src":"6794:20:14"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"6789:1:14"}]},{"nodeType":"YulAssignment","src":"6823:16:14","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6834:1:14"},{"name":"y","nodeType":"YulIdentifier","src":"6837:1:14"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6830:3:14"},"nodeType":"YulFunctionCall","src":"6830:9:14"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"6823:3:14"}]},{"body":{"nodeType":"YulBlock","src":"6863:22:14","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"6865:16:14"},"nodeType":"YulFunctionCall","src":"6865:18:14"},"nodeType":"YulExpressionStatement","src":"6865:18:14"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6855:1:14"},{"name":"sum","nodeType":"YulIdentifier","src":"6858:3:14"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6852:2:14"},"nodeType":"YulFunctionCall","src":"6852:10:14"},"nodeType":"YulIf","src":"6849:36:14"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"6732:1:14","type":""},{"name":"y","nodeType":"YulTypedName","src":"6735:1:14","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"6741:3:14","type":""}],"src":"6701:191:14"},{"body":{"nodeType":"YulBlock","src":"7004:69:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7026:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"7034:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7022:3:14"},"nodeType":"YulFunctionCall","src":"7022:14:14"},{"hexValue":"4d6f636b555344543a204e6f7468696e6720746f206275726e","kind":"string","nodeType":"YulLiteral","src":"7038:27:14","type":"","value":"MockUSDT: Nothing to burn"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7015:6:14"},"nodeType":"YulFunctionCall","src":"7015:51:14"},"nodeType":"YulExpressionStatement","src":"7015:51:14"}]},"name":"store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"6996:6:14","type":""}],"src":"6898:175:14"},{"body":{"nodeType":"YulBlock","src":"7225:220:14","statements":[{"nodeType":"YulAssignment","src":"7235:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7301:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"7306:2:14","type":"","value":"25"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7242:58:14"},"nodeType":"YulFunctionCall","src":"7242:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7235:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7407:3:14"}],"functionName":{"name":"store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","nodeType":"YulIdentifier","src":"7318:88:14"},"nodeType":"YulFunctionCall","src":"7318:93:14"},"nodeType":"YulExpressionStatement","src":"7318:93:14"},{"nodeType":"YulAssignment","src":"7420:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7431:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"7436:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7427:3:14"},"nodeType":"YulFunctionCall","src":"7427:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7420:3:14"}]}]},"name":"abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7213:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7221:3:14","type":""}],"src":"7079:366:14"},{"body":{"nodeType":"YulBlock","src":"7622:248:14","statements":[{"nodeType":"YulAssignment","src":"7632:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7644:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7655:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7640:3:14"},"nodeType":"YulFunctionCall","src":"7640:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7632:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7679:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"7690:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7675:3:14"},"nodeType":"YulFunctionCall","src":"7675:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7698:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"7704:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7694:3:14"},"nodeType":"YulFunctionCall","src":"7694:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7668:6:14"},"nodeType":"YulFunctionCall","src":"7668:47:14"},"nodeType":"YulExpressionStatement","src":"7668:47:14"},{"nodeType":"YulAssignment","src":"7724:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7858:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7732:124:14"},"nodeType":"YulFunctionCall","src":"7732:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7724:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7602:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7617:4:14","type":""}],"src":"7451:419:14"},{"body":{"nodeType":"YulBlock","src":"7982:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8004:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8012:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8000:3:14"},"nodeType":"YulFunctionCall","src":"8000:14:14"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nodeType":"YulLiteral","src":"8016:34:14","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7993:6:14"},"nodeType":"YulFunctionCall","src":"7993:58:14"},"nodeType":"YulExpressionStatement","src":"7993:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8072:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"8080:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8068:3:14"},"nodeType":"YulFunctionCall","src":"8068:15:14"},{"hexValue":"207a65726f","kind":"string","nodeType":"YulLiteral","src":"8085:7:14","type":"","value":" zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8061:6:14"},"nodeType":"YulFunctionCall","src":"8061:32:14"},"nodeType":"YulExpressionStatement","src":"8061:32:14"}]},"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"7974:6:14","type":""}],"src":"7876:224:14"},{"body":{"nodeType":"YulBlock","src":"8252:220:14","statements":[{"nodeType":"YulAssignment","src":"8262:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8328:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"8333:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8269:58:14"},"nodeType":"YulFunctionCall","src":"8269:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8262:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8434:3:14"}],"functionName":{"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulIdentifier","src":"8345:88:14"},"nodeType":"YulFunctionCall","src":"8345:93:14"},"nodeType":"YulExpressionStatement","src":"8345:93:14"},{"nodeType":"YulAssignment","src":"8447:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8458:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"8463:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8454:3:14"},"nodeType":"YulFunctionCall","src":"8454:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"8447:3:14"}]}]},"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8240:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"8248:3:14","type":""}],"src":"8106:366:14"},{"body":{"nodeType":"YulBlock","src":"8649:248:14","statements":[{"nodeType":"YulAssignment","src":"8659:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8671:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8682:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8667:3:14"},"nodeType":"YulFunctionCall","src":"8667:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8659:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8706:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"8717:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8702:3:14"},"nodeType":"YulFunctionCall","src":"8702:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8725:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"8731:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8721:3:14"},"nodeType":"YulFunctionCall","src":"8721:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8695:6:14"},"nodeType":"YulFunctionCall","src":"8695:47:14"},"nodeType":"YulExpressionStatement","src":"8695:47:14"},{"nodeType":"YulAssignment","src":"8751:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8885:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8759:124:14"},"nodeType":"YulFunctionCall","src":"8759:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8751:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8629:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8644:4:14","type":""}],"src":"8478:419:14"},{"body":{"nodeType":"YulBlock","src":"9009:117:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9031:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"9039:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9027:3:14"},"nodeType":"YulFunctionCall","src":"9027:14:14"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"9043:34:14","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9020:6:14"},"nodeType":"YulFunctionCall","src":"9020:58:14"},"nodeType":"YulExpressionStatement","src":"9020:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9099:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"9107:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9095:3:14"},"nodeType":"YulFunctionCall","src":"9095:15:14"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"9112:6:14","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9088:6:14"},"nodeType":"YulFunctionCall","src":"9088:31:14"},"nodeType":"YulExpressionStatement","src":"9088:31:14"}]},"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"9001:6:14","type":""}],"src":"8903:223:14"},{"body":{"nodeType":"YulBlock","src":"9278:220:14","statements":[{"nodeType":"YulAssignment","src":"9288:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9354:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"9359:2:14","type":"","value":"36"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9295:58:14"},"nodeType":"YulFunctionCall","src":"9295:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9288:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9460:3:14"}],"functionName":{"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulIdentifier","src":"9371:88:14"},"nodeType":"YulFunctionCall","src":"9371:93:14"},"nodeType":"YulExpressionStatement","src":"9371:93:14"},{"nodeType":"YulAssignment","src":"9473:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9484:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"9489:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9480:3:14"},"nodeType":"YulFunctionCall","src":"9480:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9473:3:14"}]}]},"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9266:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9274:3:14","type":""}],"src":"9132:366:14"},{"body":{"nodeType":"YulBlock","src":"9675:248:14","statements":[{"nodeType":"YulAssignment","src":"9685:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9697:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9708:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9693:3:14"},"nodeType":"YulFunctionCall","src":"9693:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9685:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9732:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"9743:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9728:3:14"},"nodeType":"YulFunctionCall","src":"9728:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9751:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"9757:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9747:3:14"},"nodeType":"YulFunctionCall","src":"9747:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9721:6:14"},"nodeType":"YulFunctionCall","src":"9721:47:14"},"nodeType":"YulExpressionStatement","src":"9721:47:14"},{"nodeType":"YulAssignment","src":"9777:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9911:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9785:124:14"},"nodeType":"YulFunctionCall","src":"9785:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9777:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9655:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9670:4:14","type":""}],"src":"9504:419:14"},{"body":{"nodeType":"YulBlock","src":"10035:115:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10057:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"10065:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10053:3:14"},"nodeType":"YulFunctionCall","src":"10053:14:14"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nodeType":"YulLiteral","src":"10069:34:14","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10046:6:14"},"nodeType":"YulFunctionCall","src":"10046:58:14"},"nodeType":"YulExpressionStatement","src":"10046:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10125:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"10133:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10121:3:14"},"nodeType":"YulFunctionCall","src":"10121:15:14"},{"hexValue":"7373","kind":"string","nodeType":"YulLiteral","src":"10138:4:14","type":"","value":"ss"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10114:6:14"},"nodeType":"YulFunctionCall","src":"10114:29:14"},"nodeType":"YulExpressionStatement","src":"10114:29:14"}]},"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"10027:6:14","type":""}],"src":"9929:221:14"},{"body":{"nodeType":"YulBlock","src":"10302:220:14","statements":[{"nodeType":"YulAssignment","src":"10312:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10378:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10383:2:14","type":"","value":"34"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10319:58:14"},"nodeType":"YulFunctionCall","src":"10319:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10312:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10484:3:14"}],"functionName":{"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulIdentifier","src":"10395:88:14"},"nodeType":"YulFunctionCall","src":"10395:93:14"},"nodeType":"YulExpressionStatement","src":"10395:93:14"},{"nodeType":"YulAssignment","src":"10497:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10508:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"10513:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10504:3:14"},"nodeType":"YulFunctionCall","src":"10504:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"10497:3:14"}]}]},"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"10290:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10298:3:14","type":""}],"src":"10156:366:14"},{"body":{"nodeType":"YulBlock","src":"10699:248:14","statements":[{"nodeType":"YulAssignment","src":"10709:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10721:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"10732:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10717:3:14"},"nodeType":"YulFunctionCall","src":"10717:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10709:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10756:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"10767:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10752:3:14"},"nodeType":"YulFunctionCall","src":"10752:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10775:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"10781:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10771:3:14"},"nodeType":"YulFunctionCall","src":"10771:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10745:6:14"},"nodeType":"YulFunctionCall","src":"10745:47:14"},"nodeType":"YulExpressionStatement","src":"10745:47:14"},{"nodeType":"YulAssignment","src":"10801:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10935:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10809:124:14"},"nodeType":"YulFunctionCall","src":"10809:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10801:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10679:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10694:4:14","type":""}],"src":"10528:419:14"},{"body":{"nodeType":"YulBlock","src":"11059:73:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11081:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"11089:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11077:3:14"},"nodeType":"YulFunctionCall","src":"11077:14:14"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nodeType":"YulLiteral","src":"11093:31:14","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11070:6:14"},"nodeType":"YulFunctionCall","src":"11070:55:14"},"nodeType":"YulExpressionStatement","src":"11070:55:14"}]},"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"11051:6:14","type":""}],"src":"10953:179:14"},{"body":{"nodeType":"YulBlock","src":"11284:220:14","statements":[{"nodeType":"YulAssignment","src":"11294:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11360:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11365:2:14","type":"","value":"29"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11301:58:14"},"nodeType":"YulFunctionCall","src":"11301:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11294:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11466:3:14"}],"functionName":{"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulIdentifier","src":"11377:88:14"},"nodeType":"YulFunctionCall","src":"11377:93:14"},"nodeType":"YulExpressionStatement","src":"11377:93:14"},{"nodeType":"YulAssignment","src":"11479:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11490:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"11495:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11486:3:14"},"nodeType":"YulFunctionCall","src":"11486:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11479:3:14"}]}]},"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"11272:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"11280:3:14","type":""}],"src":"11138:366:14"},{"body":{"nodeType":"YulBlock","src":"11681:248:14","statements":[{"nodeType":"YulAssignment","src":"11691:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11703:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11714:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11699:3:14"},"nodeType":"YulFunctionCall","src":"11699:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11691:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11738:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"11749:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11734:3:14"},"nodeType":"YulFunctionCall","src":"11734:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11757:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"11763:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11753:3:14"},"nodeType":"YulFunctionCall","src":"11753:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11727:6:14"},"nodeType":"YulFunctionCall","src":"11727:47:14"},"nodeType":"YulExpressionStatement","src":"11727:47:14"},{"nodeType":"YulAssignment","src":"11783:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11917:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11791:124:14"},"nodeType":"YulFunctionCall","src":"11791:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11783:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11661:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11676:4:14","type":""}],"src":"11510:419:14"},{"body":{"nodeType":"YulBlock","src":"12041:118:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12063:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"12071:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12059:3:14"},"nodeType":"YulFunctionCall","src":"12059:14:14"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"12075:34:14","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12052:6:14"},"nodeType":"YulFunctionCall","src":"12052:58:14"},"nodeType":"YulExpressionStatement","src":"12052:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12131:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"12139:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12127:3:14"},"nodeType":"YulFunctionCall","src":"12127:15:14"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"12144:7:14","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12120:6:14"},"nodeType":"YulFunctionCall","src":"12120:32:14"},"nodeType":"YulExpressionStatement","src":"12120:32:14"}]},"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12033:6:14","type":""}],"src":"11935:224:14"},{"body":{"nodeType":"YulBlock","src":"12311:220:14","statements":[{"nodeType":"YulAssignment","src":"12321:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12387:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"12392:2:14","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12328:58:14"},"nodeType":"YulFunctionCall","src":"12328:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12321:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12493:3:14"}],"functionName":{"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulIdentifier","src":"12404:88:14"},"nodeType":"YulFunctionCall","src":"12404:93:14"},"nodeType":"YulExpressionStatement","src":"12404:93:14"},{"nodeType":"YulAssignment","src":"12506:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12517:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"12522:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12513:3:14"},"nodeType":"YulFunctionCall","src":"12513:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12506:3:14"}]}]},"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12299:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12307:3:14","type":""}],"src":"12165:366:14"},{"body":{"nodeType":"YulBlock","src":"12708:248:14","statements":[{"nodeType":"YulAssignment","src":"12718:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12730:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12741:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12726:3:14"},"nodeType":"YulFunctionCall","src":"12726:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12718:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12765:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"12776:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12761:3:14"},"nodeType":"YulFunctionCall","src":"12761:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12784:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"12790:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12780:3:14"},"nodeType":"YulFunctionCall","src":"12780:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12754:6:14"},"nodeType":"YulFunctionCall","src":"12754:47:14"},"nodeType":"YulExpressionStatement","src":"12754:47:14"},{"nodeType":"YulAssignment","src":"12810:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12944:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12818:124:14"},"nodeType":"YulFunctionCall","src":"12818:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12810:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12688:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12703:4:14","type":""}],"src":"12537:419:14"},{"body":{"nodeType":"YulBlock","src":"13068:116:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13090:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"13098:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13086:3:14"},"nodeType":"YulFunctionCall","src":"13086:14:14"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nodeType":"YulLiteral","src":"13102:34:14","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13079:6:14"},"nodeType":"YulFunctionCall","src":"13079:58:14"},"nodeType":"YulExpressionStatement","src":"13079:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13158:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"13166:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13154:3:14"},"nodeType":"YulFunctionCall","src":"13154:15:14"},{"hexValue":"657373","kind":"string","nodeType":"YulLiteral","src":"13171:5:14","type":"","value":"ess"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13147:6:14"},"nodeType":"YulFunctionCall","src":"13147:30:14"},"nodeType":"YulExpressionStatement","src":"13147:30:14"}]},"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"13060:6:14","type":""}],"src":"12962:222:14"},{"body":{"nodeType":"YulBlock","src":"13336:220:14","statements":[{"nodeType":"YulAssignment","src":"13346:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13412:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"13417:2:14","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13353:58:14"},"nodeType":"YulFunctionCall","src":"13353:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13346:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13518:3:14"}],"functionName":{"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulIdentifier","src":"13429:88:14"},"nodeType":"YulFunctionCall","src":"13429:93:14"},"nodeType":"YulExpressionStatement","src":"13429:93:14"},{"nodeType":"YulAssignment","src":"13531:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13542:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"13547:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13538:3:14"},"nodeType":"YulFunctionCall","src":"13538:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13531:3:14"}]}]},"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13324:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13332:3:14","type":""}],"src":"13190:366:14"},{"body":{"nodeType":"YulBlock","src":"13733:248:14","statements":[{"nodeType":"YulAssignment","src":"13743:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13755:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"13766:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13751:3:14"},"nodeType":"YulFunctionCall","src":"13751:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13743:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13790:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"13801:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13786:3:14"},"nodeType":"YulFunctionCall","src":"13786:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13809:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"13815:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13805:3:14"},"nodeType":"YulFunctionCall","src":"13805:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13779:6:14"},"nodeType":"YulFunctionCall","src":"13779:47:14"},"nodeType":"YulExpressionStatement","src":"13779:47:14"},{"nodeType":"YulAssignment","src":"13835:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13969:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13843:124:14"},"nodeType":"YulFunctionCall","src":"13843:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13835:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13713:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13728:4:14","type":""}],"src":"13562:419:14"},{"body":{"nodeType":"YulBlock","src":"14093:119:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14115:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"14123:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14111:3:14"},"nodeType":"YulFunctionCall","src":"14111:14:14"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nodeType":"YulLiteral","src":"14127:34:14","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14104:6:14"},"nodeType":"YulFunctionCall","src":"14104:58:14"},"nodeType":"YulExpressionStatement","src":"14104:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14183:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"14191:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14179:3:14"},"nodeType":"YulFunctionCall","src":"14179:15:14"},{"hexValue":"616c616e6365","kind":"string","nodeType":"YulLiteral","src":"14196:8:14","type":"","value":"alance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14172:6:14"},"nodeType":"YulFunctionCall","src":"14172:33:14"},"nodeType":"YulExpressionStatement","src":"14172:33:14"}]},"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14085:6:14","type":""}],"src":"13987:225:14"},{"body":{"nodeType":"YulBlock","src":"14364:220:14","statements":[{"nodeType":"YulAssignment","src":"14374:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14440:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"14445:2:14","type":"","value":"38"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14381:58:14"},"nodeType":"YulFunctionCall","src":"14381:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"14374:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14546:3:14"}],"functionName":{"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulIdentifier","src":"14457:88:14"},"nodeType":"YulFunctionCall","src":"14457:93:14"},"nodeType":"YulExpressionStatement","src":"14457:93:14"},{"nodeType":"YulAssignment","src":"14559:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14570:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"14575:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14566:3:14"},"nodeType":"YulFunctionCall","src":"14566:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14559:3:14"}]}]},"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14352:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14360:3:14","type":""}],"src":"14218:366:14"},{"body":{"nodeType":"YulBlock","src":"14761:248:14","statements":[{"nodeType":"YulAssignment","src":"14771:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14783:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"14794:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14779:3:14"},"nodeType":"YulFunctionCall","src":"14779:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14771:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14818:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"14829:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14814:3:14"},"nodeType":"YulFunctionCall","src":"14814:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14837:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"14843:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14833:3:14"},"nodeType":"YulFunctionCall","src":"14833:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14807:6:14"},"nodeType":"YulFunctionCall","src":"14807:47:14"},"nodeType":"YulExpressionStatement","src":"14807:47:14"},{"nodeType":"YulAssignment","src":"14863:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14997:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14871:124:14"},"nodeType":"YulFunctionCall","src":"14871:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14863:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14741:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14756:4:14","type":""}],"src":"14590:419:14"},{"body":{"nodeType":"YulBlock","src":"15121:114:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15143:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"15151:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15139:3:14"},"nodeType":"YulFunctionCall","src":"15139:14:14"},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f20616464726573","kind":"string","nodeType":"YulLiteral","src":"15155:34:14","type":"","value":"ERC20: burn from the zero addres"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15132:6:14"},"nodeType":"YulFunctionCall","src":"15132:58:14"},"nodeType":"YulExpressionStatement","src":"15132:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15211:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"15219:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15207:3:14"},"nodeType":"YulFunctionCall","src":"15207:15:14"},{"hexValue":"73","kind":"string","nodeType":"YulLiteral","src":"15224:3:14","type":"","value":"s"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15200:6:14"},"nodeType":"YulFunctionCall","src":"15200:28:14"},"nodeType":"YulExpressionStatement","src":"15200:28:14"}]},"name":"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15113:6:14","type":""}],"src":"15015:220:14"},{"body":{"nodeType":"YulBlock","src":"15387:220:14","statements":[{"nodeType":"YulAssignment","src":"15397:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15463:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"15468:2:14","type":"","value":"33"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15404:58:14"},"nodeType":"YulFunctionCall","src":"15404:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"15397:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15569:3:14"}],"functionName":{"name":"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","nodeType":"YulIdentifier","src":"15480:88:14"},"nodeType":"YulFunctionCall","src":"15480:93:14"},"nodeType":"YulExpressionStatement","src":"15480:93:14"},{"nodeType":"YulAssignment","src":"15582:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15593:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"15598:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15589:3:14"},"nodeType":"YulFunctionCall","src":"15589:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"15582:3:14"}]}]},"name":"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"15375:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"15383:3:14","type":""}],"src":"15241:366:14"},{"body":{"nodeType":"YulBlock","src":"15784:248:14","statements":[{"nodeType":"YulAssignment","src":"15794:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15806:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15817:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15802:3:14"},"nodeType":"YulFunctionCall","src":"15802:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15794:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15841:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"15852:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15837:3:14"},"nodeType":"YulFunctionCall","src":"15837:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15860:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"15866:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15856:3:14"},"nodeType":"YulFunctionCall","src":"15856:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15830:6:14"},"nodeType":"YulFunctionCall","src":"15830:47:14"},"nodeType":"YulExpressionStatement","src":"15830:47:14"},{"nodeType":"YulAssignment","src":"15886:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16020:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15894:124:14"},"nodeType":"YulFunctionCall","src":"15894:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15886:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15764:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15779:4:14","type":""}],"src":"15613:419:14"},{"body":{"nodeType":"YulBlock","src":"16144:115:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16166:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"16174:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16162:3:14"},"nodeType":"YulFunctionCall","src":"16162:14:14"},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e","kind":"string","nodeType":"YulLiteral","src":"16178:34:14","type":"","value":"ERC20: burn amount exceeds balan"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16155:6:14"},"nodeType":"YulFunctionCall","src":"16155:58:14"},"nodeType":"YulExpressionStatement","src":"16155:58:14"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16234:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"16242:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16230:3:14"},"nodeType":"YulFunctionCall","src":"16230:15:14"},{"hexValue":"6365","kind":"string","nodeType":"YulLiteral","src":"16247:4:14","type":"","value":"ce"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16223:6:14"},"nodeType":"YulFunctionCall","src":"16223:29:14"},"nodeType":"YulExpressionStatement","src":"16223:29:14"}]},"name":"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"16136:6:14","type":""}],"src":"16038:221:14"},{"body":{"nodeType":"YulBlock","src":"16411:220:14","statements":[{"nodeType":"YulAssignment","src":"16421:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16487:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"16492:2:14","type":"","value":"34"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16428:58:14"},"nodeType":"YulFunctionCall","src":"16428:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16421:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16593:3:14"}],"functionName":{"name":"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","nodeType":"YulIdentifier","src":"16504:88:14"},"nodeType":"YulFunctionCall","src":"16504:93:14"},"nodeType":"YulExpressionStatement","src":"16504:93:14"},{"nodeType":"YulAssignment","src":"16606:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16617:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"16622:2:14","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16613:3:14"},"nodeType":"YulFunctionCall","src":"16613:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16606:3:14"}]}]},"name":"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16399:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16407:3:14","type":""}],"src":"16265:366:14"},{"body":{"nodeType":"YulBlock","src":"16808:248:14","statements":[{"nodeType":"YulAssignment","src":"16818:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16830:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16841:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16826:3:14"},"nodeType":"YulFunctionCall","src":"16826:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16818:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16865:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"16876:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16861:3:14"},"nodeType":"YulFunctionCall","src":"16861:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16884:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"16890:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16880:3:14"},"nodeType":"YulFunctionCall","src":"16880:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16854:6:14"},"nodeType":"YulFunctionCall","src":"16854:47:14"},"nodeType":"YulExpressionStatement","src":"16854:47:14"},{"nodeType":"YulAssignment","src":"16910:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17044:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16918:124:14"},"nodeType":"YulFunctionCall","src":"16918:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16910:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16788:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16803:4:14","type":""}],"src":"16637:419:14"},{"body":{"nodeType":"YulBlock","src":"17168:75:14","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"17190:6:14"},{"kind":"number","nodeType":"YulLiteral","src":"17198:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17186:3:14"},"nodeType":"YulFunctionCall","src":"17186:14:14"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"17202:33:14","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17179:6:14"},"nodeType":"YulFunctionCall","src":"17179:57:14"},"nodeType":"YulExpressionStatement","src":"17179:57:14"}]},"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"17160:6:14","type":""}],"src":"17062:181:14"},{"body":{"nodeType":"YulBlock","src":"17395:220:14","statements":[{"nodeType":"YulAssignment","src":"17405:74:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17471:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"17476:2:14","type":"","value":"31"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17412:58:14"},"nodeType":"YulFunctionCall","src":"17412:67:14"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17405:3:14"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17577:3:14"}],"functionName":{"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulIdentifier","src":"17488:88:14"},"nodeType":"YulFunctionCall","src":"17488:93:14"},"nodeType":"YulExpressionStatement","src":"17488:93:14"},{"nodeType":"YulAssignment","src":"17590:19:14","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17601:3:14"},{"kind":"number","nodeType":"YulLiteral","src":"17606:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17597:3:14"},"nodeType":"YulFunctionCall","src":"17597:12:14"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17590:3:14"}]}]},"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17383:3:14","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17391:3:14","type":""}],"src":"17249:366:14"},{"body":{"nodeType":"YulBlock","src":"17792:248:14","statements":[{"nodeType":"YulAssignment","src":"17802:26:14","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17814:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"17825:2:14","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17810:3:14"},"nodeType":"YulFunctionCall","src":"17810:18:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17802:4:14"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17849:9:14"},{"kind":"number","nodeType":"YulLiteral","src":"17860:1:14","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17845:3:14"},"nodeType":"YulFunctionCall","src":"17845:17:14"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17868:4:14"},{"name":"headStart","nodeType":"YulIdentifier","src":"17874:9:14"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17864:3:14"},"nodeType":"YulFunctionCall","src":"17864:20:14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17838:6:14"},"nodeType":"YulFunctionCall","src":"17838:47:14"},"nodeType":"YulExpressionStatement","src":"17838:47:14"},{"nodeType":"YulAssignment","src":"17894:139:14","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18028:4:14"}],"functionName":{"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17902:124:14"},"nodeType":"YulFunctionCall","src":"17902:131:14"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17894:4:14"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17772:9:14","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17787:4:14","type":""}],"src":"17621:419:14"}]},"contents":"{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\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\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09(memPtr) {\n\n mstore(add(memPtr, 0), \"MockUSDT: Nothing to burn\")\n\n }\n\n function abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(memPtr, 32), \"ce\")\n\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":14,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a578063a0712d6811610064578063a0712d681461024a578063a457c2d714610266578063a9059cbb14610296578063dd62ed3e146102c6576100e8565b806370a08231146101f257806395d89b41146102225780639975038c14610240576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f6565b6040516101019190610ee6565b60405180910390f35b610124600480360381019061011f9190610f97565b610386565b6040516101319190610fef565b60405180910390f35b6101426103a8565b60405161014f9190611017565b60405180910390f35b610172600480360381019061016d9190611030565b6103b1565b60405161017f9190610fef565b60405180910390f35b6101906103df565b60405161019d919061109b565b60405180910390f35b6101c060048036038101906101bb9190610f97565b6103e7565b6040516101cd9190610fef565b60405180910390f35b6101f060048036038101906101eb91906110b4565b61041d565b005b61020c600480360381019061020791906110df565b61042a565b6040516102199190611017565b60405180910390f35b61022a61046f565b6040516102379190610ee6565b60405180910390f35b6102486104ff565b005b610264600480360381019061025f91906110b4565b61055a565b005b610280600480360381019061027b9190610f97565b610567565b60405161028d9190610fef565b60405180910390f35b6102b060048036038101906102ab9190610f97565b6105dc565b6040516102bd9190610fef565b60405180910390f35b6102e060048036038101906102db919061110a565b6105fe565b6040516102ed9190611017565b60405180910390f35b60606003805461030590611175565b80601f016020809104026020016040519081016040528092919081815260200182805461033190611175565b801561037c5780601f106103535761010080835404028352916020019161037c565b820191905f5260205f20905b81548152906001019060200180831161035f57829003601f168201915b5050505050905090565b5f80610390610680565b905061039d818585610687565b600191505092915050565b5f600254905090565b5f806103bb610680565b90506103c885828561084a565b6103d38585856108d5565b60019150509392505050565b5f6012905090565b5f806103f1610680565b905061041281858561040385896105fe565b61040d91906111d2565b610687565b600191505092915050565b6104273382610b41565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461047e90611175565b80601f01602080910402602001604051908101604052809291908181526020018280546104aa90611175565b80156104f55780601f106104cc576101008083540402835291602001916104f5565b820191905f5260205f20905b8154815290600101906020018083116104d857829003601f168201915b5050505050905090565b5f6105093361042a565b90505f811161054d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105449061124f565b60405180910390fd5b6105573382610b41565b50565b6105643382610d04565b50565b5f80610571610680565b90505f61057e82866105fe565b9050838110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906112dd565b60405180910390fd5b6105d08286868403610687565b60019250505092915050565b5f806105e6610680565b90506105f38185856108d5565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec9061136b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a906113f9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161083d9190611017565b60405180910390a3505050565b5f61085584846105fe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108cf57818110156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611461565b60405180910390fd5b6108ce8484848403610687565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906114ef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a89061157d565b60405180910390fd5b6109bc838383610e52565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061160b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b289190611017565b60405180910390a3610b3b848484610e57565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690611699565b60405180910390fd5b610bba825f83610e52565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611727565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cec9190611017565b60405180910390a3610cff835f84610e57565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d699061178f565b60405180910390fd5b610d7d5f8383610e52565b8060025f828254610d8e91906111d2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e3b9190611017565b60405180910390a3610e4e5f8383610e57565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e93578082015181840152602081019050610e78565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb882610e5c565b610ec28185610e66565b9350610ed2818560208601610e76565b610edb81610e9e565b840191505092915050565b5f6020820190508181035f830152610efe8184610eae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3382610f0a565b9050919050565b610f4381610f29565b8114610f4d575f80fd5b50565b5f81359050610f5e81610f3a565b92915050565b5f819050919050565b610f7681610f64565b8114610f80575f80fd5b50565b5f81359050610f9181610f6d565b92915050565b5f8060408385031215610fad57610fac610f06565b5b5f610fba85828601610f50565b9250506020610fcb85828601610f83565b9150509250929050565b5f8115159050919050565b610fe981610fd5565b82525050565b5f6020820190506110025f830184610fe0565b92915050565b61101181610f64565b82525050565b5f60208201905061102a5f830184611008565b92915050565b5f805f6060848603121561104757611046610f06565b5b5f61105486828701610f50565b935050602061106586828701610f50565b925050604061107686828701610f83565b9150509250925092565b5f60ff82169050919050565b61109581611080565b82525050565b5f6020820190506110ae5f83018461108c565b92915050565b5f602082840312156110c9576110c8610f06565b5b5f6110d684828501610f83565b91505092915050565b5f602082840312156110f4576110f3610f06565b5b5f61110184828501610f50565b91505092915050565b5f80604083850312156111205761111f610f06565b5b5f61112d85828601610f50565b925050602061113e85828601610f50565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061118c57607f821691505b60208210810361119f5761119e611148565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111dc82610f64565b91506111e783610f64565b92508282019050808211156111ff576111fe6111a5565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e000000000000005f82015250565b5f611239601983610e66565b915061124482611205565b602082019050919050565b5f6020820190508181035f8301526112668161122d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112c7602583610e66565b91506112d28261126d565b604082019050919050565b5f6020820190508181035f8301526112f4816112bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611355602483610e66565b9150611360826112fb565b604082019050919050565b5f6020820190508181035f83015261138281611349565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113e3602283610e66565b91506113ee82611389565b604082019050919050565b5f6020820190508181035f830152611410816113d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61144b601d83610e66565b915061145682611417565b602082019050919050565b5f6020820190508181035f8301526114788161143f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6114d9602583610e66565b91506114e48261147f565b604082019050919050565b5f6020820190508181035f830152611506816114cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611567602383610e66565b91506115728261150d565b604082019050919050565b5f6020820190508181035f8301526115948161155b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6115f5602683610e66565b91506116008261159b565b604082019050919050565b5f6020820190508181035f830152611622816115e9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611683602183610e66565b915061168e82611629565b604082019050919050565b5f6020820190508181035f8301526116b081611677565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611711602283610e66565b915061171c826116b7565b604082019050919050565b5f6020820190508181035f83015261173e81611705565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611779601f83610e66565b915061178482611745565b602082019050919050565b5f6020820190508181035f8301526117a68161176d565b905091905056fea26469706673582212201d6c0a63de180dcbafc7f1d7104448374c63b6bd819bff8f3fff08e0a9233faf64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE8 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8A JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x24A JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x296 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2C6 JUMPI PUSH2 0xE8 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x9975038C EQ PUSH2 0x240 JUMPI PUSH2 0xE8 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xC6 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x158 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x188 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1D6 JUMPI PUSH2 0xE8 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEC JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x13A JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xF4 PUSH2 0x2F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x101 SWAP2 SWAP1 PUSH2 0xEE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x124 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11F SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x131 SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x142 PUSH2 0x3A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14F SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x172 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16D SWAP2 SWAP1 PUSH2 0x1030 JUMP JUMPDEST PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17F SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x190 PUSH2 0x3DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19D SWAP2 SWAP1 PUSH2 0x109B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x3E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x10B4 JUMP JUMPDEST PUSH2 0x41D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x10DF JUMP JUMPDEST PUSH2 0x42A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22A PUSH2 0x46F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x237 SWAP2 SWAP1 PUSH2 0xEE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x248 PUSH2 0x4FF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x264 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25F SWAP2 SWAP1 PUSH2 0x10B4 JUMP JUMPDEST PUSH2 0x55A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x280 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x27B SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x567 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28D SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AB SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BD SWAP2 SWAP1 PUSH2 0xFEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DB SWAP2 SWAP1 PUSH2 0x110A JUMP JUMPDEST PUSH2 0x5FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2ED SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x305 SWAP1 PUSH2 0x1175 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 0x331 SWAP1 PUSH2 0x1175 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x37C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x353 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x37C 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 0x35F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x390 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x39D DUP2 DUP6 DUP6 PUSH2 0x687 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3BB PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x3C8 DUP6 DUP3 DUP6 PUSH2 0x84A JUMP JUMPDEST PUSH2 0x3D3 DUP6 DUP6 DUP6 PUSH2 0x8D5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3F1 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x412 DUP2 DUP6 DUP6 PUSH2 0x403 DUP6 DUP10 PUSH2 0x5FE JUMP JUMPDEST PUSH2 0x40D SWAP2 SWAP1 PUSH2 0x11D2 JUMP JUMPDEST PUSH2 0x687 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x427 CALLER DUP3 PUSH2 0xB41 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x47E SWAP1 PUSH2 0x1175 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 0x4AA SWAP1 PUSH2 0x1175 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4CC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4F5 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 0x4D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x509 CALLER PUSH2 0x42A JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT PUSH2 0x54D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x544 SWAP1 PUSH2 0x124F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x557 CALLER DUP3 PUSH2 0xB41 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x564 CALLER DUP3 PUSH2 0xD04 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x571 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x57E DUP3 DUP7 PUSH2 0x5FE JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x5C3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5BA SWAP1 PUSH2 0x12DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5D0 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x687 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x5E6 PUSH2 0x680 JUMP JUMPDEST SWAP1 POP PUSH2 0x5F3 DUP2 DUP6 DUP6 PUSH2 0x8D5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x6F5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6EC SWAP1 PUSH2 0x136B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x763 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75A SWAP1 PUSH2 0x13F9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x83D SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x855 DUP5 DUP5 PUSH2 0x5FE JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x8CF JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x8C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8B8 SWAP1 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8CE DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x687 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x93A SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9A8 SWAP1 PUSH2 0x157D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9BC DUP4 DUP4 DUP4 PUSH2 0xE52 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA36 SWAP1 PUSH2 0x160B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB28 SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xB3B DUP5 DUP5 DUP5 PUSH2 0xE57 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBAF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBA6 SWAP1 PUSH2 0x1699 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBBA DUP3 PUSH0 DUP4 PUSH2 0xE52 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC3D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC34 SWAP1 PUSH2 0x1727 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xCEC SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xCFF DUP4 PUSH0 DUP5 PUSH2 0xE57 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xD72 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD69 SWAP1 PUSH2 0x178F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD7D PUSH0 DUP4 DUP4 PUSH2 0xE52 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD8E SWAP2 SWAP1 PUSH2 0x11D2 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE3B SWAP2 SWAP1 PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE4E PUSH0 DUP4 DUP4 PUSH2 0xE57 JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE93 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xE78 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xEB8 DUP3 PUSH2 0xE5C JUMP JUMPDEST PUSH2 0xEC2 DUP2 DUP6 PUSH2 0xE66 JUMP JUMPDEST SWAP4 POP PUSH2 0xED2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xE76 JUMP JUMPDEST PUSH2 0xEDB DUP2 PUSH2 0xE9E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xEFE DUP2 DUP5 PUSH2 0xEAE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF33 DUP3 PUSH2 0xF0A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF43 DUP2 PUSH2 0xF29 JUMP JUMPDEST DUP2 EQ PUSH2 0xF4D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF5E DUP2 PUSH2 0xF3A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF76 DUP2 PUSH2 0xF64 JUMP JUMPDEST DUP2 EQ PUSH2 0xF80 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF91 DUP2 PUSH2 0xF6D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFAD JUMPI PUSH2 0xFAC PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xFBA DUP6 DUP3 DUP7 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xFCB DUP6 DUP3 DUP7 ADD PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE9 DUP2 PUSH2 0xFD5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1002 PUSH0 DUP4 ADD DUP5 PUSH2 0xFE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1011 DUP2 PUSH2 0xF64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x102A PUSH0 DUP4 ADD DUP5 PUSH2 0x1008 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1047 JUMPI PUSH2 0x1046 PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1054 DUP7 DUP3 DUP8 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1065 DUP7 DUP3 DUP8 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1076 DUP7 DUP3 DUP8 ADD PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1095 DUP2 PUSH2 0x1080 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x10AE PUSH0 DUP4 ADD DUP5 PUSH2 0x108C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10C9 JUMPI PUSH2 0x10C8 PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x10D6 DUP5 DUP3 DUP6 ADD PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10F4 JUMPI PUSH2 0x10F3 PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1101 DUP5 DUP3 DUP6 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1120 JUMPI PUSH2 0x111F PUSH2 0xF06 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x112D DUP6 DUP3 DUP7 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x113E DUP6 DUP3 DUP7 ADD PUSH2 0xF50 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x118C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x119F JUMPI PUSH2 0x119E PUSH2 0x1148 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x11DC DUP3 PUSH2 0xF64 JUMP JUMPDEST SWAP2 POP PUSH2 0x11E7 DUP4 PUSH2 0xF64 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x11FF JUMPI PUSH2 0x11FE PUSH2 0x11A5 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4D6F636B555344543A204E6F7468696E6720746F206275726E00000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1239 PUSH1 0x19 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1244 DUP3 PUSH2 0x1205 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1266 DUP2 PUSH2 0x122D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x12C7 PUSH1 0x25 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x12D2 DUP3 PUSH2 0x126D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12F4 DUP2 PUSH2 0x12BB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1355 PUSH1 0x24 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1360 DUP3 PUSH2 0x12FB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1382 DUP2 PUSH2 0x1349 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x13E3 PUSH1 0x22 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x13EE DUP3 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1410 DUP2 PUSH2 0x13D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x144B PUSH1 0x1D DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1456 DUP3 PUSH2 0x1417 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1478 DUP2 PUSH2 0x143F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x14D9 PUSH1 0x25 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x14E4 DUP3 PUSH2 0x147F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1506 DUP2 PUSH2 0x14CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1567 PUSH1 0x23 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1572 DUP3 PUSH2 0x150D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1594 DUP2 PUSH2 0x155B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x15F5 PUSH1 0x26 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1600 DUP3 PUSH2 0x159B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1622 DUP2 PUSH2 0x15E9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1683 PUSH1 0x21 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x168E DUP3 PUSH2 0x1629 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x16B0 DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1711 PUSH1 0x22 DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x171C DUP3 PUSH2 0x16B7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x173E DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1779 PUSH1 0x1F DUP4 PUSH2 0xE66 JUMP JUMPDEST SWAP2 POP PUSH2 0x1784 DUP3 PUSH2 0x1745 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x17A6 DUP2 PUSH2 0x176D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR PUSH13 0xA63DE180DCBAFC7F1D7104448 CALLDATACOPY 0x4C PUSH4 0xB6BD819B SELFDESTRUCT DUP16 EXTCODEHASH SELFDESTRUCT ADDMOD 0xE0 0xA9 0x23 EXTCODEHASH 0xAF PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"162:496:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;379:83:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3419:125:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;468:188:13;;;:::i;:::-;;290:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6575:427:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;379:83:13:-;429:26;435:10;447:7;429:5;:26::i;:::-;379:83;:::o;3419:125:6:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;468:188:13:-;506:18;527:21;537:10;527:9;:21::i;:::-;506:42;;579:1;566:10;:14;558:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;620:29;626:10;638;620:5;:29::i;:::-;496:160;468:188::o;290:83::-;340:26;346:10;358:7;340:5;:26::i;:::-;290:83;:::o;6575:427:6:-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;655:96:9:-;708:7;734:10;727:17;;655:96;:::o;10457:340:6:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;9375:659::-;9477:1;9458:21;;:7;:21;;;9450:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9528:49;9549:7;9566:1;9570:6;9528:20;:49::i;:::-;9588:22;9613:9;:18;9623:7;9613:18;;;;;;;;;;;;;;;;9588:43;;9667:6;9649:14;:24;;9641:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9784:6;9767:14;:23;9746:9;:18;9756:7;9746:18;;;;;;;;;;;;;;;:44;;;;9899:6;9883:12;;:22;;;;;;;;;;;9957:1;9931:37;;9940:7;9931:37;;;9961:6;9931:37;;;;;;:::i;:::-;;;;;;;;9979:48;9999:7;10016:1;10020:6;9979:19;:48::i;:::-;9440:594;9375:659;;:::o;8520:535::-;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;:49::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;:48::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:14:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:180::-;6563:77;6560:1;6553:88;6660:4;6657:1;6650:15;6684:4;6681:1;6674:15;6701:191;6741:3;6760:20;6778:1;6760:20;:::i;:::-;6755:25;;6794:20;6812:1;6794:20;:::i;:::-;6789:25;;6837:1;6834;6830:9;6823:16;;6858:3;6855:1;6852:10;6849:36;;;6865:18;;:::i;:::-;6849:36;6701:191;;;;:::o;6898:175::-;7038:27;7034:1;7026:6;7022:14;7015:51;6898:175;:::o;7079:366::-;7221:3;7242:67;7306:2;7301:3;7242:67;:::i;:::-;7235:74;;7318:93;7407:3;7318:93;:::i;:::-;7436:2;7431:3;7427:12;7420:19;;7079:366;;;:::o;7451:419::-;7617:4;7655:2;7644:9;7640:18;7632:26;;7704:9;7698:4;7694:20;7690:1;7679:9;7675:17;7668:47;7732:131;7858:4;7732:131;:::i;:::-;7724:139;;7451:419;;;:::o;7876:224::-;8016:34;8012:1;8004:6;8000:14;7993:58;8085:7;8080:2;8072:6;8068:15;8061:32;7876:224;:::o;8106:366::-;8248:3;8269:67;8333:2;8328:3;8269:67;:::i;:::-;8262:74;;8345:93;8434:3;8345:93;:::i;:::-;8463:2;8458:3;8454:12;8447:19;;8106:366;;;:::o;8478:419::-;8644:4;8682:2;8671:9;8667:18;8659:26;;8731:9;8725:4;8721:20;8717:1;8706:9;8702:17;8695:47;8759:131;8885:4;8759:131;:::i;:::-;8751:139;;8478:419;;;:::o;8903:223::-;9043:34;9039:1;9031:6;9027:14;9020:58;9112:6;9107:2;9099:6;9095:15;9088:31;8903:223;:::o;9132:366::-;9274:3;9295:67;9359:2;9354:3;9295:67;:::i;:::-;9288:74;;9371:93;9460:3;9371:93;:::i;:::-;9489:2;9484:3;9480:12;9473:19;;9132:366;;;:::o;9504:419::-;9670:4;9708:2;9697:9;9693:18;9685:26;;9757:9;9751:4;9747:20;9743:1;9732:9;9728:17;9721:47;9785:131;9911:4;9785:131;:::i;:::-;9777:139;;9504:419;;;:::o;9929:221::-;10069:34;10065:1;10057:6;10053:14;10046:58;10138:4;10133:2;10125:6;10121:15;10114:29;9929:221;:::o;10156:366::-;10298:3;10319:67;10383:2;10378:3;10319:67;:::i;:::-;10312:74;;10395:93;10484:3;10395:93;:::i;:::-;10513:2;10508:3;10504:12;10497:19;;10156:366;;;:::o;10528:419::-;10694:4;10732:2;10721:9;10717:18;10709:26;;10781:9;10775:4;10771:20;10767:1;10756:9;10752:17;10745:47;10809:131;10935:4;10809:131;:::i;:::-;10801:139;;10528:419;;;:::o;10953:179::-;11093:31;11089:1;11081:6;11077:14;11070:55;10953:179;:::o;11138:366::-;11280:3;11301:67;11365:2;11360:3;11301:67;:::i;:::-;11294:74;;11377:93;11466:3;11377:93;:::i;:::-;11495:2;11490:3;11486:12;11479:19;;11138:366;;;:::o;11510:419::-;11676:4;11714:2;11703:9;11699:18;11691:26;;11763:9;11757:4;11753:20;11749:1;11738:9;11734:17;11727:47;11791:131;11917:4;11791:131;:::i;:::-;11783:139;;11510:419;;;:::o;11935:224::-;12075:34;12071:1;12063:6;12059:14;12052:58;12144:7;12139:2;12131:6;12127:15;12120:32;11935:224;:::o;12165:366::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:419::-;12703:4;12741:2;12730:9;12726:18;12718:26;;12790:9;12784:4;12780:20;12776:1;12765:9;12761:17;12754:47;12818:131;12944:4;12818:131;:::i;:::-;12810:139;;12537:419;;;:::o;12962:222::-;13102:34;13098:1;13090:6;13086:14;13079:58;13171:5;13166:2;13158:6;13154:15;13147:30;12962:222;:::o;13190:366::-;13332:3;13353:67;13417:2;13412:3;13353:67;:::i;:::-;13346:74;;13429:93;13518:3;13429:93;:::i;:::-;13547:2;13542:3;13538:12;13531:19;;13190:366;;;:::o;13562:419::-;13728:4;13766:2;13755:9;13751:18;13743:26;;13815:9;13809:4;13805:20;13801:1;13790:9;13786:17;13779:47;13843:131;13969:4;13843:131;:::i;:::-;13835:139;;13562:419;;;:::o;13987:225::-;14127:34;14123:1;14115:6;14111:14;14104:58;14196:8;14191:2;14183:6;14179:15;14172:33;13987:225;:::o;14218:366::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:419::-;14756:4;14794:2;14783:9;14779:18;14771:26;;14843:9;14837:4;14833:20;14829:1;14818:9;14814:17;14807:47;14871:131;14997:4;14871:131;:::i;:::-;14863:139;;14590:419;;;:::o;15015:220::-;15155:34;15151:1;15143:6;15139:14;15132:58;15224:3;15219:2;15211:6;15207:15;15200:28;15015:220;:::o;15241:366::-;15383:3;15404:67;15468:2;15463:3;15404:67;:::i;:::-;15397:74;;15480:93;15569:3;15480:93;:::i;:::-;15598:2;15593:3;15589:12;15582:19;;15241:366;;;:::o;15613:419::-;15779:4;15817:2;15806:9;15802:18;15794:26;;15866:9;15860:4;15856:20;15852:1;15841:9;15837:17;15830:47;15894:131;16020:4;15894:131;:::i;:::-;15886:139;;15613:419;;;:::o;16038:221::-;16178:34;16174:1;16166:6;16162:14;16155:58;16247:4;16242:2;16234:6;16230:15;16223:29;16038:221;:::o;16265:366::-;16407:3;16428:67;16492:2;16487:3;16428:67;:::i;:::-;16421:74;;16504:93;16593:3;16504:93;:::i;:::-;16622:2;16617:3;16613:12;16606:19;;16265:366;;;:::o;16637:419::-;16803:4;16841:2;16830:9;16826:18;16818:26;;16890:9;16884:4;16880:20;16876:1;16865:9;16861:17;16854:47;16918:131;17044:4;16918:131;:::i;:::-;16910:139;;16637:419;;;:::o;17062:181::-;17202:33;17198:1;17190:6;17186:14;17179:57;17062:181;:::o;17249:366::-;17391:3;17412:67;17476:2;17471:3;17412:67;:::i;:::-;17405:74;;17488:93;17577:3;17488:93;:::i;:::-;17606:2;17601:3;17597:12;17590:19;;17249:366;;;:::o;17621:419::-;17787:4;17825:2;17814:9;17810:18;17802:26;;17874:9;17868:4;17864:20;17860:1;17849:9;17845:17;17838:47;17902:131;18028:4;17902:131;:::i;:::-;17894:139;;17621:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"1223000","executionCost":"infinite","totalCost":"infinite"},"external":{"allowance(address,address)":"infinite","approve(address,uint256)":"infinite","balanceOf(address)":"2852","burn(uint256)":"infinite","burnAll()":"36137","decimals()":"383","decreaseAllowance(address,uint256)":"infinite","increaseAllowance(address,uint256)":"infinite","mint(uint256)":"infinite","name()":"infinite","symbol()":"infinite","totalSupply()":"2500","transfer(address,uint256)":"infinite","transferFrom(address,address,uint256)":"infinite"}},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(uint256)":"42966c68","burnAll()":"9975038c","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","increaseAllowance(address,uint256)":"39509351","mint(uint256)":"a0712d68","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"burnAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Mock mintable USDC\",\"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 `amount` 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}.\"},\"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}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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 `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/MockUSDC.sol\":\"MockUSDT\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.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 ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n mapping(address => uint256) private _balances;\\n\\n mapping(address => mapping(address => uint256)) private _allowances;\\n\\n uint256 private _totalSupply;\\n\\n string private _name;\\n string private _symbol;\\n\\n /**\\n * @dev Sets the values for {name} and {symbol}.\\n *\\n * All two of these values are immutable: they can only be set once during\\n * construction.\\n */\\n constructor(string memory name_, string memory symbol_) {\\n _name = name_;\\n _symbol = symbol_;\\n }\\n\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() public view virtual override returns (string memory) {\\n return _name;\\n }\\n\\n /**\\n * @dev Returns the symbol of the token, usually a shorter version of the\\n * name.\\n */\\n function symbol() public view virtual override returns (string memory) {\\n return _symbol;\\n }\\n\\n /**\\n * @dev Returns the number of decimals used to get its user representation.\\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n *\\n * Tokens usually opt for a value of 18, imitating the relationship between\\n * Ether and Wei. This is the 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 override returns (uint8) {\\n return 18;\\n }\\n\\n /**\\n * @dev See {IERC20-totalSupply}.\\n */\\n function totalSupply() public view virtual override returns (uint256) {\\n return _totalSupply;\\n }\\n\\n /**\\n * @dev See {IERC20-balanceOf}.\\n */\\n function balanceOf(address account) public view virtual override returns (uint256) {\\n return _balances[account];\\n }\\n\\n /**\\n * @dev See {IERC20-transfer}.\\n *\\n * Requirements:\\n *\\n * - `to` cannot be the zero address.\\n * - the caller must have a balance of at least `amount`.\\n */\\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _transfer(owner, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-allowance}.\\n */\\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n return _allowances[owner][spender];\\n }\\n\\n /**\\n * @dev See {IERC20-approve}.\\n *\\n * NOTE: If `amount` 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 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-transferFrom}.\\n *\\n * Emits an {Approval} event indicating the updated allowance. This is not\\n * required by the EIP. See the note at the beginning of {ERC20}.\\n *\\n * 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 `amount`.\\n * - the caller must have allowance for ``from``'s tokens of at least\\n * `amount`.\\n */\\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\\n address spender = _msgSender();\\n _spendAllowance(from, spender, amount);\\n _transfer(from, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically increases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n */\\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, allowance(owner, spender) + addedValue);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `spender` must have allowance for the caller of at least\\n * `subtractedValue`.\\n */\\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n uint256 currentAllowance = allowance(owner, spender);\\n require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - subtractedValue);\\n }\\n\\n return true;\\n }\\n\\n /**\\n * @dev Moves `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 * Requirements:\\n *\\n * - `from` cannot be the zero address.\\n * - `to` cannot be the zero address.\\n * - `from` must have a balance of at least `amount`.\\n */\\n function _transfer(address from, address to, uint256 amount) internal virtual {\\n require(from != address(0), \\\"ERC20: transfer from the zero address\\\");\\n require(to != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n _beforeTokenTransfer(from, to, amount);\\n\\n uint256 fromBalance = _balances[from];\\n require(fromBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n unchecked {\\n _balances[from] = fromBalance - amount;\\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\\n // decrementing then incrementing.\\n _balances[to] += amount;\\n }\\n\\n emit Transfer(from, to, amount);\\n\\n _afterTokenTransfer(from, to, amount);\\n }\\n\\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n * the total supply.\\n *\\n * Emits a {Transfer} event with `from` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n */\\n function _mint(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n _beforeTokenTransfer(address(0), account, amount);\\n\\n _totalSupply += amount;\\n unchecked {\\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\\n _balances[account] += amount;\\n }\\n emit Transfer(address(0), account, amount);\\n\\n _afterTokenTransfer(address(0), account, amount);\\n }\\n\\n /**\\n * @dev Destroys `amount` tokens from `account`, reducing the\\n * total supply.\\n *\\n * Emits a {Transfer} event with `to` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n * - `account` must have at least `amount` tokens.\\n */\\n function _burn(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n _beforeTokenTransfer(account, address(0), amount);\\n\\n uint256 accountBalance = _balances[account];\\n require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n unchecked {\\n _balances[account] = accountBalance - amount;\\n // Overflow not possible: amount <= accountBalance <= totalSupply.\\n _totalSupply -= amount;\\n }\\n\\n emit Transfer(account, address(0), amount);\\n\\n _afterTokenTransfer(account, address(0), amount);\\n }\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n *\\n * This internal function is equivalent to `approve`, and can be used to\\n * e.g. set automatic allowances for certain subsystems, etc.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `owner` cannot be the zero address.\\n * - `spender` cannot be the zero address.\\n */\\n function _approve(address owner, address spender, uint256 amount) internal virtual {\\n require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n _allowances[owner][spender] = amount;\\n emit Approval(owner, spender, amount);\\n }\\n\\n /**\\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\\n *\\n * Does not update the allowance amount in case of infinite allowance.\\n * Revert if not enough allowance is available.\\n *\\n * Might emit an {Approval} event.\\n */\\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\\n uint256 currentAllowance = allowance(owner, spender);\\n if (currentAllowance != type(uint256).max) {\\n require(currentAllowance >= amount, \\\"ERC20: insufficient allowance\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - amount);\\n }\\n }\\n }\\n\\n /**\\n * @dev Hook that is called before any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * will be transferred to `to`.\\n * - when `from` is zero, `amount` tokens will be minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n\\n /**\\n * @dev Hook that is called after any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * has been transferred to `to`.\\n * - when `from` is zero, `amount` tokens have been minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n}\\n\",\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev 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 amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() external view returns (string memory);\\n\\n /**\\n * @dev Returns the symbol of the token.\\n */\\n function symbol() external view returns (string memory);\\n\\n /**\\n * @dev Returns the decimals places of the token.\\n */\\n function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"},\"contracts/mocks/MockUSDC.sol\":{\"content\":\"//SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {ERC20} from \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\n\\n/// @dev Mock mintable USDC\\ncontract MockUSDT is ERC20 {\\n constructor() ERC20(\\\"MockUDSC\\\", \\\"MUSDC\\\") {\\n _mint(msg.sender, 1_000_000E18);\\n }\\n\\n function mint(uint256 _amount) external {\\n _mint(msg.sender, _amount);\\n }\\n\\n function burn(uint256 _amount) external {\\n _burn(msg.sender, _amount);\\n }\\n\\n function burnAll() external {\\n uint256 _balanceOf = balanceOf(msg.sender);\\n require(_balanceOf > 0, \\\"MockUSDT: Nothing to burn\\\");\\n _burn(msg.sender, _balanceOf);\\n }\\n}\\n\",\"keccak256\":\"0x983ae7c4c407602537b8623a63a3598cf983fbb637943d39338f0bb0fb6d4f13\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":933,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":939,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":941,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":943,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":945,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}},"userdoc":{"kind":"user","methods":{},"version":1}}}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.json b/artifacts/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.json new file mode 100644 index 0000000..179591b --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.json @@ -0,0 +1,70 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/Gateway.sol": "project/contracts/Gateway.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/", + "project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/", + "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./OwnableUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\n address private _pendingOwner;\n\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n function __Ownable2Step_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable2Step_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the address of the pending owner.\n */\n function pendingOwner() public view virtual returns (address) {\n return _pendingOwner;\n }\n\n /**\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual override onlyOwner {\n _pendingOwner = newOwner;\n emit OwnershipTransferStarted(owner(), newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual override {\n delete _pendingOwner;\n super._transferOwnership(newOwner);\n }\n\n /**\n * @dev The new owner accepts the ownership transfer.\n */\n function acceptOwnership() public virtual {\n address sender = _msgSender();\n require(pendingOwner() == sender, \"Ownable2Step: caller is not the new owner\");\n _transferOwnership(sender);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal onlyInitializing {\n _transferOwnership(_msgSender());\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 require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\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 require(newOwner != address(0), \"Ownable: new owner is the zero address\");\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\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 Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\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 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\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 require(_initializing, \"Initializable: contract is not initializing\");\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 require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _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 _initializing;\n }\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n function __Pausable_init() internal onlyInitializing {\n __Pausable_init_unchained();\n }\n\n function __Pausable_init_unchained() internal onlyInitializing {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev 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 amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" + }, + "project/contracts/Gateway.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\n\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\n\n/**\n * @title Gateway\n * @notice This contract serves as a gateway for creating orders and managing settlements.\n */\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\n\tstruct fee {\n\t\tuint256 protocolFee;\n\t\tuint256 liquidityProviderAmount;\n\t}\n\n\tmapping(bytes32 => Order) private order;\n\tmapping(address => uint256) private _nonce;\n\tuint256[50] private __gap;\n\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @dev Initialize function.\n\t */\n\tfunction initialize() external initializer {\n\t\tMAX_BPS = 100_000;\n\t\t__Ownable2Step_init();\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @dev Modifier that allows only the aggregator to call a function.\n\t */\n\tmodifier onlyAggregator() {\n\t\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\n\t\t_;\n\t}\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\t/**\n\t * @dev Pause the contract.\n\t */\n\tfunction pause() external onlyOwner {\n\t\t_pause();\n\t}\n\n\t/**\n\t * @dev Unpause the contract.\n\t */\n\tfunction unpause() external onlyOwner {\n\t\t_unpause();\n\t}\n\n\t/* ##################################################################\n USER CALLS\n ################################################################## */\n\t/** @dev See {createOrder-IGateway}. */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external whenNotPaused returns (bytes32 orderId) {\n\t\t// checks that are required\n\t\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\n\n\t\t// validate messageHash\n\t\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\n\n\t\t// transfer token from msg.sender to contract\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\t// increase users nonce to avoid replay attacks\n\t\t_nonce[msg.sender]++;\n\n\t\t// generate transaction id for the transaction with chain id\n\t\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid));\n\n\t\trequire(order[orderId].sender == address(0), 'OrderAlreadyExists');\n\n\t\t// update transaction\n\t\tuint256 _protocolFee;\n\t\tif (_rate == 100) {\n\t\t\t// local transfer (rate = 1)\n\t\t\t_protocolFee = 0;\n\t\t\trequire(_senderFee > 0, 'SenderFeeIsZero');\n\t\t} else {\n\t\t\t// fx transfer (rate != 1) - use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\t\t\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\n\t\t\t_protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\n\t\t}\n\t\torder[orderId] = Order({\n\t\t\tsender: msg.sender,\n\t\t\ttoken: _token,\n\t\t\tsenderFeeRecipient: _senderFeeRecipient,\n\t\t\tsenderFee: _senderFee,\n\t\t\tprotocolFee: _protocolFee,\n\t\t\tisFulfilled: false,\n\t\t\tisRefunded: false,\n\t\t\trefundAddress: _refundAddress,\n\t\t\tcurrentBPS: uint64(MAX_BPS),\n\t\t\tamount: _amount\n\t\t});\n\n\t\t// emit order created event\n\t\temit OrderCreated(\n\t\t\t_refundAddress,\n\t\t\t_token,\n\t\t\torder[orderId].amount,\n\t\t\t_protocolFee,\n\t\t\torderId,\n\t\t\t_rate,\n\t\t\tmessageHash\n\t\t);\n\t}\n\n\t/**\n\t * @dev Internal function to handle order creation.\n\t * @param _token The address of the token being traded.\n\t * @param _amount The amount of tokens being traded.\n\t * @param _refundAddress The address to refund the tokens in case of cancellation.\n\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\n\t * @param _senderFee The amount of the sender fee.\n\t */\n\tfunction _handler(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _refundAddress,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal view {\n\t\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\n\t\trequire(_amount != 0, 'AmountIsZero');\n\t\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\n\n\t\tif (_senderFee != 0) {\n\t\t\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\n\t\t}\n\t}\n\n\t/* ##################################################################\n AGGREGATOR FUNCTIONS\n ################################################################## */\n\t/** @dev See {settleOut-IGateway}. */\n\tfunction settleOut(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(_rebatePercent <= MAX_BPS, 'InvalidRebatePercent');\n\n\t\t// load the token into memory\n\t\taddress token = order[_orderId].token;\n\n\t\t// subtract sum of amount based on the input _settlePercent\n\t\tuint256 currentOrderBPS = order[_orderId].currentBPS;\n\t\trequire(_settlePercent > 0 && _settlePercent <= currentOrderBPS, \"InvalidSettlePercent\");\n\t\torder[_orderId].currentBPS -= _settlePercent;\n\n\t\tif (order[_orderId].currentBPS == 0) {\n\t\t\t// update the transaction to be fulfilled\n\t\t\torder[_orderId].isFulfilled = true;\n\n\t\t\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee != 0) {\n\t\t\t\t// FX transfer - sender keeps all fee\n\t\t\t\t_handleFxTransferFeeSplitting(_orderId, token, order[_orderId].senderFeeRecipient, order[_orderId].senderFee);\n\t\t\t}\n\t\t}\n\n\t\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee == 0) {\n\t\t\t// local transfer - split sender fee\n\t\t\t_handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, order[_orderId].senderFeeRecipient, _settlePercent);\n\t\t}\n\n\t\t// transfer to liquidity provider\n\t\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / currentOrderBPS;\n\t\torder[_orderId].amount -= liquidityProviderAmount;\n\n\t\tif (order[_orderId].protocolFee != 0) {\n\t\t\t// FX transfer: use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\t\tuint256 aggregatorFee = (liquidityProviderAmount * settings.providerToAggregatorFx) /\tMAX_BPS;\n\t\t\tliquidityProviderAmount -= aggregatorFee;\n\n\t\t\tif (_rebatePercent != 0) {\n\t\t\t\t// calculate rebate amount\n\t\t\t\tuint256 rebateAmount = (aggregatorFee * _rebatePercent) / MAX_BPS;\n\t\t\t\taggregatorFee -= rebateAmount;\n\t\t\t\tliquidityProviderAmount += rebateAmount;\n\t\t\t}\n\n\t\t\t// transfer aggregator fee\n\t\t\tIERC20(token).transfer(treasuryAddress, aggregatorFee);\n\t\t}\n\n\t\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\n\n\t\t// emit settled event\n\t\temit SettleOut(\n\t\t\t_splitOrderId,\n\t\t\t_orderId,\n\t\t\t_liquidityProvider,\n\t\t\t_settlePercent,\n\t\t\t_rebatePercent\n\t\t);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {settleIn-IGateway}. */\n\tfunction settleIn(\n\t\tbytes32 _orderId,\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _senderFeeRecipient,\n\t\tuint96 _senderFee,\n\t\taddress _recipient,\n\t\tuint96 _rate\n\t) external whenNotPaused returns (bool) {\n\t\trequire(order[_orderId].sender == address(0), 'OrderAlreadyExists');\n\t\trequire(_amount > MAX_BPS, 'InvalidAmount');\n\t\t_handler(_token, _amount, _recipient, _senderFeeRecipient, _senderFee);\n\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\tuint256 amountToSettle = _amount;\n\t\tuint256 aggregatorFee;\n\n\t\t// determine if this is FX or local transfer based on rate\n\t\tif (_rate == 100) {\n\t\t\t// local transfer: no protocol fee from amount\n\t\t\trequire(_senderFee > 0, 'SenderFeeIsZero');\n\t\t} else {\n\t\t\t// FX transfer: use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\t\t\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\n\t\t\t\n\t\t\taggregatorFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\n\t\t\t\n\t\t\tif (aggregatorFee > 0) {\n\t\t\t\tamountToSettle -= aggregatorFee;\n\t\t\t\tIERC20(_token).transfer(treasuryAddress, aggregatorFee);\n\t\t\t}\n\t\t}\n\n\t\torder[_orderId].sender = _recipient;\n\t\torder[_orderId].token = _token;\n\t\torder[_orderId].senderFeeRecipient = _senderFeeRecipient;\n\t\torder[_orderId].senderFee = _senderFee;\n\t\torder[_orderId].protocolFee = aggregatorFee;\n\t\torder[_orderId].isFulfilled = true;\n\t\torder[_orderId].amount = amountToSettle;\n\n\t\tIERC20(_token).transfer(_recipient, amountToSettle);\n\n\t\t// handle fee splitting after order state is recorded\n\t\tif (_senderFee != 0) {\n\t\t\tif (aggregatorFee == 0) {\n\t\t\t\t// local transfer: split sender fee\n\t\t\t\t_handleLocalTransferFeeSplitting(_orderId, msg.sender, _senderFeeRecipient, uint64(MAX_BPS));\n\t\t\t} else {\n\t\t\t\t// FX transfer: split sender fee per senderToAggregator settings\n\t\t\t\t_handleFxTransferFeeSplitting(_orderId, _token, _senderFeeRecipient, _senderFee);\n\t\t\t}\n\t\t}\n\n\t\t// emit settlement event\n\t\temit SettleIn(\n\t\t\t_orderId,\n\t\t\tmsg.sender,\n\t\t\t_recipient,\n\t\t\tamountToSettle,\n\t\t\t_token,\n\t\t\taggregatorFee,\n\t\t\t_rate\n\t\t);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {refund-IGateway}. */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\n\n\t\tif (_fee > 0) {\n\t\t\t// transfer refund fee to the treasury\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\n\t\t}\n\n\t\t// reset state values\n\t\torder[_orderId].isRefunded = true;\n\t\torder[_orderId].currentBPS = 0;\n\n\t\t// deduct fee from order amount\n\t\tuint256 refundAmount = order[_orderId].amount - _fee;\n\n\t\t// transfer refund amount and sender fee to the refund address\n\t\tIERC20(order[_orderId].token).transfer(\n\t\t\torder[_orderId].refundAddress,\n\t\t\trefundAmount + order[_orderId].senderFee\n\t\t);\n\n\t\t// emit refunded event\n\t\temit OrderRefunded(_fee, _orderId);\n\n\t\treturn true;\n\t}\n\n\t/* ##################################################################\n VIEW CALLS\n ################################################################## */\n\t/** @dev See {getOrderInfo-IGateway}. */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\n\t\treturn order[_orderId];\n\t}\n\n\t/** @dev See {isTokenSupported-IGateway}. */\n\tfunction isTokenSupported(address _token) external view returns (bool) {\n\t\tif (_isTokenSupported[_token] == 1) return true;\n\t\treturn false;\n\t}\n\n\t/** @dev See {getAggregator-IGateway}. */\n\tfunction getAggregator() external view returns (address) {\n\t\treturn _aggregatorAddress;\n\t}\n\n\tfunction _handleLocalTransferFeeSplitting(\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\taddress _senderFeeRecipient,\n\t\tuint64 _settlePercent\n\t) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\tuint256 senderFee = order[_orderId].senderFee;\n\t\taddress token = order[_orderId].token;\n\n\t\t// Calculate splits based on config\n\t\tuint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS;\n\t\tuint256 currentProviderAmount = (providerAmount * _settlePercent) / MAX_BPS;\n\t\tuint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) / MAX_BPS;\n\t\tuint256 senderAmount = senderFee - providerAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount != 0 && order[_orderId].currentBPS == 0) {\n\t\t\tIERC20(token).transfer(_senderFeeRecipient, senderAmount);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount != 0) {\n\t\t\tIERC20(token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Transfer provider portion to the liquidity provider who fulfilled the order\n\t\tcurrentProviderAmount = currentProviderAmount - aggregatorAmount;\n\t\tif (currentProviderAmount != 0) {\n\t\t\tIERC20(token).transfer(_liquidityProvider, currentProviderAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount);\n\t\temit LocalTransferFeeSplit(_orderId, senderAmount, currentProviderAmount, aggregatorAmount);\n\t}\n\n\tfunction _handleFxTransferFeeSplitting(\n\t\tbytes32 _orderId,\n\t\taddress _token,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\n\t\t// Calculate sender portion based on senderToAggregator setting (similar to settleOut FX)\n\t\tuint256 senderAmount = (_senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS;\n\t\tuint256 aggregatorAmount = _senderFee - senderAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount > 0) {\n\t\t\tIERC20(_token).transfer(_senderFeeRecipient, senderAmount);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount > 0) {\n\t\t\tIERC20(_token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount);\n\t\temit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount);\n\t}\n}\n" + }, + "project/contracts/GatewaySettingManager.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\n\n/**\n * @title GatewaySettingManager\n * @dev This contract manages the settings and configurations for the Gateway protocol.\n */\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\n\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\n\tuint256 internal MAX_BPS;\n\tuint64 internal protocolFeePercent; // DEPRECATED — kept for proxy storage compatibility (do not remove)\n\taddress internal treasuryAddress;\n\taddress internal _aggregatorAddress;\n\tmapping(address => uint256) internal _isTokenSupported;\n\n\t// Token-specific fee settings\n\tstruct TokenFeeSettings {\n\t\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\n\t\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\n\t\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\n\t\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\n\t}\n\n\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\n\n\tuint256[49] private __gap;\n\n\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\n\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\n\tevent SetFeeRecipient(address indexed treasuryAddress);\n\tevent TokenFeeSettingsUpdated(\n\t\taddress indexed token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t);\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\n\t/**\n\t * @dev Sets the boolean value for a specific setting.\n\t * @param what The setting to be updated.\n\t * @param value The address or value associated with the setting.\n\t * @param status The boolean value to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\trequire(status == 1 || status == 2, 'Gateway: invalid status');\n\t\tif (what == 'token') {\n\t\t\t_isTokenSupported[value] = status;\n\t\t\temit SettingManagerBool(what, value, status);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Updates a protocol address.\n\t * @param what The address type to be updated (treasury or aggregator).\n\t * @param value The new address to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\tbool updated;\n\t\tif (what == 'treasury') {\n\t\t\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\n\t\t\ttreasuryAddress = value;\n\t\t\tupdated = true;\n\t\t} else if (what == 'aggregator') {\n\t\t\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\n\t\t\t_aggregatorAddress = value;\n\t\t\tupdated = true;\n\t\t}\n\t\tif (updated) {\n\t\t\temit ProtocolAddressUpdated(what, value);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Sets token-specific fee settings for stablecoins.\n\t * @param token The token address to configure.\n\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n\t * Requirements:\n\t * - The token must be supported.\n\t * - Fee percentages must be within valid ranges.\n\t */\n\tfunction setTokenFeeSettings(\n\t\taddress token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t) external onlyOwner {\n\t\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\n\t\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\n\t\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\n\t\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\n\t\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\n\n\t\t_tokenFeeSettings[token] = TokenFeeSettings({\n\t\t\tsenderToProvider: senderToProvider,\n\t\t\tproviderToAggregator: providerToAggregator,\n\t\t\tsenderToAggregator: senderToAggregator,\n\t\t\tproviderToAggregatorFx: providerToAggregatorFx\n\t\t});\n\n\t\temit TokenFeeSettingsUpdated(\n\t\t\ttoken,\n\t\t\tsenderToProvider,\n\t\t\tproviderToAggregator,\n\t\t\tsenderToAggregator,\n\t\t\tproviderToAggregatorFx\n\t\t);\n\t}\n\n\t/**\n\t * @dev Gets token-specific fee settings.\n\t * @param token The token address to query.\n\t * @return TokenFeeSettings struct containing all fee settings for the token.\n\t */\n\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\n\t\treturn _tokenFeeSettings[token];\n\t}\n}\n" + }, + "project/contracts/interfaces/IGateway.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGateway {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t * @param rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t */\n\tevent SettleOut(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint64 settlePercent,\n\t\tuint64 rebatePercent\n\t);\n\n\t/**\n * @dev Emitted when an onramp order is successfully processed\n */\n event SettleIn(\n bytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n address indexed recipient,\n uint256 amount,\n address token,\n uint256 aggregatorFee,\n\t\tuint96 rate\n );\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(bytes32 indexed orderId, address indexed sender, uint256 indexed amount);\n\n\t/**\n\t * @dev Emitted when a local transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param providerAmount The amount that goes to the provider.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent LocalTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 providerAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/**\n\t * @dev Emitted when an FX transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent FxTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settleOut(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external returns (bool);\n\n\t/**\n * @notice Process settleIn order\n * @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator\n * @dev It process an order and transfers tokens to the recipient after deducting sender fees\n * @param _orderId Unique identifier for the order being processed\n * @param _token Address of the token to be sent to the user\n * @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\n * @param _senderFeeRecipient Address that will receive the sender fee\n * @param _senderFee Amount of fee to be paid to the sender fee recipient\n * @param _recipient Address of the recipient who will receive the tokens\n * @param _rate Rate at which the tokens are being sent\n * @return success Boolean indicating if the operation was successful\n */\n function settleIn(\n bytes32 _orderId,\n address _token,\n uint256 _amount,\n address _senderFeeRecipient,\n uint96 _senderFee,\n address _recipient,\n uint96 _rate\n ) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n\n\t/**\n\t * @notice Gets the address of the aggregator.\n\t * @return address The address of the aggregator.\n\t */\n\tfunction getAggregator() external view returns (address);\n}\n" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.output.json b/artifacts/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.output.json new file mode 100644 index 0000000..0a87f2a --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee","output":{"contracts":{"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol":{"Ownable2StepUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"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. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":\"Ownable2StepUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":{\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75267b14b60dc216d01d596a4008189a6c44d3314e53eded0edb1e757d95be16\",\"dweb:/ipfs/QmQoMaxTRT6V7uQj9USfdQH9jh1crywB9auVjThzUSAbG2\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol":{"OwnableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"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\":\"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. By default, the owner account will be the one that deploys the contract. 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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":\"OwnableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"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] ```\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_initialized\":{\"custom:oz-retyped-from\":\"bool\",\"details\":\"Indicates that the contract has been initialized.\"},\"_initializing\":{\"details\":\"Indicates that the contract is in the process of being initialized.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol":{"PausableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"paused","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":{"paused()":"5c975abb"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol\":\"PausableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol\":{\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6d362da7417bc7d7cc8623f3d3f8f04c3808d043ee6379568c63a63ec14a124e\",\"dweb:/ipfs/QmYm3wDHUcfGh3MNiRqpWEBbSSYnDSyUsppDATy5DVsfui\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol":{"AddressUpgradeable":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220da5893e1cd811f6e5c41a44b688657e9d3cf27aad64ea27ab54f84bd19abde8464736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA PC SWAP4 0xE1 0xCD DUP2 0x1F PUSH15 0x5C41A44B688657E9D3CF27AAD64EA2 PUSH27 0xB54F84BD19ABDE8464736F6C634300081400330000000000000000 ","sourceMap":"194:9180:4:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;194:9180:4;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220da5893e1cd811f6e5c41a44b688657e9d3cf27aad64ea27ab54f84bd19abde8464736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA PC SWAP4 0xE1 0xCD DUP2 0x1F PUSH15 0x5C41A44B688657E9D3CF27AAD64EA2 PUSH27 0xB54F84BD19ABDE8464736F6C634300081400330000000000000000 ","sourceMap":"194:9180:4:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":\"AddressUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]}},\"version\":1}"}},"project/contracts/Gateway.sol":{"Gateway":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"aggregatorFee","type":"uint256"},{"indexed":false,"internalType":"uint96","name":"rate","type":"uint96"}],"name":"SettleIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"SettleOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint96","name":"_senderFee","type":"uint96"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint96","name":"_rate","type":"uint96"}],"name":"settleIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settleOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_1036":{"entryPoint":null,"id":1036,"parameterSlots":0,"returnSlots":0},"@_disableInitializers_389":{"entryPoint":33,"id":389,"parameterSlots":0,"returnSlots":0},"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:608:10","statements":[{"nodeType":"YulBlock","src":"6:3:10","statements":[]},{"body":{"nodeType":"YulBlock","src":"188:229:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"205:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"216:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"198:6:10"},"nodeType":"YulFunctionCall","src":"198:21:10"},"nodeType":"YulExpressionStatement","src":"198:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"239:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"250:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"235:3:10"},"nodeType":"YulFunctionCall","src":"235:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"255:2:10","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"228:6:10"},"nodeType":"YulFunctionCall","src":"228:30:10"},"nodeType":"YulExpressionStatement","src":"228:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"278:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"289:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"274:3:10"},"nodeType":"YulFunctionCall","src":"274:18:10"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469","kind":"string","nodeType":"YulLiteral","src":"294:34:10","type":"","value":"Initializable: contract is initi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"267:6:10"},"nodeType":"YulFunctionCall","src":"267:62:10"},"nodeType":"YulExpressionStatement","src":"267:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"349:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"360:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"345:3:10"},"nodeType":"YulFunctionCall","src":"345:18:10"},{"hexValue":"616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"365:9:10","type":"","value":"alizing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"338:6:10"},"nodeType":"YulFunctionCall","src":"338:37:10"},"nodeType":"YulExpressionStatement","src":"338:37:10"},{"nodeType":"YulAssignment","src":"384:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"396:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"407:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"392:3:10"},"nodeType":"YulFunctionCall","src":"392:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"384:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"165:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"179:4:10","type":""}],"src":"14:403:10"},{"body":{"nodeType":"YulBlock","src":"519:87:10","statements":[{"nodeType":"YulAssignment","src":"529:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"541:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"552:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"537:3:10"},"nodeType":"YulFunctionCall","src":"537:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"529:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"571:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"586:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"594:4:10","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"582:3:10"},"nodeType":"YulFunctionCall","src":"582:17:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"564:6:10"},"nodeType":"YulFunctionCall","src":"564:36:10"},"nodeType":"YulExpressionStatement","src":"564:36:10"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"488:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"499:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"510:4:10","type":""}],"src":"422:184:10"}]},"contents":"{\n { }\n function abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__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), \"Initializable: contract is initi\")\n mstore(add(headStart, 96), \"alizing\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xff))\n }\n}","id":10,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH3 0x1B PUSH3 0x21 JUMP JUMPDEST PUSH3 0xDF JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x8D 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 0x496E697469616C697A61626C653A20636F6E747261637420697320696E697469 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x616C697A696E67 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 SLOAD PUSH1 0xFF SWAP1 DUP2 AND EQ PUSH3 0xDD JUMPI PUSH0 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST JUMP JUMPDEST PUSH2 0x2CA4 DUP1 PUSH3 0xED PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x127 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x809804F7 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x374 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x385 JUMPI DUP1 PUSH4 0xD839DE63 EQ PUSH2 0x398 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3BC JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x809804F7 EQ PUSH2 0x2EA JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x30B JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0x31B JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0x32E JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xEF JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x1BB JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x2E2 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x32553EFA EQ PUSH2 0x12B JUMPI DUP1 PUSH4 0x3AD59DBC EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x182 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x195 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x279F JUMP JUMPDEST PUSH2 0x3CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x98C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x180 PUSH2 0x190 CALLDATASIZE PUSH1 0x4 PUSH2 0x27F2 JUMP JUMPDEST PUSH2 0x99E JUMP JUMPDEST PUSH1 0xCD SLOAD PUSH1 0xFF AND PUSH2 0x13E JUMP JUMPDEST PUSH2 0x180 PUSH2 0xB8B JUMP JUMPDEST PUSH2 0x13E PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x281C JUMP JUMPDEST PUSH2 0xB9C JUMP JUMPDEST PUSH2 0x13E PUSH2 0x1C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x283C JUMP JUMPDEST PUSH2 0xEAD JUMP JUMPDEST PUSH2 0x2D5 PUSH2 0x1DC CALLDATASIZE PUSH1 0x4 PUSH2 0x285C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x140 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xE0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x100 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x120 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH0 SWAP1 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP3 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH2 0x140 DUP2 ADD DUP6 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 DUP4 ADD SLOAD DUP2 AND SWAP4 DUP3 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP3 ADD SLOAD DUP4 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0x4 DUP2 ADD SLOAD PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x5 DUP2 ADD SLOAD DUP1 DUP5 AND ISZERO ISZERO PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x100 DUP1 DUP3 DIV SWAP1 SWAP5 AND ISZERO ISZERO PUSH1 0xC0 DUP7 ADD MSTORE PUSH3 0x10000 SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0xE0 DUP5 ADD MSTORE PUSH1 0x6 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x7 ADD SLOAD PUSH2 0x120 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x2873 JUMP JUMPDEST PUSH2 0x180 PUSH2 0xEDB JUMP JUMPDEST PUSH2 0x2FD PUSH2 0x2F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x294E JUMP JUMPDEST PUSH2 0xF55 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x1456 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x156F JUMP JUMPDEST PUSH2 0x180 PUSH2 0x329 CALLDATASIZE PUSH1 0x4 PUSH2 0x2A0D JUMP JUMPDEST PUSH2 0x157F JUMP JUMPDEST PUSH2 0x341 PUSH2 0x33C CALLDATASIZE PUSH1 0x4 PUSH2 0x283C JUMP JUMPDEST PUSH2 0x1812 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 SWAP2 DUP3 ADD MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x393 CALLDATASIZE PUSH1 0x4 PUSH2 0x2A4B JUMP JUMPDEST PUSH2 0x1886 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x2A7D JUMP JUMPDEST PUSH2 0x19A1 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x3CA CALLDATASIZE PUSH1 0x4 PUSH2 0x283C JUMP JUMPDEST PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x99 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x421 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 0x27B7363CA0B3B3B932B3B0BA37B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD AND ISZERO PUSH2 0x474 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 0x13DC99195C919D5B199A5B1B1959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD PUSH2 0x100 SWAP1 DIV AND ISZERO PUSH2 0x4CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x13DC99195C9499599D5B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO PUSH2 0x51E 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 0x125B9D985B1A59149958985D1954195C98D95B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0x6 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH8 0xFFFFFFFFFFFFFFFF DUP6 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x56E JUMPI POP DUP1 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x5B1 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 0x125B9D985B1A5914D95D1D1B1954195C98D95B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x6 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP9 AND SWAP3 SWAP1 PUSH2 0x5E4 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x2B04 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH0 DUP10 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x6 ADD SLOAD SWAP1 SWAP2 AND SWAP1 SUB SWAP1 POP PUSH2 0x691 JUMPI PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x5 DUP2 ADD DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x3 ADD SLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x65D JUMPI POP PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x691 JUMPI PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH2 0x691 SWAP2 DUP10 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x1EA0 JUMP JUMPDEST PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x3 ADD SLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x6BE JUMPI POP PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD ISZERO JUMPDEST ISZERO PUSH2 0x6EB JUMPI PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x6EB SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH2 0x2090 JUMP JUMPDEST PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x7 ADD SLOAD DUP3 SWAP1 PUSH2 0x713 SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP10 AND SWAP1 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x71D SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x742 SWAP2 SWAP1 PUSH2 0x2B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH0 DUP9 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD ISZERO PUSH2 0x8AD JUMPI PUSH0 DUP9 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 SWAP1 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 MSTORE PUSH1 0x9B DUP4 MSTORE DUP2 DUP5 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE SWAP2 DUP2 ADD SLOAD SWAP4 DUP3 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP4 ADD SLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x97 SLOAD SWAP2 SWAP3 SWAP2 SWAP1 PUSH2 0x7C6 SWAP1 DUP6 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x7D0 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH2 0x7DC DUP2 DUP5 PUSH2 0x2B61 JUMP JUMPDEST SWAP3 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP8 AND ISZERO PUSH2 0x82D JUMPI PUSH1 0x97 SLOAD PUSH0 SWAP1 PUSH2 0x807 PUSH8 0xFFFFFFFFFFFFFFFF DUP11 AND DUP5 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x811 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH2 0x81D DUP2 DUP4 PUSH2 0x2B61 JUMP JUMPDEST SWAP2 POP PUSH2 0x829 DUP2 DUP6 PUSH2 0x2B74 JUMP JUMPDEST SWAP4 POP POP JUMPDEST PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x869 SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x885 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x8A9 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x8DB SWAP1 DUP11 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8F7 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x91B SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x1E4A1A8AD772D3F0DBB387879BC5E8FAADF16E0513BF77D50620741AB92B4C45 DUP12 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH2 0x975 SWAP4 SWAP3 SWAP2 SWAP1 SWAP3 DUP4 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF SWAP2 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x994 PUSH2 0x2389 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x23E3 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x9A6 PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9F4 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 PUSH8 0x7472656173757279 PUSH1 0xC0 SHL SUB PUSH2 0xAAA JUMPI PUSH1 0x98 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SUB PUSH2 0xA79 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 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x1E481CD95D PUSH1 0xDA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST POP PUSH1 0x98 DUP1 SLOAD PUSH9 0x10000000000000000 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x40 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH2 0xB4A JUMP JUMPDEST DUP3 PUSH10 0x30B3B3B932B3B0BA37B9 PUSH1 0xB1 SHL SUB PUSH2 0xB4A JUMPI PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND SUB PUSH2 0xB2B 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 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x18591E481CD95D PUSH1 0xCA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST POP PUSH1 0x99 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 SSTORE PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0xB86 JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP5 SWAP1 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 SWAP1 PUSH0 SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB93 PUSH2 0x2389 JUMP JUMPDEST PUSH2 0x99C PUSH0 PUSH2 0x2435 JUMP JUMPDEST PUSH1 0x99 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xBE9 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 0x27B7363CA0B3B3B932B3B0BA37B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD AND ISZERO PUSH2 0xC3C 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 0x13DC99195C919D5B199A5B1B1959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD PUSH2 0x100 SWAP1 DIV AND ISZERO PUSH2 0xC93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x13DC99195C9499599D5B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD DUP4 GT ISZERO PUSH2 0xCEB 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 0x4665654578636565647350726F746F636F6C466565 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP3 ISZERO PUSH2 0xD7F JUMPI PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x98 SLOAD SWAP2 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0xD3D SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD59 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xD7D SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x5 DUP2 ADD DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE PUSH1 0x6 DUP2 ADD DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE PUSH1 0x7 ADD SLOAD PUSH2 0xDC3 SWAP1 DUP6 SWAP1 PUSH2 0x2B61 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0x5 DUP3 ADD SLOAD PUSH1 0x3 SWAP1 SWAP3 ADD SLOAD SWAP3 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH3 0x10000 SWAP1 DIV SWAP1 SWAP2 AND SWAP1 PUSH2 0xE09 SWAP1 DUP6 PUSH2 0x2B74 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE26 SWAP3 SWAP2 SWAP1 PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE42 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xE66 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xE99 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 SUB PUSH2 0xED4 JUMPI POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x65 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0xF49 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3732BB9037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0xF52 DUP2 PUSH2 0x2435 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xF5E PUSH2 0x244E JUMP JUMPDEST PUSH2 0xF6B DUP10 DUP10 DUP7 DUP10 DUP10 PUSH2 0x2494 JUMP JUMPDEST PUSH0 DUP3 SWAP1 SUB PUSH2 0xFB0 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 0x92DCECC2D8D2C89ACAE6E6C2CECA90C2E6D PUSH1 0x73 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH4 0x23B872DD CALLER ADDRESS PUSH2 0xFCB DUP10 DUP14 PUSH2 0x2B74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x101C JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1040 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH2 0x100 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x105C DUP4 PUSH2 0x2BBF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH0 DUP2 DUP2 MSTORE PUSH2 0x100 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD SWAP2 DUP3 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE CHAINID PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE DUP2 MLOAD PUSH1 0x20 SWAP3 DUP4 ADD KECCAK256 PUSH0 DUP2 DUP2 MSTORE PUSH1 0xFF SWAP1 SWAP4 MSTORE SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1100 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 0x4F72646572416C7265616479457869737473 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x64 SUB PUSH2 0x1158 JUMPI POP PUSH0 DUP6 PUSH2 0x1153 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x53656E64657246656549735A65726F PUSH1 0x88 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x1210 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x11F0 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 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x1202 SWAP1 DUP13 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x120C SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP11 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40CCD1CEB111A3C186EF9911E1B876DC1F789ED331B86097B3B8851055B6A137 DUP5 DUP7 DUP14 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x1441 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2BD7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO DUP1 DUP1 ISZERO PUSH2 0x1474 JUMPI POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0xFF SWAP1 SWAP2 AND LT JUMPDEST DUP1 PUSH2 0x148D JUMPI POP ADDRESS EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x148D JUMPI POP PUSH0 SLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST PUSH2 0x14F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x191E481A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE DUP1 ISZERO PUSH2 0x1511 JUMPI PUSH0 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMPDEST PUSH3 0x186A0 PUSH1 0x97 SSTORE PUSH2 0x1520 PUSH2 0x25D9 JUMP JUMPDEST PUSH2 0x1528 PUSH2 0x2607 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF52 JUMPI PUSH0 DUP1 SLOAD PUSH2 0xFF00 NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x1577 PUSH2 0x2389 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x2635 JUMP JUMPDEST PUSH2 0x1587 PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x15EE 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 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x164C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x3232B9 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x16AE 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 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x3932B3B0BA37B9 PUSH1 0xC9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x170E 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 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x33B0BA37B9 PUSH1 0xD9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x1773 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0xE4CACEC2E8DEE440CCF PUSH1 0xB3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP1 DUP3 ADD DUP4 MSTORE DUP7 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP8 DUP2 MSTORE DUP4 DUP6 ADD DUP8 DUP2 MSTORE PUSH1 0x60 DUP1 DUP7 ADD DUP9 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9B DUP8 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP2 MLOAD PUSH1 0x2 DUP8 ADD SSTORE SWAP1 MLOAD PUSH1 0x3 SWAP1 SWAP6 ADD SWAP5 SWAP1 SWAP5 SSTORE DUP5 MLOAD DUP10 DUP2 MSTORE SWAP2 DUP3 ADD DUP9 SWAP1 MSTORE SWAP4 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1839 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x188E PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x18DC 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP1 PUSH1 0x1 EQ DUP1 PUSH2 0x18EB JUMPI POP DUP1 PUSH1 0x2 EQ JUMPDEST PUSH2 0x1937 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 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP3 PUSH5 0x3A37B5B2B7 PUSH1 0xD9 SHL SUB PUSH2 0xB86 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP5 SWAP1 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C SWAP1 PUSH2 0x1994 SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x19AA PUSH2 0x244E JUMP JUMPDEST PUSH0 DUP9 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1A03 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 0x4F72646572416C7265616479457869737473 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP7 GT PUSH2 0x1A44 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x125B9D985B1A59105B5BDD5B9D PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x1A5A DUP8 DUP8 DUP6 DUP9 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x2494 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH4 0x23B872DD CALLER ADDRESS PUSH2 0x1A7E PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP10 AND DUP12 PUSH2 0x2B74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1ACF JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1AF3 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP DUP6 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH1 0x64 SUB PUSH2 0x1B56 JUMPI PUSH0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND GT PUSH2 0x1B51 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x53656E64657246656549735A65726F PUSH1 0x88 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x1C9D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x1BEE 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 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x1C00 SWAP1 DUP12 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x1C0A SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP2 POP DUP2 ISZERO PUSH2 0x1C9B JUMPI PUSH2 0x1C1C DUP3 DUP5 PUSH2 0x2B61 JUMP JUMPDEST PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP14 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x1C59 SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP2 DIV AND SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C75 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1C99 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST POP JUMPDEST PUSH0 DUP11 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP10 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP3 DUP4 AND OR DUP4 SSTORE PUSH1 0x1 DUP1 DUP5 ADD DUP1 SLOAD DUP16 DUP5 AND SWAP1 DUP6 AND DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x2 DUP6 ADD DUP1 SLOAD SWAP4 DUP15 AND SWAP4 SWAP1 SWAP5 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP11 AND PUSH1 0x3 DUP5 ADD SSTORE PUSH1 0x4 DUP1 DUP5 ADD DUP7 SWAP1 SSTORE PUSH1 0x5 DUP5 ADD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE PUSH1 0x7 SWAP1 SWAP3 ADD DUP6 SWAP1 SSTORE SWAP2 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 PUSH4 0xA9059CBB SWAP2 PUSH2 0x1D3F SWAP2 DUP10 SWAP2 DUP8 SWAP2 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D5B JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1D7F SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND ISZERO PUSH2 0x1DBE JUMPI DUP1 PUSH0 SUB PUSH2 0x1DA9 JUMPI PUSH2 0x1DA4 DUP11 CALLER DUP10 PUSH1 0x97 SLOAD PUSH2 0x2090 JUMP JUMPDEST PUSH2 0x1DBE JUMP JUMPDEST PUSH2 0x1DBE DUP11 DUP11 DUP10 DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1EA0 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH1 0x60 DUP3 ADD MSTORE SWAP1 DUP7 AND SWAP1 CALLER SWAP1 DUP13 SWAP1 PUSH32 0xB5273CCCE1412B056C9246E834895F9D717974C505F8E5A6C7D08CD0300A066B SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1E37 PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x65 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 0x1E68 PUSH1 0x33 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD DUP4 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP2 DUP4 ADD DUP3 SWAP1 MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x97 SLOAD SWAP2 SWAP3 SWAP2 SWAP1 PUSH2 0x1EF7 SWAP1 DUP3 PUSH2 0x2B61 JUMP JUMPDEST PUSH2 0x1F01 SWAP1 DUP6 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x1F0B SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F18 DUP3 DUP6 PUSH2 0x2B61 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO PUSH2 0x1F90 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x1F4E SWAP1 DUP9 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F6A JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1F8E SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP1 ISZERO PUSH2 0x2014 JUMPI PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP10 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x1FD2 SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FEE JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2012 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP2 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x879F6EB4F1506EB3029982039D90B0E82B07D54F5E911A3C644A974863A98A6C PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE DUP9 SWAP2 PUSH32 0x88592047496A7850992DC5E8CD92A9B633CEF0D191A4F5E87FD745C7D382630A SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 DUP1 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP8 MSTORE PUSH1 0x9B DUP6 MSTORE DUP4 DUP8 KECCAK256 DUP5 MLOAD PUSH1 0x80 DUP2 ADD DUP7 MSTORE DUP2 SLOAD DUP2 MSTORE SWAP3 DUP2 ADD SLOAD DUP4 DUP8 ADD MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP5 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x3 SWAP4 DUP5 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE DUP11 DUP8 MSTORE SWAP5 SWAP1 SWAP4 MSTORE ADD SLOAD PUSH1 0x97 SLOAD DUP3 MLOAD SWAP3 SWAP5 SWAP2 SWAP4 SWAP3 PUSH2 0x2101 SWAP1 DUP6 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x210B SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP7 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x2127 SWAP2 SWAP1 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x2131 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP7 PUSH1 0x20 ADD MLOAD DUP4 PUSH2 0x2147 SWAP2 SWAP1 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x2151 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x215E DUP5 DUP8 PUSH2 0x2B61 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2186 JUMPI POP PUSH0 DUP12 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x6 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND ISZERO JUMPDEST ISZERO PUSH2 0x21FB JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x21B9 SWAP1 DUP13 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x21D5 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x21F9 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP2 ISZERO PUSH2 0x227F JUMPI PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x223D SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2259 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x227D SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST PUSH2 0x2289 DUP3 DUP5 PUSH2 0x2B61 JUMP JUMPDEST SWAP3 POP DUP3 ISZERO PUSH2 0x2301 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x22BF SWAP1 DUP14 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22DB JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x22FF SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP1 DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP13 PUSH32 0x879F6EB4F1506EB3029982039D90B0E82B07D54F5E911A3C644A974863A98A6C PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE DUP12 SWAP1 PUSH32 0x831C7CC0006D91462607C476603366C48469D125DE6228C0791A7090EFD7F7A4 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x99C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x23EB PUSH2 0x2672 JUMP JUMPDEST PUSH1 0xCD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER 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 LOG1 JUMP JUMPDEST PUSH1 0x65 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0xF52 DUP2 PUSH2 0x26BB JUMP JUMPDEST PUSH1 0xCD SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x99C 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 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x24EF 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 0x151BDAD95B939BDD14DD5C1C1BDC9D1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP4 PUSH0 SUB PUSH2 0x252D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x416D6F756E7449735A65726F PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2576 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 0x5468726F775A65726F41646472657373 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x25D2 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x25D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x270C JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x262D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x273B JUMP JUMPDEST PUSH2 0x263D PUSH2 0x244E JUMP JUMPDEST PUSH1 0xCD DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x2418 CALLER SWAP1 JUMP JUMPDEST PUSH1 0xCD SLOAD PUSH1 0xFF AND PUSH2 0x99C 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 0x14185D5CD8589B194E881B9BDD081C185D5CD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2732 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH2 0x99C CALLER PUSH2 0x2435 JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2761 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH1 0xCD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2783 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2783 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x27B3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH2 0x27CA PUSH1 0x40 DUP8 ADD PUSH2 0x276D JUMP JUMPDEST SWAP3 POP PUSH2 0x27D8 PUSH1 0x60 DUP8 ADD PUSH2 0x2788 JUMP JUMPDEST SWAP2 POP PUSH2 0x27E6 PUSH1 0x80 DUP8 ADD PUSH2 0x2788 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2803 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x2813 PUSH1 0x20 DUP5 ADD PUSH2 0x276D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x282D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x284C JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2855 DUP3 PUSH2 0x276D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x286C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH2 0x140 DUP2 ADD PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x289F PUSH1 0x20 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD PUSH2 0x28BA PUSH1 0x40 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x28E2 PUSH1 0xA0 DUP5 ADD DUP3 ISZERO ISZERO SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP4 ADD MLOAD PUSH2 0x28F6 PUSH1 0xC0 DUP5 ADD DUP3 ISZERO ISZERO SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP4 ADD MLOAD PUSH2 0x2911 PUSH1 0xE0 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x100 DUP4 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP5 DUP4 ADD MSTORE POP POP PUSH2 0x120 SWAP3 DUP4 ADD MLOAD SWAP2 SWAP1 SWAP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2783 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xE0 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x2965 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x296E DUP10 PUSH2 0x276D JUMP JUMPDEST SWAP8 POP PUSH1 0x20 DUP10 ADD CALLDATALOAD SWAP7 POP PUSH2 0x2983 PUSH1 0x40 DUP11 ADD PUSH2 0x2938 JUMP JUMPDEST SWAP6 POP PUSH2 0x2991 PUSH1 0x60 DUP11 ADD PUSH2 0x276D JUMP JUMPDEST SWAP5 POP PUSH1 0x80 DUP10 ADD CALLDATALOAD SWAP4 POP PUSH2 0x29A6 PUSH1 0xA0 DUP11 ADD PUSH2 0x276D JUMP JUMPDEST SWAP3 POP PUSH1 0xC0 DUP10 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x29C2 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP12 ADD SWAP2 POP DUP12 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x29D5 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x29E3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP13 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x29F4 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 POP DUP1 SWAP4 POP POP POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 SWAP1 SWAP4 SWAP7 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2A21 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2A2A DUP7 PUSH2 0x276D JUMP JUMPDEST SWAP8 PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP8 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP7 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP7 POP PUSH1 0x80 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2A5D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x2A6D PUSH1 0x20 DUP6 ADD PUSH2 0x276D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x2A93 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD SWAP7 POP PUSH2 0x2AA3 PUSH1 0x20 DUP10 ADD PUSH2 0x276D JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x2AB8 PUSH1 0x60 DUP10 ADD PUSH2 0x276D JUMP JUMPDEST SWAP4 POP PUSH2 0x2AC6 PUSH1 0x80 DUP10 ADD PUSH2 0x2938 JUMP JUMPDEST SWAP3 POP PUSH2 0x2AD4 PUSH1 0xA0 DUP10 ADD PUSH2 0x276D JUMP JUMPDEST SWAP2 POP PUSH2 0x2AE2 PUSH1 0xC0 DUP10 ADD PUSH2 0x2938 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 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 0x60 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP1 DUP3 GT ISZERO PUSH2 0x2B24 JUMPI PUSH2 0x2B24 PUSH2 0x2AF0 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xEA7 JUMPI PUSH2 0xEA7 PUSH2 0x2AF0 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x2B5C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xEA7 JUMPI PUSH2 0xEA7 PUSH2 0x2AF0 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xEA7 JUMPI PUSH2 0xEA7 PUSH2 0x2AF0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2BB0 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2855 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x2BD0 JUMPI PUSH2 0x2BD0 PUSH2 0x2AF0 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP6 DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD MSTORE DUP2 PUSH1 0x80 DUP3 ADD MSTORE DUP2 DUP4 PUSH1 0xA0 DUP4 ADD CALLDATACOPY PUSH0 DUP2 DUP4 ADD PUSH1 0xA0 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP3 ADD PUSH1 0x1F NOT AND ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2B SWAP1 DUP3 ADD MSTORE PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x40 DUP3 ADD MSTORE PUSH11 0x6E697469616C697A696E67 PUSH1 0xA8 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP12 0xAD 0xF8 POP PUSH30 0x3C332105C6330629ACE84DE47800F1B403FD428E6B0B1CD5EE7AD064736F PUSH13 0x63430008140033000000000000 ","sourceMap":"390:12697:7:-:0;;;708:44;;;;;;;;;-1:-1:-1;726:22:7;:20;:22::i;:::-;390:12697;;5939:280:2;6007:13;;;;;;;6006:14;5998:66;;;;-1:-1:-1;;;5998:66:2;;216:2:10;5998:66:2;;;198:21:10;255:2;235:18;;;228:30;294:34;274:18;;;267:62;-1:-1:-1;;;345:18:10;;;338:37;392:19;;5998:66:2;;;;;;;;6078:12;;6094:15;6078:12;;;:31;6074:139;;6125:12;:30;;-1:-1:-1;;6125:30:2;6140:15;6125:30;;;;;;6174:28;;564:36:10;;;6174:28:2;;552:2:10;537:18;6174:28:2;;;;;;;6074:139;5939:280::o;422:184:10:-;390:12697:7;;;;;;"},"deployedBytecode":{"functionDebugData":{"@__Ownable2Step_init_26":{"entryPoint":9689,"id":26,"parameterSlots":0,"returnSlots":0},"@__Ownable_init_unchained_145":{"entryPoint":9996,"id":145,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_440":{"entryPoint":9735,"id":440,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_unchained_450":{"entryPoint":10043,"id":450,"parameterSlots":0,"returnSlots":0},"@_checkOwner_176":{"entryPoint":9097,"id":176,"parameterSlots":0,"returnSlots":0},"@_handleFxTransferFeeSplitting_2143":{"entryPoint":7840,"id":2143,"parameterSlots":4,"returnSlots":0},"@_handleLocalTransferFeeSplitting_2067":{"entryPoint":8336,"id":2067,"parameterSlots":4,"returnSlots":0},"@_handler_1313":{"entryPoint":9364,"id":1313,"parameterSlots":5,"returnSlots":0},"@_msgSender_894":{"entryPoint":null,"id":894,"parameterSlots":0,"returnSlots":1},"@_pause_514":{"entryPoint":9781,"id":514,"parameterSlots":0,"returnSlots":0},"@_requireNotPaused_487":{"entryPoint":9294,"id":487,"parameterSlots":0,"returnSlots":0},"@_requirePaused_498":{"entryPoint":9842,"id":498,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_233":{"entryPoint":9915,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":9269,"id":78,"parameterSlots":1,"returnSlots":0},"@_unpause_530":{"entryPoint":9187,"id":530,"parameterSlots":0,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":3803,"id":100,"parameterSlots":0,"returnSlots":0},"@createOrder_1257":{"entryPoint":3925,"id":1257,"parameterSlots":8,"returnSlots":1},"@getAggregator_1931":{"entryPoint":null,"id":1931,"parameterSlots":0,"returnSlots":1},"@getOrderInfo_1903":{"entryPoint":null,"id":1903,"parameterSlots":1,"returnSlots":1},"@getTokenFeeSettings_2419":{"entryPoint":6162,"id":2419,"parameterSlots":1,"returnSlots":1},"@initialize_1053":{"entryPoint":5206,"id":1053,"parameterSlots":0,"returnSlots":0},"@isContract_554":{"entryPoint":null,"id":554,"parameterSlots":1,"returnSlots":1},"@isTokenSupported_1922":{"entryPoint":3757,"id":1922,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":null,"id":162,"parameterSlots":0,"returnSlots":1},"@pause_1076":{"entryPoint":5487,"id":1076,"parameterSlots":0,"returnSlots":0},"@paused_475":{"entryPoint":null,"id":475,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":null,"id":41,"parameterSlots":0,"returnSlots":1},"@refund_1889":{"entryPoint":2972,"id":1889,"parameterSlots":2,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":2955,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_2405":{"entryPoint":5503,"id":2405,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_2260":{"entryPoint":6278,"id":2260,"parameterSlots":3,"returnSlots":0},"@settleIn_1783":{"entryPoint":6561,"id":1783,"parameterSlots":7,"returnSlots":1},"@settleOut_1556":{"entryPoint":975,"id":1556,"parameterSlots":5,"returnSlots":1},"@transferOwnership_61":{"entryPoint":7727,"id":61,"parameterSlots":1,"returnSlots":0},"@unpause_1086":{"entryPoint":2444,"id":1086,"parameterSlots":0,"returnSlots":0},"@updateProtocolAddress_2332":{"entryPoint":2462,"id":2332,"parameterSlots":2,"returnSlots":0},"abi_decode_address":{"entryPoint":10093,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":10300,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":10765,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr":{"entryPoint":10574,"id":null,"parameterSlots":2,"returnSlots":8},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":11168,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32":{"entryPoint":10332,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":10226,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":10827,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32t_addresst_uint256t_addresst_uint96t_addresst_uint96":{"entryPoint":10877,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64t_uint64":{"entryPoint":10143,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_uint256t_bytes32":{"entryPoint":10268,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint64":{"entryPoint":10120,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96":{"entryPoint":10552,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_bool":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":11143,"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_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint64_t_uint64__to_t_bytes32_t_uint64_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_483313f3910f88408dc57d1e1e6afbe0d5fb0a2ab36e197f65b49ed489f7c914__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_743dad5224dc289d7e19e9f682872f71f5b60dacb182b9d01db88f90dd62d93d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":11299,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_Order_$2530_memory_ptr__to_t_struct$_Order_$2530_memory_ptr__fromStack_reversed":{"entryPoint":10355,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$2170_memory_ptr__to_t_struct$_TokenFeeSettings_$2170_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_address_t_uint256_t_uint96__to_t_uint256_t_address_t_uint256_t_uint96__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":11223,"id":null,"parameterSlots":6,"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_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint96":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"checked_add_t_uint256":{"entryPoint":11124,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":11074,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":11051,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":11105,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint96":{"entryPoint":11012,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":11199,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":10992,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:23131:10","statements":[{"nodeType":"YulBlock","src":"6:3:10","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:10","statements":[{"nodeType":"YulAssignment","src":"73:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:10"},"nodeType":"YulFunctionCall","src":"82:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:10"}]},{"body":{"nodeType":"YulBlock","src":"165:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:10"},"nodeType":"YulFunctionCall","src":"167:12:10"},"nodeType":"YulExpressionStatement","src":"167:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:10"},"nodeType":"YulFunctionCall","src":"146:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:10"},"nodeType":"YulFunctionCall","src":"142:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:10"},"nodeType":"YulFunctionCall","src":"131:31:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:10"},"nodeType":"YulFunctionCall","src":"121:42:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:10"},"nodeType":"YulFunctionCall","src":"114:50:10"},"nodeType":"YulIf","src":"111:70:10"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:10","type":""}],"src":"14:173:10"},{"body":{"nodeType":"YulBlock","src":"240:123:10","statements":[{"nodeType":"YulAssignment","src":"250:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"272:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"259:12:10"},"nodeType":"YulFunctionCall","src":"259:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"250:5:10"}]},{"body":{"nodeType":"YulBlock","src":"341:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"350:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"353:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"343:6:10"},"nodeType":"YulFunctionCall","src":"343:12:10"},"nodeType":"YulExpressionStatement","src":"343:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"301:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"312:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"319:18:10","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"308:3:10"},"nodeType":"YulFunctionCall","src":"308:30:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"298:2:10"},"nodeType":"YulFunctionCall","src":"298:41:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"291:6:10"},"nodeType":"YulFunctionCall","src":"291:49:10"},"nodeType":"YulIf","src":"288:69:10"}]},"name":"abi_decode_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"219:6:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"230:5:10","type":""}],"src":"192:171:10"},{"body":{"nodeType":"YulBlock","src":"504:332:10","statements":[{"body":{"nodeType":"YulBlock","src":"551:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"560:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"563:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"553:6:10"},"nodeType":"YulFunctionCall","src":"553:12:10"},"nodeType":"YulExpressionStatement","src":"553:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"525:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"534:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"521:3:10"},"nodeType":"YulFunctionCall","src":"521:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"546:3:10","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"517:3:10"},"nodeType":"YulFunctionCall","src":"517:33:10"},"nodeType":"YulIf","src":"514:53:10"},{"nodeType":"YulAssignment","src":"576:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"599:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"586:12:10"},"nodeType":"YulFunctionCall","src":"586:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"576:6:10"}]},{"nodeType":"YulAssignment","src":"618:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"645:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"656:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"641:3:10"},"nodeType":"YulFunctionCall","src":"641:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"628:12:10"},"nodeType":"YulFunctionCall","src":"628:32:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"618:6:10"}]},{"nodeType":"YulAssignment","src":"669:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"702:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"713:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"698:3:10"},"nodeType":"YulFunctionCall","src":"698:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"679:18:10"},"nodeType":"YulFunctionCall","src":"679:38:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"669:6:10"}]},{"nodeType":"YulAssignment","src":"726:47:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"758:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"769:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"754:3:10"},"nodeType":"YulFunctionCall","src":"754:18:10"}],"functionName":{"name":"abi_decode_uint64","nodeType":"YulIdentifier","src":"736:17:10"},"nodeType":"YulFunctionCall","src":"736:37:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"726:6:10"}]},{"nodeType":"YulAssignment","src":"782:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"814:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"825:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"810:3:10"},"nodeType":"YulFunctionCall","src":"810:19:10"}],"functionName":{"name":"abi_decode_uint64","nodeType":"YulIdentifier","src":"792:17:10"},"nodeType":"YulFunctionCall","src":"792:38:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"782:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"438:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"449:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"461:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"469:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"477:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"485:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"493:6:10","type":""}],"src":"368:468:10"},{"body":{"nodeType":"YulBlock","src":"882:50:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"899:3:10"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"918:5:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"911:6:10"},"nodeType":"YulFunctionCall","src":"911:13:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"904:6:10"},"nodeType":"YulFunctionCall","src":"904:21:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"892:6:10"},"nodeType":"YulFunctionCall","src":"892:34:10"},"nodeType":"YulExpressionStatement","src":"892:34:10"}]},"name":"abi_encode_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"866:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"873:3:10","type":""}],"src":"841:91:10"},{"body":{"nodeType":"YulBlock","src":"1032:92:10","statements":[{"nodeType":"YulAssignment","src":"1042:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1054:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1065:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1050:3:10"},"nodeType":"YulFunctionCall","src":"1050:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1042:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1084:9:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1109:6:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1102:6:10"},"nodeType":"YulFunctionCall","src":"1102:14:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1095:6:10"},"nodeType":"YulFunctionCall","src":"1095:22:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1077:6:10"},"nodeType":"YulFunctionCall","src":"1077:41:10"},"nodeType":"YulExpressionStatement","src":"1077:41:10"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1001:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1012:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1023:4:10","type":""}],"src":"937:187:10"},{"body":{"nodeType":"YulBlock","src":"1173:60:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1190:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1199:5:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1214:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1219:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1210:3:10"},"nodeType":"YulFunctionCall","src":"1210:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"1223:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1206:3:10"},"nodeType":"YulFunctionCall","src":"1206:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1195:3:10"},"nodeType":"YulFunctionCall","src":"1195:31:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1183:6:10"},"nodeType":"YulFunctionCall","src":"1183:44:10"},"nodeType":"YulExpressionStatement","src":"1183:44:10"}]},"name":"abi_encode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1157:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1164:3:10","type":""}],"src":"1129:104:10"},{"body":{"nodeType":"YulBlock","src":"1339:102:10","statements":[{"nodeType":"YulAssignment","src":"1349:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1361:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1372:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1357:3:10"},"nodeType":"YulFunctionCall","src":"1357:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1349:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1391:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1406:6:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1422:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1427:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1418:3:10"},"nodeType":"YulFunctionCall","src":"1418:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"1431:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1414:3:10"},"nodeType":"YulFunctionCall","src":"1414:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1402:3:10"},"nodeType":"YulFunctionCall","src":"1402:32:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1384:6:10"},"nodeType":"YulFunctionCall","src":"1384:51:10"},"nodeType":"YulExpressionStatement","src":"1384:51:10"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1308:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1319:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1330:4:10","type":""}],"src":"1238:203:10"},{"body":{"nodeType":"YulBlock","src":"1533:167:10","statements":[{"body":{"nodeType":"YulBlock","src":"1579:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1588:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1591:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1581:6:10"},"nodeType":"YulFunctionCall","src":"1581:12:10"},"nodeType":"YulExpressionStatement","src":"1581:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1554:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1563:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1550:3:10"},"nodeType":"YulFunctionCall","src":"1550:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"1575:2:10","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1546:3:10"},"nodeType":"YulFunctionCall","src":"1546:32:10"},"nodeType":"YulIf","src":"1543:52:10"},{"nodeType":"YulAssignment","src":"1604:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1627:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1614:12:10"},"nodeType":"YulFunctionCall","src":"1614:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1604:6:10"}]},{"nodeType":"YulAssignment","src":"1646:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1679:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1690:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1675:3:10"},"nodeType":"YulFunctionCall","src":"1675:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1656:18:10"},"nodeType":"YulFunctionCall","src":"1656:38:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1646:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1491:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1502:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1514:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1522:6:10","type":""}],"src":"1446:254:10"},{"body":{"nodeType":"YulBlock","src":"1792:161:10","statements":[{"body":{"nodeType":"YulBlock","src":"1838:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1847:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1850:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1840:6:10"},"nodeType":"YulFunctionCall","src":"1840:12:10"},"nodeType":"YulExpressionStatement","src":"1840:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1813:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1822:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1809:3:10"},"nodeType":"YulFunctionCall","src":"1809:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"1834:2:10","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1805:3:10"},"nodeType":"YulFunctionCall","src":"1805:32:10"},"nodeType":"YulIf","src":"1802:52:10"},{"nodeType":"YulAssignment","src":"1863:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1886:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1873:12:10"},"nodeType":"YulFunctionCall","src":"1873:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1863:6:10"}]},{"nodeType":"YulAssignment","src":"1905:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1932:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1943:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1928:3:10"},"nodeType":"YulFunctionCall","src":"1928:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1915:12:10"},"nodeType":"YulFunctionCall","src":"1915:32:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1905:6:10"}]}]},"name":"abi_decode_tuple_t_uint256t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1750:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1761:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1773:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1781:6:10","type":""}],"src":"1705:248:10"},{"body":{"nodeType":"YulBlock","src":"2028:116:10","statements":[{"body":{"nodeType":"YulBlock","src":"2074:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2083:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2086:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2076:6:10"},"nodeType":"YulFunctionCall","src":"2076:12:10"},"nodeType":"YulExpressionStatement","src":"2076:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2049:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"2058:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2045:3:10"},"nodeType":"YulFunctionCall","src":"2045:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"2070:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2041:3:10"},"nodeType":"YulFunctionCall","src":"2041:32:10"},"nodeType":"YulIf","src":"2038:52:10"},{"nodeType":"YulAssignment","src":"2099:39:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2128:9:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2109:18:10"},"nodeType":"YulFunctionCall","src":"2109:29:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2099:6:10"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1994:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2005:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2017:6:10","type":""}],"src":"1958:186:10"},{"body":{"nodeType":"YulBlock","src":"2219:110:10","statements":[{"body":{"nodeType":"YulBlock","src":"2265:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2274:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2277:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2267:6:10"},"nodeType":"YulFunctionCall","src":"2267:12:10"},"nodeType":"YulExpressionStatement","src":"2267:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2240:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"2249:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2236:3:10"},"nodeType":"YulFunctionCall","src":"2236:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"2261:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2232:3:10"},"nodeType":"YulFunctionCall","src":"2232:32:10"},"nodeType":"YulIf","src":"2229:52:10"},{"nodeType":"YulAssignment","src":"2290:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2313:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2300:12:10"},"nodeType":"YulFunctionCall","src":"2300:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2290:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2185:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2196:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2208:6:10","type":""}],"src":"2149:180:10"},{"body":{"nodeType":"YulBlock","src":"2377:67:10","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2394:3:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2403:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"2410:26:10","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2399:3:10"},"nodeType":"YulFunctionCall","src":"2399:38:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2387:6:10"},"nodeType":"YulFunctionCall","src":"2387:51:10"},"nodeType":"YulExpressionStatement","src":"2387:51:10"}]},"name":"abi_encode_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2361:5:10","type":""},{"name":"pos","nodeType":"YulTypedName","src":"2368:3:10","type":""}],"src":"2334:110:10"},{"body":{"nodeType":"YulBlock","src":"2596:1036:10","statements":[{"nodeType":"YulAssignment","src":"2606:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2618:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2629:3:10","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2614:3:10"},"nodeType":"YulFunctionCall","src":"2614:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2606:4:10"}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2667:6:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2661:5:10"},"nodeType":"YulFunctionCall","src":"2661:13:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"2676:9:10"}],"functionName":{"name":"abi_encode_address","nodeType":"YulIdentifier","src":"2642:18:10"},"nodeType":"YulFunctionCall","src":"2642:44:10"},"nodeType":"YulExpressionStatement","src":"2642:44:10"},{"nodeType":"YulVariableDeclaration","src":"2695:44:10","value":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2725:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"2733:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2721:3:10"},"nodeType":"YulFunctionCall","src":"2721:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2715:5:10"},"nodeType":"YulFunctionCall","src":"2715:24:10"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"2699:12:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"2767:12:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2785:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2796:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2781:3:10"},"nodeType":"YulFunctionCall","src":"2781:20:10"}],"functionName":{"name":"abi_encode_address","nodeType":"YulIdentifier","src":"2748:18:10"},"nodeType":"YulFunctionCall","src":"2748:54:10"},"nodeType":"YulExpressionStatement","src":"2748:54:10"},{"nodeType":"YulVariableDeclaration","src":"2811:46:10","value":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2843:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"2851:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2839:3:10"},"nodeType":"YulFunctionCall","src":"2839:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2833:5:10"},"nodeType":"YulFunctionCall","src":"2833:24:10"},"variables":[{"name":"memberValue0_1","nodeType":"YulTypedName","src":"2815:14:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nodeType":"YulIdentifier","src":"2885:14:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2905:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2916:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2901:3:10"},"nodeType":"YulFunctionCall","src":"2901:20:10"}],"functionName":{"name":"abi_encode_address","nodeType":"YulIdentifier","src":"2866:18:10"},"nodeType":"YulFunctionCall","src":"2866:56:10"},"nodeType":"YulExpressionStatement","src":"2866:56:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2942:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2953:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2938:3:10"},"nodeType":"YulFunctionCall","src":"2938:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2970:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"2978:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2966:3:10"},"nodeType":"YulFunctionCall","src":"2966:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2960:5:10"},"nodeType":"YulFunctionCall","src":"2960:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2931:6:10"},"nodeType":"YulFunctionCall","src":"2931:54:10"},"nodeType":"YulExpressionStatement","src":"2931:54:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3005:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3016:4:10","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3001:3:10"},"nodeType":"YulFunctionCall","src":"3001:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3033:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"3041:4:10","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3029:3:10"},"nodeType":"YulFunctionCall","src":"3029:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3023:5:10"},"nodeType":"YulFunctionCall","src":"3023:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2994:6:10"},"nodeType":"YulFunctionCall","src":"2994:54:10"},"nodeType":"YulExpressionStatement","src":"2994:54:10"},{"nodeType":"YulVariableDeclaration","src":"3057:46:10","value":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3089:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"3097:4:10","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3085:3:10"},"nodeType":"YulFunctionCall","src":"3085:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3079:5:10"},"nodeType":"YulFunctionCall","src":"3079:24:10"},"variables":[{"name":"memberValue0_2","nodeType":"YulTypedName","src":"3061:14:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_2","nodeType":"YulIdentifier","src":"3128:14:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3148:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3159:4:10","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3144:3:10"},"nodeType":"YulFunctionCall","src":"3144:20:10"}],"functionName":{"name":"abi_encode_bool","nodeType":"YulIdentifier","src":"3112:15:10"},"nodeType":"YulFunctionCall","src":"3112:53:10"},"nodeType":"YulExpressionStatement","src":"3112:53:10"},{"nodeType":"YulVariableDeclaration","src":"3174:46:10","value":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3206:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"3214:4:10","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3202:3:10"},"nodeType":"YulFunctionCall","src":"3202:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3196:5:10"},"nodeType":"YulFunctionCall","src":"3196:24:10"},"variables":[{"name":"memberValue0_3","nodeType":"YulTypedName","src":"3178:14:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_3","nodeType":"YulIdentifier","src":"3245:14:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3265:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3276:4:10","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3261:3:10"},"nodeType":"YulFunctionCall","src":"3261:20:10"}],"functionName":{"name":"abi_encode_bool","nodeType":"YulIdentifier","src":"3229:15:10"},"nodeType":"YulFunctionCall","src":"3229:53:10"},"nodeType":"YulExpressionStatement","src":"3229:53:10"},{"nodeType":"YulVariableDeclaration","src":"3291:46:10","value":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3323:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"3331:4:10","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3319:3:10"},"nodeType":"YulFunctionCall","src":"3319:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3313:5:10"},"nodeType":"YulFunctionCall","src":"3313:24:10"},"variables":[{"name":"memberValue0_4","nodeType":"YulTypedName","src":"3295:14:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_4","nodeType":"YulIdentifier","src":"3365:14:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3385:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3396:4:10","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3381:3:10"},"nodeType":"YulFunctionCall","src":"3381:20:10"}],"functionName":{"name":"abi_encode_address","nodeType":"YulIdentifier","src":"3346:18:10"},"nodeType":"YulFunctionCall","src":"3346:56:10"},"nodeType":"YulExpressionStatement","src":"3346:56:10"},{"nodeType":"YulVariableDeclaration","src":"3411:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"3421:6:10","type":"","value":"0x0100"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3415:2:10","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3436:44:10","value":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3468:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"3476:2:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3464:3:10"},"nodeType":"YulFunctionCall","src":"3464:15:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3458:5:10"},"nodeType":"YulFunctionCall","src":"3458:22:10"},"variables":[{"name":"memberValue0_5","nodeType":"YulTypedName","src":"3440:14:10","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_5","nodeType":"YulIdentifier","src":"3507:14:10"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3527:9:10"},{"name":"_1","nodeType":"YulIdentifier","src":"3538:2:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3523:3:10"},"nodeType":"YulFunctionCall","src":"3523:18:10"}],"functionName":{"name":"abi_encode_uint96","nodeType":"YulIdentifier","src":"3489:17:10"},"nodeType":"YulFunctionCall","src":"3489:53:10"},"nodeType":"YulExpressionStatement","src":"3489:53:10"},{"nodeType":"YulVariableDeclaration","src":"3551:16:10","value":{"kind":"number","nodeType":"YulLiteral","src":"3561:6:10","type":"","value":"0x0120"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"3555:2:10","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3587:9:10"},{"name":"_2","nodeType":"YulIdentifier","src":"3598:2:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3583:3:10"},"nodeType":"YulFunctionCall","src":"3583:18:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3613:6:10"},{"name":"_2","nodeType":"YulIdentifier","src":"3621:2:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3609:3:10"},"nodeType":"YulFunctionCall","src":"3609:15:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3603:5:10"},"nodeType":"YulFunctionCall","src":"3603:22:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3576:6:10"},"nodeType":"YulFunctionCall","src":"3576:50:10"},"nodeType":"YulExpressionStatement","src":"3576:50:10"}]},"name":"abi_encode_tuple_t_struct$_Order_$2530_memory_ptr__to_t_struct$_Order_$2530_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2565:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2576:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2587:4:10","type":""}],"src":"2449:1183:10"},{"body":{"nodeType":"YulBlock","src":"3685:131:10","statements":[{"nodeType":"YulAssignment","src":"3695:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3717:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3704:12:10"},"nodeType":"YulFunctionCall","src":"3704:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"3695:5:10"}]},{"body":{"nodeType":"YulBlock","src":"3794:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3803:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3806:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3796:6:10"},"nodeType":"YulFunctionCall","src":"3796:12:10"},"nodeType":"YulExpressionStatement","src":"3796:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3746:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3757:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"3764:26:10","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3753:3:10"},"nodeType":"YulFunctionCall","src":"3753:38:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"3743:2:10"},"nodeType":"YulFunctionCall","src":"3743:49:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3736:6:10"},"nodeType":"YulFunctionCall","src":"3736:57:10"},"nodeType":"YulIf","src":"3733:77:10"}]},"name":"abi_decode_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3664:6:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"3675:5:10","type":""}],"src":"3637:179:10"},{"body":{"nodeType":"YulBlock","src":"4012:835:10","statements":[{"body":{"nodeType":"YulBlock","src":"4059:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4068:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4071:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4061:6:10"},"nodeType":"YulFunctionCall","src":"4061:12:10"},"nodeType":"YulExpressionStatement","src":"4061:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4033:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"4042:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4029:3:10"},"nodeType":"YulFunctionCall","src":"4029:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"4054:3:10","type":"","value":"224"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4025:3:10"},"nodeType":"YulFunctionCall","src":"4025:33:10"},"nodeType":"YulIf","src":"4022:53:10"},{"nodeType":"YulAssignment","src":"4084:39:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4113:9:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4094:18:10"},"nodeType":"YulFunctionCall","src":"4094:29:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4084:6:10"}]},{"nodeType":"YulAssignment","src":"4132:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4159:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4170:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4155:3:10"},"nodeType":"YulFunctionCall","src":"4155:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4142:12:10"},"nodeType":"YulFunctionCall","src":"4142:32:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4132:6:10"}]},{"nodeType":"YulAssignment","src":"4183:47:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4215:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4226:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4211:3:10"},"nodeType":"YulFunctionCall","src":"4211:18:10"}],"functionName":{"name":"abi_decode_uint96","nodeType":"YulIdentifier","src":"4193:17:10"},"nodeType":"YulFunctionCall","src":"4193:37:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"4183:6:10"}]},{"nodeType":"YulAssignment","src":"4239:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4272:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4283:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4268:3:10"},"nodeType":"YulFunctionCall","src":"4268:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4249:18:10"},"nodeType":"YulFunctionCall","src":"4249:38:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"4239:6:10"}]},{"nodeType":"YulAssignment","src":"4296:43:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4323:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4334:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4319:3:10"},"nodeType":"YulFunctionCall","src":"4319:19:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4306:12:10"},"nodeType":"YulFunctionCall","src":"4306:33:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"4296:6:10"}]},{"nodeType":"YulAssignment","src":"4348:49:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4381:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4392:3:10","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4377:3:10"},"nodeType":"YulFunctionCall","src":"4377:19:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"4358:18:10"},"nodeType":"YulFunctionCall","src":"4358:39:10"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"4348:6:10"}]},{"nodeType":"YulVariableDeclaration","src":"4406:47:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4437:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4448:3:10","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4433:3:10"},"nodeType":"YulFunctionCall","src":"4433:19:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4420:12:10"},"nodeType":"YulFunctionCall","src":"4420:33:10"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4410:6:10","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4462:28:10","value":{"kind":"number","nodeType":"YulLiteral","src":"4472:18:10","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4466:2:10","type":""}]},{"body":{"nodeType":"YulBlock","src":"4517:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4526:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4529:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4519:6:10"},"nodeType":"YulFunctionCall","src":"4519:12:10"},"nodeType":"YulExpressionStatement","src":"4519:12:10"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4505:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"4513:2:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4502:2:10"},"nodeType":"YulFunctionCall","src":"4502:14:10"},"nodeType":"YulIf","src":"4499:34:10"},{"nodeType":"YulVariableDeclaration","src":"4542:32:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4556:9:10"},{"name":"offset","nodeType":"YulIdentifier","src":"4567:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4552:3:10"},"nodeType":"YulFunctionCall","src":"4552:22:10"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"4546:2:10","type":""}]},{"body":{"nodeType":"YulBlock","src":"4622:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4631:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4634:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4624:6:10"},"nodeType":"YulFunctionCall","src":"4624:12:10"},"nodeType":"YulExpressionStatement","src":"4624:12:10"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"4601:2:10"},{"kind":"number","nodeType":"YulLiteral","src":"4605:4:10","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4597:3:10"},"nodeType":"YulFunctionCall","src":"4597:13:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4612:7:10"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4593:3:10"},"nodeType":"YulFunctionCall","src":"4593:27:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"4586:6:10"},"nodeType":"YulFunctionCall","src":"4586:35:10"},"nodeType":"YulIf","src":"4583:55:10"},{"nodeType":"YulVariableDeclaration","src":"4647:30:10","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"4674:2:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4661:12:10"},"nodeType":"YulFunctionCall","src":"4661:16:10"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4651:6:10","type":""}]},{"body":{"nodeType":"YulBlock","src":"4704:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4713:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4716:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4706:6:10"},"nodeType":"YulFunctionCall","src":"4706:12:10"},"nodeType":"YulExpressionStatement","src":"4706:12:10"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4692:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"4700:2:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4689:2:10"},"nodeType":"YulFunctionCall","src":"4689:14:10"},"nodeType":"YulIf","src":"4686:34:10"},{"body":{"nodeType":"YulBlock","src":"4770:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4779:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4782:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4772:6:10"},"nodeType":"YulFunctionCall","src":"4772:12:10"},"nodeType":"YulExpressionStatement","src":"4772:12:10"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"4743:2:10"},{"name":"length","nodeType":"YulIdentifier","src":"4747:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4739:3:10"},"nodeType":"YulFunctionCall","src":"4739:15:10"},{"kind":"number","nodeType":"YulLiteral","src":"4756:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4735:3:10"},"nodeType":"YulFunctionCall","src":"4735:24:10"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4761:7:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4732:2:10"},"nodeType":"YulFunctionCall","src":"4732:37:10"},"nodeType":"YulIf","src":"4729:57:10"},{"nodeType":"YulAssignment","src":"4795:21:10","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"4809:2:10"},{"kind":"number","nodeType":"YulLiteral","src":"4813:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4805:3:10"},"nodeType":"YulFunctionCall","src":"4805:11:10"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"4795:6:10"}]},{"nodeType":"YulAssignment","src":"4825:16:10","value":{"name":"length","nodeType":"YulIdentifier","src":"4835:6:10"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"4825:6:10"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3922:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3933:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3945:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3953:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3961:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"3969:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"3977:6:10","type":""},{"name":"value5","nodeType":"YulTypedName","src":"3985:6:10","type":""},{"name":"value6","nodeType":"YulTypedName","src":"3993:6:10","type":""},{"name":"value7","nodeType":"YulTypedName","src":"4001:6:10","type":""}],"src":"3821:1026:10"},{"body":{"nodeType":"YulBlock","src":"4953:76:10","statements":[{"nodeType":"YulAssignment","src":"4963:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4975:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4986:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4971:3:10"},"nodeType":"YulFunctionCall","src":"4971:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4963:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5005:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"5016:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4998:6:10"},"nodeType":"YulFunctionCall","src":"4998:25:10"},"nodeType":"YulExpressionStatement","src":"4998:25:10"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4922:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4933:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4944:4:10","type":""}],"src":"4852:177:10"},{"body":{"nodeType":"YulBlock","src":"5172:322:10","statements":[{"body":{"nodeType":"YulBlock","src":"5219:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5228:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5231:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5221:6:10"},"nodeType":"YulFunctionCall","src":"5221:12:10"},"nodeType":"YulExpressionStatement","src":"5221:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5193:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"5202:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5189:3:10"},"nodeType":"YulFunctionCall","src":"5189:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"5214:3:10","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5185:3:10"},"nodeType":"YulFunctionCall","src":"5185:33:10"},"nodeType":"YulIf","src":"5182:53:10"},{"nodeType":"YulAssignment","src":"5244:39:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5273:9:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"5254:18:10"},"nodeType":"YulFunctionCall","src":"5254:29:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5244:6:10"}]},{"nodeType":"YulAssignment","src":"5292:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5319:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5330:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5315:3:10"},"nodeType":"YulFunctionCall","src":"5315:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5302:12:10"},"nodeType":"YulFunctionCall","src":"5302:32:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5292:6:10"}]},{"nodeType":"YulAssignment","src":"5343:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5370:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5381:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5366:3:10"},"nodeType":"YulFunctionCall","src":"5366:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5353:12:10"},"nodeType":"YulFunctionCall","src":"5353:32:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5343:6:10"}]},{"nodeType":"YulAssignment","src":"5394:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5421:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5432:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5417:3:10"},"nodeType":"YulFunctionCall","src":"5417:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5404:12:10"},"nodeType":"YulFunctionCall","src":"5404:32:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"5394:6:10"}]},{"nodeType":"YulAssignment","src":"5445:43:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5472:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5483:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5468:3:10"},"nodeType":"YulFunctionCall","src":"5468:19:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5455:12:10"},"nodeType":"YulFunctionCall","src":"5455:33:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"5445:6:10"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5106:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5117:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5129:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5137:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5145:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"5153:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"5161:6:10","type":""}],"src":"5034:460:10"},{"body":{"nodeType":"YulBlock","src":"5668:273:10","statements":[{"nodeType":"YulAssignment","src":"5678:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5690:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5701:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5686:3:10"},"nodeType":"YulFunctionCall","src":"5686:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5678:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5721:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5738:6:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5732:5:10"},"nodeType":"YulFunctionCall","src":"5732:13:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5714:6:10"},"nodeType":"YulFunctionCall","src":"5714:32:10"},"nodeType":"YulExpressionStatement","src":"5714:32:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5766:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5777:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5762:3:10"},"nodeType":"YulFunctionCall","src":"5762:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5794:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"5802:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5790:3:10"},"nodeType":"YulFunctionCall","src":"5790:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5784:5:10"},"nodeType":"YulFunctionCall","src":"5784:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5755:6:10"},"nodeType":"YulFunctionCall","src":"5755:54:10"},"nodeType":"YulExpressionStatement","src":"5755:54:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5829:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5840:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5825:3:10"},"nodeType":"YulFunctionCall","src":"5825:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5857:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"5865:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5853:3:10"},"nodeType":"YulFunctionCall","src":"5853:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5847:5:10"},"nodeType":"YulFunctionCall","src":"5847:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5818:6:10"},"nodeType":"YulFunctionCall","src":"5818:54:10"},"nodeType":"YulExpressionStatement","src":"5818:54:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5892:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5903:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5888:3:10"},"nodeType":"YulFunctionCall","src":"5888:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5920:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"5928:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5916:3:10"},"nodeType":"YulFunctionCall","src":"5916:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5910:5:10"},"nodeType":"YulFunctionCall","src":"5910:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5881:6:10"},"nodeType":"YulFunctionCall","src":"5881:54:10"},"nodeType":"YulExpressionStatement","src":"5881:54:10"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$2170_memory_ptr__to_t_struct$_TokenFeeSettings_$2170_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5637:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5648:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5659:4:10","type":""}],"src":"5499:442:10"},{"body":{"nodeType":"YulBlock","src":"6050:218:10","statements":[{"body":{"nodeType":"YulBlock","src":"6096:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6105:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6108:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6098:6:10"},"nodeType":"YulFunctionCall","src":"6098:12:10"},"nodeType":"YulExpressionStatement","src":"6098:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6071:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"6080:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6067:3:10"},"nodeType":"YulFunctionCall","src":"6067:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"6092:2:10","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6063:3:10"},"nodeType":"YulFunctionCall","src":"6063:32:10"},"nodeType":"YulIf","src":"6060:52:10"},{"nodeType":"YulAssignment","src":"6121:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6144:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6131:12:10"},"nodeType":"YulFunctionCall","src":"6131:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6121:6:10"}]},{"nodeType":"YulAssignment","src":"6163:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6196:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6207:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6192:3:10"},"nodeType":"YulFunctionCall","src":"6192:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"6173:18:10"},"nodeType":"YulFunctionCall","src":"6173:38:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"6163:6:10"}]},{"nodeType":"YulAssignment","src":"6220:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6247:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6258:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6243:3:10"},"nodeType":"YulFunctionCall","src":"6243:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6230:12:10"},"nodeType":"YulFunctionCall","src":"6230:32:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"6220:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6000:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6011:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6023:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6031:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"6039:6:10","type":""}],"src":"5946:322:10"},{"body":{"nodeType":"YulBlock","src":"6443:448:10","statements":[{"body":{"nodeType":"YulBlock","src":"6490:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6499:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6502:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6492:6:10"},"nodeType":"YulFunctionCall","src":"6492:12:10"},"nodeType":"YulExpressionStatement","src":"6492:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6464:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"6473:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6460:3:10"},"nodeType":"YulFunctionCall","src":"6460:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"6485:3:10","type":"","value":"224"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6456:3:10"},"nodeType":"YulFunctionCall","src":"6456:33:10"},"nodeType":"YulIf","src":"6453:53:10"},{"nodeType":"YulAssignment","src":"6515:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6538:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6525:12:10"},"nodeType":"YulFunctionCall","src":"6525:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6515:6:10"}]},{"nodeType":"YulAssignment","src":"6557:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6590:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6601:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6586:3:10"},"nodeType":"YulFunctionCall","src":"6586:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"6567:18:10"},"nodeType":"YulFunctionCall","src":"6567:38:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"6557:6:10"}]},{"nodeType":"YulAssignment","src":"6614:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6641:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6652:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6637:3:10"},"nodeType":"YulFunctionCall","src":"6637:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6624:12:10"},"nodeType":"YulFunctionCall","src":"6624:32:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"6614:6:10"}]},{"nodeType":"YulAssignment","src":"6665:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6698:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6709:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6694:3:10"},"nodeType":"YulFunctionCall","src":"6694:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"6675:18:10"},"nodeType":"YulFunctionCall","src":"6675:38:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"6665:6:10"}]},{"nodeType":"YulAssignment","src":"6722:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6754:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6765:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6750:3:10"},"nodeType":"YulFunctionCall","src":"6750:19:10"}],"functionName":{"name":"abi_decode_uint96","nodeType":"YulIdentifier","src":"6732:17:10"},"nodeType":"YulFunctionCall","src":"6732:38:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"6722:6:10"}]},{"nodeType":"YulAssignment","src":"6779:49:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6812:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6823:3:10","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6808:3:10"},"nodeType":"YulFunctionCall","src":"6808:19:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"6789:18:10"},"nodeType":"YulFunctionCall","src":"6789:39:10"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"6779:6:10"}]},{"nodeType":"YulAssignment","src":"6837:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6869:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6880:3:10","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6865:3:10"},"nodeType":"YulFunctionCall","src":"6865:19:10"}],"functionName":{"name":"abi_decode_uint96","nodeType":"YulIdentifier","src":"6847:17:10"},"nodeType":"YulFunctionCall","src":"6847:38:10"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"6837:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256t_addresst_uint96t_addresst_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6361:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6372:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6384:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6392:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"6400:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"6408:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"6416:6:10","type":""},{"name":"value5","nodeType":"YulTypedName","src":"6424:6:10","type":""},{"name":"value6","nodeType":"YulTypedName","src":"6432:6:10","type":""}],"src":"6273:618:10"},{"body":{"nodeType":"YulBlock","src":"7070:164:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7087:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7098:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7080:6:10"},"nodeType":"YulFunctionCall","src":"7080:21:10"},"nodeType":"YulExpressionStatement","src":"7080:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7121:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7132:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7117:3:10"},"nodeType":"YulFunctionCall","src":"7117:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"7137:2:10","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7110:6:10"},"nodeType":"YulFunctionCall","src":"7110:30:10"},"nodeType":"YulExpressionStatement","src":"7110:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7160:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7171:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7156:3:10"},"nodeType":"YulFunctionCall","src":"7156:18:10"},{"hexValue":"4f6e6c7941676772656761746f72","kind":"string","nodeType":"YulLiteral","src":"7176:16:10","type":"","value":"OnlyAggregator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7149:6:10"},"nodeType":"YulFunctionCall","src":"7149:44:10"},"nodeType":"YulExpressionStatement","src":"7149:44:10"},{"nodeType":"YulAssignment","src":"7202:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7214:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7225:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7210:3:10"},"nodeType":"YulFunctionCall","src":"7210:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7202:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7047:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7061:4:10","type":""}],"src":"6896:338:10"},{"body":{"nodeType":"YulBlock","src":"7413:164:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7430:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7441:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7423:6:10"},"nodeType":"YulFunctionCall","src":"7423:21:10"},"nodeType":"YulExpressionStatement","src":"7423:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7464:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7475:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7460:3:10"},"nodeType":"YulFunctionCall","src":"7460:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"7480:2:10","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7453:6:10"},"nodeType":"YulFunctionCall","src":"7453:30:10"},"nodeType":"YulExpressionStatement","src":"7453:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7503:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7514:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7499:3:10"},"nodeType":"YulFunctionCall","src":"7499:18:10"},{"hexValue":"4f7264657246756c66696c6c6564","kind":"string","nodeType":"YulLiteral","src":"7519:16:10","type":"","value":"OrderFulfilled"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7492:6:10"},"nodeType":"YulFunctionCall","src":"7492:44:10"},"nodeType":"YulExpressionStatement","src":"7492:44:10"},{"nodeType":"YulAssignment","src":"7545:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7557:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7568:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7553:3:10"},"nodeType":"YulFunctionCall","src":"7553:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7545:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7390:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7404:4:10","type":""}],"src":"7239:338:10"},{"body":{"nodeType":"YulBlock","src":"7756:163:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7773:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7784:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7766:6:10"},"nodeType":"YulFunctionCall","src":"7766:21:10"},"nodeType":"YulExpressionStatement","src":"7766:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7807:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7818:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7803:3:10"},"nodeType":"YulFunctionCall","src":"7803:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"7823:2:10","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7796:6:10"},"nodeType":"YulFunctionCall","src":"7796:30:10"},"nodeType":"YulExpressionStatement","src":"7796:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7846:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7857:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7842:3:10"},"nodeType":"YulFunctionCall","src":"7842:18:10"},{"hexValue":"4f72646572526566756e646564","kind":"string","nodeType":"YulLiteral","src":"7862:15:10","type":"","value":"OrderRefunded"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7835:6:10"},"nodeType":"YulFunctionCall","src":"7835:43:10"},"nodeType":"YulExpressionStatement","src":"7835:43:10"},{"nodeType":"YulAssignment","src":"7887:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7899:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"7910:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7895:3:10"},"nodeType":"YulFunctionCall","src":"7895:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7887:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7733:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7747:4:10","type":""}],"src":"7582:337:10"},{"body":{"nodeType":"YulBlock","src":"8098:170:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8115:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8126:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8108:6:10"},"nodeType":"YulFunctionCall","src":"8108:21:10"},"nodeType":"YulExpressionStatement","src":"8108:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8149:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8160:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8145:3:10"},"nodeType":"YulFunctionCall","src":"8145:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"8165:2:10","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8138:6:10"},"nodeType":"YulFunctionCall","src":"8138:30:10"},"nodeType":"YulExpressionStatement","src":"8138:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8188:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8199:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8184:3:10"},"nodeType":"YulFunctionCall","src":"8184:18:10"},{"hexValue":"496e76616c696452656261746550657263656e74","kind":"string","nodeType":"YulLiteral","src":"8204:22:10","type":"","value":"InvalidRebatePercent"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8177:6:10"},"nodeType":"YulFunctionCall","src":"8177:50:10"},"nodeType":"YulExpressionStatement","src":"8177:50:10"},{"nodeType":"YulAssignment","src":"8236:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8248:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8259:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8244:3:10"},"nodeType":"YulFunctionCall","src":"8244:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8236:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8075:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8089:4:10","type":""}],"src":"7924:344:10"},{"body":{"nodeType":"YulBlock","src":"8447:170:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8464:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8475:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8457:6:10"},"nodeType":"YulFunctionCall","src":"8457:21:10"},"nodeType":"YulExpressionStatement","src":"8457:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8498:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8509:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8494:3:10"},"nodeType":"YulFunctionCall","src":"8494:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"8514:2:10","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8487:6:10"},"nodeType":"YulFunctionCall","src":"8487:30:10"},"nodeType":"YulExpressionStatement","src":"8487:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8537:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8548:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8533:3:10"},"nodeType":"YulFunctionCall","src":"8533:18:10"},{"hexValue":"496e76616c6964536574746c6550657263656e74","kind":"string","nodeType":"YulLiteral","src":"8553:22:10","type":"","value":"InvalidSettlePercent"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8526:6:10"},"nodeType":"YulFunctionCall","src":"8526:50:10"},"nodeType":"YulExpressionStatement","src":"8526:50:10"},{"nodeType":"YulAssignment","src":"8585:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8597:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"8608:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8593:3:10"},"nodeType":"YulFunctionCall","src":"8593:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8585:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_743dad5224dc289d7e19e9f682872f71f5b60dacb182b9d01db88f90dd62d93d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8424:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8438:4:10","type":""}],"src":"8273:344:10"},{"body":{"nodeType":"YulBlock","src":"8654:95:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8671:1:10","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8678:3:10","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"8683:10:10","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"8674:3:10"},"nodeType":"YulFunctionCall","src":"8674:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8664:6:10"},"nodeType":"YulFunctionCall","src":"8664:31:10"},"nodeType":"YulExpressionStatement","src":"8664:31:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8711:1:10","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"8714:4:10","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8704:6:10"},"nodeType":"YulFunctionCall","src":"8704:15:10"},"nodeType":"YulExpressionStatement","src":"8704:15:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8735:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8738:4:10","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8728:6:10"},"nodeType":"YulFunctionCall","src":"8728:15:10"},"nodeType":"YulExpressionStatement","src":"8728:15:10"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"8622:127:10"},{"body":{"nodeType":"YulBlock","src":"8802:143:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8812:36:10","value":{"kind":"number","nodeType":"YulLiteral","src":"8822:26:10","type":"","value":"0xffffffffffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"8816:2:10","type":""}]},{"nodeType":"YulAssignment","src":"8857:35:10","value":{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"8873:1:10"},{"name":"_1","nodeType":"YulIdentifier","src":"8876:2:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8869:3:10"},"nodeType":"YulFunctionCall","src":"8869:10:10"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"8885:1:10"},{"name":"_1","nodeType":"YulIdentifier","src":"8888:2:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8881:3:10"},"nodeType":"YulFunctionCall","src":"8881:10:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8865:3:10"},"nodeType":"YulFunctionCall","src":"8865:27:10"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"8857:4:10"}]},{"body":{"nodeType":"YulBlock","src":"8917:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"8919:16:10"},"nodeType":"YulFunctionCall","src":"8919:18:10"},"nodeType":"YulExpressionStatement","src":"8919:18:10"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"8907:4:10"},{"name":"_1","nodeType":"YulIdentifier","src":"8913:2:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8904:2:10"},"nodeType":"YulFunctionCall","src":"8904:12:10"},"nodeType":"YulIf","src":"8901:38:10"}]},"name":"checked_sub_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"8784:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"8787:1:10","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"8793:4:10","type":""}],"src":"8754:191:10"},{"body":{"nodeType":"YulBlock","src":"9002:116:10","statements":[{"nodeType":"YulAssignment","src":"9012:20:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"9027:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"9030:1:10"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"9023:3:10"},"nodeType":"YulFunctionCall","src":"9023:9:10"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"9012:7:10"}]},{"body":{"nodeType":"YulBlock","src":"9090:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"9092:16:10"},"nodeType":"YulFunctionCall","src":"9092:18:10"},"nodeType":"YulExpressionStatement","src":"9092:18:10"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"9061:1:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9054:6:10"},"nodeType":"YulFunctionCall","src":"9054:9:10"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"9068:1:10"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"9075:7:10"},{"name":"x","nodeType":"YulIdentifier","src":"9084:1:10"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"9071:3:10"},"nodeType":"YulFunctionCall","src":"9071:15:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"9065:2:10"},"nodeType":"YulFunctionCall","src":"9065:22:10"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"9051:2:10"},"nodeType":"YulFunctionCall","src":"9051:37:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9044:6:10"},"nodeType":"YulFunctionCall","src":"9044:45:10"},"nodeType":"YulIf","src":"9041:71:10"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"8981:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"8984:1:10","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"8990:7:10","type":""}],"src":"8950:168:10"},{"body":{"nodeType":"YulBlock","src":"9169:171:10","statements":[{"body":{"nodeType":"YulBlock","src":"9200:111:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9221:1:10","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9228:3:10","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"9233:10:10","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9224:3:10"},"nodeType":"YulFunctionCall","src":"9224:20:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9214:6:10"},"nodeType":"YulFunctionCall","src":"9214:31:10"},"nodeType":"YulExpressionStatement","src":"9214:31:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9265:1:10","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"9268:4:10","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9258:6:10"},"nodeType":"YulFunctionCall","src":"9258:15:10"},"nodeType":"YulExpressionStatement","src":"9258:15:10"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9293:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9296:4:10","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9286:6:10"},"nodeType":"YulFunctionCall","src":"9286:15:10"},"nodeType":"YulExpressionStatement","src":"9286:15:10"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"9189:1:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9182:6:10"},"nodeType":"YulFunctionCall","src":"9182:9:10"},"nodeType":"YulIf","src":"9179:132:10"},{"nodeType":"YulAssignment","src":"9320:14:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"9329:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"9332:1:10"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"9325:3:10"},"nodeType":"YulFunctionCall","src":"9325:9:10"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"9320:1:10"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"9154:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"9157:1:10","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"9163:1:10","type":""}],"src":"9123:217:10"},{"body":{"nodeType":"YulBlock","src":"9394:79:10","statements":[{"nodeType":"YulAssignment","src":"9404:17:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"9416:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"9419:1:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9412:3:10"},"nodeType":"YulFunctionCall","src":"9412:9:10"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"9404:4:10"}]},{"body":{"nodeType":"YulBlock","src":"9445:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"9447:16:10"},"nodeType":"YulFunctionCall","src":"9447:18:10"},"nodeType":"YulExpressionStatement","src":"9447:18:10"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"9436:4:10"},{"name":"x","nodeType":"YulIdentifier","src":"9442:1:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"9433:2:10"},"nodeType":"YulFunctionCall","src":"9433:11:10"},"nodeType":"YulIf","src":"9430:37:10"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"9376:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"9379:1:10","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"9385:4:10","type":""}],"src":"9345:128:10"},{"body":{"nodeType":"YulBlock","src":"9526:77:10","statements":[{"nodeType":"YulAssignment","src":"9536:16:10","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"9547:1:10"},{"name":"y","nodeType":"YulIdentifier","src":"9550:1:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9543:3:10"},"nodeType":"YulFunctionCall","src":"9543:9:10"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"9536:3:10"}]},{"body":{"nodeType":"YulBlock","src":"9575:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"9577:16:10"},"nodeType":"YulFunctionCall","src":"9577:18:10"},"nodeType":"YulExpressionStatement","src":"9577:18:10"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"9567:1:10"},{"name":"sum","nodeType":"YulIdentifier","src":"9570:3:10"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"9564:2:10"},"nodeType":"YulFunctionCall","src":"9564:10:10"},"nodeType":"YulIf","src":"9561:36:10"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"9509:1:10","type":""},{"name":"y","nodeType":"YulTypedName","src":"9512:1:10","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"9518:3:10","type":""}],"src":"9478:125:10"},{"body":{"nodeType":"YulBlock","src":"9737:145:10","statements":[{"nodeType":"YulAssignment","src":"9747:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9759:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"9770:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9755:3:10"},"nodeType":"YulFunctionCall","src":"9755:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9747:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9789:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"9804:6:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9820:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"9825:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"9816:3:10"},"nodeType":"YulFunctionCall","src":"9816:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"9829:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9812:3:10"},"nodeType":"YulFunctionCall","src":"9812:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9800:3:10"},"nodeType":"YulFunctionCall","src":"9800:32:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9782:6:10"},"nodeType":"YulFunctionCall","src":"9782:51:10"},"nodeType":"YulExpressionStatement","src":"9782:51:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9853:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"9864:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9849:3:10"},"nodeType":"YulFunctionCall","src":"9849:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"9869:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9842:6:10"},"nodeType":"YulFunctionCall","src":"9842:34:10"},"nodeType":"YulExpressionStatement","src":"9842:34:10"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9698:9:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9709:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9717:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9728:4:10","type":""}],"src":"9608:274:10"},{"body":{"nodeType":"YulBlock","src":"9965:199:10","statements":[{"body":{"nodeType":"YulBlock","src":"10011:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10020:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10023:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10013:6:10"},"nodeType":"YulFunctionCall","src":"10013:12:10"},"nodeType":"YulExpressionStatement","src":"10013:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9986:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"9995:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9982:3:10"},"nodeType":"YulFunctionCall","src":"9982:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"10007:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9978:3:10"},"nodeType":"YulFunctionCall","src":"9978:32:10"},"nodeType":"YulIf","src":"9975:52:10"},{"nodeType":"YulVariableDeclaration","src":"10036:29:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10055:9:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10049:5:10"},"nodeType":"YulFunctionCall","src":"10049:16:10"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"10040:5:10","type":""}]},{"body":{"nodeType":"YulBlock","src":"10118:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10127:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10130:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10120:6:10"},"nodeType":"YulFunctionCall","src":"10120:12:10"},"nodeType":"YulExpressionStatement","src":"10120:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10087:5:10"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10108:5:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10101:6:10"},"nodeType":"YulFunctionCall","src":"10101:13:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10094:6:10"},"nodeType":"YulFunctionCall","src":"10094:21:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"10084:2:10"},"nodeType":"YulFunctionCall","src":"10084:32:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10077:6:10"},"nodeType":"YulFunctionCall","src":"10077:40:10"},"nodeType":"YulIf","src":"10074:60:10"},{"nodeType":"YulAssignment","src":"10143:15:10","value":{"name":"value","nodeType":"YulIdentifier","src":"10153:5:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"10143:6:10"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9931:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9942:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9954:6:10","type":""}],"src":"9887:277:10"},{"body":{"nodeType":"YulBlock","src":"10322:217:10","statements":[{"nodeType":"YulAssignment","src":"10332:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10344:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10355:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10340:3:10"},"nodeType":"YulFunctionCall","src":"10340:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10332:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10374:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"10385:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10367:6:10"},"nodeType":"YulFunctionCall","src":"10367:25:10"},"nodeType":"YulExpressionStatement","src":"10367:25:10"},{"nodeType":"YulVariableDeclaration","src":"10401:28:10","value":{"kind":"number","nodeType":"YulLiteral","src":"10411:18:10","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"10405:2:10","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10449:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10460:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10445:3:10"},"nodeType":"YulFunctionCall","src":"10445:18:10"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"10469:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"10477:2:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10465:3:10"},"nodeType":"YulFunctionCall","src":"10465:15:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10438:6:10"},"nodeType":"YulFunctionCall","src":"10438:43:10"},"nodeType":"YulExpressionStatement","src":"10438:43:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10501:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10512:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10497:3:10"},"nodeType":"YulFunctionCall","src":"10497:18:10"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"10521:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"10529:2:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10517:3:10"},"nodeType":"YulFunctionCall","src":"10517:15:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10490:6:10"},"nodeType":"YulFunctionCall","src":"10490:43:10"},"nodeType":"YulExpressionStatement","src":"10490:43:10"}]},"name":"abi_encode_tuple_t_bytes32_t_uint64_t_uint64__to_t_bytes32_t_uint64_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10275:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10286:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10294:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10302:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10313:4:10","type":""}],"src":"10169:370:10"},{"body":{"nodeType":"YulBlock","src":"10718:171:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10735:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10746:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10728:6:10"},"nodeType":"YulFunctionCall","src":"10728:21:10"},"nodeType":"YulExpressionStatement","src":"10728:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10769:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10780:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10765:3:10"},"nodeType":"YulFunctionCall","src":"10765:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"10785:2:10","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10758:6:10"},"nodeType":"YulFunctionCall","src":"10758:30:10"},"nodeType":"YulExpressionStatement","src":"10758:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10808:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10819:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10804:3:10"},"nodeType":"YulFunctionCall","src":"10804:18:10"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"10824:23:10","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10797:6:10"},"nodeType":"YulFunctionCall","src":"10797:51:10"},"nodeType":"YulExpressionStatement","src":"10797:51:10"},{"nodeType":"YulAssignment","src":"10857:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10869:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"10880:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10865:3:10"},"nodeType":"YulFunctionCall","src":"10865:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10857:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10695:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10709:4:10","type":""}],"src":"10544:345:10"},{"body":{"nodeType":"YulBlock","src":"11068:227:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11085:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11096:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11078:6:10"},"nodeType":"YulFunctionCall","src":"11078:21:10"},"nodeType":"YulExpressionStatement","src":"11078:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11119:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11130:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11115:3:10"},"nodeType":"YulFunctionCall","src":"11115:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"11135:2:10","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11108:6:10"},"nodeType":"YulFunctionCall","src":"11108:30:10"},"nodeType":"YulExpressionStatement","src":"11108:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11158:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11169:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11154:3:10"},"nodeType":"YulFunctionCall","src":"11154:18:10"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"11174:34:10","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11147:6:10"},"nodeType":"YulFunctionCall","src":"11147:62:10"},"nodeType":"YulExpressionStatement","src":"11147:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11229:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11240:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11225:3:10"},"nodeType":"YulFunctionCall","src":"11225:18:10"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"11245:7:10","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11218:6:10"},"nodeType":"YulFunctionCall","src":"11218:35:10"},"nodeType":"YulExpressionStatement","src":"11218:35:10"},{"nodeType":"YulAssignment","src":"11262:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11274:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11285:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11270:3:10"},"nodeType":"YulFunctionCall","src":"11270:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11262:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11045:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11059:4:10","type":""}],"src":"10894:401:10"},{"body":{"nodeType":"YulBlock","src":"11474:229:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11491:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11502:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11484:6:10"},"nodeType":"YulFunctionCall","src":"11484:21:10"},"nodeType":"YulExpressionStatement","src":"11484:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11525:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11536:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11521:3:10"},"nodeType":"YulFunctionCall","src":"11521:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"11541:2:10","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11514:6:10"},"nodeType":"YulFunctionCall","src":"11514:30:10"},"nodeType":"YulExpressionStatement","src":"11514:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11564:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11575:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11560:3:10"},"nodeType":"YulFunctionCall","src":"11560:18:10"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"11580:34:10","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11553:6:10"},"nodeType":"YulFunctionCall","src":"11553:62:10"},"nodeType":"YulExpressionStatement","src":"11553:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11635:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11646:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11631:3:10"},"nodeType":"YulFunctionCall","src":"11631:18:10"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"11651:9:10","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11624:6:10"},"nodeType":"YulFunctionCall","src":"11624:37:10"},"nodeType":"YulExpressionStatement","src":"11624:37:10"},{"nodeType":"YulAssignment","src":"11670:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11682:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11693:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11678:3:10"},"nodeType":"YulFunctionCall","src":"11678:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11670:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11451:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11465:4:10","type":""}],"src":"11300:403:10"},{"body":{"nodeType":"YulBlock","src":"11882:171:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11899:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11910:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11892:6:10"},"nodeType":"YulFunctionCall","src":"11892:21:10"},"nodeType":"YulExpressionStatement","src":"11892:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11933:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11944:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11929:3:10"},"nodeType":"YulFunctionCall","src":"11929:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"11949:2:10","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11922:6:10"},"nodeType":"YulFunctionCall","src":"11922:30:10"},"nodeType":"YulExpressionStatement","src":"11922:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11972:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"11983:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11968:3:10"},"nodeType":"YulFunctionCall","src":"11968:18:10"},{"hexValue":"4665654578636565647350726f746f636f6c466565","kind":"string","nodeType":"YulLiteral","src":"11988:23:10","type":"","value":"FeeExceedsProtocolFee"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11961:6:10"},"nodeType":"YulFunctionCall","src":"11961:51:10"},"nodeType":"YulExpressionStatement","src":"11961:51:10"},{"nodeType":"YulAssignment","src":"12021:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12033:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12044:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12029:3:10"},"nodeType":"YulFunctionCall","src":"12029:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12021:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11859:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11873:4:10","type":""}],"src":"11708:345:10"},{"body":{"nodeType":"YulBlock","src":"12159:76:10","statements":[{"nodeType":"YulAssignment","src":"12169:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12181:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12192:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12177:3:10"},"nodeType":"YulFunctionCall","src":"12177:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12169:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12211:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"12222:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12204:6:10"},"nodeType":"YulFunctionCall","src":"12204:25:10"},"nodeType":"YulExpressionStatement","src":"12204:25:10"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12128:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12139:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12150:4:10","type":""}],"src":"12058:177:10"},{"body":{"nodeType":"YulBlock","src":"12414:231:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12431:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12442:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12424:6:10"},"nodeType":"YulFunctionCall","src":"12424:21:10"},"nodeType":"YulExpressionStatement","src":"12424:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12465:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12476:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12461:3:10"},"nodeType":"YulFunctionCall","src":"12461:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"12481:2:10","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12454:6:10"},"nodeType":"YulFunctionCall","src":"12454:30:10"},"nodeType":"YulExpressionStatement","src":"12454:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12504:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12515:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12500:3:10"},"nodeType":"YulFunctionCall","src":"12500:18:10"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"12520:34:10","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12493:6:10"},"nodeType":"YulFunctionCall","src":"12493:62:10"},"nodeType":"YulExpressionStatement","src":"12493:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12575:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12586:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12571:3:10"},"nodeType":"YulFunctionCall","src":"12571:18:10"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"12591:11:10","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12564:6:10"},"nodeType":"YulFunctionCall","src":"12564:39:10"},"nodeType":"YulExpressionStatement","src":"12564:39:10"},{"nodeType":"YulAssignment","src":"12612:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12624:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12635:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12620:3:10"},"nodeType":"YulFunctionCall","src":"12620:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12612:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12391:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12405:4:10","type":""}],"src":"12240:405:10"},{"body":{"nodeType":"YulBlock","src":"12824:168:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12841:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12852:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12834:6:10"},"nodeType":"YulFunctionCall","src":"12834:21:10"},"nodeType":"YulExpressionStatement","src":"12834:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12875:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12886:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12871:3:10"},"nodeType":"YulFunctionCall","src":"12871:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"12891:2:10","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12864:6:10"},"nodeType":"YulFunctionCall","src":"12864:30:10"},"nodeType":"YulExpressionStatement","src":"12864:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12914:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12925:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12910:3:10"},"nodeType":"YulFunctionCall","src":"12910:18:10"},{"hexValue":"496e76616c69644d65737361676548617368","kind":"string","nodeType":"YulLiteral","src":"12930:20:10","type":"","value":"InvalidMessageHash"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12903:6:10"},"nodeType":"YulFunctionCall","src":"12903:48:10"},"nodeType":"YulExpressionStatement","src":"12903:48:10"},{"nodeType":"YulAssignment","src":"12960:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12972:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"12983:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12968:3:10"},"nodeType":"YulFunctionCall","src":"12968:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12960:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12801:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12815:4:10","type":""}],"src":"12650:342:10"},{"body":{"nodeType":"YulBlock","src":"13154:218:10","statements":[{"nodeType":"YulAssignment","src":"13164:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13176:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13187:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13172:3:10"},"nodeType":"YulFunctionCall","src":"13172:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13164:4:10"}]},{"nodeType":"YulVariableDeclaration","src":"13199:29:10","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13217:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"13222:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"13213:3:10"},"nodeType":"YulFunctionCall","src":"13213:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"13226:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13209:3:10"},"nodeType":"YulFunctionCall","src":"13209:19:10"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"13203:2:10","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13244:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13259:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"13267:2:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13255:3:10"},"nodeType":"YulFunctionCall","src":"13255:15:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13237:6:10"},"nodeType":"YulFunctionCall","src":"13237:34:10"},"nodeType":"YulExpressionStatement","src":"13237:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13291:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13302:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13287:3:10"},"nodeType":"YulFunctionCall","src":"13287:18:10"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"13311:6:10"},{"name":"_1","nodeType":"YulIdentifier","src":"13319:2:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13307:3:10"},"nodeType":"YulFunctionCall","src":"13307:15:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13280:6:10"},"nodeType":"YulFunctionCall","src":"13280:43:10"},"nodeType":"YulExpressionStatement","src":"13280:43:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13343:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13354:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13339:3:10"},"nodeType":"YulFunctionCall","src":"13339:18:10"},{"name":"value2","nodeType":"YulIdentifier","src":"13359:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13332:6:10"},"nodeType":"YulFunctionCall","src":"13332:34:10"},"nodeType":"YulExpressionStatement","src":"13332:34:10"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13107:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"13118:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"13126:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13134:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13145:4:10","type":""}],"src":"12997:375:10"},{"body":{"nodeType":"YulBlock","src":"13424:88:10","statements":[{"body":{"nodeType":"YulBlock","src":"13455:22:10","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"13457:16:10"},"nodeType":"YulFunctionCall","src":"13457:18:10"},"nodeType":"YulExpressionStatement","src":"13457:18:10"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13440:5:10"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13451:1:10","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"13447:3:10"},"nodeType":"YulFunctionCall","src":"13447:6:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"13437:2:10"},"nodeType":"YulFunctionCall","src":"13437:17:10"},"nodeType":"YulIf","src":"13434:43:10"},{"nodeType":"YulAssignment","src":"13486:20:10","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13497:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"13504:1:10","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13493:3:10"},"nodeType":"YulFunctionCall","src":"13493:13:10"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"13486:3:10"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"13406:5:10","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"13416:3:10","type":""}],"src":"13377:135:10"},{"body":{"nodeType":"YulBlock","src":"13674:188:10","statements":[{"nodeType":"YulAssignment","src":"13684:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13696:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13707:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13692:3:10"},"nodeType":"YulFunctionCall","src":"13692:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13684:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13726:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13741:6:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13757:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"13762:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"13753:3:10"},"nodeType":"YulFunctionCall","src":"13753:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"13766:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13749:3:10"},"nodeType":"YulFunctionCall","src":"13749:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13737:3:10"},"nodeType":"YulFunctionCall","src":"13737:32:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13719:6:10"},"nodeType":"YulFunctionCall","src":"13719:51:10"},"nodeType":"YulExpressionStatement","src":"13719:51:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13790:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13801:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13786:3:10"},"nodeType":"YulFunctionCall","src":"13786:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"13806:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13779:6:10"},"nodeType":"YulFunctionCall","src":"13779:34:10"},"nodeType":"YulExpressionStatement","src":"13779:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13833:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"13844:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13829:3:10"},"nodeType":"YulFunctionCall","src":"13829:18:10"},{"name":"value2","nodeType":"YulIdentifier","src":"13849:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13822:6:10"},"nodeType":"YulFunctionCall","src":"13822:34:10"},"nodeType":"YulExpressionStatement","src":"13822:34:10"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13627:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"13638:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"13646:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13654:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13665:4:10","type":""}],"src":"13517:345:10"},{"body":{"nodeType":"YulBlock","src":"14041:168:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14058:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14069:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14051:6:10"},"nodeType":"YulFunctionCall","src":"14051:21:10"},"nodeType":"YulExpressionStatement","src":"14051:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14092:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14103:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14088:3:10"},"nodeType":"YulFunctionCall","src":"14088:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"14108:2:10","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14081:6:10"},"nodeType":"YulFunctionCall","src":"14081:30:10"},"nodeType":"YulExpressionStatement","src":"14081:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14131:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14142:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14127:3:10"},"nodeType":"YulFunctionCall","src":"14127:18:10"},{"hexValue":"4f72646572416c7265616479457869737473","kind":"string","nodeType":"YulLiteral","src":"14147:20:10","type":"","value":"OrderAlreadyExists"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14120:6:10"},"nodeType":"YulFunctionCall","src":"14120:48:10"},"nodeType":"YulExpressionStatement","src":"14120:48:10"},{"nodeType":"YulAssignment","src":"14177:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14189:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14200:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14185:3:10"},"nodeType":"YulFunctionCall","src":"14185:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14177:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14018:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14032:4:10","type":""}],"src":"13867:342:10"},{"body":{"nodeType":"YulBlock","src":"14388:165:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14405:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14416:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14398:6:10"},"nodeType":"YulFunctionCall","src":"14398:21:10"},"nodeType":"YulExpressionStatement","src":"14398:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14439:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14450:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14435:3:10"},"nodeType":"YulFunctionCall","src":"14435:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"14455:2:10","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14428:6:10"},"nodeType":"YulFunctionCall","src":"14428:30:10"},"nodeType":"YulExpressionStatement","src":"14428:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14478:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14489:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14474:3:10"},"nodeType":"YulFunctionCall","src":"14474:18:10"},{"hexValue":"53656e64657246656549735a65726f","kind":"string","nodeType":"YulLiteral","src":"14494:17:10","type":"","value":"SenderFeeIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14467:6:10"},"nodeType":"YulFunctionCall","src":"14467:45:10"},"nodeType":"YulExpressionStatement","src":"14467:45:10"},{"nodeType":"YulAssignment","src":"14521:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14533:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14544:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14529:3:10"},"nodeType":"YulFunctionCall","src":"14529:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14521:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14365:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14379:4:10","type":""}],"src":"14214:339:10"},{"body":{"nodeType":"YulBlock","src":"14732:179:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14749:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14760:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14742:6:10"},"nodeType":"YulFunctionCall","src":"14742:21:10"},"nodeType":"YulExpressionStatement","src":"14742:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14783:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14794:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14779:3:10"},"nodeType":"YulFunctionCall","src":"14779:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"14799:2:10","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14772:6:10"},"nodeType":"YulFunctionCall","src":"14772:30:10"},"nodeType":"YulExpressionStatement","src":"14772:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14822:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14833:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14818:3:10"},"nodeType":"YulFunctionCall","src":"14818:18:10"},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","kind":"string","nodeType":"YulLiteral","src":"14838:31:10","type":"","value":"TokenFeeSettingsNotConfigured"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14811:6:10"},"nodeType":"YulFunctionCall","src":"14811:59:10"},"nodeType":"YulExpressionStatement","src":"14811:59:10"},{"nodeType":"YulAssignment","src":"14879:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14891:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"14902:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14887:3:10"},"nodeType":"YulFunctionCall","src":"14887:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14879:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14709:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14723:4:10","type":""}],"src":"14558:353:10"},{"body":{"nodeType":"YulBlock","src":"15130:426:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15147:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"15158:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15140:6:10"},"nodeType":"YulFunctionCall","src":"15140:25:10"},"nodeType":"YulExpressionStatement","src":"15140:25:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15185:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15196:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15181:3:10"},"nodeType":"YulFunctionCall","src":"15181:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"15201:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15174:6:10"},"nodeType":"YulFunctionCall","src":"15174:34:10"},"nodeType":"YulExpressionStatement","src":"15174:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15228:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15239:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15224:3:10"},"nodeType":"YulFunctionCall","src":"15224:18:10"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"15248:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"15256:26:10","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15244:3:10"},"nodeType":"YulFunctionCall","src":"15244:39:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15217:6:10"},"nodeType":"YulFunctionCall","src":"15217:67:10"},"nodeType":"YulExpressionStatement","src":"15217:67:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15304:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15315:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15300:3:10"},"nodeType":"YulFunctionCall","src":"15300:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"15320:3:10","type":"","value":"128"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15293:6:10"},"nodeType":"YulFunctionCall","src":"15293:31:10"},"nodeType":"YulExpressionStatement","src":"15293:31:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15344:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15355:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15340:3:10"},"nodeType":"YulFunctionCall","src":"15340:19:10"},{"name":"value4","nodeType":"YulIdentifier","src":"15361:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15333:6:10"},"nodeType":"YulFunctionCall","src":"15333:35:10"},"nodeType":"YulExpressionStatement","src":"15333:35:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15394:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15405:3:10","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15390:3:10"},"nodeType":"YulFunctionCall","src":"15390:19:10"},{"name":"value3","nodeType":"YulIdentifier","src":"15411:6:10"},{"name":"value4","nodeType":"YulIdentifier","src":"15419:6:10"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"15377:12:10"},"nodeType":"YulFunctionCall","src":"15377:49:10"},"nodeType":"YulExpressionStatement","src":"15377:49:10"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15450:9:10"},{"name":"value4","nodeType":"YulIdentifier","src":"15461:6:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15446:3:10"},"nodeType":"YulFunctionCall","src":"15446:22:10"},{"kind":"number","nodeType":"YulLiteral","src":"15470:3:10","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15442:3:10"},"nodeType":"YulFunctionCall","src":"15442:32:10"},{"kind":"number","nodeType":"YulLiteral","src":"15476:1:10","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15435:6:10"},"nodeType":"YulFunctionCall","src":"15435:43:10"},"nodeType":"YulExpressionStatement","src":"15435:43:10"},{"nodeType":"YulAssignment","src":"15487:63:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15503:9:10"},{"arguments":[{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"15522:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"15530:2:10","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15518:3:10"},"nodeType":"YulFunctionCall","src":"15518:15:10"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15539:2:10","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"15535:3:10"},"nodeType":"YulFunctionCall","src":"15535:7:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15514:3:10"},"nodeType":"YulFunctionCall","src":"15514:29:10"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15499:3:10"},"nodeType":"YulFunctionCall","src":"15499:45:10"},{"kind":"number","nodeType":"YulLiteral","src":"15546:3:10","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15495:3:10"},"nodeType":"YulFunctionCall","src":"15495:55:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15487:4:10"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15067:9:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"15078:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"15086:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15094:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15102:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15110:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15121:4:10","type":""}],"src":"14916:640:10"},{"body":{"nodeType":"YulBlock","src":"15735:236:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15752:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15763:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15745:6:10"},"nodeType":"YulFunctionCall","src":"15745:21:10"},"nodeType":"YulExpressionStatement","src":"15745:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15786:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15797:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15782:3:10"},"nodeType":"YulFunctionCall","src":"15782:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"15802:2:10","type":"","value":"46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15775:6:10"},"nodeType":"YulFunctionCall","src":"15775:30:10"},"nodeType":"YulExpressionStatement","src":"15775:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15825:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15836:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15821:3:10"},"nodeType":"YulFunctionCall","src":"15821:18:10"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561","kind":"string","nodeType":"YulLiteral","src":"15841:34:10","type":"","value":"Initializable: contract is alrea"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15814:6:10"},"nodeType":"YulFunctionCall","src":"15814:62:10"},"nodeType":"YulExpressionStatement","src":"15814:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15896:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15907:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15892:3:10"},"nodeType":"YulFunctionCall","src":"15892:18:10"},{"hexValue":"647920696e697469616c697a6564","kind":"string","nodeType":"YulLiteral","src":"15912:16:10","type":"","value":"dy initialized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15885:6:10"},"nodeType":"YulFunctionCall","src":"15885:44:10"},"nodeType":"YulExpressionStatement","src":"15885:44:10"},{"nodeType":"YulAssignment","src":"15938:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15950:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"15961:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15946:3:10"},"nodeType":"YulFunctionCall","src":"15946:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15938:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15712:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15726:4:10","type":""}],"src":"15561:410:10"},{"body":{"nodeType":"YulBlock","src":"16083:87:10","statements":[{"nodeType":"YulAssignment","src":"16093:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16105:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16116:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16101:3:10"},"nodeType":"YulFunctionCall","src":"16101:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16093:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16135:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16150:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"16158:4:10","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"16146:3:10"},"nodeType":"YulFunctionCall","src":"16146:17:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16128:6:10"},"nodeType":"YulFunctionCall","src":"16128:36:10"},"nodeType":"YulExpressionStatement","src":"16128:36:10"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16052:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16063:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16074:4:10","type":""}],"src":"15976:194:10"},{"body":{"nodeType":"YulBlock","src":"16349:178:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16366:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16377:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16359:6:10"},"nodeType":"YulFunctionCall","src":"16359:21:10"},"nodeType":"YulExpressionStatement","src":"16359:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16400:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16411:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16396:3:10"},"nodeType":"YulFunctionCall","src":"16396:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"16416:2:10","type":"","value":"28"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16389:6:10"},"nodeType":"YulFunctionCall","src":"16389:30:10"},"nodeType":"YulExpressionStatement","src":"16389:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16439:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16450:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16435:3:10"},"nodeType":"YulFunctionCall","src":"16435:18:10"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"16455:30:10","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16428:6:10"},"nodeType":"YulFunctionCall","src":"16428:58:10"},"nodeType":"YulExpressionStatement","src":"16428:58:10"},{"nodeType":"YulAssignment","src":"16495:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16507:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16518:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16503:3:10"},"nodeType":"YulFunctionCall","src":"16503:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16495:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16326:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16340:4:10","type":""}],"src":"16175:352:10"},{"body":{"nodeType":"YulBlock","src":"16706:225:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16723:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16734:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16716:6:10"},"nodeType":"YulFunctionCall","src":"16716:21:10"},"nodeType":"YulExpressionStatement","src":"16716:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16757:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16768:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16753:3:10"},"nodeType":"YulFunctionCall","src":"16753:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"16773:2:10","type":"","value":"35"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16746:6:10"},"nodeType":"YulFunctionCall","src":"16746:30:10"},"nodeType":"YulExpressionStatement","src":"16746:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16796:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16807:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16792:3:10"},"nodeType":"YulFunctionCall","src":"16792:18:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"16812:34:10","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16785:6:10"},"nodeType":"YulFunctionCall","src":"16785:62:10"},"nodeType":"YulExpressionStatement","src":"16785:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16867:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16878:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16863:3:10"},"nodeType":"YulFunctionCall","src":"16863:18:10"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"16883:5:10","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16856:6:10"},"nodeType":"YulFunctionCall","src":"16856:33:10"},"nodeType":"YulExpressionStatement","src":"16856:33:10"},{"nodeType":"YulAssignment","src":"16898:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16910:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"16921:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16906:3:10"},"nodeType":"YulFunctionCall","src":"16906:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16898:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16683:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16697:4:10","type":""}],"src":"16532:399:10"},{"body":{"nodeType":"YulBlock","src":"17110:229:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17127:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17138:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17120:6:10"},"nodeType":"YulFunctionCall","src":"17120:21:10"},"nodeType":"YulExpressionStatement","src":"17120:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17161:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17172:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17157:3:10"},"nodeType":"YulFunctionCall","src":"17157:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"17177:2:10","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17150:6:10"},"nodeType":"YulFunctionCall","src":"17150:30:10"},"nodeType":"YulExpressionStatement","src":"17150:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17200:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17211:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17196:3:10"},"nodeType":"YulFunctionCall","src":"17196:18:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"17216:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17189:6:10"},"nodeType":"YulFunctionCall","src":"17189:62:10"},"nodeType":"YulExpressionStatement","src":"17189:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17271:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17282:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17267:3:10"},"nodeType":"YulFunctionCall","src":"17267:18:10"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"17287:9:10","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17260:6:10"},"nodeType":"YulFunctionCall","src":"17260:37:10"},"nodeType":"YulExpressionStatement","src":"17260:37:10"},{"nodeType":"YulAssignment","src":"17306:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17318:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17329:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17314:3:10"},"nodeType":"YulFunctionCall","src":"17314:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17306:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17087:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17101:4:10","type":""}],"src":"16936:403:10"},{"body":{"nodeType":"YulBlock","src":"17518:227:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17535:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17546:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17528:6:10"},"nodeType":"YulFunctionCall","src":"17528:21:10"},"nodeType":"YulExpressionStatement","src":"17528:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17569:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17580:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17565:3:10"},"nodeType":"YulFunctionCall","src":"17565:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"17585:2:10","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17558:6:10"},"nodeType":"YulFunctionCall","src":"17558:30:10"},"nodeType":"YulExpressionStatement","src":"17558:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17608:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17619:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17604:3:10"},"nodeType":"YulFunctionCall","src":"17604:18:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"17624:34:10","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17597:6:10"},"nodeType":"YulFunctionCall","src":"17597:62:10"},"nodeType":"YulExpressionStatement","src":"17597:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17679:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17690:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17675:3:10"},"nodeType":"YulFunctionCall","src":"17675:18:10"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"17695:7:10","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17668:6:10"},"nodeType":"YulFunctionCall","src":"17668:35:10"},"nodeType":"YulExpressionStatement","src":"17668:35:10"},{"nodeType":"YulAssignment","src":"17712:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17724:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17735:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17720:3:10"},"nodeType":"YulFunctionCall","src":"17720:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17712:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17495:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17509:4:10","type":""}],"src":"17344:401:10"},{"body":{"nodeType":"YulBlock","src":"17924:232:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17941:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17952:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17934:6:10"},"nodeType":"YulFunctionCall","src":"17934:21:10"},"nodeType":"YulExpressionStatement","src":"17934:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17975:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"17986:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17971:3:10"},"nodeType":"YulFunctionCall","src":"17971:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"17991:2:10","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17964:6:10"},"nodeType":"YulFunctionCall","src":"17964:30:10"},"nodeType":"YulExpressionStatement","src":"17964:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18014:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18025:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18010:3:10"},"nodeType":"YulFunctionCall","src":"18010:18:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"18030:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18003:6:10"},"nodeType":"YulFunctionCall","src":"18003:62:10"},"nodeType":"YulExpressionStatement","src":"18003:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18085:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18096:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18081:3:10"},"nodeType":"YulFunctionCall","src":"18081:18:10"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"18101:12:10","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18074:6:10"},"nodeType":"YulFunctionCall","src":"18074:40:10"},"nodeType":"YulExpressionStatement","src":"18074:40:10"},{"nodeType":"YulAssignment","src":"18123:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18135:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18146:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18131:3:10"},"nodeType":"YulFunctionCall","src":"18131:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18123:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17901:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17915:4:10","type":""}],"src":"17750:406:10"},{"body":{"nodeType":"YulBlock","src":"18346:206:10","statements":[{"nodeType":"YulAssignment","src":"18356:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18368:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18379:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18364:3:10"},"nodeType":"YulFunctionCall","src":"18364:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18356:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18399:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"18410:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18392:6:10"},"nodeType":"YulFunctionCall","src":"18392:25:10"},"nodeType":"YulExpressionStatement","src":"18392:25:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18437:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18448:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18433:3:10"},"nodeType":"YulFunctionCall","src":"18433:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"18453:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18426:6:10"},"nodeType":"YulFunctionCall","src":"18426:34:10"},"nodeType":"YulExpressionStatement","src":"18426:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18480:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18491:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18476:3:10"},"nodeType":"YulFunctionCall","src":"18476:18:10"},{"name":"value2","nodeType":"YulIdentifier","src":"18496:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18469:6:10"},"nodeType":"YulFunctionCall","src":"18469:34:10"},"nodeType":"YulExpressionStatement","src":"18469:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18523:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18534:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18519:3:10"},"nodeType":"YulFunctionCall","src":"18519:18:10"},{"name":"value3","nodeType":"YulIdentifier","src":"18539:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18512:6:10"},"nodeType":"YulFunctionCall","src":"18512:34:10"},"nodeType":"YulExpressionStatement","src":"18512:34:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18291:9:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"18302:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"18310:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"18318:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"18326:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18337:4:10","type":""}],"src":"18161:391:10"},{"body":{"nodeType":"YulBlock","src":"18731:173:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18748:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18759:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18741:6:10"},"nodeType":"YulFunctionCall","src":"18741:21:10"},"nodeType":"YulExpressionStatement","src":"18741:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18782:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18793:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18778:3:10"},"nodeType":"YulFunctionCall","src":"18778:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"18798:2:10","type":"","value":"23"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18771:6:10"},"nodeType":"YulFunctionCall","src":"18771:30:10"},"nodeType":"YulExpressionStatement","src":"18771:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18821:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18832:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18817:3:10"},"nodeType":"YulFunctionCall","src":"18817:18:10"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"18837:25:10","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18810:6:10"},"nodeType":"YulFunctionCall","src":"18810:53:10"},"nodeType":"YulExpressionStatement","src":"18810:53:10"},{"nodeType":"YulAssignment","src":"18872:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18884:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"18895:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18880:3:10"},"nodeType":"YulFunctionCall","src":"18880:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18872:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18708:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18722:4:10","type":""}],"src":"18557:347:10"},{"body":{"nodeType":"YulBlock","src":"19083:163:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19100:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19111:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19093:6:10"},"nodeType":"YulFunctionCall","src":"19093:21:10"},"nodeType":"YulExpressionStatement","src":"19093:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19134:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19145:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19130:3:10"},"nodeType":"YulFunctionCall","src":"19130:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"19150:2:10","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19123:6:10"},"nodeType":"YulFunctionCall","src":"19123:30:10"},"nodeType":"YulExpressionStatement","src":"19123:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19173:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19184:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19169:3:10"},"nodeType":"YulFunctionCall","src":"19169:18:10"},{"hexValue":"496e76616c6964416d6f756e74","kind":"string","nodeType":"YulLiteral","src":"19189:15:10","type":"","value":"InvalidAmount"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19162:6:10"},"nodeType":"YulFunctionCall","src":"19162:43:10"},"nodeType":"YulExpressionStatement","src":"19162:43:10"},{"nodeType":"YulAssignment","src":"19214:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19226:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19237:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19222:3:10"},"nodeType":"YulFunctionCall","src":"19222:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19214:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_483313f3910f88408dc57d1e1e6afbe0d5fb0a2ab36e197f65b49ed489f7c914__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19060:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19074:4:10","type":""}],"src":"18909:337:10"},{"body":{"nodeType":"YulBlock","src":"19434:265:10","statements":[{"nodeType":"YulAssignment","src":"19444:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19456:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19467:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19452:3:10"},"nodeType":"YulFunctionCall","src":"19452:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19444:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19487:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"19498:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19480:6:10"},"nodeType":"YulFunctionCall","src":"19480:25:10"},"nodeType":"YulExpressionStatement","src":"19480:25:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19525:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19536:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19521:3:10"},"nodeType":"YulFunctionCall","src":"19521:18:10"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"19545:6:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19561:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"19566:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"19557:3:10"},"nodeType":"YulFunctionCall","src":"19557:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"19570:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"19553:3:10"},"nodeType":"YulFunctionCall","src":"19553:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"19541:3:10"},"nodeType":"YulFunctionCall","src":"19541:32:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19514:6:10"},"nodeType":"YulFunctionCall","src":"19514:60:10"},"nodeType":"YulExpressionStatement","src":"19514:60:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19594:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19605:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19590:3:10"},"nodeType":"YulFunctionCall","src":"19590:18:10"},{"name":"value2","nodeType":"YulIdentifier","src":"19610:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19583:6:10"},"nodeType":"YulFunctionCall","src":"19583:34:10"},"nodeType":"YulExpressionStatement","src":"19583:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19637:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19648:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19633:3:10"},"nodeType":"YulFunctionCall","src":"19633:18:10"},{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"19657:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"19665:26:10","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"19653:3:10"},"nodeType":"YulFunctionCall","src":"19653:39:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19626:6:10"},"nodeType":"YulFunctionCall","src":"19626:67:10"},"nodeType":"YulExpressionStatement","src":"19626:67:10"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_uint256_t_uint96__to_t_uint256_t_address_t_uint256_t_uint96__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19379:9:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"19390:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"19398:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"19406:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"19414:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19425:4:10","type":""}],"src":"19251:448:10"},{"body":{"nodeType":"YulBlock","src":"19833:119:10","statements":[{"nodeType":"YulAssignment","src":"19843:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19855:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19866:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19851:3:10"},"nodeType":"YulFunctionCall","src":"19851:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19843:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19885:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"19896:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19878:6:10"},"nodeType":"YulFunctionCall","src":"19878:25:10"},"nodeType":"YulExpressionStatement","src":"19878:25:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19923:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"19934:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19919:3:10"},"nodeType":"YulFunctionCall","src":"19919:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"19939:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19912:6:10"},"nodeType":"YulFunctionCall","src":"19912:34:10"},"nodeType":"YulExpressionStatement","src":"19912:34:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19794:9:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"19805:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"19813:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19824:4:10","type":""}],"src":"19704:248:10"},{"body":{"nodeType":"YulBlock","src":"20114:162:10","statements":[{"nodeType":"YulAssignment","src":"20124:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20136:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20147:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20132:3:10"},"nodeType":"YulFunctionCall","src":"20132:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20124:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20166:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"20177:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20159:6:10"},"nodeType":"YulFunctionCall","src":"20159:25:10"},"nodeType":"YulExpressionStatement","src":"20159:25:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20204:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20215:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20200:3:10"},"nodeType":"YulFunctionCall","src":"20200:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"20220:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20193:6:10"},"nodeType":"YulFunctionCall","src":"20193:34:10"},"nodeType":"YulExpressionStatement","src":"20193:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20247:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20258:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20243:3:10"},"nodeType":"YulFunctionCall","src":"20243:18:10"},{"name":"value2","nodeType":"YulIdentifier","src":"20263:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20236:6:10"},"nodeType":"YulFunctionCall","src":"20236:34:10"},"nodeType":"YulExpressionStatement","src":"20236:34:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20067:9:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"20078:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"20086:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"20094:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20105:4:10","type":""}],"src":"19957:319:10"},{"body":{"nodeType":"YulBlock","src":"20455:182:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20472:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20483:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20465:6:10"},"nodeType":"YulFunctionCall","src":"20465:21:10"},"nodeType":"YulExpressionStatement","src":"20465:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20506:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20517:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20502:3:10"},"nodeType":"YulFunctionCall","src":"20502:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"20522:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20495:6:10"},"nodeType":"YulFunctionCall","src":"20495:30:10"},"nodeType":"YulExpressionStatement","src":"20495:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20545:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20556:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20541:3:10"},"nodeType":"YulFunctionCall","src":"20541:18:10"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"20561:34:10","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20534:6:10"},"nodeType":"YulFunctionCall","src":"20534:62:10"},"nodeType":"YulExpressionStatement","src":"20534:62:10"},{"nodeType":"YulAssignment","src":"20605:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20617:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20628:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20613:3:10"},"nodeType":"YulFunctionCall","src":"20613:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20605:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20432:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20446:4:10","type":""}],"src":"20281:356:10"},{"body":{"nodeType":"YulBlock","src":"20816:166:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20833:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20844:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20826:6:10"},"nodeType":"YulFunctionCall","src":"20826:21:10"},"nodeType":"YulExpressionStatement","src":"20826:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20867:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20878:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20863:3:10"},"nodeType":"YulFunctionCall","src":"20863:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"20883:2:10","type":"","value":"16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20856:6:10"},"nodeType":"YulFunctionCall","src":"20856:30:10"},"nodeType":"YulExpressionStatement","src":"20856:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20906:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20917:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20902:3:10"},"nodeType":"YulFunctionCall","src":"20902:18:10"},{"hexValue":"5061757361626c653a20706175736564","kind":"string","nodeType":"YulLiteral","src":"20922:18:10","type":"","value":"Pausable: paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20895:6:10"},"nodeType":"YulFunctionCall","src":"20895:46:10"},"nodeType":"YulExpressionStatement","src":"20895:46:10"},{"nodeType":"YulAssignment","src":"20950:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20962:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"20973:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20958:3:10"},"nodeType":"YulFunctionCall","src":"20958:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20950:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20793:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20807:4:10","type":""}],"src":"20642:340:10"},{"body":{"nodeType":"YulBlock","src":"21161:167:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21178:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21189:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21171:6:10"},"nodeType":"YulFunctionCall","src":"21171:21:10"},"nodeType":"YulExpressionStatement","src":"21171:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21212:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21223:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21208:3:10"},"nodeType":"YulFunctionCall","src":"21208:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"21228:2:10","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21201:6:10"},"nodeType":"YulFunctionCall","src":"21201:30:10"},"nodeType":"YulExpressionStatement","src":"21201:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21251:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21262:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21247:3:10"},"nodeType":"YulFunctionCall","src":"21247:18:10"},{"hexValue":"546f6b656e4e6f74537570706f72746564","kind":"string","nodeType":"YulLiteral","src":"21267:19:10","type":"","value":"TokenNotSupported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21240:6:10"},"nodeType":"YulFunctionCall","src":"21240:47:10"},"nodeType":"YulExpressionStatement","src":"21240:47:10"},{"nodeType":"YulAssignment","src":"21296:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21308:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21319:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21304:3:10"},"nodeType":"YulFunctionCall","src":"21304:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21296:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21138:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21152:4:10","type":""}],"src":"20987:341:10"},{"body":{"nodeType":"YulBlock","src":"21507:162:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21524:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21535:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21517:6:10"},"nodeType":"YulFunctionCall","src":"21517:21:10"},"nodeType":"YulExpressionStatement","src":"21517:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21558:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21569:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21554:3:10"},"nodeType":"YulFunctionCall","src":"21554:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"21574:2:10","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21547:6:10"},"nodeType":"YulFunctionCall","src":"21547:30:10"},"nodeType":"YulExpressionStatement","src":"21547:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21597:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21608:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21593:3:10"},"nodeType":"YulFunctionCall","src":"21593:18:10"},{"hexValue":"416d6f756e7449735a65726f","kind":"string","nodeType":"YulLiteral","src":"21613:14:10","type":"","value":"AmountIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21586:6:10"},"nodeType":"YulFunctionCall","src":"21586:42:10"},"nodeType":"YulExpressionStatement","src":"21586:42:10"},{"nodeType":"YulAssignment","src":"21637:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21649:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21660:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21645:3:10"},"nodeType":"YulFunctionCall","src":"21645:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21637:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21484:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21498:4:10","type":""}],"src":"21333:336:10"},{"body":{"nodeType":"YulBlock","src":"21848:166:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21865:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21876:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21858:6:10"},"nodeType":"YulFunctionCall","src":"21858:21:10"},"nodeType":"YulExpressionStatement","src":"21858:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21899:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21910:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21895:3:10"},"nodeType":"YulFunctionCall","src":"21895:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"21915:2:10","type":"","value":"16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21888:6:10"},"nodeType":"YulFunctionCall","src":"21888:30:10"},"nodeType":"YulExpressionStatement","src":"21888:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21938:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"21949:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21934:3:10"},"nodeType":"YulFunctionCall","src":"21934:18:10"},{"hexValue":"5468726f775a65726f41646472657373","kind":"string","nodeType":"YulLiteral","src":"21954:18:10","type":"","value":"ThrowZeroAddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21927:6:10"},"nodeType":"YulFunctionCall","src":"21927:46:10"},"nodeType":"YulExpressionStatement","src":"21927:46:10"},{"nodeType":"YulAssignment","src":"21982:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21994:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22005:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21990:3:10"},"nodeType":"YulFunctionCall","src":"21990:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21982:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21825:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21839:4:10","type":""}],"src":"21674:340:10"},{"body":{"nodeType":"YulBlock","src":"22193:175:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22210:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22221:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22203:6:10"},"nodeType":"YulFunctionCall","src":"22203:21:10"},"nodeType":"YulExpressionStatement","src":"22203:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22244:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22255:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22240:3:10"},"nodeType":"YulFunctionCall","src":"22240:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"22260:2:10","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22233:6:10"},"nodeType":"YulFunctionCall","src":"22233:30:10"},"nodeType":"YulExpressionStatement","src":"22233:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22283:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22294:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22279:3:10"},"nodeType":"YulFunctionCall","src":"22279:18:10"},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","kind":"string","nodeType":"YulLiteral","src":"22299:27:10","type":"","value":"InvalidSenderFeeRecipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22272:6:10"},"nodeType":"YulFunctionCall","src":"22272:55:10"},"nodeType":"YulExpressionStatement","src":"22272:55:10"},{"nodeType":"YulAssignment","src":"22336:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22348:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22359:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22344:3:10"},"nodeType":"YulFunctionCall","src":"22344:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22336:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22170:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22184:4:10","type":""}],"src":"22019:349:10"},{"body":{"nodeType":"YulBlock","src":"22547:233:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22564:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22575:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22557:6:10"},"nodeType":"YulFunctionCall","src":"22557:21:10"},"nodeType":"YulExpressionStatement","src":"22557:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22598:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22609:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22594:3:10"},"nodeType":"YulFunctionCall","src":"22594:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"22614:2:10","type":"","value":"43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22587:6:10"},"nodeType":"YulFunctionCall","src":"22587:30:10"},"nodeType":"YulExpressionStatement","src":"22587:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22637:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22648:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22633:3:10"},"nodeType":"YulFunctionCall","src":"22633:18:10"},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069","kind":"string","nodeType":"YulLiteral","src":"22653:34:10","type":"","value":"Initializable: contract is not i"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22626:6:10"},"nodeType":"YulFunctionCall","src":"22626:62:10"},"nodeType":"YulExpressionStatement","src":"22626:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22708:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22719:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22704:3:10"},"nodeType":"YulFunctionCall","src":"22704:18:10"},{"hexValue":"6e697469616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"22724:13:10","type":"","value":"nitializing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22697:6:10"},"nodeType":"YulFunctionCall","src":"22697:41:10"},"nodeType":"YulExpressionStatement","src":"22697:41:10"},{"nodeType":"YulAssignment","src":"22747:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22759:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22770:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22755:3:10"},"nodeType":"YulFunctionCall","src":"22755:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22747:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22524:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22538:4:10","type":""}],"src":"22373:407:10"},{"body":{"nodeType":"YulBlock","src":"22959:170:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22976:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"22987:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22969:6:10"},"nodeType":"YulFunctionCall","src":"22969:21:10"},"nodeType":"YulExpressionStatement","src":"22969:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23010:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"23021:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23006:3:10"},"nodeType":"YulFunctionCall","src":"23006:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"23026:2:10","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22999:6:10"},"nodeType":"YulFunctionCall","src":"22999:30:10"},"nodeType":"YulExpressionStatement","src":"22999:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23049:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"23060:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23045:3:10"},"nodeType":"YulFunctionCall","src":"23045:18:10"},{"hexValue":"5061757361626c653a206e6f7420706175736564","kind":"string","nodeType":"YulLiteral","src":"23065:22:10","type":"","value":"Pausable: not paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23038:6:10"},"nodeType":"YulFunctionCall","src":"23038:50:10"},"nodeType":"YulExpressionStatement","src":"23038:50:10"},{"nodeType":"YulAssignment","src":"23097:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23109:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"23120:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23105:3:10"},"nodeType":"YulFunctionCall","src":"23105:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23097:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22936:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22950:4:10","type":""}],"src":"22785:344:10"}]},"contents":"{\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_uint64(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64t_uint64(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := abi_decode_address(add(headStart, 64))\n value3 := abi_decode_uint64(add(headStart, 96))\n value4 := abi_decode_uint64(add(headStart, 128))\n }\n function abi_encode_bool(value, pos)\n {\n mstore(pos, iszero(iszero(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_address(value, pos)\n {\n mstore(pos, and(value, 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_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_uint256t_bytes32(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_uint96(value, pos)\n {\n mstore(pos, and(value, 0xffffffffffffffffffffffff))\n }\n function abi_encode_tuple_t_struct$_Order_$2530_memory_ptr__to_t_struct$_Order_$2530_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 320)\n abi_encode_address(mload(value0), headStart)\n let memberValue0 := mload(add(value0, 0x20))\n abi_encode_address(memberValue0, add(headStart, 0x20))\n let memberValue0_1 := mload(add(value0, 0x40))\n abi_encode_address(memberValue0_1, add(headStart, 0x40))\n mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\n mstore(add(headStart, 0x80), mload(add(value0, 0x80)))\n let memberValue0_2 := mload(add(value0, 0xa0))\n abi_encode_bool(memberValue0_2, add(headStart, 0xa0))\n let memberValue0_3 := mload(add(value0, 0xc0))\n abi_encode_bool(memberValue0_3, add(headStart, 0xc0))\n let memberValue0_4 := mload(add(value0, 0xe0))\n abi_encode_address(memberValue0_4, add(headStart, 0xe0))\n let _1 := 0x0100\n let memberValue0_5 := mload(add(value0, _1))\n abi_encode_uint96(memberValue0_5, add(headStart, _1))\n let _2 := 0x0120\n mstore(add(headStart, _2), mload(add(value0, _2)))\n }\n function abi_decode_uint96(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_addresst_uint256t_uint96t_addresst_uint256t_addresst_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7\n {\n if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := abi_decode_uint96(add(headStart, 64))\n value3 := abi_decode_address(add(headStart, 96))\n value4 := calldataload(add(headStart, 128))\n value5 := abi_decode_address(add(headStart, 160))\n let offset := calldataload(add(headStart, 192))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let length := calldataload(_2)\n if gt(length, _1) { revert(0, 0) }\n if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n value6 := add(_2, 32)\n value7 := length\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_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := calldataload(add(headStart, 96))\n value4 := calldataload(add(headStart, 128))\n }\n function abi_encode_tuple_t_struct$_TokenFeeSettings_$2170_memory_ptr__to_t_struct$_TokenFeeSettings_$2170_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, mload(value0))\n mstore(add(headStart, 0x20), mload(add(value0, 0x20)))\n mstore(add(headStart, 0x40), mload(add(value0, 0x40)))\n mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\n }\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_bytes32t_addresst_uint256t_addresst_uint96t_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n {\n if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := abi_decode_address(add(headStart, 96))\n value4 := abi_decode_uint96(add(headStart, 128))\n value5 := abi_decode_address(add(headStart, 160))\n value6 := abi_decode_uint96(add(headStart, 192))\n }\n function abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__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), \"OnlyAggregator\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__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), \"OrderFulfilled\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 13)\n mstore(add(headStart, 64), \"OrderRefunded\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325__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), \"InvalidRebatePercent\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_743dad5224dc289d7e19e9f682872f71f5b60dacb182b9d01db88f90dd62d93d__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), \"InvalidSettlePercent\")\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_uint96(x, y) -> diff\n {\n let _1 := 0xffffffffffffffffffffffff\n diff := sub(and(x, _1), and(y, _1))\n if gt(diff, _1) { 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)\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n r := div(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n diff := sub(x, y)\n if gt(diff, x) { panic_error_0x11() }\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_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n mstore(add(headStart, 32), value1)\n }\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n value0 := value\n }\n function abi_encode_tuple_t_bytes32_t_uint64_t_uint64__to_t_bytes32_t_uint64_t_uint64__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n tail := add(headStart, 96)\n mstore(headStart, value0)\n let _1 := 0xffffffffffffffff\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), and(value2, _1))\n }\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__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), \"Gateway: zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__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), \"Gateway: treasury address alread\")\n mstore(add(headStart, 96), \"y set\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__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), \"Gateway: aggregator address alre\")\n mstore(add(headStart, 96), \"ady set\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__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), \"FeeExceedsProtocolFee\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"Ownable2Step: caller is not the \")\n mstore(add(headStart, 96), \"new owner\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__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), \"InvalidMessageHash\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n tail := add(headStart, 96)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\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 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_t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe__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), \"OrderAlreadyExists\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 15)\n mstore(add(headStart, 64), \"SenderFeeIsZero\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934__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), \"TokenFeeSettingsNotConfigured\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n {\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffff))\n mstore(add(headStart, 96), 128)\n mstore(add(headStart, 128), value4)\n calldatacopy(add(headStart, 160), value3, value4)\n mstore(add(add(headStart, value4), 160), 0)\n tail := add(add(headStart, and(add(value4, 31), not(31))), 160)\n }\n function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 46)\n mstore(add(headStart, 64), \"Initializable: contract is alrea\")\n mstore(add(headStart, 96), \"dy initialized\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_rational_1_by_1__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_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__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), \"Gateway: token not supported\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"Gateway: invalid sender to provi\")\n mstore(add(headStart, 96), \"der\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__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), \"Gateway: invalid provider to agg\")\n mstore(add(headStart, 96), \"regator\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__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), \"Gateway: invalid sender to aggre\")\n mstore(add(headStart, 96), \"gator\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"Gateway: invalid provider to agg\")\n mstore(add(headStart, 96), \"regator fx\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n }\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__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), \"Gateway: invalid status\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_483313f3910f88408dc57d1e1e6afbe0d5fb0a2ab36e197f65b49ed489f7c914__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 13)\n mstore(add(headStart, 64), \"InvalidAmount\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256_t_address_t_uint256_t_uint96__to_t_uint256_t_address_t_uint256_t_uint96__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, sub(shl(160, 1), 1)))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), and(value3, 0xffffffffffffffffffffffff))\n }\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n tail := add(headStart, 96)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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), \"Pausable: paused\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__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), \"TokenNotSupported\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 12)\n mstore(add(headStart, 64), \"AmountIsZero\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__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), \"ThrowZeroAddress\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"InvalidSenderFeeRecipient\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 43)\n mstore(add(headStart, 64), \"Initializable: contract is not i\")\n mstore(add(headStart, 96), \"nitializing\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__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), \"Pausable: not paused\")\n tail := add(headStart, 96)\n }\n}","id":10,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x127 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x809804F7 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x374 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x385 JUMPI DUP1 PUSH4 0xD839DE63 EQ PUSH2 0x398 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3BC JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x809804F7 EQ PUSH2 0x2EA JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x30B JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x313 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0x31B JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0x32E JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xEF JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x1BB JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x2E2 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x32553EFA EQ PUSH2 0x12B JUMPI DUP1 PUSH4 0x3AD59DBC EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x182 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x195 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x279F JUMP JUMPDEST PUSH2 0x3CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x98C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x180 PUSH2 0x190 CALLDATASIZE PUSH1 0x4 PUSH2 0x27F2 JUMP JUMPDEST PUSH2 0x99E JUMP JUMPDEST PUSH1 0xCD SLOAD PUSH1 0xFF AND PUSH2 0x13E JUMP JUMPDEST PUSH2 0x180 PUSH2 0xB8B JUMP JUMPDEST PUSH2 0x13E PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x281C JUMP JUMPDEST PUSH2 0xB9C JUMP JUMPDEST PUSH2 0x13E PUSH2 0x1C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x283C JUMP JUMPDEST PUSH2 0xEAD JUMP JUMPDEST PUSH2 0x2D5 PUSH2 0x1DC CALLDATASIZE PUSH1 0x4 PUSH2 0x285C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x140 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xE0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x100 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x120 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH0 SWAP1 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP3 DUP4 SWAP1 KECCAK256 DUP4 MLOAD PUSH2 0x140 DUP2 ADD DUP6 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 DUP4 ADD SLOAD DUP2 AND SWAP4 DUP3 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP3 ADD SLOAD DUP4 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0x4 DUP2 ADD SLOAD PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x5 DUP2 ADD SLOAD DUP1 DUP5 AND ISZERO ISZERO PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x100 DUP1 DUP3 DIV SWAP1 SWAP5 AND ISZERO ISZERO PUSH1 0xC0 DUP7 ADD MSTORE PUSH3 0x10000 SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0xE0 DUP5 ADD MSTORE PUSH1 0x6 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x7 ADD SLOAD PUSH2 0x120 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x2873 JUMP JUMPDEST PUSH2 0x180 PUSH2 0xEDB JUMP JUMPDEST PUSH2 0x2FD PUSH2 0x2F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x294E JUMP JUMPDEST PUSH2 0xF55 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x1456 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x156F JUMP JUMPDEST PUSH2 0x180 PUSH2 0x329 CALLDATASIZE PUSH1 0x4 PUSH2 0x2A0D JUMP JUMPDEST PUSH2 0x157F JUMP JUMPDEST PUSH2 0x341 PUSH2 0x33C CALLDATASIZE PUSH1 0x4 PUSH2 0x283C JUMP JUMPDEST PUSH2 0x1812 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 SWAP2 DUP3 ADD MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x393 CALLDATASIZE PUSH1 0x4 PUSH2 0x2A4B JUMP JUMPDEST PUSH2 0x1886 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x2A7D JUMP JUMPDEST PUSH2 0x19A1 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x3CA CALLDATASIZE PUSH1 0x4 PUSH2 0x283C JUMP JUMPDEST PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x99 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x421 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 0x27B7363CA0B3B3B932B3B0BA37B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD AND ISZERO PUSH2 0x474 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 0x13DC99195C919D5B199A5B1B1959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD PUSH2 0x100 SWAP1 DIV AND ISZERO PUSH2 0x4CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x13DC99195C9499599D5B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO PUSH2 0x51E 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 0x125B9D985B1A59149958985D1954195C98D95B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0x6 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH8 0xFFFFFFFFFFFFFFFF DUP6 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x56E JUMPI POP DUP1 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x5B1 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 0x125B9D985B1A5914D95D1D1B1954195C98D95B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x6 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP9 AND SWAP3 SWAP1 PUSH2 0x5E4 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x2B04 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH0 DUP10 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x6 ADD SLOAD SWAP1 SWAP2 AND SWAP1 SUB SWAP1 POP PUSH2 0x691 JUMPI PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x5 DUP2 ADD DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x3 ADD SLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x65D JUMPI POP PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x691 JUMPI PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH2 0x691 SWAP2 DUP10 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x1EA0 JUMP JUMPDEST PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x3 ADD SLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x6BE JUMPI POP PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD ISZERO JUMPDEST ISZERO PUSH2 0x6EB JUMPI PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x6EB SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH2 0x2090 JUMP JUMPDEST PUSH0 DUP8 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x7 ADD SLOAD DUP3 SWAP1 PUSH2 0x713 SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF DUP10 AND SWAP1 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x71D SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF PUSH0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x742 SWAP2 SWAP1 PUSH2 0x2B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH0 DUP9 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD ISZERO PUSH2 0x8AD JUMPI PUSH0 DUP9 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 SWAP1 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 MSTORE PUSH1 0x9B DUP4 MSTORE DUP2 DUP5 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE SWAP2 DUP2 ADD SLOAD SWAP4 DUP3 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP4 ADD SLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x97 SLOAD SWAP2 SWAP3 SWAP2 SWAP1 PUSH2 0x7C6 SWAP1 DUP6 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x7D0 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH2 0x7DC DUP2 DUP5 PUSH2 0x2B61 JUMP JUMPDEST SWAP3 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP8 AND ISZERO PUSH2 0x82D JUMPI PUSH1 0x97 SLOAD PUSH0 SWAP1 PUSH2 0x807 PUSH8 0xFFFFFFFFFFFFFFFF DUP11 AND DUP5 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x811 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH2 0x81D DUP2 DUP4 PUSH2 0x2B61 JUMP JUMPDEST SWAP2 POP PUSH2 0x829 DUP2 DUP6 PUSH2 0x2B74 JUMP JUMPDEST SWAP4 POP POP JUMPDEST PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x869 SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x885 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x8A9 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x8DB SWAP1 DUP11 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8F7 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x91B SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x1E4A1A8AD772D3F0DBB387879BC5E8FAADF16E0513BF77D50620741AB92B4C45 DUP12 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH2 0x975 SWAP4 SWAP3 SWAP2 SWAP1 SWAP3 DUP4 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF SWAP2 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x994 PUSH2 0x2389 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x23E3 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x9A6 PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9F4 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 PUSH8 0x7472656173757279 PUSH1 0xC0 SHL SUB PUSH2 0xAAA JUMPI PUSH1 0x98 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SUB PUSH2 0xA79 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 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x1E481CD95D PUSH1 0xDA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST POP PUSH1 0x98 DUP1 SLOAD PUSH9 0x10000000000000000 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x40 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH2 0xB4A JUMP JUMPDEST DUP3 PUSH10 0x30B3B3B932B3B0BA37B9 PUSH1 0xB1 SHL SUB PUSH2 0xB4A JUMPI PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND SUB PUSH2 0xB2B 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 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x18591E481CD95D PUSH1 0xCA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST POP PUSH1 0x99 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 SSTORE PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0xB86 JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP5 SWAP1 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 SWAP1 PUSH0 SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB93 PUSH2 0x2389 JUMP JUMPDEST PUSH2 0x99C PUSH0 PUSH2 0x2435 JUMP JUMPDEST PUSH1 0x99 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xBE9 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 0x27B7363CA0B3B3B932B3B0BA37B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD AND ISZERO PUSH2 0xC3C 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 0x13DC99195C919D5B199A5B1B1959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 PUSH1 0x5 ADD SLOAD PUSH2 0x100 SWAP1 DIV AND ISZERO PUSH2 0xC93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x13DC99195C9499599D5B991959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD DUP4 GT ISZERO PUSH2 0xCEB 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 0x4665654578636565647350726F746F636F6C466565 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP3 ISZERO PUSH2 0xD7F JUMPI PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x98 SLOAD SWAP2 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0xD3D SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD59 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xD7D SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x5 DUP2 ADD DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE PUSH1 0x6 DUP2 ADD DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE PUSH1 0x7 ADD SLOAD PUSH2 0xDC3 SWAP1 DUP6 SWAP1 PUSH2 0x2B61 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0x5 DUP3 ADD SLOAD PUSH1 0x3 SWAP1 SWAP3 ADD SLOAD SWAP3 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH3 0x10000 SWAP1 DIV SWAP1 SWAP2 AND SWAP1 PUSH2 0xE09 SWAP1 DUP6 PUSH2 0x2B74 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE26 SWAP3 SWAP2 SWAP1 PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE42 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0xE66 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xE99 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 SUB PUSH2 0xED4 JUMPI POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x65 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0xF49 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3732BB9037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0xF52 DUP2 PUSH2 0x2435 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xF5E PUSH2 0x244E JUMP JUMPDEST PUSH2 0xF6B DUP10 DUP10 DUP7 DUP10 DUP10 PUSH2 0x2494 JUMP JUMPDEST PUSH0 DUP3 SWAP1 SUB PUSH2 0xFB0 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 0x92DCECC2D8D2C89ACAE6E6C2CECA90C2E6D PUSH1 0x73 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH4 0x23B872DD CALLER ADDRESS PUSH2 0xFCB DUP10 DUP14 PUSH2 0x2B74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x101C JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1040 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH2 0x100 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x105C DUP4 PUSH2 0x2BBF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH0 DUP2 DUP2 MSTORE PUSH2 0x100 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD SWAP2 DUP3 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE CHAINID PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE DUP2 MLOAD PUSH1 0x20 SWAP3 DUP4 ADD KECCAK256 PUSH0 DUP2 DUP2 MSTORE PUSH1 0xFF SWAP1 SWAP4 MSTORE SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1100 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 0x4F72646572416C7265616479457869737473 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x64 SUB PUSH2 0x1158 JUMPI POP PUSH0 DUP6 PUSH2 0x1153 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x53656E64657246656549735A65726F PUSH1 0x88 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x1210 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x11F0 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 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x1202 SWAP1 DUP13 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x120C SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE POP PUSH1 0xFF PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH1 0xFF PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP11 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40CCD1CEB111A3C186EF9911E1B876DC1F789ED331B86097B3B8851055B6A137 DUP5 DUP7 DUP14 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x1441 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2BD7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO DUP1 DUP1 ISZERO PUSH2 0x1474 JUMPI POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0xFF SWAP1 SWAP2 AND LT JUMPDEST DUP1 PUSH2 0x148D JUMPI POP ADDRESS EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x148D JUMPI POP PUSH0 SLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST PUSH2 0x14F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x191E481A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH0 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE DUP1 ISZERO PUSH2 0x1511 JUMPI PUSH0 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMPDEST PUSH3 0x186A0 PUSH1 0x97 SSTORE PUSH2 0x1520 PUSH2 0x25D9 JUMP JUMPDEST PUSH2 0x1528 PUSH2 0x2607 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF52 JUMPI PUSH0 DUP1 SLOAD PUSH2 0xFF00 NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x1577 PUSH2 0x2389 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x2635 JUMP JUMPDEST PUSH2 0x1587 PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x15EE 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 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x164C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x3232B9 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x16AE 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 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x3932B3B0BA37B9 PUSH1 0xC9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x170E 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 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x33B0BA37B9 PUSH1 0xD9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x1773 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0xE4CACEC2E8DEE440CCF PUSH1 0xB3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP1 DUP3 ADD DUP4 MSTORE DUP7 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP8 DUP2 MSTORE DUP4 DUP6 ADD DUP8 DUP2 MSTORE PUSH1 0x60 DUP1 DUP7 ADD DUP9 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9B DUP8 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP2 MLOAD PUSH1 0x2 DUP8 ADD SSTORE SWAP1 MLOAD PUSH1 0x3 SWAP1 SWAP6 ADD SWAP5 SWAP1 SWAP5 SSTORE DUP5 MLOAD DUP10 DUP2 MSTORE SWAP2 DUP3 ADD DUP9 SWAP1 MSTORE SWAP4 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1839 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x188E PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x18DC 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP1 PUSH1 0x1 EQ DUP1 PUSH2 0x18EB JUMPI POP DUP1 PUSH1 0x2 EQ JUMPDEST PUSH2 0x1937 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 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP3 PUSH5 0x3A37B5B2B7 PUSH1 0xD9 SHL SUB PUSH2 0xB86 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP5 SWAP1 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C SWAP1 PUSH2 0x1994 SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x19AA PUSH2 0x244E JUMP JUMPDEST PUSH0 DUP9 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1A03 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 0x4F72646572416C7265616479457869737473 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP7 GT PUSH2 0x1A44 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x125B9D985B1A59105B5BDD5B9D PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x1A5A DUP8 DUP8 DUP6 DUP9 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x2494 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH4 0x23B872DD CALLER ADDRESS PUSH2 0x1A7E PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP10 AND DUP12 PUSH2 0x2B74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1ACF JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1AF3 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP DUP6 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH1 0x64 SUB PUSH2 0x1B56 JUMPI PUSH0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND GT PUSH2 0x1B51 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x53656E64657246656549735A65726F PUSH1 0x88 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x1C9D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x1BEE 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 0x546F6B656E46656553657474696E67734E6F74436F6E66696775726564000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x97 SLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x1C00 SWAP1 DUP12 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x1C0A SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP2 POP DUP2 ISZERO PUSH2 0x1C9B JUMPI PUSH2 0x1C1C DUP3 DUP5 PUSH2 0x2B61 JUMP JUMPDEST PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP14 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x1C59 SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP2 DIV AND SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C75 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1C99 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST POP JUMPDEST PUSH0 DUP11 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP10 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP3 DUP4 AND OR DUP4 SSTORE PUSH1 0x1 DUP1 DUP5 ADD DUP1 SLOAD DUP16 DUP5 AND SWAP1 DUP6 AND DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x2 DUP6 ADD DUP1 SLOAD SWAP4 DUP15 AND SWAP4 SWAP1 SWAP5 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP11 AND PUSH1 0x3 DUP5 ADD SSTORE PUSH1 0x4 DUP1 DUP5 ADD DUP7 SWAP1 SSTORE PUSH1 0x5 DUP5 ADD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE PUSH1 0x7 SWAP1 SWAP3 ADD DUP6 SWAP1 SSTORE SWAP2 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 PUSH4 0xA9059CBB SWAP2 PUSH2 0x1D3F SWAP2 DUP10 SWAP2 DUP8 SWAP2 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D5B JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1D7F SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND ISZERO PUSH2 0x1DBE JUMPI DUP1 PUSH0 SUB PUSH2 0x1DA9 JUMPI PUSH2 0x1DA4 DUP11 CALLER DUP10 PUSH1 0x97 SLOAD PUSH2 0x2090 JUMP JUMPDEST PUSH2 0x1DBE JUMP JUMPDEST PUSH2 0x1DBE DUP11 DUP11 DUP10 DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1EA0 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH1 0x60 DUP3 ADD MSTORE SWAP1 DUP7 AND SWAP1 CALLER SWAP1 DUP13 SWAP1 PUSH32 0xB5273CCCE1412B056C9246E834895F9D717974C505F8E5A6C7D08CD0300A066B SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1E37 PUSH2 0x2389 JUMP JUMPDEST PUSH1 0x65 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 0x1E68 PUSH1 0x33 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD DUP4 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP2 DUP4 ADD DUP3 SWAP1 MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x97 SLOAD SWAP2 SWAP3 SWAP2 SWAP1 PUSH2 0x1EF7 SWAP1 DUP3 PUSH2 0x2B61 JUMP JUMPDEST PUSH2 0x1F01 SWAP1 DUP6 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x1F0B SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F18 DUP3 DUP6 PUSH2 0x2B61 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO PUSH2 0x1F90 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x1F4E SWAP1 DUP9 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F6A JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x1F8E SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP1 ISZERO PUSH2 0x2014 JUMPI PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP10 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x1FD2 SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FEE JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x2012 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP2 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x879F6EB4F1506EB3029982039D90B0E82B07D54F5E911A3C644A974863A98A6C PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE DUP9 SWAP2 PUSH32 0x88592047496A7850992DC5E8CD92A9B633CEF0D191A4F5E87FD745C7D382630A SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 DUP1 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP8 MSTORE PUSH1 0x9B DUP6 MSTORE DUP4 DUP8 KECCAK256 DUP5 MLOAD PUSH1 0x80 DUP2 ADD DUP7 MSTORE DUP2 SLOAD DUP2 MSTORE SWAP3 DUP2 ADD SLOAD DUP4 DUP8 ADD MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP5 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x3 SWAP4 DUP5 ADD SLOAD PUSH1 0x60 DUP4 ADD MSTORE DUP11 DUP8 MSTORE SWAP5 SWAP1 SWAP4 MSTORE ADD SLOAD PUSH1 0x97 SLOAD DUP3 MLOAD SWAP3 SWAP5 SWAP2 SWAP4 SWAP3 PUSH2 0x2101 SWAP1 DUP6 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x210B SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP7 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x2127 SWAP2 SWAP1 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x2131 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x97 SLOAD DUP7 PUSH1 0x20 ADD MLOAD DUP4 PUSH2 0x2147 SWAP2 SWAP1 PUSH2 0x2B2B JUMP JUMPDEST PUSH2 0x2151 SWAP2 SWAP1 PUSH2 0x2B42 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x215E DUP5 DUP8 PUSH2 0x2B61 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2186 JUMPI POP PUSH0 DUP12 DUP2 MSTORE PUSH1 0xFF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x6 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND ISZERO JUMPDEST ISZERO PUSH2 0x21FB JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x21B9 SWAP1 DUP13 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x21D5 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x21F9 SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP2 ISZERO PUSH2 0x227F JUMPI PUSH1 0x98 SLOAD PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP3 PUSH4 0xA9059CBB SWAP3 PUSH2 0x223D SWAP3 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV SWAP1 SWAP2 AND SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2259 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x227D SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST PUSH2 0x2289 DUP3 DUP5 PUSH2 0x2B61 JUMP JUMPDEST SWAP3 POP DUP3 ISZERO PUSH2 0x2301 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH2 0x22BF SWAP1 DUP14 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x2B87 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22DB JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x22FF SWAP2 SWAP1 PUSH2 0x2BA0 JUMP JUMPDEST POP JUMPDEST DUP1 DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP13 PUSH32 0x879F6EB4F1506EB3029982039D90B0E82B07D54F5E911A3C644A974863A98A6C PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE SWAP1 DUP2 ADD DUP4 SWAP1 MSTORE DUP12 SWAP1 PUSH32 0x831C7CC0006D91462607C476603366C48469D125DE6228C0791A7090EFD7F7A4 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x99C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH2 0x23EB PUSH2 0x2672 JUMP JUMPDEST PUSH1 0xCD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER 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 LOG1 JUMP JUMPDEST PUSH1 0x65 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0xF52 DUP2 PUSH2 0x26BB JUMP JUMPDEST PUSH1 0xCD SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x99C 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 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x24EF 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 0x151BDAD95B939BDD14DD5C1C1BDC9D1959 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP4 PUSH0 SUB PUSH2 0x252D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x416D6F756E7449735A65726F PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2576 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 0x5468726F775A65726F41646472657373 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x25D2 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x25D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x270C JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x262D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH2 0x99C PUSH2 0x273B JUMP JUMPDEST PUSH2 0x263D PUSH2 0x244E JUMP JUMPDEST PUSH1 0xCD DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x2418 CALLER SWAP1 JUMP JUMPDEST PUSH1 0xCD SLOAD PUSH1 0xFF AND PUSH2 0x99C 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 0x14185D5CD8589B194E881B9BDD081C185D5CD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x418 JUMP JUMPDEST PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2732 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH2 0x99C CALLER PUSH2 0x2435 JUMP JUMPDEST PUSH0 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2761 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x418 SWAP1 PUSH2 0x2C23 JUMP JUMPDEST PUSH1 0xCD DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2783 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2783 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x27B3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH2 0x27CA PUSH1 0x40 DUP8 ADD PUSH2 0x276D JUMP JUMPDEST SWAP3 POP PUSH2 0x27D8 PUSH1 0x60 DUP8 ADD PUSH2 0x2788 JUMP JUMPDEST SWAP2 POP PUSH2 0x27E6 PUSH1 0x80 DUP8 ADD PUSH2 0x2788 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2803 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x2813 PUSH1 0x20 DUP5 ADD PUSH2 0x276D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x282D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x284C JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2855 DUP3 PUSH2 0x276D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x286C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH2 0x140 DUP2 ADD PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x289F PUSH1 0x20 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD PUSH2 0x28BA PUSH1 0x40 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x28E2 PUSH1 0xA0 DUP5 ADD DUP3 ISZERO ISZERO SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP4 ADD MLOAD PUSH2 0x28F6 PUSH1 0xC0 DUP5 ADD DUP3 ISZERO ISZERO SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP4 ADD MLOAD PUSH2 0x2911 PUSH1 0xE0 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x100 DUP4 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP5 DUP4 ADD MSTORE POP POP PUSH2 0x120 SWAP3 DUP4 ADD MLOAD SWAP2 SWAP1 SWAP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2783 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xE0 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x2965 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x296E DUP10 PUSH2 0x276D JUMP JUMPDEST SWAP8 POP PUSH1 0x20 DUP10 ADD CALLDATALOAD SWAP7 POP PUSH2 0x2983 PUSH1 0x40 DUP11 ADD PUSH2 0x2938 JUMP JUMPDEST SWAP6 POP PUSH2 0x2991 PUSH1 0x60 DUP11 ADD PUSH2 0x276D JUMP JUMPDEST SWAP5 POP PUSH1 0x80 DUP10 ADD CALLDATALOAD SWAP4 POP PUSH2 0x29A6 PUSH1 0xA0 DUP11 ADD PUSH2 0x276D JUMP JUMPDEST SWAP3 POP PUSH1 0xC0 DUP10 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x29C2 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP12 ADD SWAP2 POP DUP12 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x29D5 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x29E3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP13 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x29F4 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 POP DUP1 SWAP4 POP POP POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 SWAP1 SWAP4 SWAP7 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2A21 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2A2A DUP7 PUSH2 0x276D JUMP JUMPDEST SWAP8 PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP8 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP7 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP7 POP PUSH1 0x80 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2A5D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x2A6D PUSH1 0x20 DUP6 ADD PUSH2 0x276D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x2A93 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD SWAP7 POP PUSH2 0x2AA3 PUSH1 0x20 DUP10 ADD PUSH2 0x276D JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x2AB8 PUSH1 0x60 DUP10 ADD PUSH2 0x276D JUMP JUMPDEST SWAP4 POP PUSH2 0x2AC6 PUSH1 0x80 DUP10 ADD PUSH2 0x2938 JUMP JUMPDEST SWAP3 POP PUSH2 0x2AD4 PUSH1 0xA0 DUP10 ADD PUSH2 0x276D JUMP JUMPDEST SWAP2 POP PUSH2 0x2AE2 PUSH1 0xC0 DUP10 ADD PUSH2 0x2938 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 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 0x60 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP1 DUP3 GT ISZERO PUSH2 0x2B24 JUMPI PUSH2 0x2B24 PUSH2 0x2AF0 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xEA7 JUMPI PUSH2 0xEA7 PUSH2 0x2AF0 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x2B5C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xEA7 JUMPI PUSH2 0xEA7 PUSH2 0x2AF0 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xEA7 JUMPI PUSH2 0xEA7 PUSH2 0x2AF0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2BB0 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2855 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x2BD0 JUMPI PUSH2 0x2BD0 PUSH2 0x2AF0 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP6 DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD MSTORE DUP2 PUSH1 0x80 DUP3 ADD MSTORE DUP2 DUP4 PUSH1 0xA0 DUP4 ADD CALLDATACOPY PUSH0 DUP2 DUP4 ADD PUSH1 0xA0 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP3 ADD PUSH1 0x1F NOT AND ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2B SWAP1 DUP3 ADD MSTORE PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x40 DUP3 ADD MSTORE PUSH11 0x6E697469616C697A696E67 PUSH1 0xA8 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP12 0xAD 0xF8 POP PUSH30 0x3C332105C6330629ACE84DE47800F1B403FD428E6B0B1CD5EE7AD064736F PUSH13 0x63430008140033000000000000 ","sourceMap":"390:12697:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4581:2415;;;;;;:::i;:::-;;:::i;:::-;;;1102:14:10;;1095:22;1077:41;;1065:2;1050:18;4581:2415:7;;;;;;;;10686:90;10754:18;;-1:-1:-1;;;;;10754:18:7;10686:90;;;-1:-1:-1;;;;;1402:32:10;;;1384:51;;1372:2;1357:18;10686:90:7;1238:203:10;1421:56:7;;;:::i;:::-;;2579:551:8;;;;;;:::i;:::-;;:::i;1879:84:3:-;1949:7;;;;1879:84;;2085:101:1;;;:::i;9189:920:7:-;;;;;;:::i;:::-;;:::i;10498:142::-;;;;;;:::i;:::-;;:::i;10342:107::-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10430:15:7;;;;:5;:15;;;;;;;;;10423:22;;;;;;;;;-1:-1:-1;;;;;10423:22:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10423:22:7;;;;;;;;;;;;;;;;10342:107;;;;;;;;:::i;2031:212:0:-;;;:::i;1709:1812:7:-;;;;;;:::i;:::-;;:::i;:::-;;;4998:25:10;;;4986:2;4971:18;1709:1812:7;4852:177:10;795:114:7;;;:::i;1325:52::-;;;:::i;3741:988:8:-;;;;;;:::i;:::-;;:::i;4909:131::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;5732:13:10;;5714:32;;5802:4;5790:17;;;5784:24;5762:20;;;5755:54;5865:4;5853:17;;;5847:24;5825:20;;;5818:54;5928:4;5916:17;;;5910:24;5888:20;;;5881:54;;;;5701:3;5686:19;;5499:442;1462:85:1;1534:6;;-1:-1:-1;;;;;1534:6:1;1462:85;;2015:335:8;;;;;;:::i;:::-;;:::i;7037:2113:7:-;;;;;;:::i;:::-;;:::i;1144:99:0:-;1223:13;;-1:-1:-1;;;;;1223:13:0;1144:99;;1436:178;;;;;;:::i;:::-;;:::i;4581:2415:7:-;1044:18;;4761:4;;-1:-1:-1;;;;;1044:18:7;1030:10;:32;1022:59;;;;-1:-1:-1;;;1022:59:7;;7098:2:10;1022:59:7;;;7080:21:10;7137:2;7117:18;;;7110:30;-1:-1:-1;;;7156:18:10;;;7149:44;7210:18;;1022:59:7;;;;;;;;;4831:15:::1;::::0;;;:5:::1;:15;::::0;;;;;;;:27:::1;;::::0;::::1;4830:28;4822:55;;;::::0;-1:-1:-1;;;4822:55:7;;7441:2:10;4822:55:7::1;::::0;::::1;7423:21:10::0;7480:2;7460:18;;;7453:30;-1:-1:-1;;;7499:18:10;;;7492:44;7553:18;;4822:55:7::1;7239:338:10::0;4822:55:7::1;4890:15;::::0;;;:5:::1;:15;::::0;;;;;;;:26:::1;;::::0;::::1;::::0;::::1;;4889:27;4881:53;;;::::0;-1:-1:-1;;;4881:53:7;;7784:2:10;4881:53:7::1;::::0;::::1;7766:21:10::0;7823:2;7803:18;;;7796:30;-1:-1:-1;;;7842:18:10;;;7835:43;7895:18;;4881:53:7::1;7582:337:10::0;4881:53:7::1;4964:7;;4946:14;:25;;;;4938:58;;;::::0;-1:-1:-1;;;4938:58:7;;8126:2:10;4938:58:7::1;::::0;::::1;8108:21:10::0;8165:2;8145:18;;;8138:30;-1:-1:-1;;;8184:18:10;;;8177:50;8244:18;;4938:58:7::1;7924:344:10::0;4938:58:7::1;5033:13;5049:15:::0;;;:5:::1;:15;::::0;;;;:21:::1;::::0;::::1;::::0;5163:26:::1;::::0;;::::1;::::0;-1:-1:-1;;;;;5049:21:7;;::::1;::::0;-1:-1:-1;;;;;5163:26:7::1;5201:18;::::0;::::1;::::0;;;;:55:::1;;;5241:15;5223:14;:33;;;;5201:55;5193:88;;;::::0;-1:-1:-1;;;5193:88:7;;8475:2:10;5193:88:7::1;::::0;::::1;8457:21:10::0;8514:2;8494:18;;;8487:30;-1:-1:-1;;;8533:18:10;;;8526:50;8593:18;;5193:88:7::1;8273:344:10::0;5193:88:7::1;5285:15;::::0;;;:5:::1;:15;::::0;;;;:26:::1;;:44:::0;;::::1;::::0;::::1;::::0;:15;:44:::1;::::0;;;-1:-1:-1;;;;;5285:44:7::1;;:::i;:::-;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;5285:44:7;;::::1;;::::0;;::::1;::::0;;::::1;;;::::0;;;-1:-1:-1;5338:15:7;;;:5:::1;:15;::::0;;;;:26:::1;;::::0;;;::::1;:31:::0;;;-1:-1:-1;5334:366:7::1;;5421:15;::::0;;;:5:::1;:15;::::0;;;;:27:::1;::::0;::::1;:34:::0;;-1:-1:-1;;5421:34:7::1;5451:4;5421:34;::::0;;5465:25:::1;;::::0;:30;;::::1;::::0;:66:::1;;-1:-1:-1::0;5499:15:7::1;::::0;;;:5:::1;:15;::::0;;;;:27:::1;;::::0;:32;::::1;5465:66;5461:235;;;5628:15;::::0;;;:5:::1;:15;::::0;;;;:34:::1;::::0;::::1;::::0;5664:25:::1;::::0;;::::1;::::0;5581:109:::1;::::0;5611:8;;5621:5;;-1:-1:-1;;;;;5628:34:7::1;::::0;5581:29:::1;:109::i;:::-;5708:15;::::0;;;:5:::1;:15;::::0;;;;:25:::1;;::::0;:30;;::::1;::::0;:66:::1;;-1:-1:-1::0;5742:15:7::1;::::0;;;:5:::1;:15;::::0;;;;:27:::1;;::::0;:32;5708:66:::1;5704:236;;;5884:15;::::0;;;:5:::1;:15;::::0;;;;:34:::1;;::::0;5821:114:::1;::::0;5854:8;;5864:18;;-1:-1:-1;;;;;5884:34:7::1;5920:14:::0;5821:32:::1;:114::i;:::-;5980:31;6015:15:::0;;;:5:::1;:15;::::0;;;;:22:::1;;::::0;6058:15;;6015:39:::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;6014:59;;;;:::i;:::-;5980:93;;6103:23;6077:5;:15;6083:8;6077:15;;;;;;;;;;;:22;;;:49;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;6135:15:7::1;::::0;;;:5:::1;:15;::::0;;;;:27:::1;;::::0;:32;6131:635:::1;;6235:32;6288:15:::0;;;:5:::1;:15;::::0;;;;;;;:21:::1;::::0;;::::1;::::0;-1:-1:-1;;;;;6288:21:7::1;6270:40:::0;;:17:::1;:40:::0;;;;;6235:75;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;6401:7:::1;::::0;6235:75;;:32;6401:7;6340:57:::1;::::0;:23;:57:::1;:::i;:::-;6339:69;;;;:::i;:::-;6315:93:::0;-1:-1:-1;6413:40:7::1;6315:93:::0;6413:40;::::1;:::i;:::-;::::0;-1:-1:-1;6463:19:7::1;::::0;::::1;::::0;6459:213:::1;;6579:7;::::0;6521:20:::1;::::0;6545:30:::1;;::::0;::::1;:13:::0;:30:::1;:::i;:::-;6544:42;;;;:::i;:::-;6521:65:::0;-1:-1:-1;6592:29:7::1;6521:65:::0;6592:29;::::1;:::i;:::-;::::0;-1:-1:-1;6627:39:7::1;6654:12:::0;6627:39;::::1;:::i;:::-;;;6484:188;6459:213;6730:15;::::0;6707:54:::1;::::0;-1:-1:-1;;;6707:54:7;;-1:-1:-1;;;;;6707:22:7;;::::1;::::0;::::1;::::0;:54:::1;::::0;-1:-1:-1;;;6730:15:7;;::::1;::::0;;::::1;::::0;6747:13;;6707:54:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6169:597;;6131:635;6770:67;::::0;-1:-1:-1;;;6770:67:7;;-1:-1:-1;;;;;6770:22:7;::::1;::::0;::::1;::::0;:67:::1;::::0;6793:18;;6813:23;;6770:67:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6916:18;-1:-1:-1::0;;;;;6871:105:7::1;6903:8;6871:105;6885:13;6939:14;6958;6871:105;;;;;;;10367:25:10::0;;;10411:18;10465:15;;;10460:2;10445:18;;10438:43;10517:15;10512:2;10497:18;;10490:43;10355:2;10340:18;;10169:370;6871:105:7::1;;;;;;;;-1:-1:-1::0;6988:4:7::1;::::0;4581:2415;-1:-1:-1;;;;;;;;4581:2415:7:o;1421:56::-;1355:13:1;:11;:13::i;:::-;1463:10:7::1;:8;:10::i;:::-;1421:56::o:0;2579:551:8:-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;2670:19:8;::::1;2662:53;;;::::0;-1:-1:-1;;;2662:53:8;;10746:2:10;2662:53:8::1;::::0;::::1;10728:21:10::0;10785:2;10765:18;;;10758:30;-1:-1:-1;;;10804:18:10;;;10797:51;10865:18;;2662:53:8::1;10544:345:10::0;2662:53:8::1;2719:12;2739:4;-1:-1:-1::0;;;2739:18:8;2735:326:::1;;2772:15;::::0;-1:-1:-1;;;;;2772:24:8;;::::1;-1:-1:-1::0;;;2772:15:8;;::::1;;:24:::0;2764:74:::1;;;::::0;-1:-1:-1;;;2764:74:8;;11096:2:10;2764:74:8::1;::::0;::::1;11078:21:10::0;11135:2;11115:18;;;11108:30;11174:34;11154:18;;;11147:62;-1:-1:-1;;;11225:18:10;;;11218:35;11270:19;;2764:74:8::1;10894:401:10::0;2764:74:8::1;-1:-1:-1::0;2843:15:8::1;:23:::0;;-1:-1:-1;;;;;;2843:23:8::1;-1:-1:-1::0;;;;;;;;2843:23:8;::::1;;;::::0;;-1:-1:-1;2735:326:8::1;;;2900:4;-1:-1:-1::0;;;2900:20:8;2896:165:::1;;2935:18;::::0;-1:-1:-1;;;;;2935:27:8;;::::1;:18:::0;::::1;:27:::0;2927:79:::1;;;::::0;-1:-1:-1;;;2927:79:8;;11502:2:10;2927:79:8::1;::::0;::::1;11484:21:10::0;11541:2;11521:18;;;11514:30;11580:34;11560:18;;;11553:62;-1:-1:-1;;;11631:18:10;;;11624:37;11678:19;;2927:79:8::1;11300:403:10::0;2927:79:8::1;-1:-1:-1::0;3011:18:8::1;:26:::0;;-1:-1:-1;;;;;;3011:26:8::1;-1:-1:-1::0;;;;;3011:26:8;::::1;;::::0;;-1:-1:-1;2896:165:8::1;3068:7;3064:63;;;3087:35;::::0;-1:-1:-1;;;;;3087:35:8;::::1;::::0;3110:4;;3087:35:::1;::::0;;;::::1;3064:63;2658:472;2579:551:::0;;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;9189:920:7:-:0;1044:18;;9270:4;;-1:-1:-1;;;;;1044:18:7;1030:10;:32;1022:59;;;;-1:-1:-1;;;1022:59:7;;7098:2:10;1022:59:7;;;7080:21:10;7137:2;7117:18;;;7110:30;-1:-1:-1;;;7156:18:10;;;7149:44;7210:18;;1022:59:7;6896:338:10;1022:59:7;9340:15:::1;::::0;;;:5:::1;:15;::::0;;;;;;;:27:::1;;::::0;::::1;9339:28;9331:55;;;::::0;-1:-1:-1;;;9331:55:7;;7441:2:10;9331:55:7::1;::::0;::::1;7423:21:10::0;7480:2;7460:18;;;7453:30;-1:-1:-1;;;7499:18:10;;;7492:44;7553:18;;9331:55:7::1;7239:338:10::0;9331:55:7::1;9399:15;::::0;;;:5:::1;:15;::::0;;;;;;;:26:::1;;::::0;::::1;::::0;::::1;;9398:27;9390:53;;;::::0;-1:-1:-1;;;9390:53:7;;7784:2:10;9390:53:7::1;::::0;::::1;7766:21:10::0;7823:2;7803:18;;;7796:30;-1:-1:-1;;;7842:18:10;;;7835:43;7895:18;;9390:53:7::1;7582:337:10::0;9390:53:7::1;9455:15;::::0;;;:5:::1;:15;::::0;;;;:27:::1;;::::0;:35;-1:-1:-1;9455:35:7::1;9447:69;;;::::0;-1:-1:-1;;;9447:69:7;;11910:2:10;9447:69:7::1;::::0;::::1;11892:21:10::0;11949:2;11929:18;;;11922:30;-1:-1:-1;;;11968:18:10;;;11961:51;12029:18;;9447:69:7::1;11708:345:10::0;9447:69:7::1;9525:8:::0;;9521:127:::1;;9589:15;::::0;;;:5:::1;:15;::::0;;;;;;:21:::1;;::::0;9621:15:::1;::::0;9582:61;;-1:-1:-1;;;9582:61:7;;-1:-1:-1;;;;;9589:21:7;;::::1;::::0;9582:38:::1;::::0;:61:::1;::::0;-1:-1:-1;;;9621:15:7;;::::1;;::::0;9638:4;;9582:61:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9521:127;9676:15;::::0;;;:5:::1;:15;::::0;;;;:26:::1;::::0;::::1;:33:::0;;-1:-1:-1;;9676:33:7::1;;;::::0;;9713:26:::1;::::0;::::1;:30:::0;;-1:-1:-1;;9713:30:7::1;::::0;;9805:22:::1;;::::0;:29:::1;::::0;9830:4;;9805:29:::1;:::i;:::-;9911:15;::::0;;;:5:::1;:15;::::0;;;;:21:::1;::::0;::::1;::::0;9947:29:::1;::::0;::::1;::::0;9996:25:::1;::::0;;::::1;::::0;9782:52;;-1:-1:-1;;;;;;9911:21:7;;::::1;::::0;9904:38:::1;::::0;9947:29;;::::1;::::0;;::::1;::::0;9981:40:::1;::::0;9782:52;9981:40:::1;:::i;:::-;9904:121;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10080:8;10060:29;10074:4;10060:29;;;;4998:25:10::0;;4986:2;4971:18;;4852:177;10060:29:7::1;;;;;;;;10101:4;10094:11;;;1085:1;9189:920:::0;;;;:::o;10498:142::-;-1:-1:-1;;;;;10577:25:7;;10563:4;10577:25;;;:17;:25;;;;;;10606:1;10577:30;10573:47;;-1:-1:-1;10616:4:7;;10498:142;-1:-1:-1;10498:142:7:o;10573:47::-;-1:-1:-1;10631:5:7;;10498:142;-1:-1:-1;10498:142:7:o;2031:212:0:-;1223:13;;965:10:5;;-1:-1:-1;;;;;1223:13:0;2130:24;;2122:78;;;;-1:-1:-1;;;2122:78:0;;12442:2:10;2122:78:0;;;12424:21:10;12481:2;12461:18;;;12454:30;12520:34;12500:18;;;12493:62;-1:-1:-1;;;12571:18:10;;;12564:39;12620:19;;2122:78:0;12240:405:10;2122:78:0;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;1709:1812:7:-;1928:15;1503:19:3;:17;:19::i;:::-;1979:74:7::1;1988:6;1996:7;2005:14;2021:19;2042:10;1979:8;:74::i;:::-;2121:1;2092:30:::0;;;2084:61:::1;;;::::0;-1:-1:-1;;;2084:61:7;;12852:2:10;2084:61:7::1;::::0;::::1;12834:21:10::0;12891:2;12871:18;;;12864:30;-1:-1:-1;;;12910:18:10;;;12903:48;12968:18;;2084:61:7::1;12650:342:10::0;2084:61:7::1;-1:-1:-1::0;;;;;2198:27:7;::::1;;2226:10;2246:4;2253:20;2263:10:::0;2253:7;:20:::1;:::i;:::-;2198:76;::::0;-1:-1:-1;;;;;;2198:76:7::1;::::0;;;;;;-1:-1:-1;;;;;13255:15:10;;;2198:76:7::1;::::0;::::1;13237:34:10::0;13307:15;;;;13287:18;;;13280:43;13339:18;;;13332:34;13172:18;;2198:76:7::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2336:10:7::1;2329:18;::::0;;;:6:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;2448:10:7::1;2460:18;::::0;;;:6:::1;:18;::::0;;;;;;;;;2437:57;;;;::::1;13719:51:10::0;;;;13786:18;;;13779:34;;;;2480:13:7::1;13829:18:10::0;;;13822:34;13692:18;;2437:57:7::1;::::0;;-1:-1:-1;;2437:57:7;;::::1;::::0;;;;;;2427:68;;2437:57:::1;2427:68:::0;;::::1;::::0;2541:1:::1;2508:14:::0;;;:5:::1;:14:::0;;;;;:21;2427:68;;-1:-1:-1;;;;;;2508:21:7::1;:35:::0;2500:66:::1;;;::::0;-1:-1:-1;;;2500:66:7;;14069:2:10;2500:66:7::1;::::0;::::1;14051:21:10::0;14108:2;14088:18;;;14081:30;-1:-1:-1;;;14127:18:10;;;14120:48;14185:18;;2500:66:7::1;13867:342:10::0;2500:66:7::1;2595:20;2623:5;-1:-1:-1::0;;;;;2623:12:7::1;2632:3;2623:12:::0;2619:428:::1;;-1:-1:-1::0;2689:1:7::1;2703:14:::0;2695:42:::1;;;::::0;-1:-1:-1;;;2695:42:7;;14416:2:10;2695:42:7::1;::::0;::::1;14398:21:10::0;14455:2;14435:18;;;14428:30;-1:-1:-1;;;14474:18:10;;;14467:45;14529:18;;2695:42:7::1;14214:339:10::0;2695:42:7::1;2619:428;;;-1:-1:-1::0;;;;;2862:25:7;::::1;2827:32;2862:25:::0;;;:17:::1;:25;::::0;;;;;;;;2827:60;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;2892:77:::1;;;::::0;-1:-1:-1;;;2892:77:7;;14760:2:10;2892:77:7::1;::::0;::::1;14742:21:10::0;14799:2;14779:18;;;14772:30;14838:31;14818:18;;;14811:59;14887:18;;2892:77:7::1;14558:353:10::0;2892:77:7::1;3035:7;::::0;3000:31:::1;::::0;::::1;::::0;2990:41:::1;::::0;:7;:41:::1;:::i;:::-;2989:53;;;;:::i;:::-;2974:68;;2748:299;2619:428;3067:283;;;;;;;;3086:10;-1:-1:-1::0;;;;;3067:283:7::1;;;;;3108:6;-1:-1:-1::0;;;;;3067:283:7::1;;;;;3139:19;-1:-1:-1::0;;;;;3067:283:7::1;;;;;3174:10;3067:283;;;;3202:12;3067:283;;;;3232:5;3067:283;;;;;;3254:5;3067:283;;;;;;3279:14;-1:-1:-1::0;;;;;3067:283:7::1;;;;;3317:7;;3067:283;;-1:-1:-1::0;;;;;3067:283:7::1;;;;;3338:7;3067:283;;::::0;3050:5:::1;:14;3056:7;3050:14;;;;;;;;;;;:300;;;;;;;;;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;-1:-1:-1::0;;;;;3050:300:7::1;;;;;;;;;;;;;;;;;3437:5;:14;3443:7;3437:14;;;;;;;;;;;:21;;;3426:6;-1:-1:-1::0;;;;;3390:127:7::1;3407:14;-1:-1:-1::0;;;;;3390:127:7::1;;3463:12;3480:7;3492:5;3502:11;;3390:127;;;;;;;;;;:::i;:::-;;;;;;;;1945:1576;1709:1812:::0;;;;;;;;;;:::o;795:114::-;3279:19:2;3302:13;;;;;;3301:14;;3347:34;;;;-1:-1:-1;3365:12:2;;3380:1;3365:12;;;;:16;3347:34;3346:108;;;-1:-1:-1;3426:4:2;1713:19:4;:23;;;3387:66:2;;-1:-1:-1;3436:12:2;;;;;:17;3387:66;3325:201;;;;-1:-1:-1;;;3325:201:2;;15763:2:10;3325:201:2;;;15745:21:10;15802:2;15782:18;;;15775:30;15841:34;15821:18;;;15814:62;-1:-1:-1;;;15892:18:10;;;15885:44;15946:19;;3325:201:2;15561:410:10;3325:201:2;3536:12;:16;;-1:-1:-1;;3536:16:2;3551:1;3536:16;;;3562:65;;;;3596:13;:20;;-1:-1:-1;;3596:20:2;;;;;3562:65;852:7:7::1;842;:17:::0;863:21:::1;:19;:21::i;:::-;888:17;:15;:17::i;:::-;3651:14:2::0;3647:99;;;3697:5;3681:21;;-1:-1:-1;;3681:21:2;;;3721:14;;-1:-1:-1;16128:36:10;;3721:14:2;;16116:2:10;16101:18;3721:14:2;;;;;;;3269:483;795:114:7:o;1325:52::-;1355:13:1;:11;:13::i;:::-;1365:8:7::1;:6;:8::i;3741:988:8:-:0;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;3945:24:8;::::1;;::::0;;;:17:::1;:24;::::0;;;;;3973:1:::1;3945:29;3937:70;;;::::0;-1:-1:-1;;;3937:70:8;;16377:2:10;3937:70:8::1;::::0;::::1;16359:21:10::0;16416:2;16396:18;;;16389:30;16455;16435:18;;;16428:58;16503:18;;3937:70:8::1;16175:352:10::0;3937:70:8::1;4039:7;;4019:16;:27;;4011:75;;;::::0;-1:-1:-1;;;4011:75:8;;16734:2:10;4011:75:8::1;::::0;::::1;16716:21:10::0;16773:2;16753:18;;;16746:30;16812:34;16792:18;;;16785:62;-1:-1:-1;;;16863:18:10;;;16856:33;16906:19;;4011:75:8::1;16532:399:10::0;4011:75:8::1;4122:7;;4098:20;:31;;4090:83;;;::::0;-1:-1:-1;;;4090:83:8;;17138:2:10;4090:83:8::1;::::0;::::1;17120:21:10::0;17177:2;17157:18;;;17150:30;17216:34;17196:18;;;17189:62;-1:-1:-1;;;17267:18:10;;;17260:37;17314:19;;4090:83:8::1;16936:403:10::0;4090:83:8::1;4207:7;;4185:18;:29;;4177:79;;;::::0;-1:-1:-1;;;4177:79:8;;17546:2:10;4177:79:8::1;::::0;::::1;17528:21:10::0;17585:2;17565:18;;;17558:30;17624:34;17604:18;;;17597:62;-1:-1:-1;;;17675:18:10;;;17668:35;17720:19;;4177:79:8::1;17344:401:10::0;4177:79:8::1;4294:7;;4268:22;:33;;4260:88;;;::::0;-1:-1:-1;;;4260:88:8;;17952:2:10;4260:88:8::1;::::0;::::1;17934:21:10::0;17991:2;17971:18;;;17964:30;18030:34;18010:18;;;18003:62;-1:-1:-1;;;18081:18:10;;;18074:40;18131:19;;4260:88:8::1;17750:406:10::0;4260:88:8::1;4380:202;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4353:24:8;::::1;-1:-1:-1::0;4353:24:8;;;:17:::1;:24:::0;;;;;:229;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;4592:133;;18392:25:10;;;18433:18;;;18426:34;;;18476:18;;;18469:34;;;18519:18;;;18512:34;;;4592:133:8::1;::::0;18364:19:10;4592:133:8::1;;;;;;;3741:988:::0;;;;;:::o;4909:131::-;4976:23;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4976:23:8;-1:-1:-1;;;;;;5012:24:8;;;;;:17;:24;;;;;;;;;5005:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4909:131::o;2015:335::-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;2119:19:8;::::1;2111:53;;;::::0;-1:-1:-1;;;2111:53:8;;10746:2:10;2111:53:8::1;::::0;::::1;10728:21:10::0;10785:2;10765:18;;;10758:30;-1:-1:-1;;;10804:18:10;;;10797:51;10865:18;;2111:53:8::1;10544:345:10::0;2111:53:8::1;2176:6;2186:1;2176:11;:26;;;;2191:6;2201:1;2191:11;2176:26;2168:62;;;::::0;-1:-1:-1;;;2168:62:8;;18759:2:10;2168:62:8::1;::::0;::::1;18741:21:10::0;18798:2;18778:18;;;18771:30;18837:25;18817:18;;;18810:53;18880:18;;2168:62:8::1;18557:347:10::0;2168:62:8::1;2238:4;-1:-1:-1::0;;;2238:15:8;2234:113:::1;;-1:-1:-1::0;;;;;2260:24:8;::::1;;::::0;;;:17:::1;:24;::::0;;;;;;:33;;;2303:39;2322:4;;2303:39:::1;::::0;::::1;::::0;2287:6;4998:25:10;;4986:2;4971:18;;4852:177;2303:39:8::1;;;;;;;;2015:335:::0;;;:::o;7037:2113:7:-;7237:4;1503:19:3;:17;:19::i;:::-;7289:1:7::1;7255:15:::0;;;:5:::1;:15;::::0;;;;:22;-1:-1:-1;;;;;7255:22:7::1;:36:::0;7247:67:::1;;;::::0;-1:-1:-1;;;7247:67:7;;14069:2:10;7247:67:7::1;::::0;::::1;14051:21:10::0;14108:2;14088:18;;;14081:30;-1:-1:-1;;;14127:18:10;;;14120:48;14185:18;;7247:67:7::1;13867:342:10::0;7247:67:7::1;7336:7;;7326;:17;7318:43;;;::::0;-1:-1:-1;;;7318:43:7;;19111:2:10;7318:43:7::1;::::0;::::1;19093:21:10::0;19150:2;19130:18;;;19123:30;-1:-1:-1;;;19169:18:10;;;19162:43;19222:18;;7318:43:7::1;18909:337:10::0;7318:43:7::1;7365:70;7374:6;7382:7;7391:10;7403:19;7424:10;-1:-1:-1::0;;;;;7365:70:7::1;:8;:70::i;:::-;-1:-1:-1::0;;;;;7440:27:7;::::1;;7468:10;7488:4;7495:20;-1:-1:-1::0;;;;;7495:20:7;::::1;:7:::0;:20:::1;:::i;:::-;7440:76;::::0;-1:-1:-1;;;;;;7440:76:7::1;::::0;;;;;;-1:-1:-1;;;;;13255:15:10;;;7440:76:7::1;::::0;::::1;13237:34:10::0;13307:15;;;;13287:18;;;13280:43;13339:18;;;13332:34;13172:18;;7440:76:7::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;7546:7:7;7521:22:::1;-1:-1:-1::0;;;;;7648:12:7;::::1;7657:3;7648:12:::0;7644:552:::1;;7738:1;7725:10;-1:-1:-1::0;;;;;7725:14:7::1;;7717:42;;;::::0;-1:-1:-1;;;7717:42:7;;14416:2:10;7717:42:7::1;::::0;::::1;14398:21:10::0;14455:2;14435:18;;;14428:30;-1:-1:-1;;;14474:18:10;;;14467:45;14529:18;;7717:42:7::1;14214:339:10::0;7717:42:7::1;7644:552;;;-1:-1:-1::0;;;;;7871:25:7;::::1;7836:32;7871:25:::0;;;:17:::1;:25;::::0;;;;;;;;7836:60;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;7901:77:::1;;;::::0;-1:-1:-1;;;7901:77:7;;14760:2:10;7901:77:7::1;::::0;::::1;14742:21:10::0;14799:2;14779:18;;;14772:30;14838:31;14818:18;;;14811:59;14887:18;;7901:77:7::1;14558:353:10::0;7901:77:7::1;8049:7;::::0;8014:31:::1;::::0;::::1;::::0;8004:41:::1;::::0;:7;:41:::1;:::i;:::-;8003:53;;;;:::i;:::-;7987:69:::0;-1:-1:-1;8069:17:7;;8065:127:::1;;8094:31;8112:13:::0;8094:31;::::1;:::i;:::-;8155:15;::::0;8131:55:::1;::::0;-1:-1:-1;;;8131:55:7;;8094:31;;-1:-1:-1;;;;;;8131:23:7;;::::1;::::0;::::1;::::0;:55:::1;::::0;-1:-1:-1;;;8155:15:7;;::::1;;::::0;8172:13;;8131:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8065:127;7770:426;7644:552;8200:15;::::0;;;:5:::1;:15;::::0;;;;;;:35;;-1:-1:-1;;;;;8200:35:7;;::::1;-1:-1:-1::0;;;;;;8200:35:7;;::::1;;::::0;;;8239:21;;::::1;:30:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;8273:34:::1;::::0;::::1;:56:::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;;;8333:38:7;::::1;:25;::::0;::::1;:38:::0;8375:27:::1;::::0;;::::1;:43:::0;;;8422:27:::1;::::0;::::1;:34:::0;;-1:-1:-1;;8422:34:7::1;::::0;;::::1;::::0;;;8460:22:::1;::::0;;::::1;:39:::0;;;8504:51;;-1:-1:-1;;;8504:51:7;;8239:30;;8504:23:::1;::::0;:51:::1;::::0;8225:10;;8485:14;;8504:51:::1;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;8620:15:7;::::1;::::0;8616:365:::1;;8646:13;8663:1;8646:18:::0;8642:335:::1;;8712:92;8745:8;8755:10;8767:19;8795:7;;8712:32;:92::i;:::-;8642:335;;;8891:80;8921:8;8931:6;8939:19;8960:10;-1:-1:-1::0;;;;;8891:80:7::1;:29;:80::i;:::-;9017:113;::::0;;19480:25:10;;;-1:-1:-1;;;;;19541:32:10;;;19536:2;19521:18;;19514:60;19590:18;;;19583:34;;;-1:-1:-1;;;;;19653:39:10;;19648:2;19633:18;;19626:67;9017:113:7;;::::1;::::0;9043:10:::1;::::0;9030:8;;9017:113:::1;::::0;19467:3:10;19452:19;9017:113:7::1;;;;;;;-1:-1:-1::0;9142:4:7::1;::::0;7037:2113;-1:-1:-1;;;;;;;;;7037:2113:7:o;1436:178:0:-;1355:13:1;:11;:13::i;:::-;1525::0::1;:24:::0;;-1:-1:-1;;;;;1525:24:0;::::1;-1:-1:-1::0;;;;;;1525:24:0;;::::1;::::0;::::1;::::0;;;1589:7:::1;1534:6:1::0;;-1:-1:-1;;;;;1534:6:1;;1462:85;1589:7:0::1;-1:-1:-1::0;;;;;1564:43:0::1;;;;;;;;;;;1436:178:::0;:::o;12208:877:7:-;-1:-1:-1;;;;;12389:25:7;;12354:32;12389:25;;;:17;:25;;;;;;;;12354:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12591:7;;12354:60;;:32;12591:7;12549:37;;12591:7;12549:37;:::i;:::-;12535:52;;:10;:52;:::i;:::-;12534:64;;;;:::i;:::-;12511:87;-1:-1:-1;12602:24:7;12629:25;12511:87;12629:10;:25;:::i;:::-;12602:52;-1:-1:-1;12692:16:7;;12688:90;;12715:58;;-1:-1:-1;;;12715:58:7;;-1:-1:-1;;;;;12715:23:7;;;;;:58;;12739:19;;12760:12;;12715:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12688:90;12831:20;;12827:94;;12882:15;;12858:58;;-1:-1:-1;;;12858:58:7;;-1:-1:-1;;;;;12858:23:7;;;;;;:58;;-1:-1:-1;;;12882:15:7;;;;;;;12899:16;;12858:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12827:94;12999:12;12978:19;-1:-1:-1;;;;;12947:65:7;12968:8;12947:65;;;;;;;;;;13021:60;;;19878:25:10;;;19934:2;19919:18;;19912:34;;;13040:8:7;;13021:60;;19851:18:10;13021:60:7;;;;;;;12350:735;;;12208:877;;;;:::o;10779:1426::-;10943:32;10996:15;;;:5;:15;;;;;;;;:21;;;;;-1:-1:-1;;;;;10996:21:7;10978:40;;;:17;:40;;;;;10943:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11042:15;;;;;;;:25;;11218:7;;11189:25;;10943:75;;11042:25;;10996:21;11177:37;;11042:25;11177:37;:::i;:::-;11176:49;;;;:::i;:::-;11151:74;;11229:29;11297:7;;11279:14;11262:31;;:14;:31;;;;:::i;:::-;11261:43;;;;:::i;:::-;11229:75;;11308:24;11393:7;;11360:8;:29;;;11336:21;:53;;;;:::i;:::-;11335:65;;;;:::i;:::-;11308:92;-1:-1:-1;11404:20:7;11427:26;11439:14;11427:9;:26;:::i;:::-;11404:49;-1:-1:-1;11491:17:7;;;;;:52;;-1:-1:-1;11512:15:7;;;;:5;:15;;;;;:26;;;-1:-1:-1;;;;;11512:26:7;:31;11491:52;11487:125;;;11550:57;;-1:-1:-1;;;11550:57:7;;-1:-1:-1;;;;;11550:22:7;;;;;:57;;11573:19;;11594:12;;11550:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11487:125;11665:21;;11661:94;;11716:15;;11693:57;;-1:-1:-1;;;11693:57:7;;-1:-1:-1;;;;;11693:22:7;;;;;;:57;;-1:-1:-1;;;11716:15:7;;;;;;;11733:16;;11693:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11661:94;11864:40;11888:16;11864:21;:40;:::i;:::-;11840:64;-1:-1:-1;11912:26:7;;11908:107;;11945:65;;-1:-1:-1;;;11945:65:7;;-1:-1:-1;;;;;11945:22:7;;;;;:65;;11968:18;;11988:21;;11945:65;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11908:107;12093:12;12072:19;-1:-1:-1;;;;;12041:65:7;12062:8;12041:65;;;;;;;;;;12115:86;;;20159:25:10;;;20215:2;20200:18;;20193:34;;;20243:18;;;20236:34;;;12137:8:7;;12115:86;;20147:2:10;20132:18;12115:86:7;;;;;;;10939:1266;;;;;;;10779:1426;;;;:::o;1620:130:1:-;1534:6;;-1:-1:-1;;;;;1534:6:1;965:10:5;1683:23:1;1675:68;;;;-1:-1:-1;;;1675:68:1;;20483:2:10;1675:68:1;;;20465:21:10;;;20502:18;;;20495:30;20561:34;20541:18;;;20534:62;20613:18;;1675:68:1;20281:356:10;2697:117:3;1750:16;:14;:16::i;:::-;2755:7:::1;:15:::0;;-1:-1:-1;;2755:15:3::1;::::0;;2785:22:::1;965:10:5::0;2794:12:3::1;2785:22;::::0;-1:-1:-1;;;;;1402:32:10;;;1384:51;;1372:2;1357:18;2785:22:3::1;;;;;;;2697:117::o:0;1798:153:0:-;1887:13;1880:20;;-1:-1:-1;;;;;;1880:20:0;;;1910:34;1935:8;1910:24;:34::i;2031:106:3:-;1949:7;;;;2100:9;2092:38;;;;-1:-1:-1;;;2092:38:3;;20844:2:10;2092:38:3;;;20826:21:10;20883:2;20863:18;;;20856:30;-1:-1:-1;;;20902:18:10;;;20895:46;20958:18;;2092:38:3;20642:340:10;3914:427:7;-1:-1:-1;;;;;4077:25:7;;;;;;:17;:25;;;;;;4106:1;4077:30;4069:60;;;;-1:-1:-1;;;4069:60:7;;21189:2:10;4069:60:7;;;21171:21:10;21228:2;21208:18;;;21201:30;-1:-1:-1;;;21247:18:10;;;21240:47;21304:18;;4069:60:7;20987:341:10;4069:60:7;4141:7;4152:1;4141:12;4133:37;;;;-1:-1:-1;;;4133:37:7;;21535:2:10;4133:37:7;;;21517:21:10;21574:2;21554:18;;;21547:30;-1:-1:-1;;;21593:18:10;;;21586:42;21645:18;;4133:37:7;21333:336:10;4133:37:7;-1:-1:-1;;;;;4182:28:7;;4174:57;;;;-1:-1:-1;;;4174:57:7;;21876:2:10;4174:57:7;;;21858:21:10;21915:2;21895:18;;;21888:30;-1:-1:-1;;;21934:18:10;;;21927:46;21990:18;;4174:57:7;21674:340:10;4174:57:7;4240:15;;4236:102;;-1:-1:-1;;;;;4270:33:7;;4262:71;;;;-1:-1:-1;;;4262:71:7;;22221:2:10;4262:71:7;;;22203:21:10;22260:2;22240:18;;;22233:30;22299:27;22279:18;;;22272:55;22344:18;;4262:71:7;22019:349:10;4262:71:7;3914:427;;;;;:::o;889:100:0:-;5374:13:2;;;;;;;5366:69;;;;-1:-1:-1;;;5366:69:2;;;;;;;:::i;:::-;956:26:0::1;:24;:26::i;1084:97:3:-:0;5374:13:2;;;;;;;5366:69;;;;-1:-1:-1;;;5366:69:2;;;;;;;:::i;:::-;1147:27:3::1;:25;:27::i;2450:115::-:0;1503:19;:17;:19::i;:::-;2509:7:::1;:14:::0;;-1:-1:-1;;2509:14:3::1;2519:4;2509:14;::::0;;2538:20:::1;2545:12;965:10:5::0;;886:96;2209:106:3;1949:7;;;;2267:41;;;;-1:-1:-1;;;2267:41:3;;22987:2:10;2267:41:3;;;22969:21:10;23026:2;23006:18;;;22999:30;-1:-1:-1;;;23045:18:10;;;23038:50;23105:18;;2267:41:3;22785:344:10;2687:187:1;2779:6;;;-1:-1:-1;;;;;2795:17:1;;;-1:-1:-1;;;;;;2795:17:1;;;;;;;2827:40;;2779:6;;;2795:17;2779:6;;2827:40;;2760:16;;2827:40;2750:124;2687:187;:::o;1125:111::-;5374:13:2;;;;;;;5366:69;;;;-1:-1:-1;;;5366:69:2;;;;;;;:::i;:::-;1197:32:1::1;965:10:5::0;1197:18:1::1;:32::i;1187:95:3:-:0;5374:13:2;;;;;;;5366:69;;;;-1:-1:-1;;;5366:69:2;;;;;;;:::i;:::-;1260:7:3::1;:15:::0;;-1:-1:-1;;1260:15:3::1;::::0;;1187:95::o;14:173:10:-;82:20;;-1:-1:-1;;;;;131:31:10;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:171::-;259:20;;319:18;308:30;;298:41;;288:69;;353:1;350;343:12;368:468;461:6;469;477;485;493;546:3;534:9;525:7;521:23;517:33;514:53;;;563:1;560;553:12;514:53;599:9;586:23;576:33;;656:2;645:9;641:18;628:32;618:42;;679:38;713:2;702:9;698:18;679:38;:::i;:::-;669:48;;736:37;769:2;758:9;754:18;736:37;:::i;:::-;726:47;;792:38;825:3;814:9;810:19;792:38;:::i;:::-;782:48;;368:468;;;;;;;;:::o;1446:254::-;1514:6;1522;1575:2;1563:9;1554:7;1550:23;1546:32;1543:52;;;1591:1;1588;1581:12;1543:52;1627:9;1614:23;1604:33;;1656:38;1690:2;1679:9;1675:18;1656:38;:::i;:::-;1646:48;;1446:254;;;;;:::o;1705:248::-;1773:6;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;-1:-1:-1;;1873:23:10;;;1943:2;1928:18;;;1915:32;;-1:-1:-1;1705:248:10:o;1958:186::-;2017:6;2070:2;2058:9;2049:7;2045:23;2041:32;2038:52;;;2086:1;2083;2076:12;2038:52;2109:29;2128:9;2109:29;:::i;:::-;2099:39;1958:186;-1:-1:-1;;;1958:186:10:o;2149:180::-;2208:6;2261:2;2249:9;2240:7;2236:23;2232:32;2229:52;;;2277:1;2274;2267:12;2229:52;-1:-1:-1;2300:23:10;;2149:180;-1:-1:-1;2149:180:10:o;2449:1183::-;2661:13;;-1:-1:-1;;;;;1195:31:10;1183:44;;2629:3;2614:19;;2733:4;2725:6;2721:17;2715:24;2748:54;2796:4;2785:9;2781:20;2767:12;-1:-1:-1;;;;;1195:31:10;1183:44;;1129:104;2748:54;;2851:4;2843:6;2839:17;2833:24;2866:56;2916:4;2905:9;2901:20;2885:14;-1:-1:-1;;;;;1195:31:10;1183:44;;1129:104;2866:56;;2978:4;2970:6;2966:17;2960:24;2953:4;2942:9;2938:20;2931:54;3041:4;3033:6;3029:17;3023:24;3016:4;3005:9;3001:20;2994:54;3097:4;3089:6;3085:17;3079:24;3112:53;3159:4;3148:9;3144:20;3128:14;911:13;904:21;892:34;;841:91;3112:53;;3214:4;3206:6;3202:17;3196:24;3229:53;3276:4;3265:9;3261:20;3245:14;911:13;904:21;892:34;;841:91;3229:53;;3331:4;3323:6;3319:17;3313:24;3346:56;3396:4;3385:9;3381:20;3365:14;-1:-1:-1;;;;;1195:31:10;1183:44;;1129:104;3346:56;-1:-1:-1;3421:6:10;3464:15;;;3458:22;-1:-1:-1;;;;;2399:38:10;;3523:18;;;2387:51;-1:-1:-1;;3561:6:10;3609:15;;;3603:22;3583:18;;;;3576:50;2449:1183;:::o;3637:179::-;3704:20;;-1:-1:-1;;;;;3753:38:10;;3743:49;;3733:77;;3806:1;3803;3796:12;3821:1026;3945:6;3953;3961;3969;3977;3985;3993;4001;4054:3;4042:9;4033:7;4029:23;4025:33;4022:53;;;4071:1;4068;4061:12;4022:53;4094:29;4113:9;4094:29;:::i;:::-;4084:39;;4170:2;4159:9;4155:18;4142:32;4132:42;;4193:37;4226:2;4215:9;4211:18;4193:37;:::i;:::-;4183:47;;4249:38;4283:2;4272:9;4268:18;4249:38;:::i;:::-;4239:48;;4334:3;4323:9;4319:19;4306:33;4296:43;;4358:39;4392:3;4381:9;4377:19;4358:39;:::i;:::-;4348:49;;4448:3;4437:9;4433:19;4420:33;4472:18;4513:2;4505:6;4502:14;4499:34;;;4529:1;4526;4519:12;4499:34;4567:6;4556:9;4552:22;4542:32;;4612:7;4605:4;4601:2;4597:13;4593:27;4583:55;;4634:1;4631;4624:12;4583:55;4674:2;4661:16;4700:2;4692:6;4689:14;4686:34;;;4716:1;4713;4706:12;4686:34;4761:7;4756:2;4747:6;4743:2;4739:15;4735:24;4732:37;4729:57;;;4782:1;4779;4772:12;4729:57;4813:2;4809;4805:11;4795:21;;4835:6;4825:16;;;;;3821:1026;;;;;;;;;;;:::o;5034:460::-;5129:6;5137;5145;5153;5161;5214:3;5202:9;5193:7;5189:23;5185:33;5182:53;;;5231:1;5228;5221:12;5182:53;5254:29;5273:9;5254:29;:::i;:::-;5244:39;5330:2;5315:18;;5302:32;;-1:-1:-1;5381:2:10;5366:18;;5353:32;;5432:2;5417:18;;5404:32;;-1:-1:-1;5483:3:10;5468:19;5455:33;;-1:-1:-1;5034:460:10;-1:-1:-1;;;5034:460:10:o;5946:322::-;6023:6;6031;6039;6092:2;6080:9;6071:7;6067:23;6063:32;6060:52;;;6108:1;6105;6098:12;6060:52;6144:9;6131:23;6121:33;;6173:38;6207:2;6196:9;6192:18;6173:38;:::i;:::-;6163:48;;6258:2;6247:9;6243:18;6230:32;6220:42;;5946:322;;;;;:::o;6273:618::-;6384:6;6392;6400;6408;6416;6424;6432;6485:3;6473:9;6464:7;6460:23;6456:33;6453:53;;;6502:1;6499;6492:12;6453:53;6538:9;6525:23;6515:33;;6567:38;6601:2;6590:9;6586:18;6567:38;:::i;:::-;6557:48;;6652:2;6641:9;6637:18;6624:32;6614:42;;6675:38;6709:2;6698:9;6694:18;6675:38;:::i;:::-;6665:48;;6732:38;6765:3;6754:9;6750:19;6732:38;:::i;:::-;6722:48;;6789:39;6823:3;6812:9;6808:19;6789:39;:::i;:::-;6779:49;;6847:38;6880:3;6869:9;6865:19;6847:38;:::i;:::-;6837:48;;6273:618;;;;;;;;;;:::o;8622:127::-;8683:10;8678:3;8674:20;8671:1;8664:31;8714:4;8711:1;8704:15;8738:4;8735:1;8728:15;8754:191;-1:-1:-1;;;;;8881:10:10;;;8869;;;8865:27;;8904:12;;;8901:38;;;8919:18;;:::i;:::-;8901:38;8754:191;;;;:::o;8950:168::-;9023:9;;;9054;;9071:15;;;9065:22;;9051:37;9041:71;;9092:18;;:::i;9123:217::-;9163:1;9189;9179:132;;9233:10;9228:3;9224:20;9221:1;9214:31;9268:4;9265:1;9258:15;9296:4;9293:1;9286:15;9179:132;-1:-1:-1;9325:9:10;;9123:217::o;9345:128::-;9412:9;;;9433:11;;;9430:37;;;9447:18;;:::i;9478:125::-;9543:9;;;9564:10;;;9561:36;;;9577:18;;:::i;9608:274::-;-1:-1:-1;;;;;9800:32:10;;;;9782:51;;9864:2;9849:18;;9842:34;9770:2;9755:18;;9608:274::o;9887:277::-;9954:6;10007:2;9995:9;9986:7;9982:23;9978:32;9975:52;;;10023:1;10020;10013:12;9975:52;10055:9;10049:16;10108:5;10101:13;10094:21;10087:5;10084:32;10074:60;;10130:1;10127;10120:12;13377:135;13416:3;13437:17;;;13434:43;;13457:18;;:::i;:::-;-1:-1:-1;13504:1:10;13493:13;;13377:135::o;14916:640::-;15158:6;15147:9;15140:25;15201:6;15196:2;15185:9;15181:18;15174:34;-1:-1:-1;;;;;15248:6:10;15244:39;15239:2;15228:9;15224:18;15217:67;15320:3;15315:2;15304:9;15300:18;15293:31;15361:6;15355:3;15344:9;15340:19;15333:35;15419:6;15411;15405:3;15394:9;15390:19;15377:49;15476:1;15446:22;;;15470:3;15442:32;;;15435:43;;;;15539:2;15518:15;;;-1:-1:-1;;15514:29:10;15499:45;15495:55;;14916:640;-1:-1:-1;;;;14916:640:10:o;22373:407::-;22575:2;22557:21;;;22614:2;22594:18;;;22587:30;22653:34;22648:2;22633:18;;22626:62;-1:-1:-1;;;22719:2:10;22704:18;;22697:41;22770:3;22755:19;;22373:407::o"},"methodIdentifiers":{"acceptOwnership()":"79ba5097","createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getAggregator()":"3ad59dbc","getOrderInfo(bytes32)":"768c6ec0","getTokenFeeSettings(address)":"8bfa0549","initialize()":"8129fc1c","isTokenSupported(address)":"75151b63","owner()":"8da5cb5b","pause()":"8456cb59","paused()":"5c975abb","pendingOwner()":"e30c3978","refund(uint256,bytes32)":"71eedb88","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","settleIn(bytes32,address,uint256,address,uint96,address,uint96)":"d839de63","settleOut(bytes32,bytes32,address,uint64,uint64)":"32553efa","transferOwnership(address)":"f2fde38b","unpause()":"3f4ba83a","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"rate\",\"type\":\"uint96\"}],\"name\":\"SettleIn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"settlePercent\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"rebatePercent\",\"type\":\"uint64\"}],\"name\":\"SettleOut\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAggregator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_senderFee\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"}],\"name\":\"settleIn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_rebatePercent\",\"type\":\"uint64\"}],\"name\":\"settleOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"SenderFeeTransferred(bytes32,address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"SettleIn(bytes32,address,address,uint256,address,uint256,uint96)\":{\"details\":\"Emitted when an onramp order is successfully processed\"},\"SettleOut(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"See {createOrder-IGateway}. \"},\"getAggregator()\":{\"details\":\"See {getAggregator-IGateway}. \"},\"getOrderInfo(bytes32)\":{\"details\":\"See {getOrderInfo-IGateway}. \"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"initialize()\":{\"details\":\"Initialize function.\"},\"isTokenSupported(address)\":{\"details\":\"See {isTokenSupported-IGateway}. \"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"Pause the contract.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"refund(uint256,bytes32)\":{\"details\":\"See {refund-IGateway}. \"},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"settleIn(bytes32,address,uint256,address,uint96,address,uint96)\":{\"details\":\"See {settleIn-IGateway}. \"},\"settleOut(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"See {settleOut-IGateway}. \"},\"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.\"},\"unpause()\":{\"details\":\"Unpause the contract.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"title\":\"Gateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"This contract serves as a gateway for creating orders and managing settlements.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/Gateway.sol\":\"Gateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":{\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75267b14b60dc216d01d596a4008189a6c44d3314e53eded0edb1e757d95be16\",\"dweb:/ipfs/QmQoMaxTRT6V7uQj9USfdQH9jh1crywB9auVjThzUSAbG2\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol\":{\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6d362da7417bc7d7cc8623f3d3f8f04c3808d043ee6379568c63a63ec14a124e\",\"dweb:/ipfs/QmYm3wDHUcfGh3MNiRqpWEBbSSYnDSyUsppDATy5DVsfui\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]},\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"project/contracts/Gateway.sol\":{\"keccak256\":\"0xd228ac06a216cd0171a2117937728faf46950e1b5dae96f3a5dc99f057911d44\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://a90bc558bc6a927c15473ceaf2eb57aa08075977117f1899843d0f28e041ebe3\",\"dweb:/ipfs/QmVxmGuF8K9TiTaQDE9SbDazJB3gUJqNUqptMA87bdhFr7\"]},\"project/contracts/GatewaySettingManager.sol\":{\"keccak256\":\"0x7c1bead31b085f7e2efd902dcd3c60c26e50865c601404ac6b42ed227edb7272\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://8d4b5ff25e485e328cb369502594fa0b7e0adc22c4dc1986a4d21032abbfcfb9\",\"dweb:/ipfs/QmexLQm11m59vFeQG1xEoLBQPjs7pc656fG7TgZaFW7cBY\"]},\"project/contracts/interfaces/IGateway.sol\":{\"keccak256\":\"0xde1b1c76a6886c05c36b81af43239e3705fc823040bd82b27a0e60ae37b9590e\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://fdbbbe9642743f6f16bb51fbb2a1d77b18dafd5d0b4e890409973290c24b598c\",\"dweb:/ipfs/QmPpcGz6YBFtE9wTikDbbL4tRYd1ki7zmaRzARqjiJfKP5\"]}},\"version\":1}"}},"project/contracts/GatewaySettingManager.sol":{"GatewaySettingManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"608060405234801561000f575f80fd5b50610a538061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea2646970667358221220f8ec64e47e3406e0b89ec5ab45809dc50cc15f1a0aaf778415d5f89e56b9814164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xA53 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x90 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x164 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x94 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xA9 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH2 0xA2 CALLDATASIZE PUSH1 0x4 PUSH2 0x963 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH2 0x369 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x37C JUMP JUMPDEST PUSH2 0xA7 PUSH2 0xC7 CALLDATASIZE PUSH1 0x4 PUSH2 0x98D JUMP JUMPDEST PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x689 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 SWAP2 DUP3 ADD MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x14E CALLDATASIZE PUSH1 0x4 PUSH2 0x9EB JUMP JUMPDEST PUSH2 0x6FD JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x128 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x818 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1D2 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH8 0x7472656173757279 PUSH1 0xC0 SHL SUB PUSH2 0x288 JUMPI PUSH1 0x98 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SUB PUSH2 0x257 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 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x1E481CD95D PUSH1 0xDA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x98 DUP1 SLOAD PUSH9 0x10000000000000000 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x40 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH2 0x328 JUMP JUMPDEST DUP3 PUSH10 0x30B3B3B932B3B0BA37B9 PUSH1 0xB1 SHL SUB PUSH2 0x328 JUMPI PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND SUB PUSH2 0x309 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 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x18591E481CD95D PUSH1 0xCA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x99 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 SSTORE PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x364 JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP5 SWAP1 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 SWAP1 PUSH0 SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x371 PUSH2 0x889 JUMP JUMPDEST PUSH2 0x37A PUSH0 PUSH2 0x8E3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x65 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x3EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3732BB9037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH2 0x3F3 DUP2 PUSH2 0x8E3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3FE PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x465 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 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x3232B9 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x525 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 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x3932B3B0BA37B9 PUSH1 0xC9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x585 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 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x33B0BA37B9 PUSH1 0xD9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0xE4CACEC2E8DEE440CCF PUSH1 0xB3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP1 DUP3 ADD DUP4 MSTORE DUP7 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP8 DUP2 MSTORE DUP4 DUP6 ADD DUP8 DUP2 MSTORE PUSH1 0x60 DUP1 DUP7 ADD DUP9 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9B DUP8 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP2 MLOAD PUSH1 0x2 DUP8 ADD SSTORE SWAP1 MLOAD PUSH1 0x3 SWAP1 SWAP6 ADD SWAP5 SWAP1 SWAP5 SSTORE DUP5 MLOAD DUP10 DUP2 MSTORE SWAP2 DUP3 ADD DUP9 SWAP1 MSTORE SWAP4 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x6B0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x705 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x753 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP1 PUSH1 0x1 EQ DUP1 PUSH2 0x762 JUMPI POP DUP1 PUSH1 0x2 EQ JUMPDEST PUSH2 0x7AE 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 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP3 PUSH5 0x3A37B5B2B7 PUSH1 0xD9 SHL SUB PUSH2 0x364 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP5 SWAP1 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C SWAP1 PUSH2 0x80B SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x820 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x65 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 0x851 PUSH1 0x33 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 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x37A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x65 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x3F3 DUP2 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x95E JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x974 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x984 PUSH1 0x20 DUP5 ADD PUSH2 0x948 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x9A1 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9AA DUP7 PUSH2 0x948 JUMP JUMPDEST SWAP8 PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP8 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP7 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP7 POP PUSH1 0x80 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9DB JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9E4 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FD JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0xA0D PUSH1 0x20 DUP6 ADD PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF8 0xEC PUSH5 0xE47E3406E0 0xB8 SWAP15 0xC5 0xAB GASLIMIT DUP1 SWAP14 0xC5 0xC 0xC1 PUSH0 BYTE EXP 0xAF PUSH24 0x8415D5F89E56B9814164736F6C6343000814003300000000 ","sourceMap":"276:4766:8:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_176":{"entryPoint":2185,"id":176,"parameterSlots":0,"returnSlots":0},"@_msgSender_894":{"entryPoint":null,"id":894,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_233":{"entryPoint":null,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":2275,"id":78,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":892,"id":100,"parameterSlots":0,"returnSlots":0},"@getTokenFeeSettings_2419":{"entryPoint":1673,"id":2419,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":null,"id":162,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":null,"id":41,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":873,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_2405":{"entryPoint":1014,"id":2405,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_2260":{"entryPoint":1789,"id":2260,"parameterSlots":3,"returnSlots":0},"@transferOwnership_61":{"entryPoint":2072,"id":61,"parameterSlots":1,"returnSlots":0},"@updateProtocolAddress_2332":{"entryPoint":375,"id":2332,"parameterSlots":2,"returnSlots":0},"abi_decode_address":{"entryPoint":2376,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":2507,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":2445,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":2403,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":2539,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$2170_memory_ptr__to_t_struct$_TokenFeeSettings_$2170_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_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:6937:10","statements":[{"nodeType":"YulBlock","src":"6:3:10","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:10","statements":[{"nodeType":"YulAssignment","src":"73:29:10","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:10"},"nodeType":"YulFunctionCall","src":"82:20:10"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:10"}]},{"body":{"nodeType":"YulBlock","src":"165:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:10"},"nodeType":"YulFunctionCall","src":"167:12:10"},"nodeType":"YulExpressionStatement","src":"167:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:10"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:10"},"nodeType":"YulFunctionCall","src":"146:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:10"},"nodeType":"YulFunctionCall","src":"142:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:10"},"nodeType":"YulFunctionCall","src":"131:31:10"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:10"},"nodeType":"YulFunctionCall","src":"121:42:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:10"},"nodeType":"YulFunctionCall","src":"114:50:10"},"nodeType":"YulIf","src":"111:70:10"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:10","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:10","type":""}],"src":"14:173:10"},{"body":{"nodeType":"YulBlock","src":"279:167:10","statements":[{"body":{"nodeType":"YulBlock","src":"325:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"337:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"327:6:10"},"nodeType":"YulFunctionCall","src":"327:12:10"},"nodeType":"YulExpressionStatement","src":"327:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"300:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"309:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"296:3:10"},"nodeType":"YulFunctionCall","src":"296:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"321:2:10","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"292:3:10"},"nodeType":"YulFunctionCall","src":"292:32:10"},"nodeType":"YulIf","src":"289:52:10"},{"nodeType":"YulAssignment","src":"350:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"373:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"360:12:10"},"nodeType":"YulFunctionCall","src":"360:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"350:6:10"}]},{"nodeType":"YulAssignment","src":"392:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"425:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"436:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"421:3:10"},"nodeType":"YulFunctionCall","src":"421:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"402:18:10"},"nodeType":"YulFunctionCall","src":"402:38:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"392:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"237:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"248:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"260:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"268:6:10","type":""}],"src":"192:254:10"},{"body":{"nodeType":"YulBlock","src":"589:322:10","statements":[{"body":{"nodeType":"YulBlock","src":"636:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"645:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"648:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"638:6:10"},"nodeType":"YulFunctionCall","src":"638:12:10"},"nodeType":"YulExpressionStatement","src":"638:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"610:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"619:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"606:3:10"},"nodeType":"YulFunctionCall","src":"606:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"631:3:10","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"602:3:10"},"nodeType":"YulFunctionCall","src":"602:33:10"},"nodeType":"YulIf","src":"599:53:10"},{"nodeType":"YulAssignment","src":"661:39:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"690:9:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"671:18:10"},"nodeType":"YulFunctionCall","src":"671:29:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"661:6:10"}]},{"nodeType":"YulAssignment","src":"709:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"736:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"747:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"732:3:10"},"nodeType":"YulFunctionCall","src":"732:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"719:12:10"},"nodeType":"YulFunctionCall","src":"719:32:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"709:6:10"}]},{"nodeType":"YulAssignment","src":"760:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"787:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"798:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"783:3:10"},"nodeType":"YulFunctionCall","src":"783:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"770:12:10"},"nodeType":"YulFunctionCall","src":"770:32:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"760:6:10"}]},{"nodeType":"YulAssignment","src":"811:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"838:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"849:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"834:3:10"},"nodeType":"YulFunctionCall","src":"834:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"821:12:10"},"nodeType":"YulFunctionCall","src":"821:32:10"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"811:6:10"}]},{"nodeType":"YulAssignment","src":"862:43:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"889:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"900:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"885:3:10"},"nodeType":"YulFunctionCall","src":"885:19:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"872:12:10"},"nodeType":"YulFunctionCall","src":"872:33:10"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"862:6:10"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"523:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"534:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"546:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"554:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"562:6:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"570:6:10","type":""},{"name":"value4","nodeType":"YulTypedName","src":"578:6:10","type":""}],"src":"451:460:10"},{"body":{"nodeType":"YulBlock","src":"986:116:10","statements":[{"body":{"nodeType":"YulBlock","src":"1032:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1041:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1044:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1034:6:10"},"nodeType":"YulFunctionCall","src":"1034:12:10"},"nodeType":"YulExpressionStatement","src":"1034:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1007:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1016:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1003:3:10"},"nodeType":"YulFunctionCall","src":"1003:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"1028:2:10","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"999:3:10"},"nodeType":"YulFunctionCall","src":"999:32:10"},"nodeType":"YulIf","src":"996:52:10"},{"nodeType":"YulAssignment","src":"1057:39:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1086:9:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1067:18:10"},"nodeType":"YulFunctionCall","src":"1067:29:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1057:6:10"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"952:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"963:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"975:6:10","type":""}],"src":"916:186:10"},{"body":{"nodeType":"YulBlock","src":"1276:273:10","statements":[{"nodeType":"YulAssignment","src":"1286:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1298:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1309:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1294:3:10"},"nodeType":"YulFunctionCall","src":"1294:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1286:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1329:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1346:6:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1340:5:10"},"nodeType":"YulFunctionCall","src":"1340:13:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1322:6:10"},"nodeType":"YulFunctionCall","src":"1322:32:10"},"nodeType":"YulExpressionStatement","src":"1322:32:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1374:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1385:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1370:3:10"},"nodeType":"YulFunctionCall","src":"1370:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1402:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"1410:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1398:3:10"},"nodeType":"YulFunctionCall","src":"1398:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1392:5:10"},"nodeType":"YulFunctionCall","src":"1392:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1363:6:10"},"nodeType":"YulFunctionCall","src":"1363:54:10"},"nodeType":"YulExpressionStatement","src":"1363:54:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1437:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1448:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1433:3:10"},"nodeType":"YulFunctionCall","src":"1433:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1465:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"1473:4:10","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1461:3:10"},"nodeType":"YulFunctionCall","src":"1461:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1455:5:10"},"nodeType":"YulFunctionCall","src":"1455:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1426:6:10"},"nodeType":"YulFunctionCall","src":"1426:54:10"},"nodeType":"YulExpressionStatement","src":"1426:54:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1500:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1511:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1496:3:10"},"nodeType":"YulFunctionCall","src":"1496:20:10"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1528:6:10"},{"kind":"number","nodeType":"YulLiteral","src":"1536:4:10","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1524:3:10"},"nodeType":"YulFunctionCall","src":"1524:17:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1518:5:10"},"nodeType":"YulFunctionCall","src":"1518:24:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1489:6:10"},"nodeType":"YulFunctionCall","src":"1489:54:10"},"nodeType":"YulExpressionStatement","src":"1489:54:10"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$2170_memory_ptr__to_t_struct$_TokenFeeSettings_$2170_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1245:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1256:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1267:4:10","type":""}],"src":"1107:442:10"},{"body":{"nodeType":"YulBlock","src":"1655:102:10","statements":[{"nodeType":"YulAssignment","src":"1665:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1677:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"1688:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1673:3:10"},"nodeType":"YulFunctionCall","src":"1673:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1665:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1707:9:10"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1722:6:10"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1738:3:10","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1743:1:10","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1734:3:10"},"nodeType":"YulFunctionCall","src":"1734:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"1747:1:10","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1730:3:10"},"nodeType":"YulFunctionCall","src":"1730:19:10"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1718:3:10"},"nodeType":"YulFunctionCall","src":"1718:32:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1700:6:10"},"nodeType":"YulFunctionCall","src":"1700:51:10"},"nodeType":"YulExpressionStatement","src":"1700:51:10"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1624:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1635:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1646:4:10","type":""}],"src":"1554:203:10"},{"body":{"nodeType":"YulBlock","src":"1866:218:10","statements":[{"body":{"nodeType":"YulBlock","src":"1912:16:10","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1921:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1924:1:10","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1914:6:10"},"nodeType":"YulFunctionCall","src":"1914:12:10"},"nodeType":"YulExpressionStatement","src":"1914:12:10"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1887:7:10"},{"name":"headStart","nodeType":"YulIdentifier","src":"1896:9:10"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1883:3:10"},"nodeType":"YulFunctionCall","src":"1883:23:10"},{"kind":"number","nodeType":"YulLiteral","src":"1908:2:10","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1879:3:10"},"nodeType":"YulFunctionCall","src":"1879:32:10"},"nodeType":"YulIf","src":"1876:52:10"},{"nodeType":"YulAssignment","src":"1937:33:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1960:9:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1947:12:10"},"nodeType":"YulFunctionCall","src":"1947:23:10"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1937:6:10"}]},{"nodeType":"YulAssignment","src":"1979:48:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2012:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2023:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2008:3:10"},"nodeType":"YulFunctionCall","src":"2008:18:10"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1989:18:10"},"nodeType":"YulFunctionCall","src":"1989:38:10"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1979:6:10"}]},{"nodeType":"YulAssignment","src":"2036:42:10","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2063:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2074:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2059:3:10"},"nodeType":"YulFunctionCall","src":"2059:18:10"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2046:12:10"},"nodeType":"YulFunctionCall","src":"2046:32:10"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2036:6:10"}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1816:9:10","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1827:7:10","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1839:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1847:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1855:6:10","type":""}],"src":"1762:322:10"},{"body":{"nodeType":"YulBlock","src":"2263:171:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2280:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2291:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2273:6:10"},"nodeType":"YulFunctionCall","src":"2273:21:10"},"nodeType":"YulExpressionStatement","src":"2273:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2314:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2325:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2310:3:10"},"nodeType":"YulFunctionCall","src":"2310:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"2330:2:10","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2303:6:10"},"nodeType":"YulFunctionCall","src":"2303:30:10"},"nodeType":"YulExpressionStatement","src":"2303:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2353:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2364:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2349:3:10"},"nodeType":"YulFunctionCall","src":"2349:18:10"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"2369:23:10","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2342:6:10"},"nodeType":"YulFunctionCall","src":"2342:51:10"},"nodeType":"YulExpressionStatement","src":"2342:51:10"},{"nodeType":"YulAssignment","src":"2402:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2414:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2425:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2410:3:10"},"nodeType":"YulFunctionCall","src":"2410:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2402:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2240:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2254:4:10","type":""}],"src":"2089:345:10"},{"body":{"nodeType":"YulBlock","src":"2613:227:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2630:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2641:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2623:6:10"},"nodeType":"YulFunctionCall","src":"2623:21:10"},"nodeType":"YulExpressionStatement","src":"2623:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2664:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2675:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2660:3:10"},"nodeType":"YulFunctionCall","src":"2660:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"2680:2:10","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2653:6:10"},"nodeType":"YulFunctionCall","src":"2653:30:10"},"nodeType":"YulExpressionStatement","src":"2653:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2703:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2714:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2699:3:10"},"nodeType":"YulFunctionCall","src":"2699:18:10"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"2719:34:10","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2692:6:10"},"nodeType":"YulFunctionCall","src":"2692:62:10"},"nodeType":"YulExpressionStatement","src":"2692:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2774:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2785:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2770:3:10"},"nodeType":"YulFunctionCall","src":"2770:18:10"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"2790:7:10","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2763:6:10"},"nodeType":"YulFunctionCall","src":"2763:35:10"},"nodeType":"YulExpressionStatement","src":"2763:35:10"},{"nodeType":"YulAssignment","src":"2807:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2819:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"2830:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2815:3:10"},"nodeType":"YulFunctionCall","src":"2815:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2807:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2590:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2604:4:10","type":""}],"src":"2439:401:10"},{"body":{"nodeType":"YulBlock","src":"3019:229:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3036:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3047:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3029:6:10"},"nodeType":"YulFunctionCall","src":"3029:21:10"},"nodeType":"YulExpressionStatement","src":"3029:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3070:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3081:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3066:3:10"},"nodeType":"YulFunctionCall","src":"3066:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"3086:2:10","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3059:6:10"},"nodeType":"YulFunctionCall","src":"3059:30:10"},"nodeType":"YulExpressionStatement","src":"3059:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3109:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3120:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3105:3:10"},"nodeType":"YulFunctionCall","src":"3105:18:10"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"3125:34:10","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3098:6:10"},"nodeType":"YulFunctionCall","src":"3098:62:10"},"nodeType":"YulExpressionStatement","src":"3098:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3180:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3191:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3176:3:10"},"nodeType":"YulFunctionCall","src":"3176:18:10"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"3196:9:10","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3169:6:10"},"nodeType":"YulFunctionCall","src":"3169:37:10"},"nodeType":"YulExpressionStatement","src":"3169:37:10"},{"nodeType":"YulAssignment","src":"3215:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3227:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3238:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3223:3:10"},"nodeType":"YulFunctionCall","src":"3223:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3215:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2996:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3010:4:10","type":""}],"src":"2845:403:10"},{"body":{"nodeType":"YulBlock","src":"3427:231:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3444:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3455:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3437:6:10"},"nodeType":"YulFunctionCall","src":"3437:21:10"},"nodeType":"YulExpressionStatement","src":"3437:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3478:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3489:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3474:3:10"},"nodeType":"YulFunctionCall","src":"3474:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"3494:2:10","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3467:6:10"},"nodeType":"YulFunctionCall","src":"3467:30:10"},"nodeType":"YulExpressionStatement","src":"3467:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3517:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3528:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3513:3:10"},"nodeType":"YulFunctionCall","src":"3513:18:10"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"3533:34:10","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3506:6:10"},"nodeType":"YulFunctionCall","src":"3506:62:10"},"nodeType":"YulExpressionStatement","src":"3506:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3588:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3599:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3584:3:10"},"nodeType":"YulFunctionCall","src":"3584:18:10"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"3604:11:10","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3577:6:10"},"nodeType":"YulFunctionCall","src":"3577:39:10"},"nodeType":"YulExpressionStatement","src":"3577:39:10"},{"nodeType":"YulAssignment","src":"3625:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3637:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3648:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3633:3:10"},"nodeType":"YulFunctionCall","src":"3633:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3625:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3404:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3418:4:10","type":""}],"src":"3253:405:10"},{"body":{"nodeType":"YulBlock","src":"3837:178:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3854:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3865:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3847:6:10"},"nodeType":"YulFunctionCall","src":"3847:21:10"},"nodeType":"YulExpressionStatement","src":"3847:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3888:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3899:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3884:3:10"},"nodeType":"YulFunctionCall","src":"3884:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"3904:2:10","type":"","value":"28"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3877:6:10"},"nodeType":"YulFunctionCall","src":"3877:30:10"},"nodeType":"YulExpressionStatement","src":"3877:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3927:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"3938:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3923:3:10"},"nodeType":"YulFunctionCall","src":"3923:18:10"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"3943:30:10","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3916:6:10"},"nodeType":"YulFunctionCall","src":"3916:58:10"},"nodeType":"YulExpressionStatement","src":"3916:58:10"},{"nodeType":"YulAssignment","src":"3983:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3995:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4006:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3991:3:10"},"nodeType":"YulFunctionCall","src":"3991:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3983:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3814:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3828:4:10","type":""}],"src":"3663:352:10"},{"body":{"nodeType":"YulBlock","src":"4194:225:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4211:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4222:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4204:6:10"},"nodeType":"YulFunctionCall","src":"4204:21:10"},"nodeType":"YulExpressionStatement","src":"4204:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4245:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4256:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4241:3:10"},"nodeType":"YulFunctionCall","src":"4241:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"4261:2:10","type":"","value":"35"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4234:6:10"},"nodeType":"YulFunctionCall","src":"4234:30:10"},"nodeType":"YulExpressionStatement","src":"4234:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4284:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4295:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4280:3:10"},"nodeType":"YulFunctionCall","src":"4280:18:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"4300:34:10","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4273:6:10"},"nodeType":"YulFunctionCall","src":"4273:62:10"},"nodeType":"YulExpressionStatement","src":"4273:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4355:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4366:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4351:3:10"},"nodeType":"YulFunctionCall","src":"4351:18:10"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"4371:5:10","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4344:6:10"},"nodeType":"YulFunctionCall","src":"4344:33:10"},"nodeType":"YulExpressionStatement","src":"4344:33:10"},{"nodeType":"YulAssignment","src":"4386:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4398:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4409:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4394:3:10"},"nodeType":"YulFunctionCall","src":"4394:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4386:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4171:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4185:4:10","type":""}],"src":"4020:399:10"},{"body":{"nodeType":"YulBlock","src":"4598:229:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4615:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4626:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4608:6:10"},"nodeType":"YulFunctionCall","src":"4608:21:10"},"nodeType":"YulExpressionStatement","src":"4608:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4649:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4660:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4645:3:10"},"nodeType":"YulFunctionCall","src":"4645:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"4665:2:10","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4638:6:10"},"nodeType":"YulFunctionCall","src":"4638:30:10"},"nodeType":"YulExpressionStatement","src":"4638:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4688:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4699:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4684:3:10"},"nodeType":"YulFunctionCall","src":"4684:18:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"4704:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4677:6:10"},"nodeType":"YulFunctionCall","src":"4677:62:10"},"nodeType":"YulExpressionStatement","src":"4677:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4759:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4770:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4755:3:10"},"nodeType":"YulFunctionCall","src":"4755:18:10"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"4775:9:10","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4748:6:10"},"nodeType":"YulFunctionCall","src":"4748:37:10"},"nodeType":"YulExpressionStatement","src":"4748:37:10"},{"nodeType":"YulAssignment","src":"4794:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4806:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"4817:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4802:3:10"},"nodeType":"YulFunctionCall","src":"4802:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4794:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4575:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4589:4:10","type":""}],"src":"4424:403:10"},{"body":{"nodeType":"YulBlock","src":"5006:227:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5023:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5034:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5016:6:10"},"nodeType":"YulFunctionCall","src":"5016:21:10"},"nodeType":"YulExpressionStatement","src":"5016:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5057:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5068:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5053:3:10"},"nodeType":"YulFunctionCall","src":"5053:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"5073:2:10","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5046:6:10"},"nodeType":"YulFunctionCall","src":"5046:30:10"},"nodeType":"YulExpressionStatement","src":"5046:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5096:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5107:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5092:3:10"},"nodeType":"YulFunctionCall","src":"5092:18:10"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"5112:34:10","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5085:6:10"},"nodeType":"YulFunctionCall","src":"5085:62:10"},"nodeType":"YulExpressionStatement","src":"5085:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5167:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5178:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5163:3:10"},"nodeType":"YulFunctionCall","src":"5163:18:10"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"5183:7:10","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5156:6:10"},"nodeType":"YulFunctionCall","src":"5156:35:10"},"nodeType":"YulExpressionStatement","src":"5156:35:10"},{"nodeType":"YulAssignment","src":"5200:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5212:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5223:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5208:3:10"},"nodeType":"YulFunctionCall","src":"5208:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5200:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4983:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4997:4:10","type":""}],"src":"4832:401:10"},{"body":{"nodeType":"YulBlock","src":"5412:232:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5429:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5440:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5422:6:10"},"nodeType":"YulFunctionCall","src":"5422:21:10"},"nodeType":"YulExpressionStatement","src":"5422:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5463:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5474:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5459:3:10"},"nodeType":"YulFunctionCall","src":"5459:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"5479:2:10","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5452:6:10"},"nodeType":"YulFunctionCall","src":"5452:30:10"},"nodeType":"YulExpressionStatement","src":"5452:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5502:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5513:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5498:3:10"},"nodeType":"YulFunctionCall","src":"5498:18:10"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"5518:34:10","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5491:6:10"},"nodeType":"YulFunctionCall","src":"5491:62:10"},"nodeType":"YulExpressionStatement","src":"5491:62:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5573:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5584:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5569:3:10"},"nodeType":"YulFunctionCall","src":"5569:18:10"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"5589:12:10","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5562:6:10"},"nodeType":"YulFunctionCall","src":"5562:40:10"},"nodeType":"YulExpressionStatement","src":"5562:40:10"},{"nodeType":"YulAssignment","src":"5611:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5623:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5634:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5619:3:10"},"nodeType":"YulFunctionCall","src":"5619:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5611:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5389:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5403:4:10","type":""}],"src":"5238:406:10"},{"body":{"nodeType":"YulBlock","src":"5834:206:10","statements":[{"nodeType":"YulAssignment","src":"5844:27:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5856:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5867:3:10","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5852:3:10"},"nodeType":"YulFunctionCall","src":"5852:19:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5844:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5887:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"5898:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5880:6:10"},"nodeType":"YulFunctionCall","src":"5880:25:10"},"nodeType":"YulExpressionStatement","src":"5880:25:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5925:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5936:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5921:3:10"},"nodeType":"YulFunctionCall","src":"5921:18:10"},{"name":"value1","nodeType":"YulIdentifier","src":"5941:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5914:6:10"},"nodeType":"YulFunctionCall","src":"5914:34:10"},"nodeType":"YulExpressionStatement","src":"5914:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5968:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"5979:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5964:3:10"},"nodeType":"YulFunctionCall","src":"5964:18:10"},{"name":"value2","nodeType":"YulIdentifier","src":"5984:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5957:6:10"},"nodeType":"YulFunctionCall","src":"5957:34:10"},"nodeType":"YulExpressionStatement","src":"5957:34:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6011:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6022:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6007:3:10"},"nodeType":"YulFunctionCall","src":"6007:18:10"},{"name":"value3","nodeType":"YulIdentifier","src":"6027:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6000:6:10"},"nodeType":"YulFunctionCall","src":"6000:34:10"},"nodeType":"YulExpressionStatement","src":"6000:34:10"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5779:9:10","type":""},{"name":"value3","nodeType":"YulTypedName","src":"5790:6:10","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5798:6:10","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5806:6:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5814:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5825:4:10","type":""}],"src":"5649:391:10"},{"body":{"nodeType":"YulBlock","src":"6219:173:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6236:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6247:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6229:6:10"},"nodeType":"YulFunctionCall","src":"6229:21:10"},"nodeType":"YulExpressionStatement","src":"6229:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6270:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6281:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6266:3:10"},"nodeType":"YulFunctionCall","src":"6266:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"6286:2:10","type":"","value":"23"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6259:6:10"},"nodeType":"YulFunctionCall","src":"6259:30:10"},"nodeType":"YulExpressionStatement","src":"6259:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6309:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6320:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6305:3:10"},"nodeType":"YulFunctionCall","src":"6305:18:10"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"6325:25:10","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6298:6:10"},"nodeType":"YulFunctionCall","src":"6298:53:10"},"nodeType":"YulExpressionStatement","src":"6298:53:10"},{"nodeType":"YulAssignment","src":"6360:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6372:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6383:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6368:3:10"},"nodeType":"YulFunctionCall","src":"6368:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6360:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6196:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6210:4:10","type":""}],"src":"6045:347:10"},{"body":{"nodeType":"YulBlock","src":"6498:76:10","statements":[{"nodeType":"YulAssignment","src":"6508:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6520:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6531:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6516:3:10"},"nodeType":"YulFunctionCall","src":"6516:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6508:4:10"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6550:9:10"},{"name":"value0","nodeType":"YulIdentifier","src":"6561:6:10"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6543:6:10"},"nodeType":"YulFunctionCall","src":"6543:25:10"},"nodeType":"YulExpressionStatement","src":"6543:25:10"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6467:9:10","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6478:6:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6489:4:10","type":""}],"src":"6397:177:10"},{"body":{"nodeType":"YulBlock","src":"6753:182:10","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6770:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6781:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6763:6:10"},"nodeType":"YulFunctionCall","src":"6763:21:10"},"nodeType":"YulExpressionStatement","src":"6763:21:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6804:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6815:2:10","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6800:3:10"},"nodeType":"YulFunctionCall","src":"6800:18:10"},{"kind":"number","nodeType":"YulLiteral","src":"6820:2:10","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6793:6:10"},"nodeType":"YulFunctionCall","src":"6793:30:10"},"nodeType":"YulExpressionStatement","src":"6793:30:10"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6843:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6854:2:10","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6839:3:10"},"nodeType":"YulFunctionCall","src":"6839:18:10"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"6859:34:10","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6832:6:10"},"nodeType":"YulFunctionCall","src":"6832:62:10"},"nodeType":"YulExpressionStatement","src":"6832:62:10"},{"nodeType":"YulAssignment","src":"6903:26:10","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6915:9:10"},{"kind":"number","nodeType":"YulLiteral","src":"6926:2:10","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6911:3:10"},"nodeType":"YulFunctionCall","src":"6911:18:10"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6903:4:10"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6730:9:10","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6744:4:10","type":""}],"src":"6579:356:10"}]},"contents":"{\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_bytes32t_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := calldataload(add(headStart, 96))\n value4 := calldataload(add(headStart, 128))\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_struct$_TokenFeeSettings_$2170_memory_ptr__to_t_struct$_TokenFeeSettings_$2170_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, mload(value0))\n mstore(add(headStart, 0x20), mload(add(value0, 0x20)))\n mstore(add(headStart, 0x40), mload(add(value0, 0x40)))\n mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\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_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__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), \"Gateway: zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__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), \"Gateway: treasury address alread\")\n mstore(add(headStart, 96), \"y set\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__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), \"Gateway: aggregator address alre\")\n mstore(add(headStart, 96), \"ady set\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"Ownable2Step: caller is not the \")\n mstore(add(headStart, 96), \"new owner\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__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), \"Gateway: token not supported\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"Gateway: invalid sender to provi\")\n mstore(add(headStart, 96), \"der\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__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), \"Gateway: invalid provider to agg\")\n mstore(add(headStart, 96), \"regator\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__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), \"Gateway: invalid sender to aggre\")\n mstore(add(headStart, 96), \"gator\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"Gateway: invalid provider to agg\")\n mstore(add(headStart, 96), \"regator fx\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n }\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__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), \"Gateway: invalid status\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n}","id":10,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea2646970667358221220f8ec64e47e3406e0b89ec5ab45809dc50cc15f1a0aaf778415d5f89e56b9814164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x90 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x164 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x94 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xA9 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH2 0xA2 CALLDATASIZE PUSH1 0x4 PUSH2 0x963 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH2 0x369 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x37C JUMP JUMPDEST PUSH2 0xA7 PUSH2 0xC7 CALLDATASIZE PUSH1 0x4 PUSH2 0x98D JUMP JUMPDEST PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x689 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 SWAP2 DUP3 ADD MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x14E CALLDATASIZE PUSH1 0x4 PUSH2 0x9EB JUMP JUMPDEST PUSH2 0x6FD JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x128 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x818 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1D2 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH8 0x7472656173757279 PUSH1 0xC0 SHL SUB PUSH2 0x288 JUMPI PUSH1 0x98 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SUB PUSH2 0x257 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 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x1E481CD95D PUSH1 0xDA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x98 DUP1 SLOAD PUSH9 0x10000000000000000 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x40 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH2 0x328 JUMP JUMPDEST DUP3 PUSH10 0x30B3B3B932B3B0BA37B9 PUSH1 0xB1 SHL SUB PUSH2 0x328 JUMPI PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND SUB PUSH2 0x309 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 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x18591E481CD95D PUSH1 0xCA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x99 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 SSTORE PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x364 JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP5 SWAP1 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 SWAP1 PUSH0 SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x371 PUSH2 0x889 JUMP JUMPDEST PUSH2 0x37A PUSH0 PUSH2 0x8E3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x65 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x3EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3732BB9037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH2 0x3F3 DUP2 PUSH2 0x8E3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3FE PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x465 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 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x3232B9 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x525 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 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x3932B3B0BA37B9 PUSH1 0xC9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x585 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 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x33B0BA37B9 PUSH1 0xD9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0xE4CACEC2E8DEE440CCF PUSH1 0xB3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP1 DUP3 ADD DUP4 MSTORE DUP7 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP8 DUP2 MSTORE DUP4 DUP6 ADD DUP8 DUP2 MSTORE PUSH1 0x60 DUP1 DUP7 ADD DUP9 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9B DUP8 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP2 MLOAD PUSH1 0x2 DUP8 ADD SSTORE SWAP1 MLOAD PUSH1 0x3 SWAP1 SWAP6 ADD SWAP5 SWAP1 SWAP5 SSTORE DUP5 MLOAD DUP10 DUP2 MSTORE SWAP2 DUP3 ADD DUP9 SWAP1 MSTORE SWAP4 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x6B0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x705 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x753 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP1 PUSH1 0x1 EQ DUP1 PUSH2 0x762 JUMPI POP DUP1 PUSH1 0x2 EQ JUMPDEST PUSH2 0x7AE 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 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP3 PUSH5 0x3A37B5B2B7 PUSH1 0xD9 SHL SUB PUSH2 0x364 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP5 SWAP1 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C SWAP1 PUSH2 0x80B SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x820 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x65 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 0x851 PUSH1 0x33 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 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x37A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x65 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x3F3 DUP2 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x95E JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x974 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x984 PUSH1 0x20 DUP5 ADD PUSH2 0x948 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x9A1 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9AA DUP7 PUSH2 0x948 JUMP JUMPDEST SWAP8 PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP8 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP7 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP7 POP PUSH1 0x80 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9DB JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9E4 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FD JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0xA0D PUSH1 0x20 DUP6 ADD PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF8 0xEC PUSH5 0xE47E3406E0 0xB8 SWAP15 0xC5 0xAB GASLIMIT DUP1 SWAP14 0xC5 0xC 0xC1 PUSH0 BYTE EXP 0xAF PUSH24 0x8415D5F89E56B9814164736F6C6343000814003300000000 ","sourceMap":"276:4766:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2579:551;;;;;;:::i;:::-;;:::i;:::-;;2085:101:1;;;:::i;2031:212:0:-;;;:::i;3741:988:8:-;;;;;;:::i;:::-;;:::i;4909:131::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;1340:13:10;;1322:32;;1410:4;1398:17;;;1392:24;1370:20;;;1363:54;1473:4;1461:17;;;1455:24;1433:20;;;1426:54;1536:4;1524:17;;;1518:24;1496:20;;;1489:54;;;;1309:3;1294:19;;1107:442;4909:131:8;;;;;;;;1462:85:1;1534:6;;-1:-1:-1;;;;;1534:6:1;1462:85;;;-1:-1:-1;;;;;1718:32:10;;;1700:51;;1688:2;1673:18;1462:85:1;1554:203:10;2015:335:8;;;;;;:::i;:::-;;:::i;1144:99:0:-;1223:13;;-1:-1:-1;;;;;1223:13:0;1144:99;;1436:178;;;;;;:::i;:::-;;:::i;2579:551:8:-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;2670:19:8;::::1;2662:53;;;::::0;-1:-1:-1;;;2662:53:8;;2291:2:10;2662:53:8::1;::::0;::::1;2273:21:10::0;2330:2;2310:18;;;2303:30;-1:-1:-1;;;2349:18:10;;;2342:51;2410:18;;2662:53:8::1;;;;;;;;;2719:12;2739:4;-1:-1:-1::0;;;2739:18:8;2735:326:::1;;2772:15;::::0;-1:-1:-1;;;;;2772:24:8;;::::1;-1:-1:-1::0;;;2772:15:8;;::::1;;:24:::0;2764:74:::1;;;::::0;-1:-1:-1;;;2764:74:8;;2641:2:10;2764:74:8::1;::::0;::::1;2623:21:10::0;2680:2;2660:18;;;2653:30;2719:34;2699:18;;;2692:62;-1:-1:-1;;;2770:18:10;;;2763:35;2815:19;;2764:74:8::1;2439:401:10::0;2764:74:8::1;-1:-1:-1::0;2843:15:8::1;:23:::0;;-1:-1:-1;;;;;;2843:23:8::1;-1:-1:-1::0;;;;;;;;2843:23:8;::::1;;;::::0;;-1:-1:-1;2735:326:8::1;;;2900:4;-1:-1:-1::0;;;2900:20:8;2896:165:::1;;2935:18;::::0;-1:-1:-1;;;;;2935:27:8;;::::1;:18:::0;::::1;:27:::0;2927:79:::1;;;::::0;-1:-1:-1;;;2927:79:8;;3047:2:10;2927:79:8::1;::::0;::::1;3029:21:10::0;3086:2;3066:18;;;3059:30;3125:34;3105:18;;;3098:62;-1:-1:-1;;;3176:18:10;;;3169:37;3223:19;;2927:79:8::1;2845:403:10::0;2927:79:8::1;-1:-1:-1::0;3011:18:8::1;:26:::0;;-1:-1:-1;;;;;;3011:26:8::1;-1:-1:-1::0;;;;;3011:26:8;::::1;;::::0;;-1:-1:-1;2896:165:8::1;3068:7;3064:63;;;3087:35;::::0;-1:-1:-1;;;;;3087:35:8;::::1;::::0;3110:4;;3087:35:::1;::::0;;;::::1;3064:63;2658:472;2579:551:::0;;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;2031:212:0:-;1223:13;;965:10:5;;-1:-1:-1;;;;;1223:13:0;2130:24;;2122:78;;;;-1:-1:-1;;;2122:78:0;;3455:2:10;2122:78:0;;;3437:21:10;3494:2;3474:18;;;3467:30;3533:34;3513:18;;;3506:62;-1:-1:-1;;;3584:18:10;;;3577:39;3633:19;;2122:78:0;3253:405:10;2122:78:0;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;3741:988:8:-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;3945:24:8;::::1;;::::0;;;:17:::1;:24;::::0;;;;;3973:1:::1;3945:29;3937:70;;;::::0;-1:-1:-1;;;3937:70:8;;3865:2:10;3937:70:8::1;::::0;::::1;3847:21:10::0;3904:2;3884:18;;;3877:30;3943;3923:18;;;3916:58;3991:18;;3937:70:8::1;3663:352:10::0;3937:70:8::1;4039:7;;4019:16;:27;;4011:75;;;::::0;-1:-1:-1;;;4011:75:8;;4222:2:10;4011:75:8::1;::::0;::::1;4204:21:10::0;4261:2;4241:18;;;4234:30;4300:34;4280:18;;;4273:62;-1:-1:-1;;;4351:18:10;;;4344:33;4394:19;;4011:75:8::1;4020:399:10::0;4011:75:8::1;4122:7;;4098:20;:31;;4090:83;;;::::0;-1:-1:-1;;;4090:83:8;;4626:2:10;4090:83:8::1;::::0;::::1;4608:21:10::0;4665:2;4645:18;;;4638:30;4704:34;4684:18;;;4677:62;-1:-1:-1;;;4755:18:10;;;4748:37;4802:19;;4090:83:8::1;4424:403:10::0;4090:83:8::1;4207:7;;4185:18;:29;;4177:79;;;::::0;-1:-1:-1;;;4177:79:8;;5034:2:10;4177:79:8::1;::::0;::::1;5016:21:10::0;5073:2;5053:18;;;5046:30;5112:34;5092:18;;;5085:62;-1:-1:-1;;;5163:18:10;;;5156:35;5208:19;;4177:79:8::1;4832:401:10::0;4177:79:8::1;4294:7;;4268:22;:33;;4260:88;;;::::0;-1:-1:-1;;;4260:88:8;;5440:2:10;4260:88:8::1;::::0;::::1;5422:21:10::0;5479:2;5459:18;;;5452:30;5518:34;5498:18;;;5491:62;-1:-1:-1;;;5569:18:10;;;5562:40;5619:19;;4260:88:8::1;5238:406:10::0;4260:88:8::1;4380:202;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4353:24:8;::::1;-1:-1:-1::0;4353:24:8;;;:17:::1;:24:::0;;;;;:229;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;4592:133;;5880:25:10;;;5921:18;;;5914:34;;;5964:18;;;5957:34;;;6007:18;;;6000:34;;;4592:133:8::1;::::0;5852:19:10;4592:133:8::1;;;;;;;3741:988:::0;;;;;:::o;4909:131::-;4976:23;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4976:23:8;-1:-1:-1;;;;;;5012:24:8;;;;;:17;:24;;;;;;;;;5005:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4909:131::o;2015:335::-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;2119:19:8;::::1;2111:53;;;::::0;-1:-1:-1;;;2111:53:8;;2291:2:10;2111:53:8::1;::::0;::::1;2273:21:10::0;2330:2;2310:18;;;2303:30;-1:-1:-1;;;2349:18:10;;;2342:51;2410:18;;2111:53:8::1;2089:345:10::0;2111:53:8::1;2176:6;2186:1;2176:11;:26;;;;2191:6;2201:1;2191:11;2176:26;2168:62;;;::::0;-1:-1:-1;;;2168:62:8;;6247:2:10;2168:62:8::1;::::0;::::1;6229:21:10::0;6286:2;6266:18;;;6259:30;6325:25;6305:18;;;6298:53;6368:18;;2168:62:8::1;6045:347:10::0;2168:62:8::1;2238:4;-1:-1:-1::0;;;2238:15:8;2234:113:::1;;-1:-1:-1::0;;;;;2260:24:8;::::1;;::::0;;;:17:::1;:24;::::0;;;;;;:33;;;2303:39;2322:4;;2303:39:::1;::::0;::::1;::::0;2287:6;6543:25:10;;6531:2;6516:18;;6397:177;2303:39:8::1;;;;;;;;2015:335:::0;;;:::o;1436:178:0:-;1355:13:1;:11;:13::i;:::-;1525::0::1;:24:::0;;-1:-1:-1;;;;;1525:24:0;::::1;-1:-1:-1::0;;;;;;1525:24:0;;::::1;::::0;::::1;::::0;;;1589:7:::1;1534:6:1::0;;-1:-1:-1;;;;;1534:6:1;;1462:85;1589:7:0::1;-1:-1:-1::0;;;;;1564:43:0::1;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1534:6;;-1:-1:-1;;;;;1534:6:1;965:10:5;1683:23:1;1675:68;;;;-1:-1:-1;;;1675:68:1;;6781:2:10;1675:68:1;;;6763:21:10;;;6800:18;;;6793:30;6859:34;6839:18;;;6832:62;6911:18;;1675:68:1;6579:356:10;1798:153:0;1887:13;1880:20;;-1:-1:-1;;;;;;1880:20:0;;;1910:34;1935:8;2779:6:1;;;-1:-1:-1;;;;;2795:17:1;;;-1:-1:-1;;;;;;2795:17:1;;;;;;;2827:40;;2779:6;;;2795:17;2779:6;;2827:40;;2760:16;;2827:40;2750:124;2687:187;:::o;14:173:10:-;82:20;;-1:-1:-1;;;;;131:31:10;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;373:9;360:23;350:33;;402:38;436:2;425:9;421:18;402:38;:::i;:::-;392:48;;192:254;;;;;:::o;451:460::-;546:6;554;562;570;578;631:3;619:9;610:7;606:23;602:33;599:53;;;648:1;645;638:12;599:53;671:29;690:9;671:29;:::i;:::-;661:39;747:2;732:18;;719:32;;-1:-1:-1;798:2:10;783:18;;770:32;;849:2;834:18;;821:32;;-1:-1:-1;900:3:10;885:19;872:33;;-1:-1:-1;451:460:10;-1:-1:-1;;;451:460:10:o;916:186::-;975:6;1028:2;1016:9;1007:7;1003:23;999:32;996:52;;;1044:1;1041;1034:12;996:52;1067:29;1086:9;1067:29;:::i;:::-;1057:39;916:186;-1:-1:-1;;;916:186:10:o;1762:322::-;1839:6;1847;1855;1908:2;1896:9;1887:7;1883:23;1879:32;1876:52;;;1924:1;1921;1914:12;1876:52;1960:9;1947:23;1937:33;;1989:38;2023:2;2012:9;2008:18;1989:38;:::i;:::-;1979:48;;2074:2;2063:9;2059:18;2046:32;2036:42;;1762:322;;;;;:::o"},"methodIdentifiers":{"acceptOwnership()":"79ba5097","getTokenFeeSettings(address)":"8bfa0549","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","transferOwnership(address)":"f2fde38b","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"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.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/GatewaySettingManager.sol\":\"GatewaySettingManager\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":{\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75267b14b60dc216d01d596a4008189a6c44d3314e53eded0edb1e757d95be16\",\"dweb:/ipfs/QmQoMaxTRT6V7uQj9USfdQH9jh1crywB9auVjThzUSAbG2\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]},\"project/contracts/GatewaySettingManager.sol\":{\"keccak256\":\"0x7c1bead31b085f7e2efd902dcd3c60c26e50865c601404ac6b42ed227edb7272\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://8d4b5ff25e485e328cb369502594fa0b7e0adc22c4dc1986a4d21032abbfcfb9\",\"dweb:/ipfs/QmexLQm11m59vFeQG1xEoLBQPjs7pc656fG7TgZaFW7cBY\"]}},\"version\":1}"}},"project/contracts/interfaces/IGateway.sol":{"IGateway":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"aggregatorFee","type":"uint256"},{"indexed":false,"internalType":"uint96","name":"rate","type":"uint96"}],"name":"SettleIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"SettleOut","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint96","name":"_senderFee","type":"uint96"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint96","name":"_rate","type":"uint96"}],"name":"settleIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settleOut","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":{"createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getAggregator()":"3ad59dbc","getOrderInfo(bytes32)":"768c6ec0","isTokenSupported(address)":"75151b63","refund(uint256,bytes32)":"71eedb88","settleIn(bytes32,address,uint256,address,uint96,address,uint96)":"d839de63","settleOut(bytes32,bytes32,address,uint64,uint64)":"32553efa"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"rate\",\"type\":\"uint96\"}],\"name\":\"SettleIn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"settlePercent\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"rebatePercent\",\"type\":\"uint64\"}],\"name\":\"SettleOut\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAggregator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_senderFee\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"}],\"name\":\"settleIn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_rebatePercent\",\"type\":\"uint64\"}],\"name\":\"settleOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"SenderFeeTransferred(bytes32,address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"SettleIn(bytes32,address,address,uint256,address,uint256,uint96)\":{\"details\":\"Emitted when an onramp order is successfully processed\"},\"SettleOut(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}}},\"kind\":\"dev\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.\",\"params\":{\"_amount\":\"The amount in the decimal of `_token` to be locked.\",\"_rate\":\"The rate at which the sender intends to sell `_amount` of `_token`.\",\"_refundAddress\":\"The address that will receive `_amount` in `_token` when there is a need to refund.\",\"_senderFee\":\"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\",\"_senderFeeRecipient\":\"The address that will receive `_senderFee` in `_token`.\",\"_token\":\"The address of the token.\",\"messageHash\":\"The hash of the message.\"},\"returns\":{\"_orderId\":\"The ID of the order.\"}},\"getAggregator()\":{\"returns\":{\"_0\":\"address The address of the aggregator.\"}},\"getOrderInfo(bytes32)\":{\"params\":{\"_orderId\":\"The ID of the order.\"},\"returns\":{\"_0\":\"Order The order details.\"}},\"isTokenSupported(address)\":{\"params\":{\"_token\":\"The address of the token to check.\"},\"returns\":{\"_0\":\"bool the token is supported.\"}},\"refund(uint256,bytes32)\":{\"details\":\"Requirements: - Only aggregators can call this function.\",\"params\":{\"_fee\":\"The amount to be deducted from the amount to be refunded.\",\"_orderId\":\"The ID of the transaction.\"},\"returns\":{\"_0\":\"bool the refund is successful.\"}},\"settleIn(bytes32,address,uint256,address,uint96,address,uint96)\":{\"details\":\"Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregatorIt process an order and transfers tokens to the recipient after deducting sender fees\",\"params\":{\"_amount\":\"Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\",\"_orderId\":\"Unique identifier for the order being processed\",\"_rate\":\"Rate at which the tokens are being sent\",\"_recipient\":\"Address of the recipient who will receive the tokens\",\"_senderFee\":\"Amount of fee to be paid to the sender fee recipient\",\"_senderFeeRecipient\":\"Address that will receive the sender fee\",\"_token\":\"Address of the token to be sent to the user\"},\"returns\":{\"_0\":\"success Boolean indicating if the operation was successful\"}},\"settleOut(bytes32,bytes32,address,uint64,uint64)\":{\"params\":{\"_liquidityProvider\":\"The address of the liquidity provider.\",\"_orderId\":\"The ID of the transaction.\",\"_rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"_settlePercent\":\"The rate at which the transaction is settled.\",\"_splitOrderId\":\"The ID of the split order.\"},\"returns\":{\"_0\":\"bool the settlement is successful.\"}}},\"title\":\"IGateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"notice\":\"Locks the sender's amount of token into Gateway.\"},\"getAggregator()\":{\"notice\":\"Gets the address of the aggregator.\"},\"getOrderInfo(bytes32)\":{\"notice\":\"Gets the details of an order.\"},\"isTokenSupported(address)\":{\"notice\":\"Checks if a token is supported by Gateway.\"},\"refund(uint256,bytes32)\":{\"notice\":\"Refunds to the specified refundable address.\"},\"settleIn(bytes32,address,uint256,address,uint96,address,uint96)\":{\"notice\":\"Process settleIn order\"},\"settleOut(bytes32,bytes32,address,uint64,uint64)\":{\"notice\":\"Settles a transaction and distributes rewards accordingly.\"}},\"notice\":\"Interface for the Gateway contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/interfaces/IGateway.sol\":\"IGateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\",\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"project/contracts/interfaces/IGateway.sol\":{\"keccak256\":\"0xde1b1c76a6886c05c36b81af43239e3705fc823040bd82b27a0e60ae37b9590e\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://fdbbbe9642743f6f16bb51fbb2a1d77b18dafd5d0b4e890409973290c24b598c\",\"dweb:/ipfs/QmPpcGz6YBFtE9wTikDbbL4tRYd1ki7zmaRzARqjiJfKP5\"]}},\"version\":1}"}}},"sources":{"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":107,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:0"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol","file":"./OwnableUpgradeable.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":240,"src":"132:34:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":409,"src":"167:63:0","symbolAliases":[{"foreign":{"id":3,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"175:13:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"Initializable","nameLocations":["719:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"719:13:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"719:13:0"},{"baseName":{"id":8,"name":"OwnableUpgradeable","nameLocations":["734:18:0"],"nodeType":"IdentifierPath","referencedDeclaration":239,"src":"734:18:0"},"id":9,"nodeType":"InheritanceSpecifier","src":"734:18:0"}],"canonicalName":"Ownable2StepUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"232:441:0","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 By default, the owner account will be the one that deploys the contract. 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":106,"linearizedBaseContracts":[106,239,917,408],"name":"Ownable2StepUpgradeable","nameLocation":"692:23:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":11,"mutability":"mutable","name":"_pendingOwner","nameLocation":"775:13:0","nodeType":"VariableDeclaration","scope":106,"src":"759:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"759:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700","id":17,"name":"OwnershipTransferStarted","nameLocation":"801:24:0","nodeType":"EventDefinition","parameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"842:13:0","nodeType":"VariableDeclaration","scope":17,"src":"826:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"873:8:0","nodeType":"VariableDeclaration","scope":17,"src":"857:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14,"name":"address","nodeType":"ElementaryTypeName","src":"857:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"825:57:0"},"src":"795:88:0"},{"body":{"id":25,"nodeType":"Block","src":"946:43:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":22,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"956:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"956:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24,"nodeType":"ExpressionStatement","src":"956:26:0"}]},"id":26,"implemented":true,"kind":"function","modifiers":[{"id":20,"kind":"modifierInvocation","modifierName":{"id":19,"name":"onlyInitializing","nameLocations":["929:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"929:16:0"},"nodeType":"ModifierInvocation","src":"929:16:0"}],"name":"__Ownable2Step_init","nameLocation":"898:19:0","nodeType":"FunctionDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[],"src":"917:2:0"},"returnParameters":{"id":21,"nodeType":"ParameterList","parameters":[],"src":"946:0:0"},"scope":106,"src":"889:100:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":31,"nodeType":"Block","src":"1062:7:0","statements":[]},"id":32,"implemented":true,"kind":"function","modifiers":[{"id":29,"kind":"modifierInvocation","modifierName":{"id":28,"name":"onlyInitializing","nameLocations":["1045:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1045:16:0"},"nodeType":"ModifierInvocation","src":"1045:16:0"}],"name":"__Ownable2Step_init_unchained","nameLocation":"1004:29:0","nodeType":"FunctionDefinition","parameters":{"id":27,"nodeType":"ParameterList","parameters":[],"src":"1033:2:0"},"returnParameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1062:0:0"},"scope":106,"src":"995:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":40,"nodeType":"Block","src":"1206:37:0","statements":[{"expression":{"id":38,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1223:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":37,"id":39,"nodeType":"Return","src":"1216:20:0"}]},"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"1074:65:0","text":" @dev Returns the address of the pending owner."},"functionSelector":"e30c3978","id":41,"implemented":true,"kind":"function","modifiers":[],"name":"pendingOwner","nameLocation":"1153:12:0","nodeType":"FunctionDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[],"src":"1165:2:0"},"returnParameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":41,"src":"1197:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":35,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1196:9:0"},"scope":106,"src":"1144:99:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[213],"body":{"id":60,"nodeType":"Block","src":"1515:99:0","statements":[{"expression":{"id":52,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":50,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1525:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":51,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1541:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1525:24:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":53,"nodeType":"ExpressionStatement","src":"1525:24:0"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":55,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1589:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1589:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":57,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1598:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":54,"name":"OwnershipTransferStarted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17,"src":"1564:24:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":59,"nodeType":"EmitStatement","src":"1559:48:0"}]},"documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"1249:182:0","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."},"functionSelector":"f2fde38b","id":61,"implemented":true,"kind":"function","modifiers":[{"id":48,"kind":"modifierInvocation","modifierName":{"id":47,"name":"onlyOwner","nameLocations":["1505:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1505:9:0"},"nodeType":"ModifierInvocation","src":"1505:9:0"}],"name":"transferOwnership","nameLocation":"1445:17:0","nodeType":"FunctionDefinition","overrides":{"id":46,"nodeType":"OverrideSpecifier","overrides":[],"src":"1496:8:0"},"parameters":{"id":45,"nodeType":"ParameterList","parameters":[{"constant":false,"id":44,"mutability":"mutable","name":"newOwner","nameLocation":"1471:8:0","nodeType":"VariableDeclaration","scope":61,"src":"1463:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":43,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:18:0"},"returnParameters":{"id":49,"nodeType":"ParameterList","parameters":[],"src":"1515:0:0"},"scope":106,"src":"1436:178:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[233],"body":{"id":77,"nodeType":"Block","src":"1870:81:0","statements":[{"expression":{"id":69,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1880:20:0","subExpression":{"id":68,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1887:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":70,"nodeType":"ExpressionStatement","src":"1880:20:0"},{"expression":{"arguments":[{"id":74,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":64,"src":"1935:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":71,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1910:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Ownable2StepUpgradeable_$106_$","typeString":"type(contract super Ownable2StepUpgradeable)"}},"id":73,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1916:18:0","memberName":"_transferOwnership","nodeType":"MemberAccess","referencedDeclaration":233,"src":"1910:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":76,"nodeType":"ExpressionStatement","src":"1910:34:0"}]},"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"1620:173:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n Internal function without access restriction."},"id":78,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"1807:18:0","nodeType":"FunctionDefinition","overrides":{"id":66,"nodeType":"OverrideSpecifier","overrides":[],"src":"1861:8:0"},"parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"newOwner","nameLocation":"1834:8:0","nodeType":"VariableDeclaration","scope":78,"src":"1826:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"1826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1825:18:0"},"returnParameters":{"id":67,"nodeType":"ParameterList","parameters":[],"src":"1870:0:0"},"scope":106,"src":"1798:153:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":99,"nodeType":"Block","src":"2073:170:0","statements":[{"assignments":[83],"declarations":[{"constant":false,"id":83,"mutability":"mutable","name":"sender","nameLocation":"2091:6:0","nodeType":"VariableDeclaration","scope":99,"src":"2083:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":82,"name":"address","nodeType":"ElementaryTypeName","src":"2083:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":86,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":84,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2100:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2100:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2083:29:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":91,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"2130:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2130:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":90,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2148:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2130:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e6572","id":92,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2156:43:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""},"value":"Ownable2Step: caller is not the new owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""}],"id":87,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2122:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":93,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2122:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":94,"nodeType":"ExpressionStatement","src":"2122:78:0"},{"expression":{"arguments":[{"id":96,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2229:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":95,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[78],"referencedDeclaration":78,"src":"2210:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":97,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2210:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":98,"nodeType":"ExpressionStatement","src":"2210:26:0"}]},"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"1957:69:0","text":" @dev The new owner accepts the ownership transfer."},"functionSelector":"79ba5097","id":100,"implemented":true,"kind":"function","modifiers":[],"name":"acceptOwnership","nameLocation":"2040:15:0","nodeType":"FunctionDefinition","parameters":{"id":80,"nodeType":"ParameterList","parameters":[],"src":"2055:2:0"},"returnParameters":{"id":81,"nodeType":"ParameterList","parameters":[],"src":"2073:0:0"},"scope":106,"src":"2031:212:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"constant":false,"documentation":{"id":101,"nodeType":"StructuredDocumentation","src":"2249:254:0","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":105,"mutability":"mutable","name":"__gap","nameLocation":"2528:5:0","nodeType":"VariableDeclaration","scope":106,"src":"2508:25:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"2508:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":104,"length":{"hexValue":"3439","id":103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2516:2:0","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"2508:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":107,"src":"674:1862:0","usedErrors":[],"usedEvents":[17,124,254]}],"src":"107:2430:0"},"id":0},"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"OwnableUpgradeable":[239]},"id":240,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":108,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:1"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":918,"src":"127:41:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":111,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":409,"src":"169:63:1","symbolAliases":[{"foreign":{"id":110,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"177:13:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":113,"name":"Initializable","nameLocations":["769:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"769:13:1"},"id":114,"nodeType":"InheritanceSpecifier","src":"769:13:1"},{"baseName":{"id":115,"name":"ContextUpgradeable","nameLocations":["784:18:1"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"784:18:1"},"id":116,"nodeType":"InheritanceSpecifier","src":"784:18:1"}],"canonicalName":"OwnableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"234:494:1","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 By default, the owner account will be the one that deploys the contract. This\n can 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":239,"linearizedBaseContracts":[239,917,408],"name":"OwnableUpgradeable","nameLocation":"747:18:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":118,"mutability":"mutable","name":"_owner","nameLocation":"825:6:1","nodeType":"VariableDeclaration","scope":239,"src":"809:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"809:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":124,"name":"OwnershipTransferred","nameLocation":"844:20:1","nodeType":"EventDefinition","parameters":{"id":123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"881:13:1","nodeType":"VariableDeclaration","scope":124,"src":"865:29:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":119,"name":"address","nodeType":"ElementaryTypeName","src":"865:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":122,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"912:8:1","nodeType":"VariableDeclaration","scope":124,"src":"896:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":121,"name":"address","nodeType":"ElementaryTypeName","src":"896:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"864:57:1"},"src":"838:84:1"},{"body":{"id":133,"nodeType":"Block","src":"1076:43:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":130,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"1086:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1086:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":132,"nodeType":"ExpressionStatement","src":"1086:26:1"}]},"documentation":{"id":125,"nodeType":"StructuredDocumentation","src":"928:91:1","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":134,"implemented":true,"kind":"function","modifiers":[{"id":128,"kind":"modifierInvocation","modifierName":{"id":127,"name":"onlyInitializing","nameLocations":["1059:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1059:16:1"},"nodeType":"ModifierInvocation","src":"1059:16:1"}],"name":"__Ownable_init","nameLocation":"1033:14:1","nodeType":"FunctionDefinition","parameters":{"id":126,"nodeType":"ParameterList","parameters":[],"src":"1047:2:1"},"returnParameters":{"id":129,"nodeType":"ParameterList","parameters":[],"src":"1076:0:1"},"scope":239,"src":"1024:95:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":144,"nodeType":"Block","src":"1187:49:1","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":140,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1216:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1216:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":139,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"1197:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1197:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":143,"nodeType":"ExpressionStatement","src":"1197:32:1"}]},"id":145,"implemented":true,"kind":"function","modifiers":[{"id":137,"kind":"modifierInvocation","modifierName":{"id":136,"name":"onlyInitializing","nameLocations":["1170:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1170:16:1"},"nodeType":"ModifierInvocation","src":"1170:16:1"}],"name":"__Ownable_init_unchained","nameLocation":"1134:24:1","nodeType":"FunctionDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[],"src":"1158:2:1"},"returnParameters":{"id":138,"nodeType":"ParameterList","parameters":[],"src":"1187:0:1"},"scope":239,"src":"1125:111:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":152,"nodeType":"Block","src":"1345:41:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":148,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1355:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1355:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":150,"nodeType":"ExpressionStatement","src":"1355:13:1"},{"id":151,"nodeType":"PlaceholderStatement","src":"1378:1:1"}]},"documentation":{"id":146,"nodeType":"StructuredDocumentation","src":"1242:77:1","text":" @dev Throws if called by any account other than the owner."},"id":153,"name":"onlyOwner","nameLocation":"1333:9:1","nodeType":"ModifierDefinition","parameters":{"id":147,"nodeType":"ParameterList","parameters":[],"src":"1342:2:1"},"src":"1324:62:1","virtual":false,"visibility":"internal"},{"body":{"id":161,"nodeType":"Block","src":"1517:30:1","statements":[{"expression":{"id":159,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1534:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":158,"id":160,"nodeType":"Return","src":"1527:13:1"}]},"documentation":{"id":154,"nodeType":"StructuredDocumentation","src":"1392:65:1","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":162,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1471:5:1","nodeType":"FunctionDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[],"src":"1476:2:1"},"returnParameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":162,"src":"1508:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1508:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1507:9:1"},"scope":239,"src":"1462:85:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":175,"nodeType":"Block","src":"1665:85:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":167,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1683:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1683:7:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":169,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1694:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1694:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1683:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1708:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":166,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1675:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":174,"nodeType":"ExpressionStatement","src":"1675:68:1"}]},"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"1553:62:1","text":" @dev Throws if the sender is not the owner."},"id":176,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1629:11:1","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"1640:2:1"},"returnParameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"1665:0:1"},"scope":239,"src":"1620:130:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":189,"nodeType":"Block","src":"2139:47:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2176:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2168:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":183,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:1","typeDescriptions":{}}},"id":186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":182,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2149:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2149:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":188,"nodeType":"ExpressionStatement","src":"2149:30:1"}]},"documentation":{"id":177,"nodeType":"StructuredDocumentation","src":"1756:324:1","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":190,"implemented":true,"kind":"function","modifiers":[{"id":180,"kind":"modifierInvocation","modifierName":{"id":179,"name":"onlyOwner","nameLocations":["2129:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2129:9:1"},"nodeType":"ModifierInvocation","src":"2129:9:1"}],"name":"renounceOwnership","nameLocation":"2094:17:1","nodeType":"FunctionDefinition","parameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"2111:2:1"},"returnParameters":{"id":181,"nodeType":"ParameterList","parameters":[],"src":"2139:0:1"},"scope":239,"src":"2085:101:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":212,"nodeType":"Block","src":"2405:128:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2423:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2443:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2435:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":200,"name":"address","nodeType":"ElementaryTypeName","src":"2435:7:1","typeDescriptions":{}}},"id":203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2423:22:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2447:40:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":198,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2415:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2415:73:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":207,"nodeType":"ExpressionStatement","src":"2415:73:1"},{"expression":{"arguments":[{"id":209,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2517:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":208,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2498:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2498:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":211,"nodeType":"ExpressionStatement","src":"2498:28:1"}]},"documentation":{"id":191,"nodeType":"StructuredDocumentation","src":"2192:138:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":213,"implemented":true,"kind":"function","modifiers":[{"id":196,"kind":"modifierInvocation","modifierName":{"id":195,"name":"onlyOwner","nameLocations":["2395:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2395:9:1"},"nodeType":"ModifierInvocation","src":"2395:9:1"}],"name":"transferOwnership","nameLocation":"2344:17:1","nodeType":"FunctionDefinition","parameters":{"id":194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":193,"mutability":"mutable","name":"newOwner","nameLocation":"2370:8:1","nodeType":"VariableDeclaration","scope":213,"src":"2362:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":192,"name":"address","nodeType":"ElementaryTypeName","src":"2362:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2361:18:1"},"returnParameters":{"id":197,"nodeType":"ParameterList","parameters":[],"src":"2405:0:1"},"scope":239,"src":"2335:198:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":232,"nodeType":"Block","src":"2750:124:1","statements":[{"assignments":[220],"declarations":[{"constant":false,"id":220,"mutability":"mutable","name":"oldOwner","nameLocation":"2768:8:1","nodeType":"VariableDeclaration","scope":232,"src":"2760:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":219,"name":"address","nodeType":"ElementaryTypeName","src":"2760:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":222,"initialValue":{"id":221,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2779:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2760:25:1"},{"expression":{"id":225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":223,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2795:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":224,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2804:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2795:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":226,"nodeType":"ExpressionStatement","src":"2795:17:1"},{"eventCall":{"arguments":[{"id":228,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"2848:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":229,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2858:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"2827:20:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2827:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":231,"nodeType":"EmitStatement","src":"2822:45:1"}]},"documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"2539:143:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":233,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2696:18:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":216,"mutability":"mutable","name":"newOwner","nameLocation":"2723:8:1","nodeType":"VariableDeclaration","scope":233,"src":"2715:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":215,"name":"address","nodeType":"ElementaryTypeName","src":"2715:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2714:18:1"},"returnParameters":{"id":218,"nodeType":"ParameterList","parameters":[],"src":"2750:0:1"},"scope":239,"src":"2687:187:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":234,"nodeType":"StructuredDocumentation","src":"2880:254:1","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":238,"mutability":"mutable","name":"__gap","nameLocation":"3159:5:1","nodeType":"VariableDeclaration","scope":239,"src":"3139:25:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":235,"name":"uint256","nodeType":"ElementaryTypeName","src":"3139:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":237,"length":{"hexValue":"3439","id":236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:2:1","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3139:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":240,"src":"729:2438:1","usedErrors":[],"usedEvents":[124,254]}],"src":"102:3066:1"},"id":1},"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","exportedSymbols":{"AddressUpgradeable":[866],"Initializable":[408]},"id":409,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":241,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"113:23:2"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol","file":"../../utils/AddressUpgradeable.sol","id":242,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":409,"sourceUnit":867,"src":"138:44:2","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":243,"nodeType":"StructuredDocumentation","src":"184: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":408,"linearizedBaseContracts":[408],"name":"Initializable","nameLocation":"2412:13:2","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"2432:109:2","text":" @dev Indicates that the contract has been initialized.\n @custom:oz-retyped-from bool"},"id":246,"mutability":"mutable","name":"_initialized","nameLocation":"2560:12:2","nodeType":"VariableDeclaration","scope":408,"src":"2546:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":245,"name":"uint8","nodeType":"ElementaryTypeName","src":"2546:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"constant":false,"documentation":{"id":247,"nodeType":"StructuredDocumentation","src":"2579:91:2","text":" @dev Indicates that the contract is in the process of being initialized."},"id":249,"mutability":"mutable","name":"_initializing","nameLocation":"2688:13:2","nodeType":"VariableDeclaration","scope":408,"src":"2675:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":248,"name":"bool","nodeType":"ElementaryTypeName","src":"2675:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"anonymous":false,"documentation":{"id":250,"nodeType":"StructuredDocumentation","src":"2708:90:2","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498","id":254,"name":"Initialized","nameLocation":"2809:11:2","nodeType":"EventDefinition","parameters":{"id":253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"2827:7:2","nodeType":"VariableDeclaration","scope":254,"src":"2821:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":251,"name":"uint8","nodeType":"ElementaryTypeName","src":"2821:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2820:15:2"},"src":"2803:33:2"},{"body":{"id":309,"nodeType":"Block","src":"3269:483:2","statements":[{"assignments":[258],"declarations":[{"constant":false,"id":258,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"3284:14:2","nodeType":"VariableDeclaration","scope":309,"src":"3279:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":257,"name":"bool","nodeType":"ElementaryTypeName","src":"3279:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":261,"initialValue":{"id":260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3301:14:2","subExpression":{"id":259,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3302:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3279:36:2"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":263,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3347:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":264,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3365:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3380:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3365:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3347:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3346:36:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3387:45:2","subExpression":{"arguments":[{"arguments":[{"id":273,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3426:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}],"id":272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3418:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"3418:7:2","typeDescriptions":{}}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":269,"name":"AddressUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":866,"src":"3388:18:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AddressUpgradeable_$866_$","typeString":"type(library AddressUpgradeable)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3407:10:2","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":554,"src":"3388:29:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3388:44:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":277,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3436:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3452:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3436:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3387:66:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3386:68:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3346:108:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3468:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":262,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3325:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3325:201:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"ExpressionStatement","src":"3325:201:2"},{"expression":{"id":288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":286,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3536:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3551:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3536:16:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":289,"nodeType":"ExpressionStatement","src":"3536:16:2"},{"condition":{"id":290,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3566:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":296,"nodeType":"IfStatement","src":"3562:65:2","trueBody":{"id":295,"nodeType":"Block","src":"3582:45:2","statements":[{"expression":{"id":293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":291,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3596:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3612:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3596:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":294,"nodeType":"ExpressionStatement","src":"3596:20:2"}]}},{"id":297,"nodeType":"PlaceholderStatement","src":"3636:1:2"},{"condition":{"id":298,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3651:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":308,"nodeType":"IfStatement","src":"3647:99:2","trueBody":{"id":307,"nodeType":"Block","src":"3667:79:2","statements":[{"expression":{"id":301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":299,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3681:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3697:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3681:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":302,"nodeType":"ExpressionStatement","src":"3681:21:2"},{"eventCall":{"arguments":[{"hexValue":"31","id":304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3733: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":303,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"3721:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3721:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":306,"nodeType":"EmitStatement","src":"3716:19:2"}]}}]},"documentation":{"id":255,"nodeType":"StructuredDocumentation","src":"2842:399: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 functions marked with `initializer` can be nested in the context of a\n constructor.\n Emits an {Initialized} event."},"id":310,"name":"initializer","nameLocation":"3255:11:2","nodeType":"ModifierDefinition","parameters":{"id":256,"nodeType":"ParameterList","parameters":[],"src":"3266:2:2"},"src":"3246:506:2","virtual":false,"visibility":"internal"},{"body":{"id":342,"nodeType":"Block","src":"4863:255:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4881:14:2","subExpression":{"id":316,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"4882:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":318,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4899:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":319,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4914:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4899:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4881:40:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4923:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":315,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4873:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4873:99:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4873:99:2"},{"expression":{"id":327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":325,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4982:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":326,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4997:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4982:22:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":328,"nodeType":"ExpressionStatement","src":"4982:22:2"},{"expression":{"id":331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":329,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5014:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5030:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5014:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":332,"nodeType":"ExpressionStatement","src":"5014:20:2"},{"id":333,"nodeType":"PlaceholderStatement","src":"5044:1:2"},{"expression":{"id":336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":334,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5055:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5071:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5055:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":337,"nodeType":"ExpressionStatement","src":"5055:21:2"},{"eventCall":{"arguments":[{"id":339,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"5103:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":338,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"5091:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5091:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":341,"nodeType":"EmitStatement","src":"5086:25:2"}]},"documentation":{"id":311,"nodeType":"StructuredDocumentation","src":"3758:1062: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 255 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":343,"name":"reinitializer","nameLocation":"4834:13:2","nodeType":"ModifierDefinition","parameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":313,"mutability":"mutable","name":"version","nameLocation":"4854:7:2","nodeType":"VariableDeclaration","scope":343,"src":"4848:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":312,"name":"uint8","nodeType":"ElementaryTypeName","src":"4848:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4847:15:2"},"src":"4825:293:2","virtual":false,"visibility":"internal"},{"body":{"id":352,"nodeType":"Block","src":"5356:97:2","statements":[{"expression":{"arguments":[{"id":347,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5374:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420696e697469616c697a696e67","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5389:45:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""},"value":"Initializable: contract is not initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""}],"id":346,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5366:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5366:69:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":350,"nodeType":"ExpressionStatement","src":"5366:69:2"},{"id":351,"nodeType":"PlaceholderStatement","src":"5445:1:2"}]},"documentation":{"id":344,"nodeType":"StructuredDocumentation","src":"5124: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":353,"name":"onlyInitializing","nameLocation":"5337:16:2","nodeType":"ModifierDefinition","parameters":{"id":345,"nodeType":"ParameterList","parameters":[],"src":"5353:2:2"},"src":"5328:125:2","virtual":false,"visibility":"internal"},{"body":{"id":388,"nodeType":"Block","src":"5988:231:2","statements":[{"expression":{"arguments":[{"id":359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6006:14:2","subExpression":{"id":358,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6007:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e67","id":360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6022:41:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""},"value":"Initializable: contract is initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""}],"id":357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5998:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5998:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":362,"nodeType":"ExpressionStatement","src":"5998:66:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":363,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6078:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6099:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":365,"name":"uint8","nodeType":"ElementaryTypeName","src":"6099:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":364,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6094:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6094:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6106:3:2","memberName":"max","nodeType":"MemberAccess","src":"6094:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6078:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":387,"nodeType":"IfStatement","src":"6074:139:2","trueBody":{"id":386,"nodeType":"Block","src":"6111:102:2","statements":[{"expression":{"id":376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":370,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6125:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6145:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":372,"name":"uint8","nodeType":"ElementaryTypeName","src":"6145:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":371,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6140:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6152:3:2","memberName":"max","nodeType":"MemberAccess","src":"6140:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6125:30:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":377,"nodeType":"ExpressionStatement","src":"6125:30:2"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6191:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":380,"name":"uint8","nodeType":"ElementaryTypeName","src":"6191:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":379,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6186:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6186:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6198:3:2","memberName":"max","nodeType":"MemberAccess","src":"6186:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":378,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"6174:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6174:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":385,"nodeType":"EmitStatement","src":"6169:33:2"}]}}]},"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"5459: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":389,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"5948:20:2","nodeType":"FunctionDefinition","parameters":{"id":355,"nodeType":"ParameterList","parameters":[],"src":"5968:2:2"},"returnParameters":{"id":356,"nodeType":"ParameterList","parameters":[],"src":"5988:0:2"},"scope":408,"src":"5939:280:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":397,"nodeType":"Block","src":"6393:36:2","statements":[{"expression":{"id":395,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6410:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":394,"id":396,"nodeType":"Return","src":"6403:19:2"}]},"documentation":{"id":390,"nodeType":"StructuredDocumentation","src":"6225:99:2","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":398,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"6338:22:2","nodeType":"FunctionDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[],"src":"6360:2:2"},"returnParameters":{"id":394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":398,"src":"6386:5:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":392,"name":"uint8","nodeType":"ElementaryTypeName","src":"6386:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6385:7:2"},"scope":408,"src":"6329:100:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":406,"nodeType":"Block","src":"6601:37:2","statements":[{"expression":{"id":404,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6618:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":403,"id":405,"nodeType":"Return","src":"6611:20:2"}]},"documentation":{"id":399,"nodeType":"StructuredDocumentation","src":"6435:105:2","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":407,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"6554:15:2","nodeType":"FunctionDefinition","parameters":{"id":400,"nodeType":"ParameterList","parameters":[],"src":"6569:2:2"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":407,"src":"6595:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":401,"name":"bool","nodeType":"ElementaryTypeName","src":"6595:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6594:6:2"},"scope":408,"src":"6545:93:2","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":409,"src":"2394:4246:2","usedErrors":[],"usedEvents":[254]}],"src":"113:6528:2"},"id":2},"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"PausableUpgradeable":[536]},"id":537,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":410,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:3"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":411,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":918,"src":"130:41:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":413,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":409,"src":"172:63:3","symbolAliases":[{"foreign":{"id":412,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"180:13:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":415,"name":"Initializable","nameLocations":["718:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"718:13:3"},"id":416,"nodeType":"InheritanceSpecifier","src":"718:13:3"},{"baseName":{"id":417,"name":"ContextUpgradeable","nameLocations":["733:18:3"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"733:18:3"},"id":418,"nodeType":"InheritanceSpecifier","src":"733:18:3"}],"canonicalName":"PausableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":414,"nodeType":"StructuredDocumentation","src":"237:439:3","text":" @dev Contract module which allows children to implement an emergency stop\n mechanism that can be triggered by an authorized account.\n This module is used through inheritance. It will make available the\n modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n the functions of your contract. Note that they will not be pausable by\n simply including this module, only once the modifiers are put in place."},"fullyImplemented":true,"id":536,"linearizedBaseContracts":[536,917,408],"name":"PausableUpgradeable","nameLocation":"695:19:3","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":419,"nodeType":"StructuredDocumentation","src":"758:73:3","text":" @dev Emitted when the pause is triggered by `account`."},"eventSelector":"62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258","id":423,"name":"Paused","nameLocation":"842:6:3","nodeType":"EventDefinition","parameters":{"id":422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":421,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"857:7:3","nodeType":"VariableDeclaration","scope":423,"src":"849:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":420,"name":"address","nodeType":"ElementaryTypeName","src":"849:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"848:17:3"},"src":"836:30:3"},{"anonymous":false,"documentation":{"id":424,"nodeType":"StructuredDocumentation","src":"872:70:3","text":" @dev Emitted when the pause is lifted by `account`."},"eventSelector":"5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa","id":428,"name":"Unpaused","nameLocation":"953:8:3","nodeType":"EventDefinition","parameters":{"id":427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":426,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"970:7:3","nodeType":"VariableDeclaration","scope":428,"src":"962:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":425,"name":"address","nodeType":"ElementaryTypeName","src":"962:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"961:17:3"},"src":"947:32:3"},{"constant":false,"id":430,"mutability":"mutable","name":"_paused","nameLocation":"998:7:3","nodeType":"VariableDeclaration","scope":536,"src":"985:20:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":429,"name":"bool","nodeType":"ElementaryTypeName","src":"985:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"body":{"id":439,"nodeType":"Block","src":"1137:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":436,"name":"__Pausable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":450,"src":"1147:25:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1147:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":438,"nodeType":"ExpressionStatement","src":"1147:27:3"}]},"documentation":{"id":431,"nodeType":"StructuredDocumentation","src":"1012:67:3","text":" @dev Initializes the contract in unpaused state."},"id":440,"implemented":true,"kind":"function","modifiers":[{"id":434,"kind":"modifierInvocation","modifierName":{"id":433,"name":"onlyInitializing","nameLocations":["1120:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1120:16:3"},"nodeType":"ModifierInvocation","src":"1120:16:3"}],"name":"__Pausable_init","nameLocation":"1093:15:3","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[],"src":"1108:2:3"},"returnParameters":{"id":435,"nodeType":"ParameterList","parameters":[],"src":"1137:0:3"},"scope":536,"src":"1084:97:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":449,"nodeType":"Block","src":"1250:32:3","statements":[{"expression":{"id":447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":445,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1260:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1270:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1260:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":448,"nodeType":"ExpressionStatement","src":"1260:15:3"}]},"id":450,"implemented":true,"kind":"function","modifiers":[{"id":443,"kind":"modifierInvocation","modifierName":{"id":442,"name":"onlyInitializing","nameLocations":["1233:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1233:16:3"},"nodeType":"ModifierInvocation","src":"1233:16:3"}],"name":"__Pausable_init_unchained","nameLocation":"1196:25:3","nodeType":"FunctionDefinition","parameters":{"id":441,"nodeType":"ParameterList","parameters":[],"src":"1221:2:3"},"returnParameters":{"id":444,"nodeType":"ParameterList","parameters":[],"src":"1250:0:3"},"scope":536,"src":"1187:95:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":457,"nodeType":"Block","src":"1493:47:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":453,"name":"_requireNotPaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":487,"src":"1503:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1503:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":455,"nodeType":"ExpressionStatement","src":"1503:19:3"},{"id":456,"nodeType":"PlaceholderStatement","src":"1532:1:3"}]},"documentation":{"id":451,"nodeType":"StructuredDocumentation","src":"1288:175:3","text":" @dev Modifier to make a function callable only when the contract is not paused.\n Requirements:\n - The contract must not be paused."},"id":458,"name":"whenNotPaused","nameLocation":"1477:13:3","nodeType":"ModifierDefinition","parameters":{"id":452,"nodeType":"ParameterList","parameters":[],"src":"1490:2:3"},"src":"1468:72:3","virtual":false,"visibility":"internal"},{"body":{"id":465,"nodeType":"Block","src":"1740:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":461,"name":"_requirePaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"1750:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1750:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":463,"nodeType":"ExpressionStatement","src":"1750:16:3"},{"id":464,"nodeType":"PlaceholderStatement","src":"1776:1:3"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"1546:167:3","text":" @dev Modifier to make a function callable only when the contract is paused.\n Requirements:\n - The contract must be paused."},"id":466,"name":"whenPaused","nameLocation":"1727:10:3","nodeType":"ModifierDefinition","parameters":{"id":460,"nodeType":"ParameterList","parameters":[],"src":"1737:2:3"},"src":"1718:66:3","virtual":false,"visibility":"internal"},{"body":{"id":474,"nodeType":"Block","src":"1932:31:3","statements":[{"expression":{"id":472,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1949:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":471,"id":473,"nodeType":"Return","src":"1942:14:3"}]},"documentation":{"id":467,"nodeType":"StructuredDocumentation","src":"1790:84:3","text":" @dev Returns true if the contract is paused, and false otherwise."},"functionSelector":"5c975abb","id":475,"implemented":true,"kind":"function","modifiers":[],"name":"paused","nameLocation":"1888:6:3","nodeType":"FunctionDefinition","parameters":{"id":468,"nodeType":"ParameterList","parameters":[],"src":"1894:2:3"},"returnParameters":{"id":471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":475,"src":"1926:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":469,"name":"bool","nodeType":"ElementaryTypeName","src":"1926:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1925:6:3"},"scope":536,"src":"1879:84:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":486,"nodeType":"Block","src":"2082:55:3","statements":[{"expression":{"arguments":[{"id":482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2100:9:3","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":480,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2101:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2101:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a20706175736564","id":483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2111:18:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""},"value":"Pausable: paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""}],"id":479,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2092:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:38:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":485,"nodeType":"ExpressionStatement","src":"2092:38:3"}]},"documentation":{"id":476,"nodeType":"StructuredDocumentation","src":"1969:57:3","text":" @dev Throws if the contract is paused."},"id":487,"implemented":true,"kind":"function","modifiers":[],"name":"_requireNotPaused","nameLocation":"2040:17:3","nodeType":"FunctionDefinition","parameters":{"id":477,"nodeType":"ParameterList","parameters":[],"src":"2057:2:3"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[],"src":"2082:0:3"},"scope":536,"src":"2031:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":497,"nodeType":"Block","src":"2257:58:3","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":492,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2275:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2275:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a206e6f7420706175736564","id":494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2285:22:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""},"value":"Pausable: not paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""}],"id":491,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2267:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2267:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":496,"nodeType":"ExpressionStatement","src":"2267:41:3"}]},"documentation":{"id":488,"nodeType":"StructuredDocumentation","src":"2143:61:3","text":" @dev Throws if the contract is not paused."},"id":498,"implemented":true,"kind":"function","modifiers":[],"name":"_requirePaused","nameLocation":"2218:14:3","nodeType":"FunctionDefinition","parameters":{"id":489,"nodeType":"ParameterList","parameters":[],"src":"2232:2:3"},"returnParameters":{"id":490,"nodeType":"ParameterList","parameters":[],"src":"2257:0:3"},"scope":536,"src":"2209:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":513,"nodeType":"Block","src":"2499:66:3","statements":[{"expression":{"id":506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":504,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2509:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2519:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2509:14:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":507,"nodeType":"ExpressionStatement","src":"2509:14:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":509,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2545:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":508,"name":"Paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"2538:6:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2538:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":512,"nodeType":"EmitStatement","src":"2533:25:3"}]},"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"2321:124:3","text":" @dev Triggers stopped state.\n Requirements:\n - The contract must not be paused."},"id":514,"implemented":true,"kind":"function","modifiers":[{"id":502,"kind":"modifierInvocation","modifierName":{"id":501,"name":"whenNotPaused","nameLocations":["2485:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"2485:13:3"},"nodeType":"ModifierInvocation","src":"2485:13:3"}],"name":"_pause","nameLocation":"2459:6:3","nodeType":"FunctionDefinition","parameters":{"id":500,"nodeType":"ParameterList","parameters":[],"src":"2465:2:3"},"returnParameters":{"id":503,"nodeType":"ParameterList","parameters":[],"src":"2499:0:3"},"scope":536,"src":"2450:115:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":529,"nodeType":"Block","src":"2745:69:3","statements":[{"expression":{"id":522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":520,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2755:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2765:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2755:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":523,"nodeType":"ExpressionStatement","src":"2755:15:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":525,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2794:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2794:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":524,"name":"Unpaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":428,"src":"2785:8:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2785:22:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":528,"nodeType":"EmitStatement","src":"2780:27:3"}]},"documentation":{"id":515,"nodeType":"StructuredDocumentation","src":"2571:121:3","text":" @dev Returns to normal state.\n Requirements:\n - The contract must be paused."},"id":530,"implemented":true,"kind":"function","modifiers":[{"id":518,"kind":"modifierInvocation","modifierName":{"id":517,"name":"whenPaused","nameLocations":["2734:10:3"],"nodeType":"IdentifierPath","referencedDeclaration":466,"src":"2734:10:3"},"nodeType":"ModifierInvocation","src":"2734:10:3"}],"name":"_unpause","nameLocation":"2706:8:3","nodeType":"FunctionDefinition","parameters":{"id":516,"nodeType":"ParameterList","parameters":[],"src":"2714:2:3"},"returnParameters":{"id":519,"nodeType":"ParameterList","parameters":[],"src":"2745:0:3"},"scope":536,"src":"2697:117:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":531,"nodeType":"StructuredDocumentation","src":"2820:254:3","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":535,"mutability":"mutable","name":"__gap","nameLocation":"3099:5:3","nodeType":"VariableDeclaration","scope":536,"src":"3079:25:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":532,"name":"uint256","nodeType":"ElementaryTypeName","src":"3079:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":534,"length":{"hexValue":"3439","id":533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3087:2:3","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3079:11:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":537,"src":"677:2430:3","usedErrors":[],"usedEvents":[254,423,428]}],"src":"105:3003:3"},"id":3},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol","exportedSymbols":{"AddressUpgradeable":[866]},"id":867,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":538,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:4"},{"abstract":false,"baseContracts":[],"canonicalName":"AddressUpgradeable","contractDependencies":[],"contractKind":"library","documentation":{"id":539,"nodeType":"StructuredDocumentation","src":"126:67:4","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":866,"linearizedBaseContracts":[866],"name":"AddressUpgradeable","nameLocation":"202:18:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":553,"nodeType":"Block","src":"1489:254:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":547,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":542,"src":"1713:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1721:4:4","memberName":"code","nodeType":"MemberAccess","src":"1713:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1726:6:4","memberName":"length","nodeType":"MemberAccess","src":"1713:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1735:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1713:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":546,"id":552,"nodeType":"Return","src":"1706:30:4"}]},"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"227:1191:4","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":554,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1432:10:4","nodeType":"FunctionDefinition","parameters":{"id":543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":542,"mutability":"mutable","name":"account","nameLocation":"1451:7:4","nodeType":"VariableDeclaration","scope":554,"src":"1443:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":541,"name":"address","nodeType":"ElementaryTypeName","src":"1443:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1442:17:4"},"returnParameters":{"id":546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":554,"src":"1483:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":544,"name":"bool","nodeType":"ElementaryTypeName","src":"1483:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1482:6:4"},"scope":866,"src":"1423:320:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":587,"nodeType":"Block","src":"2729:241:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":565,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2755:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2747:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":563,"name":"address","nodeType":"ElementaryTypeName","src":"2747:7:4","typeDescriptions":{}}},"id":566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2747:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2761:7:4","memberName":"balance","nodeType":"MemberAccess","src":"2747:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":568,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2772:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2747:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2780:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":562,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2739:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":572,"nodeType":"ExpressionStatement","src":"2739:73:4"},{"assignments":[574,null],"declarations":[{"constant":false,"id":574,"mutability":"mutable","name":"success","nameLocation":"2829:7:4","nodeType":"VariableDeclaration","scope":587,"src":"2824:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":573,"name":"bool","nodeType":"ElementaryTypeName","src":"2824:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":581,"initialValue":{"arguments":[{"hexValue":"","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2872:2:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":575,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":557,"src":"2842:9:4","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:4:4","memberName":"call","nodeType":"MemberAccess","src":"2842:14:4","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":578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":577,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2864:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2842:29:4","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":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2842:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2823:52:4"},{"expression":{"arguments":[{"id":583,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"2893:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2902:60:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":582,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2885:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2885:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":586,"nodeType":"ExpressionStatement","src":"2885:78:4"}]},"documentation":{"id":555,"nodeType":"StructuredDocumentation","src":"1749:904:4","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":588,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2667:9:4","nodeType":"FunctionDefinition","parameters":{"id":560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"recipient","nameLocation":"2693:9:4","nodeType":"VariableDeclaration","scope":588,"src":"2677:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":556,"name":"address","nodeType":"ElementaryTypeName","src":"2677:15:4","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":559,"mutability":"mutable","name":"amount","nameLocation":"2712:6:4","nodeType":"VariableDeclaration","scope":588,"src":"2704:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":558,"name":"uint256","nodeType":"ElementaryTypeName","src":"2704:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:4"},"returnParameters":{"id":561,"nodeType":"ParameterList","parameters":[],"src":"2729:0:4"},"scope":866,"src":"2658:312:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":605,"nodeType":"Block","src":"3801:96:4","statements":[{"expression":{"arguments":[{"id":599,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":591,"src":"3840:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":600,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"3848:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3854:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3857:32:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":598,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"3818:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3818:72:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":597,"id":604,"nodeType":"Return","src":"3811:79:4"}]},"documentation":{"id":589,"nodeType":"StructuredDocumentation","src":"2976:731:4","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":606,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3721:12:4","nodeType":"FunctionDefinition","parameters":{"id":594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":591,"mutability":"mutable","name":"target","nameLocation":"3742:6:4","nodeType":"VariableDeclaration","scope":606,"src":"3734:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":590,"name":"address","nodeType":"ElementaryTypeName","src":"3734:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":593,"mutability":"mutable","name":"data","nameLocation":"3763:4:4","nodeType":"VariableDeclaration","scope":606,"src":"3750:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":592,"name":"bytes","nodeType":"ElementaryTypeName","src":"3750:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3733:35:4"},"returnParameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":606,"src":"3787:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":595,"name":"bytes","nodeType":"ElementaryTypeName","src":"3787:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3786:14:4"},"scope":866,"src":"3712:185:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":625,"nodeType":"Block","src":"4266:76:4","statements":[{"expression":{"arguments":[{"id":619,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"4305:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":620,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":611,"src":"4313:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4319:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":622,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"4322:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":618,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4283:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4283:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":617,"id":624,"nodeType":"Return","src":"4276:59:4"}]},"documentation":{"id":607,"nodeType":"StructuredDocumentation","src":"3903:211:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":626,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4128:12:4","nodeType":"FunctionDefinition","parameters":{"id":614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":609,"mutability":"mutable","name":"target","nameLocation":"4158:6:4","nodeType":"VariableDeclaration","scope":626,"src":"4150:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":608,"name":"address","nodeType":"ElementaryTypeName","src":"4150:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":611,"mutability":"mutable","name":"data","nameLocation":"4187:4:4","nodeType":"VariableDeclaration","scope":626,"src":"4174:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":610,"name":"bytes","nodeType":"ElementaryTypeName","src":"4174:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":613,"mutability":"mutable","name":"errorMessage","nameLocation":"4215:12:4","nodeType":"VariableDeclaration","scope":626,"src":"4201:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":612,"name":"string","nodeType":"ElementaryTypeName","src":"4201:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4140:93:4"},"returnParameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":626,"src":"4252:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":615,"name":"bytes","nodeType":"ElementaryTypeName","src":"4252:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4251:14:4"},"scope":866,"src":"4119:223:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":645,"nodeType":"Block","src":"4817:111:4","statements":[{"expression":{"arguments":[{"id":639,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":629,"src":"4856:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":640,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":631,"src":"4864:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":633,"src":"4870:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4877:43:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":638,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4834:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4834:87:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":637,"id":644,"nodeType":"Return","src":"4827:94:4"}]},"documentation":{"id":627,"nodeType":"StructuredDocumentation","src":"4348:351:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":646,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4713:21:4","nodeType":"FunctionDefinition","parameters":{"id":634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":629,"mutability":"mutable","name":"target","nameLocation":"4743:6:4","nodeType":"VariableDeclaration","scope":646,"src":"4735:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":628,"name":"address","nodeType":"ElementaryTypeName","src":"4735:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":631,"mutability":"mutable","name":"data","nameLocation":"4764:4:4","nodeType":"VariableDeclaration","scope":646,"src":"4751:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":630,"name":"bytes","nodeType":"ElementaryTypeName","src":"4751:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":633,"mutability":"mutable","name":"value","nameLocation":"4778:5:4","nodeType":"VariableDeclaration","scope":646,"src":"4770:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":632,"name":"uint256","nodeType":"ElementaryTypeName","src":"4770:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4734:50:4"},"returnParameters":{"id":637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":636,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":646,"src":"4803:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":635,"name":"bytes","nodeType":"ElementaryTypeName","src":"4803:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4802:14:4"},"scope":866,"src":"4704:224:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":689,"nodeType":"Block","src":"5355:267:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":663,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5381:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5373:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":661,"name":"address","nodeType":"ElementaryTypeName","src":"5373:7:4","typeDescriptions":{}}},"id":664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5373:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5387:7:4","memberName":"balance","nodeType":"MemberAccess","src":"5373:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":666,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5398:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5373:30:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5405:40:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":660,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5365:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5365:81:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":670,"nodeType":"ExpressionStatement","src":"5365:81:4"},{"assignments":[672,674],"declarations":[{"constant":false,"id":672,"mutability":"mutable","name":"success","nameLocation":"5462:7:4","nodeType":"VariableDeclaration","scope":689,"src":"5457:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":671,"name":"bool","nodeType":"ElementaryTypeName","src":"5457:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":674,"mutability":"mutable","name":"returndata","nameLocation":"5484:10:4","nodeType":"VariableDeclaration","scope":689,"src":"5471:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":673,"name":"bytes","nodeType":"ElementaryTypeName","src":"5471:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":681,"initialValue":{"arguments":[{"id":679,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"5524:4:4","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":675,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5498:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5505:4:4","memberName":"call","nodeType":"MemberAccess","src":"5498:11:4","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":678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5517:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5498:25:4","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":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5456:73:4"},{"expression":{"arguments":[{"id":683,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5573:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":684,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":672,"src":"5581:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":685,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":674,"src":"5590:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":686,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":655,"src":"5602:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":682,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"5546:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5546:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":659,"id":688,"nodeType":"Return","src":"5539:76:4"}]},"documentation":{"id":647,"nodeType":"StructuredDocumentation","src":"4934:237:4","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":690,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5185:21:4","nodeType":"FunctionDefinition","parameters":{"id":656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":649,"mutability":"mutable","name":"target","nameLocation":"5224:6:4","nodeType":"VariableDeclaration","scope":690,"src":"5216:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":648,"name":"address","nodeType":"ElementaryTypeName","src":"5216:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":651,"mutability":"mutable","name":"data","nameLocation":"5253:4:4","nodeType":"VariableDeclaration","scope":690,"src":"5240:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":650,"name":"bytes","nodeType":"ElementaryTypeName","src":"5240:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":653,"mutability":"mutable","name":"value","nameLocation":"5275:5:4","nodeType":"VariableDeclaration","scope":690,"src":"5267:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"5267:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":655,"mutability":"mutable","name":"errorMessage","nameLocation":"5304:12:4","nodeType":"VariableDeclaration","scope":690,"src":"5290:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":654,"name":"string","nodeType":"ElementaryTypeName","src":"5290:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5206:116:4"},"returnParameters":{"id":659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":690,"src":"5341:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":657,"name":"bytes","nodeType":"ElementaryTypeName","src":"5341:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5340:14:4"},"scope":866,"src":"5176:446:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":706,"nodeType":"Block","src":"5899:97:4","statements":[{"expression":{"arguments":[{"id":701,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"5935:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":702,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5943:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5949:39:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":700,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[707,736],"referencedDeclaration":736,"src":"5916:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5916:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":699,"id":705,"nodeType":"Return","src":"5909:80:4"}]},"documentation":{"id":691,"nodeType":"StructuredDocumentation","src":"5628:166:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":707,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5808:18:4","nodeType":"FunctionDefinition","parameters":{"id":696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":693,"mutability":"mutable","name":"target","nameLocation":"5835:6:4","nodeType":"VariableDeclaration","scope":707,"src":"5827:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"5827:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":695,"mutability":"mutable","name":"data","nameLocation":"5856:4:4","nodeType":"VariableDeclaration","scope":707,"src":"5843:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":694,"name":"bytes","nodeType":"ElementaryTypeName","src":"5843:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5826:35:4"},"returnParameters":{"id":699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":698,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":707,"src":"5885:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":697,"name":"bytes","nodeType":"ElementaryTypeName","src":"5885:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5884:14:4"},"scope":866,"src":"5799:197:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":735,"nodeType":"Block","src":"6338:168:4","statements":[{"assignments":[720,722],"declarations":[{"constant":false,"id":720,"mutability":"mutable","name":"success","nameLocation":"6354:7:4","nodeType":"VariableDeclaration","scope":735,"src":"6349:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":719,"name":"bool","nodeType":"ElementaryTypeName","src":"6349:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":722,"mutability":"mutable","name":"returndata","nameLocation":"6376:10:4","nodeType":"VariableDeclaration","scope":735,"src":"6363:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":721,"name":"bytes","nodeType":"ElementaryTypeName","src":"6363:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":727,"initialValue":{"arguments":[{"id":725,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":712,"src":"6408:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":723,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6390:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6397:10:4","memberName":"staticcall","nodeType":"MemberAccess","src":"6390:17:4","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6390:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6348:65:4"},{"expression":{"arguments":[{"id":729,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6457:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":730,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":720,"src":"6465:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":731,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":722,"src":"6474:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":732,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":714,"src":"6486:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":728,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"6430:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6430:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":718,"id":734,"nodeType":"Return","src":"6423:76:4"}]},"documentation":{"id":708,"nodeType":"StructuredDocumentation","src":"6002:173:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":736,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6189:18:4","nodeType":"FunctionDefinition","parameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":710,"mutability":"mutable","name":"target","nameLocation":"6225:6:4","nodeType":"VariableDeclaration","scope":736,"src":"6217:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":709,"name":"address","nodeType":"ElementaryTypeName","src":"6217:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":712,"mutability":"mutable","name":"data","nameLocation":"6254:4:4","nodeType":"VariableDeclaration","scope":736,"src":"6241:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":711,"name":"bytes","nodeType":"ElementaryTypeName","src":"6241:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":714,"mutability":"mutable","name":"errorMessage","nameLocation":"6282:12:4","nodeType":"VariableDeclaration","scope":736,"src":"6268:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":713,"name":"string","nodeType":"ElementaryTypeName","src":"6268:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6207:93:4"},"returnParameters":{"id":718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":717,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":736,"src":"6324:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":716,"name":"bytes","nodeType":"ElementaryTypeName","src":"6324:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6323:14:4"},"scope":866,"src":"6180:326:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":752,"nodeType":"Block","src":"6782:101:4","statements":[{"expression":{"arguments":[{"id":747,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":739,"src":"6820:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":748,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"6828:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6834:41:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":746,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[753,782],"referencedDeclaration":782,"src":"6799:20:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6799:77:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":745,"id":751,"nodeType":"Return","src":"6792:84:4"}]},"documentation":{"id":737,"nodeType":"StructuredDocumentation","src":"6512:168:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":753,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6694:20:4","nodeType":"FunctionDefinition","parameters":{"id":742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":739,"mutability":"mutable","name":"target","nameLocation":"6723:6:4","nodeType":"VariableDeclaration","scope":753,"src":"6715:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":738,"name":"address","nodeType":"ElementaryTypeName","src":"6715:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":741,"mutability":"mutable","name":"data","nameLocation":"6744:4:4","nodeType":"VariableDeclaration","scope":753,"src":"6731:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":740,"name":"bytes","nodeType":"ElementaryTypeName","src":"6731:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6714:35:4"},"returnParameters":{"id":745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":753,"src":"6768:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":743,"name":"bytes","nodeType":"ElementaryTypeName","src":"6768:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6767:14:4"},"scope":866,"src":"6685:198:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":781,"nodeType":"Block","src":"7224:170:4","statements":[{"assignments":[766,768],"declarations":[{"constant":false,"id":766,"mutability":"mutable","name":"success","nameLocation":"7240:7:4","nodeType":"VariableDeclaration","scope":781,"src":"7235:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":765,"name":"bool","nodeType":"ElementaryTypeName","src":"7235:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"returndata","nameLocation":"7262:10:4","nodeType":"VariableDeclaration","scope":781,"src":"7249:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":767,"name":"bytes","nodeType":"ElementaryTypeName","src":"7249:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":773,"initialValue":{"arguments":[{"id":771,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":758,"src":"7296:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":769,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7276:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7283:12:4","memberName":"delegatecall","nodeType":"MemberAccess","src":"7276:19:4","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7276:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7234:67:4"},{"expression":{"arguments":[{"id":775,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7345:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":776,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"7353:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":777,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"7362:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":778,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":760,"src":"7374:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":774,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"7318:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7318:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":764,"id":780,"nodeType":"Return","src":"7311:76:4"}]},"documentation":{"id":754,"nodeType":"StructuredDocumentation","src":"6889:175:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":782,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7078:20:4","nodeType":"FunctionDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"target","nameLocation":"7116:6:4","nodeType":"VariableDeclaration","scope":782,"src":"7108:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"7108:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":758,"mutability":"mutable","name":"data","nameLocation":"7145:4:4","nodeType":"VariableDeclaration","scope":782,"src":"7132:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":757,"name":"bytes","nodeType":"ElementaryTypeName","src":"7132:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":760,"mutability":"mutable","name":"errorMessage","nameLocation":"7173:12:4","nodeType":"VariableDeclaration","scope":782,"src":"7159:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":759,"name":"string","nodeType":"ElementaryTypeName","src":"7159:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7098:93:4"},"returnParameters":{"id":764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":782,"src":"7210:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":762,"name":"bytes","nodeType":"ElementaryTypeName","src":"7210:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7209:14:4"},"scope":866,"src":"7069:325:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":820,"nodeType":"Block","src":"7876:434:4","statements":[{"condition":{"id":796,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":787,"src":"7890:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":818,"nodeType":"Block","src":"8246:58:4","statements":[{"expression":{"arguments":[{"id":814,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8268:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":815,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"8280:12:4","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":813,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8260:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8260:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":817,"nodeType":"ExpressionStatement","src":"8260:33:4"}]},"id":819,"nodeType":"IfStatement","src":"7886:418:4","trueBody":{"id":812,"nodeType":"Block","src":"7899:341:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":797,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"7917:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7928:6:4","memberName":"length","nodeType":"MemberAccess","src":"7917:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7938:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7917:22:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":809,"nodeType":"IfStatement","src":"7913:286:4","trueBody":{"id":808,"nodeType":"Block","src":"7941:258:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":803,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"8143:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":802,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":554,"src":"8132:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8152:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":801,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8124:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8124:60:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":807,"nodeType":"ExpressionStatement","src":"8124:60:4"}]}},{"expression":{"id":810,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8219:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":795,"id":811,"nodeType":"Return","src":"8212:17:4"}]}}]},"documentation":{"id":783,"nodeType":"StructuredDocumentation","src":"7400:277:4","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":821,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7691:26:4","nodeType":"FunctionDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":785,"mutability":"mutable","name":"target","nameLocation":"7735:6:4","nodeType":"VariableDeclaration","scope":821,"src":"7727:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":784,"name":"address","nodeType":"ElementaryTypeName","src":"7727:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":787,"mutability":"mutable","name":"success","nameLocation":"7756:7:4","nodeType":"VariableDeclaration","scope":821,"src":"7751:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":786,"name":"bool","nodeType":"ElementaryTypeName","src":"7751:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":789,"mutability":"mutable","name":"returndata","nameLocation":"7786:10:4","nodeType":"VariableDeclaration","scope":821,"src":"7773:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":788,"name":"bytes","nodeType":"ElementaryTypeName","src":"7773:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":791,"mutability":"mutable","name":"errorMessage","nameLocation":"7820:12:4","nodeType":"VariableDeclaration","scope":821,"src":"7806:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":790,"name":"string","nodeType":"ElementaryTypeName","src":"7806:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7717:121:4"},"returnParameters":{"id":795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":794,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":821,"src":"7862:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":793,"name":"bytes","nodeType":"ElementaryTypeName","src":"7862:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7861:14:4"},"scope":866,"src":"7682:628:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":844,"nodeType":"Block","src":"8691:135:4","statements":[{"condition":{"id":833,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"8705:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":842,"nodeType":"Block","src":"8762:58:4","statements":[{"expression":{"arguments":[{"id":838,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8784:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":839,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":828,"src":"8796:12:4","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":837,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8776:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8776:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":841,"nodeType":"ExpressionStatement","src":"8776:33:4"}]},"id":843,"nodeType":"IfStatement","src":"8701:119:4","trueBody":{"id":836,"nodeType":"Block","src":"8714:42:4","statements":[{"expression":{"id":834,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8735:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":832,"id":835,"nodeType":"Return","src":"8728:17:4"}]}}]},"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"8316:210:4","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":845,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8540:16:4","nodeType":"FunctionDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"success","nameLocation":"8571:7:4","nodeType":"VariableDeclaration","scope":845,"src":"8566:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":823,"name":"bool","nodeType":"ElementaryTypeName","src":"8566:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":826,"mutability":"mutable","name":"returndata","nameLocation":"8601:10:4","nodeType":"VariableDeclaration","scope":845,"src":"8588:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":825,"name":"bytes","nodeType":"ElementaryTypeName","src":"8588:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":828,"mutability":"mutable","name":"errorMessage","nameLocation":"8635:12:4","nodeType":"VariableDeclaration","scope":845,"src":"8621:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":827,"name":"string","nodeType":"ElementaryTypeName","src":"8621:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8556:97:4"},"returnParameters":{"id":832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":831,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":845,"src":"8677:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":830,"name":"bytes","nodeType":"ElementaryTypeName","src":"8677:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8676:14:4"},"scope":866,"src":"8531:295:4","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":864,"nodeType":"Block","src":"8915:457:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":852,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"8991:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9002:6:4","memberName":"length","nodeType":"MemberAccess","src":"8991:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9011:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8991:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":862,"nodeType":"Block","src":"9321:45:4","statements":[{"expression":{"arguments":[{"id":859,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"9342:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":858,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9335:6:4","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9335:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":861,"nodeType":"ExpressionStatement","src":"9335:20:4"}]},"id":863,"nodeType":"IfStatement","src":"8987:379:4","trueBody":{"id":857,"nodeType":"Block","src":"9014:301:4","statements":[{"AST":{"nodeType":"YulBlock","src":"9172:133:4","statements":[{"nodeType":"YulVariableDeclaration","src":"9190:40:4","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9219:10:4"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9213:5:4"},"nodeType":"YulFunctionCall","src":"9213:17:4"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9194:15:4","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9258:2:4","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9262:10:4"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9254:3:4"},"nodeType":"YulFunctionCall","src":"9254:19:4"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9275:15:4"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9247:6:4"},"nodeType":"YulFunctionCall","src":"9247:44:4"},"nodeType":"YulExpressionStatement","src":"9247:44:4"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":847,"isOffset":false,"isSlot":false,"src":"9219:10:4","valueSize":1},{"declaration":847,"isOffset":false,"isSlot":false,"src":"9262:10:4","valueSize":1}],"id":856,"nodeType":"InlineAssembly","src":"9163:142:4"}]}}]},"id":865,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8841:7:4","nodeType":"FunctionDefinition","parameters":{"id":850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":847,"mutability":"mutable","name":"returndata","nameLocation":"8862:10:4","nodeType":"VariableDeclaration","scope":865,"src":"8849:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":846,"name":"bytes","nodeType":"ElementaryTypeName","src":"8849:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":849,"mutability":"mutable","name":"errorMessage","nameLocation":"8888:12:4","nodeType":"VariableDeclaration","scope":865,"src":"8874:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":848,"name":"string","nodeType":"ElementaryTypeName","src":"8874:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8848:53:4"},"returnParameters":{"id":851,"nodeType":"ParameterList","parameters":[],"src":"8915:0:4"},"scope":866,"src":"8832:540:4","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":867,"src":"194:9180:4","usedErrors":[],"usedEvents":[]}],"src":"101:9274:4"},"id":4},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408]},"id":918,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":868,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:5"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":870,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":918,"sourceUnit":409,"src":"125:63:5","symbolAliases":[{"foreign":{"id":869,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"133:13:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":872,"name":"Initializable","nameLocations":["727:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"727:13:5"},"id":873,"nodeType":"InheritanceSpecifier","src":"727:13:5"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":871,"nodeType":"StructuredDocumentation","src":"190:496:5","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":917,"linearizedBaseContracts":[917,408],"name":"ContextUpgradeable","nameLocation":"705:18:5","nodeType":"ContractDefinition","nodes":[{"body":{"id":878,"nodeType":"Block","src":"799:7:5","statements":[]},"id":879,"implemented":true,"kind":"function","modifiers":[{"id":876,"kind":"modifierInvocation","modifierName":{"id":875,"name":"onlyInitializing","nameLocations":["782:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"782:16:5"},"nodeType":"ModifierInvocation","src":"782:16:5"}],"name":"__Context_init","nameLocation":"756:14:5","nodeType":"FunctionDefinition","parameters":{"id":874,"nodeType":"ParameterList","parameters":[],"src":"770:2:5"},"returnParameters":{"id":877,"nodeType":"ParameterList","parameters":[],"src":"799:0:5"},"scope":917,"src":"747:59:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":884,"nodeType":"Block","src":"874:7:5","statements":[]},"id":885,"implemented":true,"kind":"function","modifiers":[{"id":882,"kind":"modifierInvocation","modifierName":{"id":881,"name":"onlyInitializing","nameLocations":["857:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"857:16:5"},"nodeType":"ModifierInvocation","src":"857:16:5"}],"name":"__Context_init_unchained","nameLocation":"821:24:5","nodeType":"FunctionDefinition","parameters":{"id":880,"nodeType":"ParameterList","parameters":[],"src":"845:2:5"},"returnParameters":{"id":883,"nodeType":"ParameterList","parameters":[],"src":"874:0:5"},"scope":917,"src":"812:69:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":893,"nodeType":"Block","src":"948:34:5","statements":[{"expression":{"expression":{"id":890,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"965:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"969:6:5","memberName":"sender","nodeType":"MemberAccess","src":"965:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":889,"id":892,"nodeType":"Return","src":"958:17:5"}]},"id":894,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"895:10:5","nodeType":"FunctionDefinition","parameters":{"id":886,"nodeType":"ParameterList","parameters":[],"src":"905:2:5"},"returnParameters":{"id":889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":888,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":894,"src":"939:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":887,"name":"address","nodeType":"ElementaryTypeName","src":"939:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"938:9:5"},"scope":917,"src":"886:96:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":902,"nodeType":"Block","src":"1055:32:5","statements":[{"expression":{"expression":{"id":899,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1072:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1076:4:5","memberName":"data","nodeType":"MemberAccess","src":"1072:8:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":898,"id":901,"nodeType":"Return","src":"1065:15:5"}]},"id":903,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"997:8:5","nodeType":"FunctionDefinition","parameters":{"id":895,"nodeType":"ParameterList","parameters":[],"src":"1005:2:5"},"returnParameters":{"id":898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":897,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":903,"src":"1039:14:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":896,"name":"bytes","nodeType":"ElementaryTypeName","src":"1039:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1038:16:5"},"scope":917,"src":"988:99:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":910,"nodeType":"Block","src":"1165:25:5","statements":[{"expression":{"hexValue":"30","id":908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1182:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":907,"id":909,"nodeType":"Return","src":"1175:8:5"}]},"id":911,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1102:20:5","nodeType":"FunctionDefinition","parameters":{"id":904,"nodeType":"ParameterList","parameters":[],"src":"1122:2:5"},"returnParameters":{"id":907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":906,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"1156:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":905,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1155:9:5"},"scope":917,"src":"1093:97:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"1196:254:5","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":916,"mutability":"mutable","name":"__gap","nameLocation":"1475:5:5","nodeType":"VariableDeclaration","scope":917,"src":"1455:25:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":913,"name":"uint256","nodeType":"ElementaryTypeName","src":"1455:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":915,"length":{"hexValue":"3530","id":914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1463:2:5","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"1455:11:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":918,"src":"687:796:5","usedErrors":[],"usedEvents":[254]}],"src":"101:1383:5"},"id":5},"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[995]},"id":996,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":919,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:6"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":920,"nodeType":"StructuredDocumentation","src":"131:70:6","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":995,"linearizedBaseContracts":[995],"name":"IERC20","nameLocation":"212:6:6","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":921,"nodeType":"StructuredDocumentation","src":"225:158:6","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":929,"name":"Transfer","nameLocation":"394:8:6","nodeType":"EventDefinition","parameters":{"id":928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":923,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:6","nodeType":"VariableDeclaration","scope":929,"src":"403:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":922,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":925,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:6","nodeType":"VariableDeclaration","scope":929,"src":"425:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":924,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":927,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:6","nodeType":"VariableDeclaration","scope":929,"src":"445:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":926,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:6"},"src":"388:72:6"},{"anonymous":false,"documentation":{"id":930,"nodeType":"StructuredDocumentation","src":"466:148:6","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":938,"name":"Approval","nameLocation":"625:8:6","nodeType":"EventDefinition","parameters":{"id":937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":932,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:6","nodeType":"VariableDeclaration","scope":938,"src":"634:21:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":931,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":934,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:6","nodeType":"VariableDeclaration","scope":938,"src":"657:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":933,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":936,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:6","nodeType":"VariableDeclaration","scope":938,"src":"682:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":935,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:6"},"src":"619:78:6"},{"documentation":{"id":939,"nodeType":"StructuredDocumentation","src":"703:66:6","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":944,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:6","nodeType":"FunctionDefinition","parameters":{"id":940,"nodeType":"ParameterList","parameters":[],"src":"794:2:6"},"returnParameters":{"id":943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":944,"src":"820:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":941,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:6"},"scope":995,"src":"774:55:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":945,"nodeType":"StructuredDocumentation","src":"835:72:6","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":952,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:6","nodeType":"FunctionDefinition","parameters":{"id":948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":947,"mutability":"mutable","name":"account","nameLocation":"939:7:6","nodeType":"VariableDeclaration","scope":952,"src":"931:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":946,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:6"},"returnParameters":{"id":951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":952,"src":"971:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":949,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:6"},"scope":995,"src":"912:68:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":953,"nodeType":"StructuredDocumentation","src":"986:202:6","text":" @dev Moves `amount` 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":962,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:6","nodeType":"FunctionDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"mutability":"mutable","name":"to","nameLocation":"1219:2:6","nodeType":"VariableDeclaration","scope":962,"src":"1211:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":957,"mutability":"mutable","name":"amount","nameLocation":"1231:6:6","nodeType":"VariableDeclaration","scope":962,"src":"1223:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:6"},"returnParameters":{"id":961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":960,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":962,"src":"1257:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":959,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:6"},"scope":995,"src":"1193:70:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"1269:264:6","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":972,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:6","nodeType":"FunctionDefinition","parameters":{"id":968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":965,"mutability":"mutable","name":"owner","nameLocation":"1565:5:6","nodeType":"VariableDeclaration","scope":972,"src":"1557:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":964,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":967,"mutability":"mutable","name":"spender","nameLocation":"1580:7:6","nodeType":"VariableDeclaration","scope":972,"src":"1572:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":966,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:6"},"returnParameters":{"id":971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":970,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":972,"src":"1612:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":969,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:6"},"scope":995,"src":"1538:83:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":973,"nodeType":"StructuredDocumentation","src":"1627:642:6","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":982,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:6","nodeType":"FunctionDefinition","parameters":{"id":978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":975,"mutability":"mutable","name":"spender","nameLocation":"2299:7:6","nodeType":"VariableDeclaration","scope":982,"src":"2291:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":974,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":977,"mutability":"mutable","name":"amount","nameLocation":"2316:6:6","nodeType":"VariableDeclaration","scope":982,"src":"2308:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":976,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:6"},"returnParameters":{"id":981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":982,"src":"2342:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":979,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:6"},"scope":995,"src":"2274:74:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":983,"nodeType":"StructuredDocumentation","src":"2354:287:6","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":994,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:6","nodeType":"FunctionDefinition","parameters":{"id":990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":985,"mutability":"mutable","name":"from","nameLocation":"2676:4:6","nodeType":"VariableDeclaration","scope":994,"src":"2668:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":984,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":987,"mutability":"mutable","name":"to","nameLocation":"2690:2:6","nodeType":"VariableDeclaration","scope":994,"src":"2682:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":986,"name":"address","nodeType":"ElementaryTypeName","src":"2682:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":989,"mutability":"mutable","name":"amount","nameLocation":"2702:6:6","nodeType":"VariableDeclaration","scope":994,"src":"2694:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":988,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:42:6"},"returnParameters":{"id":993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":994,"src":"2728:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":991,"name":"bool","nodeType":"ElementaryTypeName","src":"2728:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2727:6:6"},"scope":995,"src":"2646:88:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":996,"src":"202:2534:6","usedErrors":[],"usedEvents":[929,938]}],"src":"106:2631:6"},"id":6},"project/contracts/Gateway.sol":{"ast":{"absolutePath":"project/contracts/Gateway.sol","exportedSymbols":{"ContextUpgradeable":[917],"Gateway":[2144],"GatewaySettingManager":[2420],"IERC20":[995],"IGateway":[2620],"Initializable":[408],"PausableUpgradeable":[536]},"id":2145,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":997,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:7"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","id":998,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2145,"sourceUnit":537,"src":"65:78:7","symbolAliases":[],"unitAlias":""},{"absolutePath":"project/contracts/GatewaySettingManager.sol","file":"./GatewaySettingManager.sol","id":1000,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2145,"sourceUnit":2421,"src":"145:66:7","symbolAliases":[{"foreign":{"id":999,"name":"GatewaySettingManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2420,"src":"153:21:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"project/contracts/interfaces/IGateway.sol","file":"./interfaces/IGateway.sol","id":1003,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2145,"sourceUnit":2621,"src":"212:59:7","symbolAliases":[{"foreign":{"id":1001,"name":"IGateway","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2620,"src":"220:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":1002,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"230:6:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1005,"name":"IGateway","nameLocations":["410:8:7"],"nodeType":"IdentifierPath","referencedDeclaration":2620,"src":"410:8:7"},"id":1006,"nodeType":"InheritanceSpecifier","src":"410:8:7"},{"baseName":{"id":1007,"name":"GatewaySettingManager","nameLocations":["420:21:7"],"nodeType":"IdentifierPath","referencedDeclaration":2420,"src":"420:21:7"},"id":1008,"nodeType":"InheritanceSpecifier","src":"420:21:7"},{"baseName":{"id":1009,"name":"PausableUpgradeable","nameLocations":["443:19:7"],"nodeType":"IdentifierPath","referencedDeclaration":536,"src":"443:19:7"},"id":1010,"nodeType":"InheritanceSpecifier","src":"443:19:7"}],"canonicalName":"Gateway","contractDependencies":[],"contractKind":"contract","documentation":{"id":1004,"nodeType":"StructuredDocumentation","src":"273:116:7","text":" @title Gateway\n @notice This contract serves as a gateway for creating orders and managing settlements."},"fullyImplemented":true,"id":2144,"linearizedBaseContracts":[2144,536,2420,106,239,917,408,2620],"name":"Gateway","nameLocation":"399:7:7","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Gateway.fee","id":1015,"members":[{"constant":false,"id":1012,"mutability":"mutable","name":"protocolFee","nameLocation":"489:11:7","nodeType":"VariableDeclaration","scope":1015,"src":"481:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1011,"name":"uint256","nodeType":"ElementaryTypeName","src":"481:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1014,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"512:23:7","nodeType":"VariableDeclaration","scope":1015,"src":"504:31:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1013,"name":"uint256","nodeType":"ElementaryTypeName","src":"504:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"fee","nameLocation":"473:3:7","nodeType":"StructDefinition","scope":2144,"src":"466:73:7","visibility":"public"},{"constant":false,"id":1020,"mutability":"mutable","name":"order","nameLocation":"576:5:7","nodeType":"VariableDeclaration","scope":2144,"src":"542:39:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"typeName":{"id":1019,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1016,"name":"bytes32","nodeType":"ElementaryTypeName","src":"550:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"542:25:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1018,"nodeType":"UserDefinedTypeName","pathNode":{"id":1017,"name":"Order","nameLocations":["561:5:7"],"nodeType":"IdentifierPath","referencedDeclaration":2530,"src":"561:5:7"},"referencedDeclaration":2530,"src":"561:5:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage_ptr","typeString":"struct IGateway.Order"}}},"visibility":"private"},{"constant":false,"id":1024,"mutability":"mutable","name":"_nonce","nameLocation":"620:6:7","nodeType":"VariableDeclaration","scope":2144,"src":"584:42:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1023,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1021,"name":"address","nodeType":"ElementaryTypeName","src":"592:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"584:27:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1022,"name":"uint256","nodeType":"ElementaryTypeName","src":"603:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":1028,"mutability":"mutable","name":"__gap","nameLocation":"649:5:7","nodeType":"VariableDeclaration","scope":2144,"src":"629:25:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":1025,"name":"uint256","nodeType":"ElementaryTypeName","src":"629:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1027,"length":{"hexValue":"3530","id":1026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"637:2:7","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"629:11:7","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"},{"body":{"id":1035,"nodeType":"Block","src":"722:30:7","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1032,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":389,"src":"726:20:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"726:22:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1034,"nodeType":"ExpressionStatement","src":"726:22:7"}]},"documentation":{"id":1029,"nodeType":"StructuredDocumentation","src":"658:48:7","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":1036,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1030,"nodeType":"ParameterList","parameters":[],"src":"719:2:7"},"returnParameters":{"id":1031,"nodeType":"ParameterList","parameters":[],"src":"722:0:7"},"scope":2144,"src":"708:44:7","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1052,"nodeType":"Block","src":"838:71:7","statements":[{"expression":{"id":1044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1042,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"842:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"3130305f303030","id":1043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"852:7:7","typeDescriptions":{"typeIdentifier":"t_rational_100000_by_1","typeString":"int_const 100000"},"value":"100_000"},"src":"842:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1045,"nodeType":"ExpressionStatement","src":"842:17:7"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1046,"name":"__Ownable2Step_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"863:19:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"863:21:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1048,"nodeType":"ExpressionStatement","src":"863:21:7"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1049,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":440,"src":"888:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"888:17:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1051,"nodeType":"ExpressionStatement","src":"888:17:7"}]},"documentation":{"id":1037,"nodeType":"StructuredDocumentation","src":"755:38:7","text":" @dev Initialize function."},"functionSelector":"8129fc1c","id":1053,"implemented":true,"kind":"function","modifiers":[{"id":1040,"kind":"modifierInvocation","modifierName":{"id":1039,"name":"initializer","nameLocations":["826:11:7"],"nodeType":"IdentifierPath","referencedDeclaration":310,"src":"826:11:7"},"nodeType":"ModifierInvocation","src":"826:11:7"}],"name":"initialize","nameLocation":"804:10:7","nodeType":"FunctionDefinition","parameters":{"id":1038,"nodeType":"ParameterList","parameters":[],"src":"814:2:7"},"returnParameters":{"id":1041,"nodeType":"ParameterList","parameters":[],"src":"838:0:7"},"scope":2144,"src":"795:114:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1065,"nodeType":"Block","src":"1018:72:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1057,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1030:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1034:6:7","memberName":"sender","nodeType":"MemberAccess","src":"1030:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1059,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2157,"src":"1044:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1030:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c7941676772656761746f72","id":1061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1064:16:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""},"value":"OnlyAggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""}],"id":1056,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1022:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1022:59:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1063,"nodeType":"ExpressionStatement","src":"1022:59:7"},{"id":1064,"nodeType":"PlaceholderStatement","src":"1085:1:7"}]},"documentation":{"id":1054,"nodeType":"StructuredDocumentation","src":"912:78:7","text":" @dev Modifier that allows only the aggregator to call a function."},"id":1066,"name":"onlyAggregator","nameLocation":"1001:14:7","nodeType":"ModifierDefinition","parameters":{"id":1055,"nodeType":"ParameterList","parameters":[],"src":"1015:2:7"},"src":"992:98:7","virtual":false,"visibility":"internal"},{"body":{"id":1075,"nodeType":"Block","src":"1361:16:7","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1072,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"1365:6:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1365:8:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1074,"nodeType":"ExpressionStatement","src":"1365:8:7"}]},"documentation":{"id":1067,"nodeType":"StructuredDocumentation","src":"1286:37:7","text":" @dev Pause the contract."},"functionSelector":"8456cb59","id":1076,"implemented":true,"kind":"function","modifiers":[{"id":1070,"kind":"modifierInvocation","modifierName":{"id":1069,"name":"onlyOwner","nameLocations":["1351:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1351:9:7"},"nodeType":"ModifierInvocation","src":"1351:9:7"}],"name":"pause","nameLocation":"1334:5:7","nodeType":"FunctionDefinition","parameters":{"id":1068,"nodeType":"ParameterList","parameters":[],"src":"1339:2:7"},"returnParameters":{"id":1071,"nodeType":"ParameterList","parameters":[],"src":"1361:0:7"},"scope":2144,"src":"1325:52:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1085,"nodeType":"Block","src":"1459:18:7","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1082,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":530,"src":"1463:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1463:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1084,"nodeType":"ExpressionStatement","src":"1463:10:7"}]},"documentation":{"id":1077,"nodeType":"StructuredDocumentation","src":"1380:39:7","text":" @dev Unpause the contract."},"functionSelector":"3f4ba83a","id":1086,"implemented":true,"kind":"function","modifiers":[{"id":1080,"kind":"modifierInvocation","modifierName":{"id":1079,"name":"onlyOwner","nameLocations":["1449:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1449:9:7"},"nodeType":"ModifierInvocation","src":"1449:9:7"}],"name":"unpause","nameLocation":"1430:7:7","nodeType":"FunctionDefinition","parameters":{"id":1078,"nodeType":"ParameterList","parameters":[],"src":"1437:2:7"},"returnParameters":{"id":1081,"nodeType":"ParameterList","parameters":[],"src":"1459:0:7"},"scope":2144,"src":"1421:56:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2550],"body":{"id":1256,"nodeType":"Block","src":"1945:1576:7","statements":[{"expression":{"arguments":[{"id":1109,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"1988:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1110,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"1996:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1111,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"2005:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1112,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1095,"src":"2021:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1113,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"2042:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1108,"name":"_handler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1313,"src":"1979:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,address,uint256) view"}},"id":1114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1979:74:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1115,"nodeType":"ExpressionStatement","src":"1979:74:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1119,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1101,"src":"2098:11:7","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1118,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2092:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1117,"name":"bytes","nodeType":"ElementaryTypeName","src":"2092:5:7","typeDescriptions":{}}},"id":1120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2111:6:7","memberName":"length","nodeType":"MemberAccess","src":"2092:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2121:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2092:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69644d65737361676548617368","id":1124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2124:20:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""},"value":"InvalidMessageHash"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""}],"id":1116,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2084:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2084:61:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1126,"nodeType":"ExpressionStatement","src":"2084:61:7"},{"expression":{"arguments":[{"expression":{"id":1131,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2226:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2230:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2226:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1135,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2246:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_Gateway_$2144","typeString":"contract Gateway"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Gateway_$2144","typeString":"contract Gateway"}],"id":1134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2238:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1133,"name":"address","nodeType":"ElementaryTypeName","src":"2238:7:7","typeDescriptions":{}}},"id":1136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2238:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1137,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"2253:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1138,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"2263:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2253:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1128,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"2205:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1127,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"2198:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2198:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2213:12:7","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":994,"src":"2198:27:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":1140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2198:76:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1141,"nodeType":"ExpressionStatement","src":"2198:76:7"},{"expression":{"id":1146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2329:20:7","subExpression":{"baseExpression":{"id":1142,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1024,"src":"2329:6:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1145,"indexExpression":{"expression":{"id":1143,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2336:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2340:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2336:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2329:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1147,"nodeType":"ExpressionStatement","src":"2329:20:7"},{"expression":{"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1148,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"2417:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":1152,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2448:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2452:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2448:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":1154,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1024,"src":"2460:6:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1157,"indexExpression":{"expression":{"id":1155,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2467:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2471:6:7","memberName":"sender","nodeType":"MemberAccess","src":"2467:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2460:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1158,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2480:5:7","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2486:7:7","memberName":"chainid","nodeType":"MemberAccess","src":"2480:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1150,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2437:3:7","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2441:6:7","memberName":"encode","nodeType":"MemberAccess","src":"2437:10:7","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2437:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1149,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2427:9:7","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2427:68:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2417:78:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1163,"nodeType":"ExpressionStatement","src":"2417:78:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1165,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"2508:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1167,"indexExpression":{"id":1166,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"2514:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2508:14:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2523:6:7","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":2511,"src":"2508:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2541: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":1170,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2533:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1169,"name":"address","nodeType":"ElementaryTypeName","src":"2533:7:7","typeDescriptions":{}}},"id":1172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2533:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2508:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572416c7265616479457869737473","id":1174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2545:20:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""},"value":"OrderAlreadyExists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""}],"id":1164,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2500:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:66:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1176,"nodeType":"ExpressionStatement","src":"2500:66:7"},{"assignments":[1178],"declarations":[{"constant":false,"id":1178,"mutability":"mutable","name":"_protocolFee","nameLocation":"2603:12:7","nodeType":"VariableDeclaration","scope":1256,"src":"2595:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1177,"name":"uint256","nodeType":"ElementaryTypeName","src":"2595:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1179,"nodeType":"VariableDeclarationStatement","src":"2595:20:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1180,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1093,"src":"2623:5:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"313030","id":1181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2632:3:7","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"2623:12:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1220,"nodeType":"Block","src":"2748:299:7","statements":[{"assignments":[1197],"declarations":[{"constant":false,"id":1197,"mutability":"mutable","name":"settings","nameLocation":"2851:8:7","nodeType":"VariableDeclaration","scope":1220,"src":"2827:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1196,"nodeType":"UserDefinedTypeName","pathNode":{"id":1195,"name":"TokenFeeSettings","nameLocations":["2827:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"2827:16:7"},"referencedDeclaration":2170,"src":"2827:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1201,"initialValue":{"baseExpression":{"id":1198,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"2862:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1200,"indexExpression":{"id":1199,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"2880:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2862:25:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2827:60:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1203,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1197,"src":"2900:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2909:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2169,"src":"2900:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2934:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2900:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","id":1207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2937:31:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""},"value":"TokenFeeSettingsNotConfigured"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""}],"id":1202,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2892:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2892:77:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1209,"nodeType":"ExpressionStatement","src":"2892:77:7"},{"expression":{"id":1218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1210,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"2974:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1211,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"2990:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1212,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1197,"src":"3000:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1213,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3009:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2169,"src":"3000:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2990:41:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1215,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2989:43:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1216,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"3035:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2989:53:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2974:68:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1219,"nodeType":"ExpressionStatement","src":"2974:68:7"}]},"id":1221,"nodeType":"IfStatement","src":"2619:428:7","trueBody":{"id":1194,"nodeType":"Block","src":"2637:105:7","statements":[{"expression":{"id":1185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1183,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"2674:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2689:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2674:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1186,"nodeType":"ExpressionStatement","src":"2674:16:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1188,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"2703:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2716:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2703:14:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53656e64657246656549735a65726f","id":1191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2719:17:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","typeString":"literal_string \"SenderFeeIsZero\""},"value":"SenderFeeIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","typeString":"literal_string \"SenderFeeIsZero\""}],"id":1187,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2695:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2695:42:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1193,"nodeType":"ExpressionStatement","src":"2695:42:7"}]}},{"expression":{"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1222,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"3050:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1224,"indexExpression":{"id":1223,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"3056:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3050:14:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1226,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3086:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3090:6:7","memberName":"sender","nodeType":"MemberAccess","src":"3086:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1228,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"3108:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1229,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1095,"src":"3139:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1230,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1097,"src":"3174:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1231,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3202:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3232:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"66616c7365","id":1233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3254:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":1234,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"3279:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1237,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"3317:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3310:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":1235,"name":"uint64","nodeType":"ElementaryTypeName","src":"3310:6:7","typeDescriptions":{}}},"id":1238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3310:15:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":1239,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"3338:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1225,"name":"Order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2530,"src":"3067:5:7","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Order_$2530_storage_ptr_$","typeString":"type(struct IGateway.Order storage pointer)"}},"id":1240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3078:6:7","3101:5:7","3119:18:7","3163:9:7","3189:11:7","3219:11:7","3242:10:7","3264:13:7","3298:10:7","3330:6:7"],"names":["sender","token","senderFeeRecipient","senderFee","protocolFee","isFulfilled","isRefunded","refundAddress","currentBPS","amount"],"nodeType":"FunctionCall","src":"3067:283:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_memory_ptr","typeString":"struct IGateway.Order memory"}},"src":"3050:300:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1242,"nodeType":"ExpressionStatement","src":"3050:300:7"},{"eventCall":{"arguments":[{"id":1244,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1099,"src":"3407:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1245,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"3426:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1246,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"3437:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1248,"indexExpression":{"id":1247,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"3443:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3437:14:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1249,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3452:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2529,"src":"3437:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1250,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3463:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1251,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1106,"src":"3480:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1252,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1093,"src":"3492:5:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":1253,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1101,"src":"3502:11:7","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1243,"name":"OrderCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2442,"src":"3390:12:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes32_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,uint256,bytes32,uint256,string memory)"}},"id":1254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3390:127:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1255,"nodeType":"EmitStatement","src":"3385:132:7"}]},"documentation":{"id":1087,"nodeType":"StructuredDocumentation","src":"1668:39:7","text":"@dev See {createOrder-IGateway}. "},"functionSelector":"809804f7","id":1257,"implemented":true,"kind":"function","modifiers":[{"id":1104,"kind":"modifierInvocation","modifierName":{"id":1103,"name":"whenNotPaused","nameLocations":["1905:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"1905:13:7"},"nodeType":"ModifierInvocation","src":"1905:13:7"}],"name":"createOrder","nameLocation":"1718:11:7","nodeType":"FunctionDefinition","parameters":{"id":1102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"mutability":"mutable","name":"_token","nameLocation":"1741:6:7","nodeType":"VariableDeclaration","scope":1257,"src":"1733:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1088,"name":"address","nodeType":"ElementaryTypeName","src":"1733:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1091,"mutability":"mutable","name":"_amount","nameLocation":"1759:7:7","nodeType":"VariableDeclaration","scope":1257,"src":"1751:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1090,"name":"uint256","nodeType":"ElementaryTypeName","src":"1751:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1093,"mutability":"mutable","name":"_rate","nameLocation":"1777:5:7","nodeType":"VariableDeclaration","scope":1257,"src":"1770:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":1092,"name":"uint96","nodeType":"ElementaryTypeName","src":"1770:6:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":1095,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"1794:19:7","nodeType":"VariableDeclaration","scope":1257,"src":"1786:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1094,"name":"address","nodeType":"ElementaryTypeName","src":"1786:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1097,"mutability":"mutable","name":"_senderFee","nameLocation":"1825:10:7","nodeType":"VariableDeclaration","scope":1257,"src":"1817:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1096,"name":"uint256","nodeType":"ElementaryTypeName","src":"1817:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1099,"mutability":"mutable","name":"_refundAddress","nameLocation":"1847:14:7","nodeType":"VariableDeclaration","scope":1257,"src":"1839:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1098,"name":"address","nodeType":"ElementaryTypeName","src":"1839:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1101,"mutability":"mutable","name":"messageHash","nameLocation":"1881:11:7","nodeType":"VariableDeclaration","scope":1257,"src":"1865:27:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1100,"name":"string","nodeType":"ElementaryTypeName","src":"1865:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1729:166:7"},"returnParameters":{"id":1107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1106,"mutability":"mutable","name":"orderId","nameLocation":"1936:7:7","nodeType":"VariableDeclaration","scope":1257,"src":"1928:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1105,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1928:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1927:17:7"},"scope":2144,"src":"1709:1812:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1312,"nodeType":"Block","src":"4065:276:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1272,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2161,"src":"4077:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1274,"indexExpression":{"id":1273,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1260,"src":"4095:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4077:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4106:1:7","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4077:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e4e6f74537570706f72746564","id":1277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4109:19:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""},"value":"TokenNotSupported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""}],"id":1271,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4069:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4069:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1279,"nodeType":"ExpressionStatement","src":"4069:60:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1281,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"4141:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4152:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4141:12:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e7449735a65726f","id":1284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4155:14:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""},"value":"AmountIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""}],"id":1280,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4133:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4133:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1286,"nodeType":"ExpressionStatement","src":"4133:37:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1288,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"4182:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4208: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":1290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4200:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1289,"name":"address","nodeType":"ElementaryTypeName","src":"4200:7:7","typeDescriptions":{}}},"id":1292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4200:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4182:28:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5468726f775a65726f41646472657373","id":1294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4212:18:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""},"value":"ThrowZeroAddress"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""}],"id":1287,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4174:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4174:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1296,"nodeType":"ExpressionStatement","src":"4174:57:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1297,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1268,"src":"4240:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4254:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4240:15:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1311,"nodeType":"IfStatement","src":"4236:102:7","trueBody":{"id":1310,"nodeType":"Block","src":"4257:81:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1301,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1266,"src":"4270:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4301: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":1303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4293:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1302,"name":"address","nodeType":"ElementaryTypeName","src":"4293:7:7","typeDescriptions":{}}},"id":1305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4293:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4270:33:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","id":1307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4305:27:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""},"value":"InvalidSenderFeeRecipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""}],"id":1300,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4262:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:71:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1309,"nodeType":"ExpressionStatement","src":"4262:71:7"}]}}]},"documentation":{"id":1258,"nodeType":"StructuredDocumentation","src":"3524:388:7","text":" @dev Internal function to handle order creation.\n @param _token The address of the token being traded.\n @param _amount The amount of tokens being traded.\n @param _refundAddress The address to refund the tokens in case of cancellation.\n @param _senderFeeRecipient The address of the recipient for the sender fee.\n @param _senderFee The amount of the sender fee."},"id":1313,"implemented":true,"kind":"function","modifiers":[],"name":"_handler","nameLocation":"3923:8:7","nodeType":"FunctionDefinition","parameters":{"id":1269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1260,"mutability":"mutable","name":"_token","nameLocation":"3943:6:7","nodeType":"VariableDeclaration","scope":1313,"src":"3935:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1259,"name":"address","nodeType":"ElementaryTypeName","src":"3935:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1262,"mutability":"mutable","name":"_amount","nameLocation":"3961:7:7","nodeType":"VariableDeclaration","scope":1313,"src":"3953:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1261,"name":"uint256","nodeType":"ElementaryTypeName","src":"3953:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1264,"mutability":"mutable","name":"_refundAddress","nameLocation":"3980:14:7","nodeType":"VariableDeclaration","scope":1313,"src":"3972:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1263,"name":"address","nodeType":"ElementaryTypeName","src":"3972:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1266,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"4006:19:7","nodeType":"VariableDeclaration","scope":1313,"src":"3998:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1265,"name":"address","nodeType":"ElementaryTypeName","src":"3998:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1268,"mutability":"mutable","name":"_senderFee","nameLocation":"4037:10:7","nodeType":"VariableDeclaration","scope":1313,"src":"4029:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1267,"name":"uint256","nodeType":"ElementaryTypeName","src":"4029:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3931:119:7"},"returnParameters":{"id":1270,"nodeType":"ParameterList","parameters":[],"src":"4065:0:7"},"scope":2144,"src":"3914:427:7","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[2566],"body":{"id":1555,"nodeType":"Block","src":"4767:2229:7","statements":[{"expression":{"arguments":[{"id":1336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4830:28:7","subExpression":{"expression":{"baseExpression":{"id":1332,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"4831:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1334,"indexExpression":{"id":1333,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"4837:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4831:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1335,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4847:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2521,"src":"4831:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":1337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4860:16:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":1331,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4822:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4822:55:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1339,"nodeType":"ExpressionStatement","src":"4822:55:7"},{"expression":{"arguments":[{"id":1345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4889:27:7","subExpression":{"expression":{"baseExpression":{"id":1341,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"4890:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1343,"indexExpression":{"id":1342,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"4896:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4890:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1344,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4906:10:7","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2523,"src":"4890:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":1346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4918:15:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":1340,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4881:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:53:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1348,"nodeType":"ExpressionStatement","src":"4881:53:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1350,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"4946:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1351,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"4964:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4946:25:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696452656261746550657263656e74","id":1353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4973:22:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325","typeString":"literal_string \"InvalidRebatePercent\""},"value":"InvalidRebatePercent"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b679235e063b38970961cc13485e28458403e5577be76917c328414bc9581325","typeString":"literal_string \"InvalidRebatePercent\""}],"id":1349,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4938:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4938:58:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1355,"nodeType":"ExpressionStatement","src":"4938:58:7"},{"assignments":[1357],"declarations":[{"constant":false,"id":1357,"mutability":"mutable","name":"token","nameLocation":"5041:5:7","nodeType":"VariableDeclaration","scope":1555,"src":"5033:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1356,"name":"address","nodeType":"ElementaryTypeName","src":"5033:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1362,"initialValue":{"expression":{"baseExpression":{"id":1358,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5049:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1360,"indexExpression":{"id":1359,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5055:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5049:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1361,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5065:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"5049:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5033:37:7"},{"assignments":[1364],"declarations":[{"constant":false,"id":1364,"mutability":"mutable","name":"currentOrderBPS","nameLocation":"5145:15:7","nodeType":"VariableDeclaration","scope":1555,"src":"5137:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1363,"name":"uint256","nodeType":"ElementaryTypeName","src":"5137:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1369,"initialValue":{"expression":{"baseExpression":{"id":1365,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5163:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1367,"indexExpression":{"id":1366,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5169:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5163:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1368,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5179:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2527,"src":"5163:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"VariableDeclarationStatement","src":"5137:52:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":1373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1371,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5201:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5218:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5201:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1374,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5223:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1375,"name":"currentOrderBPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1364,"src":"5241:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5223:33:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5201:55:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c6964536574746c6550657263656e74","id":1378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5258:22:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_743dad5224dc289d7e19e9f682872f71f5b60dacb182b9d01db88f90dd62d93d","typeString":"literal_string \"InvalidSettlePercent\""},"value":"InvalidSettlePercent"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_743dad5224dc289d7e19e9f682872f71f5b60dacb182b9d01db88f90dd62d93d","typeString":"literal_string \"InvalidSettlePercent\""}],"id":1370,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5193:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5193:88:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1380,"nodeType":"ExpressionStatement","src":"5193:88:7"},{"expression":{"id":1386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1381,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5285:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1383,"indexExpression":{"id":1382,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5291:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5285:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1384,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5301:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2527,"src":"5285:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1385,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5315:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5285:44:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":1387,"nodeType":"ExpressionStatement","src":"5285:44:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1388,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5338:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1390,"indexExpression":{"id":1389,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5344:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5338:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1391,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5354:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2527,"src":"5338:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1392,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5368:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5338:31:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1430,"nodeType":"IfStatement","src":"5334:366:7","trueBody":{"id":1429,"nodeType":"Block","src":"5371:329:7","statements":[{"expression":{"id":1399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1394,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5421:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1396,"indexExpression":{"id":1395,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5427:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5421:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1397,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5437:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2521,"src":"5421:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5451:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5421:34:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1400,"nodeType":"ExpressionStatement","src":"5421:34:7"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1401,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5465:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1403,"indexExpression":{"id":1402,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5471:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5465:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1404,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5481:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2517,"src":"5465:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5494:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5465:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1407,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5499:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1409,"indexExpression":{"id":1408,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5505:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5499:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5515:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2519,"src":"5499:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5530:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5499:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5465:66:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1428,"nodeType":"IfStatement","src":"5461:235:7","trueBody":{"id":1427,"nodeType":"Block","src":"5533:163:7","statements":[{"expression":{"arguments":[{"id":1415,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5611:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1416,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"5621:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1417,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5628:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1419,"indexExpression":{"id":1418,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5634:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5628:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5644:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2515,"src":"5628:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1421,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5664:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1423,"indexExpression":{"id":1422,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5670:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5664:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5680:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2517,"src":"5664:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1414,"name":"_handleFxTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2143,"src":"5581:29:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,address,uint256)"}},"id":1425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5581:109:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1426,"nodeType":"ExpressionStatement","src":"5581:109:7"}]}}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1431,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5708:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1433,"indexExpression":{"id":1432,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5714:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5708:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1434,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5724:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2517,"src":"5708:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1435,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5737:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5708:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1437,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5742:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1439,"indexExpression":{"id":1438,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5748:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5742:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1440,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5758:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2519,"src":"5742:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1441,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5773:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5742:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5708:66:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1455,"nodeType":"IfStatement","src":"5704:236:7","trueBody":{"id":1454,"nodeType":"Block","src":"5776:164:7","statements":[{"expression":{"arguments":[{"id":1445,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5854:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1446,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1320,"src":"5864:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1447,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"5884:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1449,"indexExpression":{"id":1448,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"5890:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5884:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1450,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5900:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2515,"src":"5884:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1451,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"5920:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":1444,"name":"_handleLocalTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2067,"src":"5821:32:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint64_$returns$__$","typeString":"function (bytes32,address,address,uint64)"}},"id":1452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5821:114:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1453,"nodeType":"ExpressionStatement","src":"5821:114:7"}]}},{"assignments":[1457],"declarations":[{"constant":false,"id":1457,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"5988:23:7","nodeType":"VariableDeclaration","scope":1555,"src":"5980:31:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1456,"name":"uint256","nodeType":"ElementaryTypeName","src":"5980:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1467,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1458,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"6015:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1460,"indexExpression":{"id":1459,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6021:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6015:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1461,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6031:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2529,"src":"6015:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1462,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"6040:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6015:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1464,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6014:41:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1465,"name":"currentOrderBPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1364,"src":"6058:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6014:59:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5980:93:7"},{"expression":{"id":1473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1468,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"6077:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1470,"indexExpression":{"id":1469,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6083:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6077:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1471,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6093:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2529,"src":"6077:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1472,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"6103:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6077:49:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1474,"nodeType":"ExpressionStatement","src":"6077:49:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1475,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"6135:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1477,"indexExpression":{"id":1476,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6141:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6135:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1478,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6151:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2519,"src":"6135:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6166:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6135:32:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1536,"nodeType":"IfStatement","src":"6131:635:7","trueBody":{"id":1535,"nodeType":"Block","src":"6169:597:7","statements":[{"assignments":[1483],"declarations":[{"constant":false,"id":1483,"mutability":"mutable","name":"settings","nameLocation":"6259:8:7","nodeType":"VariableDeclaration","scope":1535,"src":"6235:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1482,"nodeType":"UserDefinedTypeName","pathNode":{"id":1481,"name":"TokenFeeSettings","nameLocations":["6235:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"6235:16:7"},"referencedDeclaration":2170,"src":"6235:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1490,"initialValue":{"baseExpression":{"id":1484,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"6270:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1489,"indexExpression":{"expression":{"baseExpression":{"id":1485,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"6288:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1487,"indexExpression":{"id":1486,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6294:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6288:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1488,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6304:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"6288:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6270:40:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6235:75:7"},{"assignments":[1492],"declarations":[{"constant":false,"id":1492,"mutability":"mutable","name":"aggregatorFee","nameLocation":"6323:13:7","nodeType":"VariableDeclaration","scope":1535,"src":"6315:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1491,"name":"uint256","nodeType":"ElementaryTypeName","src":"6315:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1500,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1493,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"6340:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1494,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"6366:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1495,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6375:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2169,"src":"6366:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:57:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1497,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6339:59:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1498,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"6401:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6339:69:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6315:93:7"},{"expression":{"id":1503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1501,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"6413:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1502,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"6440:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6413:40:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1504,"nodeType":"ExpressionStatement","src":"6413:40:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":1507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1505,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"6463:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6481:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6463:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1526,"nodeType":"IfStatement","src":"6459:213:7","trueBody":{"id":1525,"nodeType":"Block","src":"6484:188:7","statements":[{"assignments":[1509],"declarations":[{"constant":false,"id":1509,"mutability":"mutable","name":"rebateAmount","nameLocation":"6529:12:7","nodeType":"VariableDeclaration","scope":1525,"src":"6521:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1508,"name":"uint256","nodeType":"ElementaryTypeName","src":"6521:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1516,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1510,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"6545:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1511,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"6561:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6545:30:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1513,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6544:32:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1514,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"6579:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6544:42:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6521:65:7"},{"expression":{"id":1519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1517,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"6592:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1518,"name":"rebateAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1509,"src":"6609:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6592:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1520,"nodeType":"ExpressionStatement","src":"6592:29:7"},{"expression":{"id":1523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1521,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"6627:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1522,"name":"rebateAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1509,"src":"6654:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6627:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1524,"nodeType":"ExpressionStatement","src":"6627:39:7"}]}},{"expression":{"arguments":[{"id":1531,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"6730:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1532,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"6747:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1528,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"6714:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1527,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"6707:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6707:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6721:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"6707:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6707:54:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1534,"nodeType":"ExpressionStatement","src":"6707:54:7"}]}},{"expression":{"arguments":[{"id":1541,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1320,"src":"6793:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1542,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"6813:23:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1538,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"6777:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1537,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"6770:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6770:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6784:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"6770:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6770:67:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1544,"nodeType":"ExpressionStatement","src":"6770:67:7"},{"eventCall":{"arguments":[{"id":1546,"name":"_splitOrderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"6885:13:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1547,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"6903:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1548,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1320,"src":"6916:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1549,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1322,"src":"6939:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":1550,"name":"_rebatePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"6958:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":1545,"name":"SettleOut","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2455,"src":"6871:9:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_address_$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (bytes32,bytes32,address,uint64,uint64)"}},"id":1551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6871:105:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1552,"nodeType":"EmitStatement","src":"6866:110:7"},{"expression":{"hexValue":"74727565","id":1553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6988:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1330,"id":1554,"nodeType":"Return","src":"6981:11:7"}]},"documentation":{"id":1314,"nodeType":"StructuredDocumentation","src":"4542:37:7","text":"@dev See {settleOut-IGateway}. "},"functionSelector":"32553efa","id":1556,"implemented":true,"kind":"function","modifiers":[{"id":1327,"kind":"modifierInvocation","modifierName":{"id":1326,"name":"onlyAggregator","nameLocations":["4737:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":1066,"src":"4737:14:7"},"nodeType":"ModifierInvocation","src":"4737:14:7"}],"name":"settleOut","nameLocation":"4590:9:7","nodeType":"FunctionDefinition","parameters":{"id":1325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1316,"mutability":"mutable","name":"_splitOrderId","nameLocation":"4611:13:7","nodeType":"VariableDeclaration","scope":1556,"src":"4603:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1315,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4603:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1318,"mutability":"mutable","name":"_orderId","nameLocation":"4636:8:7","nodeType":"VariableDeclaration","scope":1556,"src":"4628:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4628:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1320,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"4656:18:7","nodeType":"VariableDeclaration","scope":1556,"src":"4648:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1319,"name":"address","nodeType":"ElementaryTypeName","src":"4648:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1322,"mutability":"mutable","name":"_settlePercent","nameLocation":"4685:14:7","nodeType":"VariableDeclaration","scope":1556,"src":"4678:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1321,"name":"uint64","nodeType":"ElementaryTypeName","src":"4678:6:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":1324,"mutability":"mutable","name":"_rebatePercent","nameLocation":"4710:14:7","nodeType":"VariableDeclaration","scope":1556,"src":"4703:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1323,"name":"uint64","nodeType":"ElementaryTypeName","src":"4703:6:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4599:128:7"},"returnParameters":{"id":1330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1329,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1556,"src":"4761:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1328,"name":"bool","nodeType":"ElementaryTypeName","src":"4761:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4760:6:7"},"scope":2144,"src":"4581:2415:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2586],"body":{"id":1782,"nodeType":"Block","src":"7243:1907:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1579,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"7255:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1581,"indexExpression":{"id":1580,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"7261:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7255:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1582,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7271:6:7","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":2511,"src":"7255:22:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7289: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":1584,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7281:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1583,"name":"address","nodeType":"ElementaryTypeName","src":"7281:7:7","typeDescriptions":{}}},"id":1586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7281:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7255:36:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572416c7265616479457869737473","id":1588,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7293:20:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""},"value":"OrderAlreadyExists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2fade1ba6be50acb9572aa4307791e78c54e53cfeb5afd7cd31927dbb8723ebe","typeString":"literal_string \"OrderAlreadyExists\""}],"id":1578,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7247:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7247:67:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1590,"nodeType":"ExpressionStatement","src":"7247:67:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1592,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"7326:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1593,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"7336:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7326:17:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c6964416d6f756e74","id":1595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7345:15:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_483313f3910f88408dc57d1e1e6afbe0d5fb0a2ab36e197f65b49ed489f7c914","typeString":"literal_string \"InvalidAmount\""},"value":"InvalidAmount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_483313f3910f88408dc57d1e1e6afbe0d5fb0a2ab36e197f65b49ed489f7c914","typeString":"literal_string \"InvalidAmount\""}],"id":1591,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7318:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7318:43:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1597,"nodeType":"ExpressionStatement","src":"7318:43:7"},{"expression":{"arguments":[{"id":1599,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"7374:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1600,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"7382:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1601,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1569,"src":"7391:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1602,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"7403:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1603,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1567,"src":"7424:10:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":1598,"name":"_handler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1313,"src":"7365:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,address,uint256) view"}},"id":1604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7365:70:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1605,"nodeType":"ExpressionStatement","src":"7365:70:7"},{"expression":{"arguments":[{"expression":{"id":1610,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7468:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7472:6:7","memberName":"sender","nodeType":"MemberAccess","src":"7468:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1614,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7488:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_Gateway_$2144","typeString":"contract Gateway"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Gateway_$2144","typeString":"contract Gateway"}],"id":1613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7480:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1612,"name":"address","nodeType":"ElementaryTypeName","src":"7480:7:7","typeDescriptions":{}}},"id":1615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7480:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1616,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"7495:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1617,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1567,"src":"7505:10:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"7495:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1607,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"7447:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1606,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"7440:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7440:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7455:12:7","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":994,"src":"7440:27:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":1619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7440:76:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1620,"nodeType":"ExpressionStatement","src":"7440:76:7"},{"assignments":[1622],"declarations":[{"constant":false,"id":1622,"mutability":"mutable","name":"amountToSettle","nameLocation":"7529:14:7","nodeType":"VariableDeclaration","scope":1782,"src":"7521:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1621,"name":"uint256","nodeType":"ElementaryTypeName","src":"7521:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1624,"initialValue":{"id":1623,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"7546:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7521:32:7"},{"assignments":[1626],"declarations":[{"constant":false,"id":1626,"mutability":"mutable","name":"aggregatorFee","nameLocation":"7565:13:7","nodeType":"VariableDeclaration","scope":1782,"src":"7557:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1625,"name":"uint256","nodeType":"ElementaryTypeName","src":"7557:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1627,"nodeType":"VariableDeclarationStatement","src":"7557:21:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1628,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"7648:5:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"313030","id":1629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7657:3:7","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"7648:12:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1681,"nodeType":"Block","src":"7770:426:7","statements":[{"assignments":[1641],"declarations":[{"constant":false,"id":1641,"mutability":"mutable","name":"settings","nameLocation":"7860:8:7","nodeType":"VariableDeclaration","scope":1681,"src":"7836:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1640,"nodeType":"UserDefinedTypeName","pathNode":{"id":1639,"name":"TokenFeeSettings","nameLocations":["7836:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"7836:16:7"},"referencedDeclaration":2170,"src":"7836:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1645,"initialValue":{"baseExpression":{"id":1642,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"7871:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1644,"indexExpression":{"id":1643,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"7889:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7871:25:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"7836:60:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1647,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1641,"src":"7909:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1648,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7918:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2169,"src":"7909:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7943:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7909:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e46656553657474696e67734e6f74436f6e66696775726564","id":1651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7946:31:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""},"value":"TokenFeeSettingsNotConfigured"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bd05ce19c296f78f976314748ca985b666aa3915d6581a37d56fc6f4bc0d6934","typeString":"literal_string \"TokenFeeSettingsNotConfigured\""}],"id":1646,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7901:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7901:77:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1653,"nodeType":"ExpressionStatement","src":"7901:77:7"},{"expression":{"id":1662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1654,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"7987:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1655,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"8004:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1656,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1641,"src":"8014:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1657,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8023:22:7","memberName":"providerToAggregatorFx","nodeType":"MemberAccess","referencedDeclaration":2169,"src":"8014:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8004:41:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1659,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8003:43:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1660,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"8049:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8003:53:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7987:69:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1663,"nodeType":"ExpressionStatement","src":"7987:69:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1664,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"8069:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8085:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8069:17:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1680,"nodeType":"IfStatement","src":"8065:127:7","trueBody":{"id":1679,"nodeType":"Block","src":"8088:104:7","statements":[{"expression":{"id":1669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1667,"name":"amountToSettle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"8094:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1668,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"8112:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8094:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1670,"nodeType":"ExpressionStatement","src":"8094:31:7"},{"expression":{"arguments":[{"id":1675,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"8155:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1676,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"8172:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1672,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"8138:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1671,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"8131:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8131:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8146:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"8131:23:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8131:55:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1678,"nodeType":"ExpressionStatement","src":"8131:55:7"}]}}]},"id":1682,"nodeType":"IfStatement","src":"7644:552:7","trueBody":{"id":1638,"nodeType":"Block","src":"7662:102:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1632,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1567,"src":"7725:10:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7738:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7725:14:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53656e64657246656549735a65726f","id":1635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7741:17:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","typeString":"literal_string \"SenderFeeIsZero\""},"value":"SenderFeeIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_208518329c56847de7eaf56d8d0588123d31188fb9de71a88b868a05c56a562c","typeString":"literal_string \"SenderFeeIsZero\""}],"id":1631,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7717:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7717:42:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1637,"nodeType":"ExpressionStatement","src":"7717:42:7"}]}},{"expression":{"id":1688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1683,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8200:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1685,"indexExpression":{"id":1684,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8206:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8200:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1686,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8216:6:7","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":2511,"src":"8200:22:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1687,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1569,"src":"8225:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8200:35:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1689,"nodeType":"ExpressionStatement","src":"8200:35:7"},{"expression":{"id":1695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1690,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8239:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1692,"indexExpression":{"id":1691,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8245:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8239:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8255:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"8239:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1694,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"8263:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8239:30:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1696,"nodeType":"ExpressionStatement","src":"8239:30:7"},{"expression":{"id":1702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1697,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8273:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1699,"indexExpression":{"id":1698,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8279:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8273:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1700,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8289:18:7","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":2515,"src":"8273:34:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1701,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"8310:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8273:56:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1703,"nodeType":"ExpressionStatement","src":"8273:56:7"},{"expression":{"id":1709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1704,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8333:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1706,"indexExpression":{"id":1705,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8339:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8333:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1707,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8349:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2517,"src":"8333:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1708,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1567,"src":"8361:10:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"8333:38:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1710,"nodeType":"ExpressionStatement","src":"8333:38:7"},{"expression":{"id":1716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1711,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8375:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1713,"indexExpression":{"id":1712,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8381:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8375:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1714,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8391:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2519,"src":"8375:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1715,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"8405:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8375:43:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1717,"nodeType":"ExpressionStatement","src":"8375:43:7"},{"expression":{"id":1723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1718,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8422:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1720,"indexExpression":{"id":1719,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8428:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8422:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1721,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8438:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2521,"src":"8422:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8452:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"8422:34:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1724,"nodeType":"ExpressionStatement","src":"8422:34:7"},{"expression":{"id":1730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1725,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"8460:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1727,"indexExpression":{"id":1726,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8466:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8460:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1728,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8476:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2529,"src":"8460:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1729,"name":"amountToSettle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"8485:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8460:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1731,"nodeType":"ExpressionStatement","src":"8460:39:7"},{"expression":{"arguments":[{"id":1736,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1569,"src":"8528:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1737,"name":"amountToSettle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"8540:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1733,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"8511:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1732,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"8504:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8504:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8519:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"8504:23:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8504:51:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1739,"nodeType":"ExpressionStatement","src":"8504:51:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1740,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1567,"src":"8620:10:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1741,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8634:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8620:15:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1768,"nodeType":"IfStatement","src":"8616:365:7","trueBody":{"id":1767,"nodeType":"Block","src":"8637:344:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1743,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"8646:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8663:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8646:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1765,"nodeType":"Block","src":"8816:161:7","statements":[{"expression":{"arguments":[{"id":1759,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8921:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1760,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"8931:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1761,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"8939:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1762,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1567,"src":"8960:10:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":1758,"name":"_handleFxTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2143,"src":"8891:29:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,address,uint256)"}},"id":1763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8891:80:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1764,"nodeType":"ExpressionStatement","src":"8891:80:7"}]},"id":1766,"nodeType":"IfStatement","src":"8642:335:7","trueBody":{"id":1757,"nodeType":"Block","src":"8666:144:7","statements":[{"expression":{"arguments":[{"id":1747,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"8745:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":1748,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8755:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8759:6:7","memberName":"sender","nodeType":"MemberAccess","src":"8755:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1750,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"8767:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1753,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"8795:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1752,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8788:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":1751,"name":"uint64","nodeType":"ElementaryTypeName","src":"8788:6:7","typeDescriptions":{}}},"id":1754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8788:15:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":1746,"name":"_handleLocalTransferFeeSplitting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2067,"src":"8712:32:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint64_$returns$__$","typeString":"function (bytes32,address,address,uint64)"}},"id":1755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8712:92:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1756,"nodeType":"ExpressionStatement","src":"8712:92:7"}]}}]}},{"eventCall":{"arguments":[{"id":1770,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1559,"src":"9030:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":1771,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"9043:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9047:6:7","memberName":"sender","nodeType":"MemberAccess","src":"9043:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1773,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1569,"src":"9058:10:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1774,"name":"amountToSettle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"9073:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1775,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"9092:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1776,"name":"aggregatorFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"9103:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1777,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"9121:5:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":1769,"name":"SettleIn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2472,"src":"9017:8:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint256_$_t_address_$_t_uint256_$_t_uint96_$returns$__$","typeString":"function (bytes32,address,address,uint256,address,uint256,uint96)"}},"id":1778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9017:113:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1779,"nodeType":"EmitStatement","src":"9012:118:7"},{"expression":{"hexValue":"74727565","id":1780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9142:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1577,"id":1781,"nodeType":"Return","src":"9135:11:7"}]},"documentation":{"id":1557,"nodeType":"StructuredDocumentation","src":"6999:36:7","text":"@dev See {settleIn-IGateway}. "},"functionSelector":"d839de63","id":1783,"implemented":true,"kind":"function","modifiers":[{"id":1574,"kind":"modifierInvocation","modifierName":{"id":1573,"name":"whenNotPaused","nameLocations":["7214:13:7"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"7214:13:7"},"nodeType":"ModifierInvocation","src":"7214:13:7"}],"name":"settleIn","nameLocation":"7046:8:7","nodeType":"FunctionDefinition","parameters":{"id":1572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1559,"mutability":"mutable","name":"_orderId","nameLocation":"7066:8:7","nodeType":"VariableDeclaration","scope":1783,"src":"7058:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1558,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7058:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1561,"mutability":"mutable","name":"_token","nameLocation":"7086:6:7","nodeType":"VariableDeclaration","scope":1783,"src":"7078:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1560,"name":"address","nodeType":"ElementaryTypeName","src":"7078:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1563,"mutability":"mutable","name":"_amount","nameLocation":"7104:7:7","nodeType":"VariableDeclaration","scope":1783,"src":"7096:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1562,"name":"uint256","nodeType":"ElementaryTypeName","src":"7096:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1565,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"7123:19:7","nodeType":"VariableDeclaration","scope":1783,"src":"7115:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1564,"name":"address","nodeType":"ElementaryTypeName","src":"7115:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1567,"mutability":"mutable","name":"_senderFee","nameLocation":"7153:10:7","nodeType":"VariableDeclaration","scope":1783,"src":"7146:17:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":1566,"name":"uint96","nodeType":"ElementaryTypeName","src":"7146:6:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":1569,"mutability":"mutable","name":"_recipient","nameLocation":"7175:10:7","nodeType":"VariableDeclaration","scope":1783,"src":"7167:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1568,"name":"address","nodeType":"ElementaryTypeName","src":"7167:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1571,"mutability":"mutable","name":"_rate","nameLocation":"7196:5:7","nodeType":"VariableDeclaration","scope":1783,"src":"7189:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":1570,"name":"uint96","nodeType":"ElementaryTypeName","src":"7189:6:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"7054:150:7"},"returnParameters":{"id":1577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1576,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1783,"src":"7237:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1575,"name":"bool","nodeType":"ElementaryTypeName","src":"7237:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7236:6:7"},"scope":2144,"src":"7037:2113:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2596],"body":{"id":1888,"nodeType":"Block","src":"9276:833:7","statements":[{"expression":{"arguments":[{"id":1800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9339:28:7","subExpression":{"expression":{"baseExpression":{"id":1796,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9340:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1798,"indexExpression":{"id":1797,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9346:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9340:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1799,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9356:11:7","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":2521,"src":"9340:27:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":1801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9369:16:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":1795,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9331:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9331:55:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1803,"nodeType":"ExpressionStatement","src":"9331:55:7"},{"expression":{"arguments":[{"id":1809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9398:27:7","subExpression":{"expression":{"baseExpression":{"id":1805,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9399:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1807,"indexExpression":{"id":1806,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9405:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9399:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1808,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9415:10:7","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2523,"src":"9399:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":1810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9427:15:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":1804,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9390:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9390:53:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1812,"nodeType":"ExpressionStatement","src":"9390:53:7"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1814,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9455:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1816,"indexExpression":{"id":1815,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9461:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9455:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1817,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9471:11:7","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":2519,"src":"9455:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1818,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"9486:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9455:35:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4665654578636565647350726f746f636f6c466565","id":1820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9492:23:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""},"value":"FeeExceedsProtocolFee"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""}],"id":1813,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9447:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9447:69:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1822,"nodeType":"ExpressionStatement","src":"9447:69:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1823,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"9525:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9532:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9525:8:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1838,"nodeType":"IfStatement","src":"9521:127:7","trueBody":{"id":1837,"nodeType":"Block","src":"9535:113:7","statements":[{"expression":{"arguments":[{"id":1833,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"9621:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1834,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"9638:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1827,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9589:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1829,"indexExpression":{"id":1828,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9595:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9589:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1830,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9605:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"9589:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1826,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"9582:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9582:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9612:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"9582:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9582:61:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1836,"nodeType":"ExpressionStatement","src":"9582:61:7"}]}},{"expression":{"id":1844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1839,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9676:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1841,"indexExpression":{"id":1840,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9682:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9676:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1842,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9692:10:7","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":2523,"src":"9676:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9705:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9676:33:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1845,"nodeType":"ExpressionStatement","src":"9676:33:7"},{"expression":{"id":1851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1846,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9713:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1848,"indexExpression":{"id":1847,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9719:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9713:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1849,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9729:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2527,"src":"9713:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9742:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9713:30:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":1852,"nodeType":"ExpressionStatement","src":"9713:30:7"},{"assignments":[1854],"declarations":[{"constant":false,"id":1854,"mutability":"mutable","name":"refundAmount","nameLocation":"9790:12:7","nodeType":"VariableDeclaration","scope":1888,"src":"9782:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1853,"name":"uint256","nodeType":"ElementaryTypeName","src":"9782:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1861,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1855,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9805:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1857,"indexExpression":{"id":1856,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9811:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9805:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1858,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9821:6:7","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":2529,"src":"9805:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1859,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"9830:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9805:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9782:52:7"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":1869,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9947:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1871,"indexExpression":{"id":1870,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9953:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9947:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1872,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9963:13:7","memberName":"refundAddress","nodeType":"MemberAccess","referencedDeclaration":2525,"src":"9947:29:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1873,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1854,"src":"9981:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":1874,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9996:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1876,"indexExpression":{"id":1875,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"10002:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9996:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1877,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10012:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2517,"src":"9996:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9981:40:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1863,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"9911:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1865,"indexExpression":{"id":1864,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"9917:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9911:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1866,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9927:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"9911:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1862,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"9904:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":1867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9904:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":1868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9934:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"9904:38:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9904:121:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1880,"nodeType":"ExpressionStatement","src":"9904:121:7"},{"eventCall":{"arguments":[{"id":1882,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"10074:4:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1883,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"10080:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1881,"name":"OrderRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2479,"src":"10060:13:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":1884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10060:29:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1885,"nodeType":"EmitStatement","src":"10055:34:7"},{"expression":{"hexValue":"74727565","id":1886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10101:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1794,"id":1887,"nodeType":"Return","src":"10094:11:7"}]},"documentation":{"id":1784,"nodeType":"StructuredDocumentation","src":"9153:34:7","text":"@dev See {refund-IGateway}. "},"functionSelector":"71eedb88","id":1889,"implemented":true,"kind":"function","modifiers":[{"id":1791,"kind":"modifierInvocation","modifierName":{"id":1790,"name":"onlyAggregator","nameLocations":["9246:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":1066,"src":"9246:14:7"},"nodeType":"ModifierInvocation","src":"9246:14:7"}],"name":"refund","nameLocation":"9198:6:7","nodeType":"FunctionDefinition","parameters":{"id":1789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1786,"mutability":"mutable","name":"_fee","nameLocation":"9213:4:7","nodeType":"VariableDeclaration","scope":1889,"src":"9205:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1785,"name":"uint256","nodeType":"ElementaryTypeName","src":"9205:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1788,"mutability":"mutable","name":"_orderId","nameLocation":"9227:8:7","nodeType":"VariableDeclaration","scope":1889,"src":"9219:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1787,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9219:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9204:32:7"},"returnParameters":{"id":1794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1793,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1889,"src":"9270:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1792,"name":"bool","nodeType":"ElementaryTypeName","src":"9270:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9269:6:7"},"scope":2144,"src":"9189:920:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[2613],"body":{"id":1902,"nodeType":"Block","src":"10419:30:7","statements":[{"expression":{"baseExpression":{"id":1898,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10430:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1900,"indexExpression":{"id":1899,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"10436:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10430:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"functionReturnParameters":1897,"id":1901,"nodeType":"Return","src":"10423:22:7"}]},"documentation":{"id":1890,"nodeType":"StructuredDocumentation","src":"10300:40:7","text":"@dev See {getOrderInfo-IGateway}. "},"functionSelector":"768c6ec0","id":1903,"implemented":true,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"10351:12:7","nodeType":"FunctionDefinition","parameters":{"id":1893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1892,"mutability":"mutable","name":"_orderId","nameLocation":"10372:8:7","nodeType":"VariableDeclaration","scope":1903,"src":"10364:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1891,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10364:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10363:18:7"},"returnParameters":{"id":1897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1903,"src":"10405:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":1895,"nodeType":"UserDefinedTypeName","pathNode":{"id":1894,"name":"Order","nameLocations":["10405:5:7"],"nodeType":"IdentifierPath","referencedDeclaration":2530,"src":"10405:5:7"},"referencedDeclaration":2530,"src":"10405:5:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"10404:14:7"},"scope":2144,"src":"10342:107:7","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[2604],"body":{"id":1921,"nodeType":"Block","src":"10569:71:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1911,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2161,"src":"10577:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1913,"indexExpression":{"id":1912,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1906,"src":"10595:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10577:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10606:1:7","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10577:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1918,"nodeType":"IfStatement","src":"10573:47:7","trueBody":{"expression":{"hexValue":"74727565","id":1916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10616:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1910,"id":1917,"nodeType":"Return","src":"10609:11:7"}},{"expression":{"hexValue":"66616c7365","id":1919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10631:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":1910,"id":1920,"nodeType":"Return","src":"10624:12:7"}]},"documentation":{"id":1904,"nodeType":"StructuredDocumentation","src":"10452:44:7","text":"@dev See {isTokenSupported-IGateway}. "},"functionSelector":"75151b63","id":1922,"implemented":true,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"10507:16:7","nodeType":"FunctionDefinition","parameters":{"id":1907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1906,"mutability":"mutable","name":"_token","nameLocation":"10532:6:7","nodeType":"VariableDeclaration","scope":1922,"src":"10524:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1905,"name":"address","nodeType":"ElementaryTypeName","src":"10524:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10523:16:7"},"returnParameters":{"id":1910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1909,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1922,"src":"10563:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1908,"name":"bool","nodeType":"ElementaryTypeName","src":"10563:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10562:6:7"},"scope":2144,"src":"10498:142:7","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[2619],"body":{"id":1930,"nodeType":"Block","src":"10743:33:7","statements":[{"expression":{"id":1928,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2157,"src":"10754:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1927,"id":1929,"nodeType":"Return","src":"10747:25:7"}]},"documentation":{"id":1923,"nodeType":"StructuredDocumentation","src":"10643:41:7","text":"@dev See {getAggregator-IGateway}. "},"functionSelector":"3ad59dbc","id":1931,"implemented":true,"kind":"function","modifiers":[],"name":"getAggregator","nameLocation":"10695:13:7","nodeType":"FunctionDefinition","parameters":{"id":1924,"nodeType":"ParameterList","parameters":[],"src":"10708:2:7"},"returnParameters":{"id":1927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1926,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1931,"src":"10734:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1925,"name":"address","nodeType":"ElementaryTypeName","src":"10734:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10733:9:7"},"scope":2144,"src":"10686:90:7","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2066,"nodeType":"Block","src":"10939:1266:7","statements":[{"assignments":[1944],"declarations":[{"constant":false,"id":1944,"mutability":"mutable","name":"settings","nameLocation":"10967:8:7","nodeType":"VariableDeclaration","scope":2066,"src":"10943:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1943,"nodeType":"UserDefinedTypeName","pathNode":{"id":1942,"name":"TokenFeeSettings","nameLocations":["10943:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"10943:16:7"},"referencedDeclaration":2170,"src":"10943:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":1951,"initialValue":{"baseExpression":{"id":1945,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"10978:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1950,"indexExpression":{"expression":{"baseExpression":{"id":1946,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"10996:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1948,"indexExpression":{"id":1947,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"11002:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10996:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1949,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11012:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"10996:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10978:40:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"10943:75:7"},{"assignments":[1953],"declarations":[{"constant":false,"id":1953,"mutability":"mutable","name":"senderFee","nameLocation":"11030:9:7","nodeType":"VariableDeclaration","scope":2066,"src":"11022:17:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1952,"name":"uint256","nodeType":"ElementaryTypeName","src":"11022:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1958,"initialValue":{"expression":{"baseExpression":{"id":1954,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"11042:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1956,"indexExpression":{"id":1955,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"11048:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11042:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1957,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11058:9:7","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":2517,"src":"11042:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11022:45:7"},{"assignments":[1960],"declarations":[{"constant":false,"id":1960,"mutability":"mutable","name":"token","nameLocation":"11079:5:7","nodeType":"VariableDeclaration","scope":2066,"src":"11071:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1959,"name":"address","nodeType":"ElementaryTypeName","src":"11071:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1965,"initialValue":{"expression":{"baseExpression":{"id":1961,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"11087:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1963,"indexExpression":{"id":1962,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"11093:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11087:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":1964,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11103:5:7","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":2513,"src":"11087:21:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11071:37:7"},{"assignments":[1967],"declarations":[{"constant":false,"id":1967,"mutability":"mutable","name":"providerAmount","nameLocation":"11159:14:7","nodeType":"VariableDeclaration","scope":2066,"src":"11151:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1966,"name":"uint256","nodeType":"ElementaryTypeName","src":"11151:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1975,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1968,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"11177:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1969,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1944,"src":"11189:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1970,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11198:16:7","memberName":"senderToProvider","nodeType":"MemberAccess","referencedDeclaration":2163,"src":"11189:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11177:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1972,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11176:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1973,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"11218:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11176:49:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11151:74:7"},{"assignments":[1977],"declarations":[{"constant":false,"id":1977,"mutability":"mutable","name":"currentProviderAmount","nameLocation":"11237:21:7","nodeType":"VariableDeclaration","scope":2066,"src":"11229:29:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1976,"name":"uint256","nodeType":"ElementaryTypeName","src":"11229:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1984,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1978,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"11262:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1979,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1939,"src":"11279:14:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"11262:31:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1981,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11261:33:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1982,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"11297:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11261:43:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11229:75:7"},{"assignments":[1986],"declarations":[{"constant":false,"id":1986,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"11316:16:7","nodeType":"VariableDeclaration","scope":2066,"src":"11308:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1985,"name":"uint256","nodeType":"ElementaryTypeName","src":"11308:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1994,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1987,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1977,"src":"11336:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1988,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1944,"src":"11360:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":1989,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11369:20:7","memberName":"providerToAggregator","nodeType":"MemberAccess","referencedDeclaration":2165,"src":"11360:29:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11336:53:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1991,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11335:55:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1992,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"11393:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11335:65:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11308:92:7"},{"assignments":[1996],"declarations":[{"constant":false,"id":1996,"mutability":"mutable","name":"senderAmount","nameLocation":"11412:12:7","nodeType":"VariableDeclaration","scope":2066,"src":"11404:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1995,"name":"uint256","nodeType":"ElementaryTypeName","src":"11404:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2000,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1997,"name":"senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"11427:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1998,"name":"providerAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"11439:14:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11427:26:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11404:49:7"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2001,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1996,"src":"11491:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2002,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11507:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11491:17:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":2009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2004,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"11512:5:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$2530_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2006,"indexExpression":{"id":2005,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"11518:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11512:15:7","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage","typeString":"struct IGateway.Order storage ref"}},"id":2007,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11528:10:7","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":2527,"src":"11512:26:7","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2008,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11542:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11512:31:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11491:52:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2020,"nodeType":"IfStatement","src":"11487:125:7","trueBody":{"id":2019,"nodeType":"Block","src":"11545:67:7","statements":[{"expression":{"arguments":[{"id":2015,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"11573:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2016,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1996,"src":"11594:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2012,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"11557:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2011,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"11550:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":2013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11550:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":2014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11564:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"11550:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11550:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2018,"nodeType":"ExpressionStatement","src":"11550:57:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2021,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1986,"src":"11665:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11685:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11665:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2033,"nodeType":"IfStatement","src":"11661:94:7","trueBody":{"id":2032,"nodeType":"Block","src":"11688:67:7","statements":[{"expression":{"arguments":[{"id":2028,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"11716:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2029,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1986,"src":"11733:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2025,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"11700:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2024,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"11693:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":2026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11693:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":2027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11707:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"11693:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11693:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2031,"nodeType":"ExpressionStatement","src":"11693:57:7"}]}},{"expression":{"id":2038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2034,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1977,"src":"11840:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2035,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1977,"src":"11864:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2036,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1986,"src":"11888:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11864:40:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11840:64:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2039,"nodeType":"ExpressionStatement","src":"11840:64:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2040,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1977,"src":"11912:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11937:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11912:26:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2052,"nodeType":"IfStatement","src":"11908:107:7","trueBody":{"id":2051,"nodeType":"Block","src":"11940:75:7","statements":[{"expression":{"arguments":[{"id":2047,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1935,"src":"11968:18:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2048,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1977,"src":"11988:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2044,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"11952:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2043,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"11945:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":2045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11945:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":2046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11959:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"11945:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11945:65:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2050,"nodeType":"ExpressionStatement","src":"11945:65:7"}]}},{"eventCall":{"arguments":[{"id":2054,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"12062:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2055,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1937,"src":"12072:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2056,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1996,"src":"12093:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2053,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2488,"src":"12041:20:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":2057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12041:65:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2058,"nodeType":"EmitStatement","src":"12036:70:7"},{"eventCall":{"arguments":[{"id":2060,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"12137:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2061,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1996,"src":"12147:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2062,"name":"currentProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1977,"src":"12161:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2063,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1986,"src":"12184:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2059,"name":"LocalTransferFeeSplit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2499,"src":"12115:21:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,uint256,uint256)"}},"id":2064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12115:86:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2065,"nodeType":"EmitStatement","src":"12110:91:7"}]},"id":2067,"implemented":true,"kind":"function","modifiers":[],"name":"_handleLocalTransferFeeSplitting","nameLocation":"10788:32:7","nodeType":"FunctionDefinition","parameters":{"id":1940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1933,"mutability":"mutable","name":"_orderId","nameLocation":"10832:8:7","nodeType":"VariableDeclaration","scope":2067,"src":"10824:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1932,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10824:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1935,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"10852:18:7","nodeType":"VariableDeclaration","scope":2067,"src":"10844:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1934,"name":"address","nodeType":"ElementaryTypeName","src":"10844:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1937,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"10882:19:7","nodeType":"VariableDeclaration","scope":2067,"src":"10874:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1936,"name":"address","nodeType":"ElementaryTypeName","src":"10874:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1939,"mutability":"mutable","name":"_settlePercent","nameLocation":"10912:14:7","nodeType":"VariableDeclaration","scope":2067,"src":"10905:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1938,"name":"uint64","nodeType":"ElementaryTypeName","src":"10905:6:7","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10820:109:7"},"returnParameters":{"id":1941,"nodeType":"ParameterList","parameters":[],"src":"10939:0:7"},"scope":2144,"src":"10779:1426:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2142,"nodeType":"Block","src":"12350:735:7","statements":[{"assignments":[2080],"declarations":[{"constant":false,"id":2080,"mutability":"mutable","name":"settings","nameLocation":"12378:8:7","nodeType":"VariableDeclaration","scope":2142,"src":"12354:32:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2079,"nodeType":"UserDefinedTypeName","pathNode":{"id":2078,"name":"TokenFeeSettings","nameLocations":["12354:16:7"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"12354:16:7"},"referencedDeclaration":2170,"src":"12354:16:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"id":2084,"initialValue":{"baseExpression":{"id":2081,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"12389:17:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2083,"indexExpression":{"id":2082,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2071,"src":"12407:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12389:25:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12354:60:7"},{"assignments":[2086],"declarations":[{"constant":false,"id":2086,"mutability":"mutable","name":"senderAmount","nameLocation":"12519:12:7","nodeType":"VariableDeclaration","scope":2142,"src":"12511:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2085,"name":"uint256","nodeType":"ElementaryTypeName","src":"12511:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2097,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2087,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2075,"src":"12535:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2088,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"12549:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":2089,"name":"settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2080,"src":"12559:8:7","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"id":2090,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12568:18:7","memberName":"senderToAggregator","nodeType":"MemberAccess","referencedDeclaration":2167,"src":"12559:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12549:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2092,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12548:39:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12535:52:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2094,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12534:54:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2095,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"12591:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12534:64:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12511:87:7"},{"assignments":[2099],"declarations":[{"constant":false,"id":2099,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"12610:16:7","nodeType":"VariableDeclaration","scope":2142,"src":"12602:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2098,"name":"uint256","nodeType":"ElementaryTypeName","src":"12602:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2103,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2100,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2075,"src":"12629:10:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2101,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"12642:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12629:25:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12602:52:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2104,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"12692:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12707:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12692:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2116,"nodeType":"IfStatement","src":"12688:90:7","trueBody":{"id":2115,"nodeType":"Block","src":"12710:68:7","statements":[{"expression":{"arguments":[{"id":2111,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2073,"src":"12739:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2112,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"12760:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2108,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2071,"src":"12722:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2107,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"12715:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":2109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12715:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":2110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12730:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"12715:23:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12715:58:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2114,"nodeType":"ExpressionStatement","src":"12715:58:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2117,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2099,"src":"12831:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12850:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12831:20:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2129,"nodeType":"IfStatement","src":"12827:94:7","trueBody":{"id":2128,"nodeType":"Block","src":"12853:68:7","statements":[{"expression":{"arguments":[{"id":2124,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"12882:15:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2125,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2099,"src":"12899:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2121,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2071,"src":"12865:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2120,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"12858:6:7","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$995_$","typeString":"type(contract IERC20)"}},"id":2122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12858:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$995","typeString":"contract IERC20"}},"id":2123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12873:8:7","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":962,"src":"12858:23:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12858:58:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2127,"nodeType":"ExpressionStatement","src":"12858:58:7"}]}},{"eventCall":{"arguments":[{"id":2131,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2069,"src":"12968:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2132,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2073,"src":"12978:19:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2133,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"12999:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2130,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2488,"src":"12947:20:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":2134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12947:65:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2135,"nodeType":"EmitStatement","src":"12942:70:7"},{"eventCall":{"arguments":[{"id":2137,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2069,"src":"13040:8:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2138,"name":"senderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"13050:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2139,"name":"aggregatorAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2099,"src":"13064:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2136,"name":"FxTransferFeeSplit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2508,"src":"13021:18:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,uint256)"}},"id":2140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13021:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2141,"nodeType":"EmitStatement","src":"13016:65:7"}]},"id":2143,"implemented":true,"kind":"function","modifiers":[],"name":"_handleFxTransferFeeSplitting","nameLocation":"12217:29:7","nodeType":"FunctionDefinition","parameters":{"id":2076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2069,"mutability":"mutable","name":"_orderId","nameLocation":"12258:8:7","nodeType":"VariableDeclaration","scope":2143,"src":"12250:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2068,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12250:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2071,"mutability":"mutable","name":"_token","nameLocation":"12278:6:7","nodeType":"VariableDeclaration","scope":2143,"src":"12270:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2070,"name":"address","nodeType":"ElementaryTypeName","src":"12270:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2073,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"12296:19:7","nodeType":"VariableDeclaration","scope":2143,"src":"12288:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2072,"name":"address","nodeType":"ElementaryTypeName","src":"12288:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2075,"mutability":"mutable","name":"_senderFee","nameLocation":"12327:10:7","nodeType":"VariableDeclaration","scope":2143,"src":"12319:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2074,"name":"uint256","nodeType":"ElementaryTypeName","src":"12319:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12246:94:7"},"returnParameters":{"id":2077,"nodeType":"ParameterList","parameters":[],"src":"12350:0:7"},"scope":2144,"src":"12208:877:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":2145,"src":"390:12697:7","usedErrors":[],"usedEvents":[17,124,254,423,428,2187,2193,2197,2209,2442,2455,2472,2479,2488,2499,2508]}],"src":"39:13049:7"},"id":7},"project/contracts/GatewaySettingManager.sol":{"ast":{"absolutePath":"project/contracts/GatewaySettingManager.sol","exportedSymbols":{"ContextUpgradeable":[917],"GatewaySettingManager":[2420],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":2421,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2146,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"168:24:8"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","id":2147,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2421,"sourceUnit":107,"src":"194:80:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2148,"name":"Ownable2StepUpgradeable","nameLocations":["310:23:8"],"nodeType":"IdentifierPath","referencedDeclaration":106,"src":"310:23:8"},"id":2149,"nodeType":"InheritanceSpecifier","src":"310:23:8"}],"canonicalName":"GatewaySettingManager","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":2420,"linearizedBaseContracts":[2420,106,239,917,408],"name":"GatewaySettingManager","nameLocation":"285:21:8","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":2151,"mutability":"mutable","name":"MAX_BPS","nameLocation":"354:7:8","nodeType":"VariableDeclaration","scope":2420,"src":"337:24:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2150,"name":"uint256","nodeType":"ElementaryTypeName","src":"337:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2153,"mutability":"mutable","name":"protocolFeePercent","nameLocation":"380:18:8","nodeType":"VariableDeclaration","scope":2420,"src":"364:34:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2152,"name":"uint64","nodeType":"ElementaryTypeName","src":"364:6:8","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2155,"mutability":"mutable","name":"treasuryAddress","nameLocation":"489:15:8","nodeType":"VariableDeclaration","scope":2420,"src":"472:32:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2154,"name":"address","nodeType":"ElementaryTypeName","src":"472:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2157,"mutability":"mutable","name":"_aggregatorAddress","nameLocation":"524:18:8","nodeType":"VariableDeclaration","scope":2420,"src":"507:35:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2156,"name":"address","nodeType":"ElementaryTypeName","src":"507:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2161,"mutability":"mutable","name":"_isTokenSupported","nameLocation":"582:17:8","nodeType":"VariableDeclaration","scope":2420,"src":"545:54:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":2160,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2158,"name":"address","nodeType":"ElementaryTypeName","src":"553:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"545:27:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2159,"name":"uint256","nodeType":"ElementaryTypeName","src":"564:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"canonicalName":"GatewaySettingManager.TokenFeeSettings","id":2170,"members":[{"constant":false,"id":2163,"mutability":"mutable","name":"senderToProvider","nameLocation":"671:16:8","nodeType":"VariableDeclaration","scope":2170,"src":"663:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2162,"name":"uint256","nodeType":"ElementaryTypeName","src":"663:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2165,"mutability":"mutable","name":"providerToAggregator","nameLocation":"753:20:8","nodeType":"VariableDeclaration","scope":2170,"src":"745:28:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2164,"name":"uint256","nodeType":"ElementaryTypeName","src":"745:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2167,"mutability":"mutable","name":"senderToAggregator","nameLocation":"847:18:8","nodeType":"VariableDeclaration","scope":2170,"src":"839:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2166,"name":"uint256","nodeType":"ElementaryTypeName","src":"839:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2169,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"930:22:8","nodeType":"VariableDeclaration","scope":2170,"src":"922:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2168,"name":"uint256","nodeType":"ElementaryTypeName","src":"922:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"TokenFeeSettings","nameLocation":"642:16:8","nodeType":"StructDefinition","scope":2420,"src":"635:386:8","visibility":"public"},{"constant":false,"id":2175,"mutability":"mutable","name":"_tokenFeeSettings","nameLocation":"1070:17:8","nodeType":"VariableDeclaration","scope":2420,"src":"1024:63:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"typeName":{"id":2174,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2171,"name":"address","nodeType":"ElementaryTypeName","src":"1032:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1024:36:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2173,"nodeType":"UserDefinedTypeName","pathNode":{"id":2172,"name":"TokenFeeSettings","nameLocations":["1043:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"1043:16:8"},"referencedDeclaration":2170,"src":"1043:16:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}}},"visibility":"internal"},{"constant":false,"id":2179,"mutability":"mutable","name":"__gap","nameLocation":"1111:5:8","nodeType":"VariableDeclaration","scope":2420,"src":"1091:25:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":2176,"name":"uint256","nodeType":"ElementaryTypeName","src":"1091:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2178,"length":{"hexValue":"3439","id":2177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1099:2:8","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"1091:11:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"},{"anonymous":false,"eventSelector":"cfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c","id":2187,"name":"SettingManagerBool","nameLocation":"1126:18:8","nodeType":"EventDefinition","parameters":{"id":2186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2181,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1161:4:8","nodeType":"VariableDeclaration","scope":2187,"src":"1145:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2180,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1145:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2183,"indexed":true,"mutability":"mutable","name":"value","nameLocation":"1183:5:8","nodeType":"VariableDeclaration","scope":2187,"src":"1167:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2182,"name":"address","nodeType":"ElementaryTypeName","src":"1167:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2185,"indexed":false,"mutability":"mutable","name":"status","nameLocation":"1198:6:8","nodeType":"VariableDeclaration","scope":2187,"src":"1190:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2184,"name":"uint256","nodeType":"ElementaryTypeName","src":"1190:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1144:61:8"},"src":"1120:86:8"},{"anonymous":false,"eventSelector":"bbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4","id":2193,"name":"ProtocolAddressUpdated","nameLocation":"1214:22:8","nodeType":"EventDefinition","parameters":{"id":2192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2189,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1253:4:8","nodeType":"VariableDeclaration","scope":2193,"src":"1237:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2188,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1237:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2191,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1275:15:8","nodeType":"VariableDeclaration","scope":2193,"src":"1259:31:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2190,"name":"address","nodeType":"ElementaryTypeName","src":"1259:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1236:55:8"},"src":"1208:84:8"},{"anonymous":false,"eventSelector":"2e979f80fe4d43055c584cf4a8467c55875ea36728fc37176c05acd784eb7a73","id":2197,"name":"SetFeeRecipient","nameLocation":"1300:15:8","nodeType":"EventDefinition","parameters":{"id":2196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1332:15:8","nodeType":"VariableDeclaration","scope":2197,"src":"1316:31:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2194,"name":"address","nodeType":"ElementaryTypeName","src":"1316:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1315:33:8"},"src":"1294:55:8"},{"anonymous":false,"eventSelector":"d4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c","id":2209,"name":"TokenFeeSettingsUpdated","nameLocation":"1357:23:8","nodeType":"EventDefinition","parameters":{"id":2208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2199,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"1400:5:8","nodeType":"VariableDeclaration","scope":2209,"src":"1384:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2198,"name":"address","nodeType":"ElementaryTypeName","src":"1384:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2201,"indexed":false,"mutability":"mutable","name":"senderToProvider","nameLocation":"1417:16:8","nodeType":"VariableDeclaration","scope":2209,"src":"1409:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2200,"name":"uint256","nodeType":"ElementaryTypeName","src":"1409:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2203,"indexed":false,"mutability":"mutable","name":"providerToAggregator","nameLocation":"1445:20:8","nodeType":"VariableDeclaration","scope":2209,"src":"1437:28:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2202,"name":"uint256","nodeType":"ElementaryTypeName","src":"1437:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2205,"indexed":false,"mutability":"mutable","name":"senderToAggregator","nameLocation":"1477:18:8","nodeType":"VariableDeclaration","scope":2209,"src":"1469:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2204,"name":"uint256","nodeType":"ElementaryTypeName","src":"1469:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2207,"indexed":false,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"1507:22:8","nodeType":"VariableDeclaration","scope":2209,"src":"1499:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2206,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1380:152:8"},"src":"1351:182:8"},{"body":{"id":2259,"nodeType":"Block","src":"2107:243:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2222,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"2119:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2136:1:8","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":2224,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2128:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2223,"name":"address","nodeType":"ElementaryTypeName","src":"2128:7:8","typeDescriptions":{}}},"id":2226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2128:10:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2119:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2140:23:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2221,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2111:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2111:53:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2230,"nodeType":"ExpressionStatement","src":"2111:53:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2232,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2216,"src":"2176:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2186:1:8","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2176:11:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2235,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2216,"src":"2191:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":2236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2201:1:8","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2191:11:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2176:26:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c696420737461747573","id":2239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2204:25:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""},"value":"Gateway: invalid status"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""}],"id":2231,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2168:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:62:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2241,"nodeType":"ExpressionStatement","src":"2168:62:8"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2242,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"2238:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"746f6b656e","id":2243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2246:7:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_9b9b0454cadcb5884dd3faa6ba975da4d2459aa3f11d31291a25a8358f84946d","typeString":"literal_string \"token\""},"value":"token"},"src":"2238:15:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2258,"nodeType":"IfStatement","src":"2234:113:8","trueBody":{"id":2257,"nodeType":"Block","src":"2255:92:8","statements":[{"expression":{"id":2249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2245,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2161,"src":"2260:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2247,"indexExpression":{"id":2246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"2278:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2260:24:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2248,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2216,"src":"2287:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2260:33:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2250,"nodeType":"ExpressionStatement","src":"2260:33:8"},{"eventCall":{"arguments":[{"id":2252,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"2322:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2253,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"2328:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2254,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2216,"src":"2335:6:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2251,"name":"SettingManagerBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2187,"src":"2303:18:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":2255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2303:39:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2256,"nodeType":"EmitStatement","src":"2298:44:8"}]}}]},"documentation":{"id":2210,"nodeType":"StructuredDocumentation","src":"1730:283:8","text":" @dev Sets the boolean value for a specific setting.\n @param what The setting to be updated.\n @param value The address or value associated with the setting.\n @param status The boolean value to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"cd992400","id":2260,"implemented":true,"kind":"function","modifiers":[{"id":2219,"kind":"modifierInvocation","modifierName":{"id":2218,"name":"onlyOwner","nameLocations":["2097:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2097:9:8"},"nodeType":"ModifierInvocation","src":"2097:9:8"}],"name":"settingManagerBool","nameLocation":"2024:18:8","nodeType":"FunctionDefinition","parameters":{"id":2217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2212,"mutability":"mutable","name":"what","nameLocation":"2051:4:8","nodeType":"VariableDeclaration","scope":2260,"src":"2043:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2211,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2043:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2214,"mutability":"mutable","name":"value","nameLocation":"2065:5:8","nodeType":"VariableDeclaration","scope":2260,"src":"2057:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2213,"name":"address","nodeType":"ElementaryTypeName","src":"2057:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2216,"mutability":"mutable","name":"status","nameLocation":"2080:6:8","nodeType":"VariableDeclaration","scope":2260,"src":"2072:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2215,"name":"uint256","nodeType":"ElementaryTypeName","src":"2072:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2042:45:8"},"returnParameters":{"id":2220,"nodeType":"ParameterList","parameters":[],"src":"2107:0:8"},"scope":2420,"src":"2015:335:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2331,"nodeType":"Block","src":"2658:472:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2271,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"2670:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2687:1:8","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":2273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2679:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2272,"name":"address","nodeType":"ElementaryTypeName","src":"2679:7:8","typeDescriptions":{}}},"id":2275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2679:10:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2670:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2691:23:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2270,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2662:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2662:53:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2279,"nodeType":"ExpressionStatement","src":"2662:53:8"},{"assignments":[2281],"declarations":[{"constant":false,"id":2281,"mutability":"mutable","name":"updated","nameLocation":"2724:7:8","nodeType":"VariableDeclaration","scope":2331,"src":"2719:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2280,"name":"bool","nodeType":"ElementaryTypeName","src":"2719:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2282,"nodeType":"VariableDeclarationStatement","src":"2719:12:8"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2283,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2263,"src":"2739:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"7472656173757279","id":2284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2747:10:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_cbd818ad4dd6f1ff9338c2bb62480241424dd9a65f9f3284101a01cd099ad8ac","typeString":"literal_string \"treasury\""},"value":"treasury"},"src":"2739:18:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2302,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2263,"src":"2900:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"61676772656761746f72","id":2303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2908:12:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_e124d7cc79a19705865fa21b784ba187cd393559e960c0c071132cb60354d1a3","typeString":"literal_string \"aggregator\""},"value":"aggregator"},"src":"2900:20:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2321,"nodeType":"IfStatement","src":"2896:165:8","trueBody":{"id":2320,"nodeType":"Block","src":"2922:139:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2306,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2157,"src":"2935:18:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2307,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"2957:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2935:27:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c726561647920736574","id":2309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2964:41:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""},"value":"Gateway: aggregator address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""}],"id":2305,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2927:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2927:79:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2311,"nodeType":"ExpressionStatement","src":"2927:79:8"},{"expression":{"id":2314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2312,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2157,"src":"3011:18:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2313,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"3032:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3011:26:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2315,"nodeType":"ExpressionStatement","src":"3011:26:8"},{"expression":{"id":2318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2316,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"3042:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3052:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3042:14:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2319,"nodeType":"ExpressionStatement","src":"3042:14:8"}]}},"id":2322,"nodeType":"IfStatement","src":"2735:326:8","trueBody":{"id":2301,"nodeType":"Block","src":"2759:131:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2287,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"2772:15:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2288,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"2791:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2772:24:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207472656173757279206164647265737320616c726561647920736574","id":2290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2798:39:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""},"value":"Gateway: treasury address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""}],"id":2286,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2764:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2764:74:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2292,"nodeType":"ExpressionStatement","src":"2764:74:8"},{"expression":{"id":2295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2293,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2155,"src":"2843:15:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"2861:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2843:23:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2296,"nodeType":"ExpressionStatement","src":"2843:23:8"},{"expression":{"id":2299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2297,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"2871:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2881:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2871:14:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2300,"nodeType":"ExpressionStatement","src":"2871:14:8"}]}},{"condition":{"id":2323,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"3068:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2330,"nodeType":"IfStatement","src":"3064:63:8","trueBody":{"id":2329,"nodeType":"Block","src":"3077:50:8","statements":[{"eventCall":{"arguments":[{"id":2325,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2263,"src":"3110:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2326,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2265,"src":"3116:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2324,"name":"ProtocolAddressUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2193,"src":"3087:22:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3087:35:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2328,"nodeType":"EmitStatement","src":"3082:40:8"}]}}]},"documentation":{"id":2261,"nodeType":"StructuredDocumentation","src":"2353:224:8","text":" @dev Updates a protocol address.\n @param what The address type to be updated (treasury or aggregator).\n @param value The new address to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"40ebc677","id":2332,"implemented":true,"kind":"function","modifiers":[{"id":2268,"kind":"modifierInvocation","modifierName":{"id":2267,"name":"onlyOwner","nameLocations":["2648:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2648:9:8"},"nodeType":"ModifierInvocation","src":"2648:9:8"}],"name":"updateProtocolAddress","nameLocation":"2588:21:8","nodeType":"FunctionDefinition","parameters":{"id":2266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2263,"mutability":"mutable","name":"what","nameLocation":"2618:4:8","nodeType":"VariableDeclaration","scope":2332,"src":"2610:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2262,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2610:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2265,"mutability":"mutable","name":"value","nameLocation":"2632:5:8","nodeType":"VariableDeclaration","scope":2332,"src":"2624:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2264,"name":"address","nodeType":"ElementaryTypeName","src":"2624:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2609:29:8"},"returnParameters":{"id":2269,"nodeType":"ParameterList","parameters":[],"src":"2658:0:8"},"scope":2420,"src":"2579:551:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2404,"nodeType":"Block","src":"3933:796:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2349,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2161,"src":"3945:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2351,"indexExpression":{"id":2350,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2335,"src":"3963:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3945:24:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3973:1:8","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3945:29:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","id":2354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3976:30:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""},"value":"Gateway: token not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""}],"id":2348,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3937:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3937:70:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2356,"nodeType":"ExpressionStatement","src":"3937:70:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2358,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2337,"src":"4019:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2359,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"4039:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4019:27:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669646572","id":2361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4048:37:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""},"value":"Gateway: invalid sender to provider"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""}],"id":2357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4011:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4011:75:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2363,"nodeType":"ExpressionStatement","src":"4011:75:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2365,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2339,"src":"4098:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2366,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"4122:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4098:31:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72","id":2368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4131:41:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""},"value":"Gateway: invalid provider to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""}],"id":2364,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4090:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4090:83:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2370,"nodeType":"ExpressionStatement","src":"4090:83:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2372,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2341,"src":"4185:18:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2373,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"4207:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4185:29:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2061676772656761746f72","id":2375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4216:39:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""},"value":"Gateway: invalid sender to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""}],"id":2371,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4177:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2376,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4177:79:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2377,"nodeType":"ExpressionStatement","src":"4177:79:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2379,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2343,"src":"4268:22:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2380,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2151,"src":"4294:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4268:33:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72206678","id":2382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4303:44:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""},"value":"Gateway: invalid provider to aggregator fx"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""}],"id":2378,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4260:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4260:88:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2384,"nodeType":"ExpressionStatement","src":"4260:88:8"},{"expression":{"id":2394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2385,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"4353:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2387,"indexExpression":{"id":2386,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2335,"src":"4371:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4353:24:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2389,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2337,"src":"4420:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2390,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2339,"src":"4463:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2391,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2341,"src":"4508:18:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2392,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2343,"src":"4555:22:8","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"}],"id":2388,"name":"TokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2170,"src":"4380:16:8","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TokenFeeSettings_$2170_storage_ptr_$","typeString":"type(struct GatewaySettingManager.TokenFeeSettings storage pointer)"}},"id":2393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4402:16:8","4441:20:8","4488:18:8","4531:22:8"],"names":["senderToProvider","providerToAggregator","senderToAggregator","providerToAggregatorFx"],"nodeType":"FunctionCall","src":"4380:202:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"src":"4353:229:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"id":2395,"nodeType":"ExpressionStatement","src":"4353:229:8"},{"eventCall":{"arguments":[{"id":2397,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2335,"src":"4620:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2398,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2337,"src":"4630:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2399,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2339,"src":"4651:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2400,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2341,"src":"4676:18:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2401,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2343,"src":"4699:22:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2396,"name":"TokenFeeSettingsUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2209,"src":"4592:23:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,uint256)"}},"id":2402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4592:133:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2403,"nodeType":"EmitStatement","src":"4587:138:8"}]},"documentation":{"id":2333,"nodeType":"StructuredDocumentation","src":"3133:606:8","text":" @dev Sets token-specific fee settings for stablecoins.\n @param token The token address to configure.\n @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n Requirements:\n - The token must be supported.\n - Fee percentages must be within valid ranges."},"functionSelector":"898861b0","id":2405,"implemented":true,"kind":"function","modifiers":[{"id":2346,"kind":"modifierInvocation","modifierName":{"id":2345,"name":"onlyOwner","nameLocations":["3923:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"3923:9:8"},"nodeType":"ModifierInvocation","src":"3923:9:8"}],"name":"setTokenFeeSettings","nameLocation":"3750:19:8","nodeType":"FunctionDefinition","parameters":{"id":2344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2335,"mutability":"mutable","name":"token","nameLocation":"3781:5:8","nodeType":"VariableDeclaration","scope":2405,"src":"3773:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2334,"name":"address","nodeType":"ElementaryTypeName","src":"3773:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2337,"mutability":"mutable","name":"senderToProvider","nameLocation":"3798:16:8","nodeType":"VariableDeclaration","scope":2405,"src":"3790:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2336,"name":"uint256","nodeType":"ElementaryTypeName","src":"3790:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2339,"mutability":"mutable","name":"providerToAggregator","nameLocation":"3826:20:8","nodeType":"VariableDeclaration","scope":2405,"src":"3818:28:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2338,"name":"uint256","nodeType":"ElementaryTypeName","src":"3818:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2341,"mutability":"mutable","name":"senderToAggregator","nameLocation":"3858:18:8","nodeType":"VariableDeclaration","scope":2405,"src":"3850:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2340,"name":"uint256","nodeType":"ElementaryTypeName","src":"3850:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2343,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"3888:22:8","nodeType":"VariableDeclaration","scope":2405,"src":"3880:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2342,"name":"uint256","nodeType":"ElementaryTypeName","src":"3880:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3769:144:8"},"returnParameters":{"id":2347,"nodeType":"ParameterList","parameters":[],"src":"3933:0:8"},"scope":2420,"src":"3741:988:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2418,"nodeType":"Block","src":"5001:39:8","statements":[{"expression":{"baseExpression":{"id":2414,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2175,"src":"5012:17:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$2170_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":2416,"indexExpression":{"id":2415,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2408,"src":"5030:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5012:24:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"functionReturnParameters":2413,"id":2417,"nodeType":"Return","src":"5005:31:8"}]},"documentation":{"id":2406,"nodeType":"StructuredDocumentation","src":"4732:175:8","text":" @dev Gets token-specific fee settings.\n @param token The token address to query.\n @return TokenFeeSettings struct containing all fee settings for the token."},"functionSelector":"8bfa0549","id":2419,"implemented":true,"kind":"function","modifiers":[],"name":"getTokenFeeSettings","nameLocation":"4918:19:8","nodeType":"FunctionDefinition","parameters":{"id":2409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2408,"mutability":"mutable","name":"token","nameLocation":"4946:5:8","nodeType":"VariableDeclaration","scope":2419,"src":"4938:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2407,"name":"address","nodeType":"ElementaryTypeName","src":"4938:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4937:15:8"},"returnParameters":{"id":2413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2412,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2419,"src":"4976:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":2411,"nodeType":"UserDefinedTypeName","pathNode":{"id":2410,"name":"TokenFeeSettings","nameLocations":["4976:16:8"],"nodeType":"IdentifierPath","referencedDeclaration":2170,"src":"4976:16:8"},"referencedDeclaration":2170,"src":"4976:16:8","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$2170_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"src":"4975:25:8"},"scope":2420,"src":"4909:131:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2421,"src":"276:4766:8","usedErrors":[],"usedEvents":[17,124,254,2187,2193,2197,2209]}],"src":"168:4875:8"},"id":8},"project/contracts/interfaces/IGateway.sol":{"ast":{"absolutePath":"project/contracts/interfaces/IGateway.sol","exportedSymbols":{"IERC20":[995],"IGateway":[2620]},"id":2621,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2422,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:9"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":2424,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2621,"sourceUnit":996,"src":"65:70:9","symbolAliases":[{"foreign":{"id":2423,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":995,"src":"73:6:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGateway","contractDependencies":[],"contractKind":"interface","documentation":{"id":2425,"nodeType":"StructuredDocumentation","src":"137:73:9","text":" @title IGateway\n @notice Interface for the Gateway contract."},"fullyImplemented":false,"id":2620,"linearizedBaseContracts":[2620],"name":"IGateway","nameLocation":"221:8:9","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":2426,"nodeType":"StructuredDocumentation","src":"417:335:9","text":" @dev Emitted when a deposit is made.\n @param sender The address of the sender.\n @param token The address of the deposited token.\n @param amount The amount of the deposit.\n @param orderId The ID of the order.\n @param rate The rate at which the deposit is made.\n @param messageHash The hash of the message."},"eventSelector":"40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a137","id":2442,"name":"OrderCreated","nameLocation":"760:12:9","nodeType":"EventDefinition","parameters":{"id":2441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2428,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"792:6:9","nodeType":"VariableDeclaration","scope":2442,"src":"776:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2427,"name":"address","nodeType":"ElementaryTypeName","src":"776:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2430,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"818:5:9","nodeType":"VariableDeclaration","scope":2442,"src":"802:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2429,"name":"address","nodeType":"ElementaryTypeName","src":"802:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2432,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"843:6:9","nodeType":"VariableDeclaration","scope":2442,"src":"827:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2431,"name":"uint256","nodeType":"ElementaryTypeName","src":"827:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2434,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"861:11:9","nodeType":"VariableDeclaration","scope":2442,"src":"853:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2433,"name":"uint256","nodeType":"ElementaryTypeName","src":"853:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2436,"indexed":false,"mutability":"mutable","name":"orderId","nameLocation":"884:7:9","nodeType":"VariableDeclaration","scope":2442,"src":"876:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2435,"name":"bytes32","nodeType":"ElementaryTypeName","src":"876:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2438,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"903:4:9","nodeType":"VariableDeclaration","scope":2442,"src":"895:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2437,"name":"uint256","nodeType":"ElementaryTypeName","src":"895:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2440,"indexed":false,"mutability":"mutable","name":"messageHash","nameLocation":"918:11:9","nodeType":"VariableDeclaration","scope":2442,"src":"911:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2439,"name":"string","nodeType":"ElementaryTypeName","src":"911:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"772:160:9"},"src":"754:179:9"},{"anonymous":false,"documentation":{"id":2443,"nodeType":"StructuredDocumentation","src":"936:401:9","text":" @dev Emitted when an aggregator settles a transaction.\n @param splitOrderId The ID of the split order.\n @param orderId The ID of the order.\n @param liquidityProvider The address of the liquidity provider.\n @param settlePercent The percentage at which the transaction is settled.\n @param rebatePercent The percentage of the aggregator fee that is given back to the provider."},"eventSelector":"1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c45","id":2455,"name":"SettleOut","nameLocation":"1345:9:9","nodeType":"EventDefinition","parameters":{"id":2454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2445,"indexed":false,"mutability":"mutable","name":"splitOrderId","nameLocation":"1366:12:9","nodeType":"VariableDeclaration","scope":2455,"src":"1358:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2444,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1358:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2447,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1398:7:9","nodeType":"VariableDeclaration","scope":2455,"src":"1382:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2446,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1382:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2449,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1425:17:9","nodeType":"VariableDeclaration","scope":2455,"src":"1409:33:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2448,"name":"address","nodeType":"ElementaryTypeName","src":"1409:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2451,"indexed":false,"mutability":"mutable","name":"settlePercent","nameLocation":"1453:13:9","nodeType":"VariableDeclaration","scope":2455,"src":"1446:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2450,"name":"uint64","nodeType":"ElementaryTypeName","src":"1446:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2453,"indexed":false,"mutability":"mutable","name":"rebatePercent","nameLocation":"1477:13:9","nodeType":"VariableDeclaration","scope":2455,"src":"1470:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2452,"name":"uint64","nodeType":"ElementaryTypeName","src":"1470:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1354:139:9"},"src":"1339:155:9"},{"anonymous":false,"documentation":{"id":2456,"nodeType":"StructuredDocumentation","src":"1497:78:9","text":" @dev Emitted when an onramp order is successfully processed"},"eventSelector":"b5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b","id":2472,"name":"SettleIn","nameLocation":"1586:8:9","nodeType":"EventDefinition","parameters":{"id":2471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2458,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1620:7:9","nodeType":"VariableDeclaration","scope":2472,"src":"1604:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2457,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1604:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2460,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1647:17:9","nodeType":"VariableDeclaration","scope":2472,"src":"1631:33:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2459,"name":"address","nodeType":"ElementaryTypeName","src":"1631:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2462,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"1690:9:9","nodeType":"VariableDeclaration","scope":2472,"src":"1674:25:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2461,"name":"address","nodeType":"ElementaryTypeName","src":"1674:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2464,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1717:6:9","nodeType":"VariableDeclaration","scope":2472,"src":"1709:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2463,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2466,"indexed":false,"mutability":"mutable","name":"token","nameLocation":"1741:5:9","nodeType":"VariableDeclaration","scope":2472,"src":"1733:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2465,"name":"address","nodeType":"ElementaryTypeName","src":"1733:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2468,"indexed":false,"mutability":"mutable","name":"aggregatorFee","nameLocation":"1764:13:9","nodeType":"VariableDeclaration","scope":2472,"src":"1756:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2467,"name":"uint256","nodeType":"ElementaryTypeName","src":"1756:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2470,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"1788:4:9","nodeType":"VariableDeclaration","scope":2472,"src":"1781:11:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2469,"name":"uint96","nodeType":"ElementaryTypeName","src":"1781:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1594:204:9"},"src":"1580:219:9"},{"anonymous":false,"documentation":{"id":2473,"nodeType":"StructuredDocumentation","src":"1802:163:9","text":" @dev Emitted when an aggregator refunds a transaction.\n @param fee The fee deducted from the refund amount.\n @param orderId The ID of the order."},"eventSelector":"0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e","id":2479,"name":"OrderRefunded","nameLocation":"1973:13:9","nodeType":"EventDefinition","parameters":{"id":2478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2475,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"1995:3:9","nodeType":"VariableDeclaration","scope":2479,"src":"1987:11:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2474,"name":"uint256","nodeType":"ElementaryTypeName","src":"1987:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2477,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2016:7:9","nodeType":"VariableDeclaration","scope":2479,"src":"2000:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2476,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2000:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1986:38:9"},"src":"1967:58:9"},{"anonymous":false,"documentation":{"id":2480,"nodeType":"StructuredDocumentation","src":"2028:161:9","text":" @dev Emitted when the sender's fee is transferred.\n @param sender The address of the sender.\n @param amount The amount of the fee transferred."},"eventSelector":"879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c","id":2488,"name":"SenderFeeTransferred","nameLocation":"2197:20:9","nodeType":"EventDefinition","parameters":{"id":2487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2482,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2234:7:9","nodeType":"VariableDeclaration","scope":2488,"src":"2218:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2481,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2218:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2484,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"2259:6:9","nodeType":"VariableDeclaration","scope":2488,"src":"2243:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2483,"name":"address","nodeType":"ElementaryTypeName","src":"2243:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2486,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"2283:6:9","nodeType":"VariableDeclaration","scope":2488,"src":"2267:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2485,"name":"uint256","nodeType":"ElementaryTypeName","src":"2267:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2217:73:9"},"src":"2191:100:9"},{"anonymous":false,"documentation":{"id":2489,"nodeType":"StructuredDocumentation","src":"2294:293:9","text":" @dev Emitted when a local transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param providerAmount The amount that goes to the provider.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4","id":2499,"name":"LocalTransferFeeSplit","nameLocation":"2595:21:9","nodeType":"EventDefinition","parameters":{"id":2498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2491,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2636:7:9","nodeType":"VariableDeclaration","scope":2499,"src":"2620:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2490,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2620:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2493,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"2655:12:9","nodeType":"VariableDeclaration","scope":2499,"src":"2647:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2492,"name":"uint256","nodeType":"ElementaryTypeName","src":"2647:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2495,"indexed":false,"mutability":"mutable","name":"providerAmount","nameLocation":"2679:14:9","nodeType":"VariableDeclaration","scope":2499,"src":"2671:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2494,"name":"uint256","nodeType":"ElementaryTypeName","src":"2671:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2497,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"2705:16:9","nodeType":"VariableDeclaration","scope":2499,"src":"2697:24:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2496,"name":"uint256","nodeType":"ElementaryTypeName","src":"2697:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2616:108:9"},"src":"2589:136:9"},{"anonymous":false,"documentation":{"id":2500,"nodeType":"StructuredDocumentation","src":"2728:227:9","text":" @dev Emitted when an FX transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a","id":2508,"name":"FxTransferFeeSplit","nameLocation":"2963:18:9","nodeType":"EventDefinition","parameters":{"id":2507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2502,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"3001:7:9","nodeType":"VariableDeclaration","scope":2508,"src":"2985:23:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2501,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2985:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2504,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"3020:12:9","nodeType":"VariableDeclaration","scope":2508,"src":"3012:20:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2503,"name":"uint256","nodeType":"ElementaryTypeName","src":"3012:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2506,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"3044:16:9","nodeType":"VariableDeclaration","scope":2508,"src":"3036:24:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2505,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2981:82:9"},"src":"2957:107:9"},{"canonicalName":"IGateway.Order","documentation":{"id":2509,"nodeType":"StructuredDocumentation","src":"3252:592:9","text":" @dev Struct representing an order.\n @param sender The address of the sender.\n @param token The address of the token.\n @param senderFeeRecipient The address of the sender fee recipient.\n @param senderFee The fee to be paid to the sender fee recipient.\n @param protocolFee The protocol fee to be paid.\n @param isFulfilled Whether the order is fulfilled.\n @param isRefunded Whether the order is refunded.\n @param refundAddress The address to which the refund is made.\n @param currentBPS The current basis points.\n @param amount The amount of the order."},"id":2530,"members":[{"constant":false,"id":2511,"mutability":"mutable","name":"sender","nameLocation":"3871:6:9","nodeType":"VariableDeclaration","scope":2530,"src":"3863:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2510,"name":"address","nodeType":"ElementaryTypeName","src":"3863:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2513,"mutability":"mutable","name":"token","nameLocation":"3889:5:9","nodeType":"VariableDeclaration","scope":2530,"src":"3881:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2512,"name":"address","nodeType":"ElementaryTypeName","src":"3881:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2515,"mutability":"mutable","name":"senderFeeRecipient","nameLocation":"3906:18:9","nodeType":"VariableDeclaration","scope":2530,"src":"3898:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2514,"name":"address","nodeType":"ElementaryTypeName","src":"3898:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2517,"mutability":"mutable","name":"senderFee","nameLocation":"3936:9:9","nodeType":"VariableDeclaration","scope":2530,"src":"3928:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2516,"name":"uint256","nodeType":"ElementaryTypeName","src":"3928:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2519,"mutability":"mutable","name":"protocolFee","nameLocation":"3957:11:9","nodeType":"VariableDeclaration","scope":2530,"src":"3949:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2518,"name":"uint256","nodeType":"ElementaryTypeName","src":"3949:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2521,"mutability":"mutable","name":"isFulfilled","nameLocation":"3977:11:9","nodeType":"VariableDeclaration","scope":2530,"src":"3972:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2520,"name":"bool","nodeType":"ElementaryTypeName","src":"3972:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2523,"mutability":"mutable","name":"isRefunded","nameLocation":"3997:10:9","nodeType":"VariableDeclaration","scope":2530,"src":"3992:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2522,"name":"bool","nodeType":"ElementaryTypeName","src":"3992:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2525,"mutability":"mutable","name":"refundAddress","nameLocation":"4019:13:9","nodeType":"VariableDeclaration","scope":2530,"src":"4011:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2524,"name":"address","nodeType":"ElementaryTypeName","src":"4011:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2527,"mutability":"mutable","name":"currentBPS","nameLocation":"4043:10:9","nodeType":"VariableDeclaration","scope":2530,"src":"4036:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2526,"name":"uint96","nodeType":"ElementaryTypeName","src":"4036:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2529,"mutability":"mutable","name":"amount","nameLocation":"4065:6:9","nodeType":"VariableDeclaration","scope":2530,"src":"4057:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2528,"name":"uint256","nodeType":"ElementaryTypeName","src":"4057:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Order","nameLocation":"3853:5:9","nodeType":"StructDefinition","scope":2620,"src":"3846:229:9","visibility":"public"},{"documentation":{"id":2531,"nodeType":"StructuredDocumentation","src":"4270:964:9","text":" @notice Locks the sender's amount of token into Gateway.\n @dev Requirements:\n - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n - `_token` must be an acceptable token. See {isTokenSupported}.\n - `amount` must be greater than minimum.\n - `_refundAddress` refund address must not be zero address.\n @param _token The address of the token.\n @param _amount The amount in the decimal of `_token` to be locked.\n @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n @param messageHash The hash of the message.\n @return _orderId The ID of the order."},"functionSelector":"809804f7","id":2550,"implemented":false,"kind":"function","modifiers":[],"name":"createOrder","nameLocation":"5245:11:9","nodeType":"FunctionDefinition","parameters":{"id":2546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2533,"mutability":"mutable","name":"_token","nameLocation":"5268:6:9","nodeType":"VariableDeclaration","scope":2550,"src":"5260:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2532,"name":"address","nodeType":"ElementaryTypeName","src":"5260:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2535,"mutability":"mutable","name":"_amount","nameLocation":"5286:7:9","nodeType":"VariableDeclaration","scope":2550,"src":"5278:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2534,"name":"uint256","nodeType":"ElementaryTypeName","src":"5278:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2537,"mutability":"mutable","name":"_rate","nameLocation":"5304:5:9","nodeType":"VariableDeclaration","scope":2550,"src":"5297:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2536,"name":"uint96","nodeType":"ElementaryTypeName","src":"5297:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2539,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"5321:19:9","nodeType":"VariableDeclaration","scope":2550,"src":"5313:27:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2538,"name":"address","nodeType":"ElementaryTypeName","src":"5313:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2541,"mutability":"mutable","name":"_senderFee","nameLocation":"5352:10:9","nodeType":"VariableDeclaration","scope":2550,"src":"5344:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2540,"name":"uint256","nodeType":"ElementaryTypeName","src":"5344:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2543,"mutability":"mutable","name":"_refundAddress","nameLocation":"5374:14:9","nodeType":"VariableDeclaration","scope":2550,"src":"5366:22:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2542,"name":"address","nodeType":"ElementaryTypeName","src":"5366:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2545,"mutability":"mutable","name":"messageHash","nameLocation":"5408:11:9","nodeType":"VariableDeclaration","scope":2550,"src":"5392:27:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2544,"name":"string","nodeType":"ElementaryTypeName","src":"5392:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5256:166:9"},"returnParameters":{"id":2549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2548,"mutability":"mutable","name":"_orderId","nameLocation":"5449:8:9","nodeType":"VariableDeclaration","scope":2550,"src":"5441:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2547,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5441:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5440:18:9"},"scope":2620,"src":"5236:223:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2551,"nodeType":"StructuredDocumentation","src":"5462:465:9","text":" @notice Settles a transaction and distributes rewards accordingly.\n @param _splitOrderId The ID of the split order.\n @param _orderId The ID of the transaction.\n @param _liquidityProvider The address of the liquidity provider.\n @param _settlePercent The rate at which the transaction is settled.\n @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n @return bool the settlement is successful."},"functionSelector":"32553efa","id":2566,"implemented":false,"kind":"function","modifiers":[],"name":"settleOut","nameLocation":"5938:9:9","nodeType":"FunctionDefinition","parameters":{"id":2562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2553,"mutability":"mutable","name":"_splitOrderId","nameLocation":"5959:13:9","nodeType":"VariableDeclaration","scope":2566,"src":"5951:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2552,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5951:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2555,"mutability":"mutable","name":"_orderId","nameLocation":"5984:8:9","nodeType":"VariableDeclaration","scope":2566,"src":"5976:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2554,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5976:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2557,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"6004:18:9","nodeType":"VariableDeclaration","scope":2566,"src":"5996:26:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2556,"name":"address","nodeType":"ElementaryTypeName","src":"5996:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2559,"mutability":"mutable","name":"_settlePercent","nameLocation":"6033:14:9","nodeType":"VariableDeclaration","scope":2566,"src":"6026:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2558,"name":"uint64","nodeType":"ElementaryTypeName","src":"6026:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2561,"mutability":"mutable","name":"_rebatePercent","nameLocation":"6058:14:9","nodeType":"VariableDeclaration","scope":2566,"src":"6051:21:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2560,"name":"uint64","nodeType":"ElementaryTypeName","src":"6051:6:9","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5947:128:9"},"returnParameters":{"id":2565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2564,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2566,"src":"6094:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2563,"name":"bool","nodeType":"ElementaryTypeName","src":"6094:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6093:6:9"},"scope":2620,"src":"5929:171:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2567,"nodeType":"StructuredDocumentation","src":"6103:920:9","text":" @notice Process settleIn order\n @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator\n @dev It process an order and transfers tokens to the recipient after deducting sender fees\n @param _orderId Unique identifier for the order being processed\n @param _token Address of the token to be sent to the user\n @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\n @param _senderFeeRecipient Address that will receive the sender fee\n @param _senderFee Amount of fee to be paid to the sender fee recipient\n @param _recipient Address of the recipient who will receive the tokens\n @param _rate Rate at which the tokens are being sent\n @return success Boolean indicating if the operation was successful"},"functionSelector":"d839de63","id":2586,"implemented":false,"kind":"function","modifiers":[],"name":"settleIn","nameLocation":"7037:8:9","nodeType":"FunctionDefinition","parameters":{"id":2582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2569,"mutability":"mutable","name":"_orderId","nameLocation":"7063:8:9","nodeType":"VariableDeclaration","scope":2586,"src":"7055:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2568,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7055:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2571,"mutability":"mutable","name":"_token","nameLocation":"7089:6:9","nodeType":"VariableDeclaration","scope":2586,"src":"7081:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2570,"name":"address","nodeType":"ElementaryTypeName","src":"7081:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2573,"mutability":"mutable","name":"_amount","nameLocation":"7113:7:9","nodeType":"VariableDeclaration","scope":2586,"src":"7105:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2572,"name":"uint256","nodeType":"ElementaryTypeName","src":"7105:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2575,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"7138:19:9","nodeType":"VariableDeclaration","scope":2586,"src":"7130:27:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2574,"name":"address","nodeType":"ElementaryTypeName","src":"7130:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2577,"mutability":"mutable","name":"_senderFee","nameLocation":"7174:10:9","nodeType":"VariableDeclaration","scope":2586,"src":"7167:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2576,"name":"uint96","nodeType":"ElementaryTypeName","src":"7167:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2579,"mutability":"mutable","name":"_recipient","nameLocation":"7202:10:9","nodeType":"VariableDeclaration","scope":2586,"src":"7194:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2578,"name":"address","nodeType":"ElementaryTypeName","src":"7194:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2581,"mutability":"mutable","name":"_rate","nameLocation":"7229:5:9","nodeType":"VariableDeclaration","scope":2586,"src":"7222:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2580,"name":"uint96","nodeType":"ElementaryTypeName","src":"7222:6:9","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"7045:195:9"},"returnParameters":{"id":2585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2586,"src":"7259:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2583,"name":"bool","nodeType":"ElementaryTypeName","src":"7259:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7258:6:9"},"scope":2620,"src":"7028:237:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2587,"nodeType":"StructuredDocumentation","src":"7268:299:9","text":" @notice Refunds to the specified refundable address.\n @dev Requirements:\n - Only aggregators can call this function.\n @param _fee The amount to be deducted from the amount to be refunded.\n @param _orderId The ID of the transaction.\n @return bool the refund is successful."},"functionSelector":"71eedb88","id":2596,"implemented":false,"kind":"function","modifiers":[],"name":"refund","nameLocation":"7578:6:9","nodeType":"FunctionDefinition","parameters":{"id":2592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2589,"mutability":"mutable","name":"_fee","nameLocation":"7593:4:9","nodeType":"VariableDeclaration","scope":2596,"src":"7585:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2588,"name":"uint256","nodeType":"ElementaryTypeName","src":"7585:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2591,"mutability":"mutable","name":"_orderId","nameLocation":"7607:8:9","nodeType":"VariableDeclaration","scope":2596,"src":"7599:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7599:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7584:32:9"},"returnParameters":{"id":2595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2596,"src":"7635:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2593,"name":"bool","nodeType":"ElementaryTypeName","src":"7635:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7634:6:9"},"scope":2620,"src":"7569:72:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2597,"nodeType":"StructuredDocumentation","src":"7644:157:9","text":" @notice Checks if a token is supported by Gateway.\n @param _token The address of the token to check.\n @return bool the token is supported."},"functionSelector":"75151b63","id":2604,"implemented":false,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"7812:16:9","nodeType":"FunctionDefinition","parameters":{"id":2600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2599,"mutability":"mutable","name":"_token","nameLocation":"7837:6:9","nodeType":"VariableDeclaration","scope":2604,"src":"7829:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2598,"name":"address","nodeType":"ElementaryTypeName","src":"7829:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7828:16:9"},"returnParameters":{"id":2603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2602,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2604,"src":"7868:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2601,"name":"bool","nodeType":"ElementaryTypeName","src":"7868:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7867:6:9"},"scope":2620,"src":"7803:71:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2605,"nodeType":"StructuredDocumentation","src":"7877:128:9","text":" @notice Gets the details of an order.\n @param _orderId The ID of the order.\n @return Order The order details."},"functionSelector":"768c6ec0","id":2613,"implemented":false,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"8016:12:9","nodeType":"FunctionDefinition","parameters":{"id":2608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2607,"mutability":"mutable","name":"_orderId","nameLocation":"8037:8:9","nodeType":"VariableDeclaration","scope":2613,"src":"8029:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2606,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8029:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8028:18:9"},"returnParameters":{"id":2612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2611,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2613,"src":"8070:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":2610,"nodeType":"UserDefinedTypeName","pathNode":{"id":2609,"name":"Order","nameLocations":["8070:5:9"],"nodeType":"IdentifierPath","referencedDeclaration":2530,"src":"8070:5:9"},"referencedDeclaration":2530,"src":"8070:5:9","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$2530_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"8069:14:9"},"scope":2620,"src":"8007:77:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2614,"nodeType":"StructuredDocumentation","src":"8087:107:9","text":" @notice Gets the address of the aggregator.\n @return address The address of the aggregator."},"functionSelector":"3ad59dbc","id":2619,"implemented":false,"kind":"function","modifiers":[],"name":"getAggregator","nameLocation":"8205:13:9","nodeType":"FunctionDefinition","parameters":{"id":2615,"nodeType":"ParameterList","parameters":[],"src":"8218:2:9"},"returnParameters":{"id":2618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2617,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2619,"src":"8244:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2616,"name":"address","nodeType":"ElementaryTypeName","src":"8244:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8243:9:9"},"scope":2620,"src":"8196:57:9","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2621,"src":"211:8044:9","usedErrors":[],"usedEvents":[2442,2455,2472,2479,2488,2499,2508]}],"src":"39:8217:9"},"id":9}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7.json b/artifacts/build-info/solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7.json new file mode 100644 index 0000000..5ad4794 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7.json @@ -0,0 +1,56 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/GatewaySettingManager.sol": "project/contracts/GatewaySettingManager.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./OwnableUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\n address private _pendingOwner;\n\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n function __Ownable2Step_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable2Step_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the address of the pending owner.\n */\n function pendingOwner() public view virtual returns (address) {\n return _pendingOwner;\n }\n\n /**\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual override onlyOwner {\n _pendingOwner = newOwner;\n emit OwnershipTransferStarted(owner(), newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual override {\n delete _pendingOwner;\n super._transferOwnership(newOwner);\n }\n\n /**\n * @dev The new owner accepts the ownership transfer.\n */\n function acceptOwnership() public virtual {\n address sender = _msgSender();\n require(pendingOwner() == sender, \"Ownable2Step: caller is not the new owner\");\n _transferOwnership(sender);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal onlyInitializing {\n _transferOwnership(_msgSender());\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 require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\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 require(newOwner != address(0), \"Ownable: new owner is the zero address\");\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\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 Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\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 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\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 require(_initializing, \"Initializable: contract is not initializing\");\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 require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _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 _initializing;\n }\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n" + }, + "project/contracts/GatewaySettingManager.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\n\n/**\n * @title GatewaySettingManager\n * @dev This contract manages the settings and configurations for the Gateway protocol.\n */\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\n\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\n\tuint256 internal MAX_BPS;\n\tuint64 internal protocolFeePercent; // DEPRECATED — kept for proxy storage compatibility (do not remove)\n\taddress internal treasuryAddress;\n\taddress internal _aggregatorAddress;\n\tmapping(address => uint256) internal _isTokenSupported;\n\n\t// Token-specific fee settings\n\tstruct TokenFeeSettings {\n\t\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\n\t\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\n\t\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\n\t\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\n\t}\n\n\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\n\n\tuint256[49] private __gap;\n\n\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\n\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\n\tevent SetFeeRecipient(address indexed treasuryAddress);\n\tevent TokenFeeSettingsUpdated(\n\t\taddress indexed token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t);\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\n\t/**\n\t * @dev Sets the boolean value for a specific setting.\n\t * @param what The setting to be updated.\n\t * @param value The address or value associated with the setting.\n\t * @param status The boolean value to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\trequire(status == 1 || status == 2, 'Gateway: invalid status');\n\t\tif (what == 'token') {\n\t\t\t_isTokenSupported[value] = status;\n\t\t\temit SettingManagerBool(what, value, status);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Updates a protocol address.\n\t * @param what The address type to be updated (treasury or aggregator).\n\t * @param value The new address to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\tbool updated;\n\t\tif (what == 'treasury') {\n\t\t\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\n\t\t\ttreasuryAddress = value;\n\t\t\tupdated = true;\n\t\t} else if (what == 'aggregator') {\n\t\t\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\n\t\t\t_aggregatorAddress = value;\n\t\t\tupdated = true;\n\t\t}\n\t\tif (updated) {\n\t\t\temit ProtocolAddressUpdated(what, value);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Sets token-specific fee settings for stablecoins.\n\t * @param token The token address to configure.\n\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n\t * Requirements:\n\t * - The token must be supported.\n\t * - Fee percentages must be within valid ranges.\n\t */\n\tfunction setTokenFeeSettings(\n\t\taddress token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t) external onlyOwner {\n\t\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\n\t\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\n\t\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\n\t\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\n\t\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\n\n\t\t_tokenFeeSettings[token] = TokenFeeSettings({\n\t\t\tsenderToProvider: senderToProvider,\n\t\t\tproviderToAggregator: providerToAggregator,\n\t\t\tsenderToAggregator: senderToAggregator,\n\t\t\tproviderToAggregatorFx: providerToAggregatorFx\n\t\t});\n\n\t\temit TokenFeeSettingsUpdated(\n\t\t\ttoken,\n\t\t\tsenderToProvider,\n\t\t\tproviderToAggregator,\n\t\t\tsenderToAggregator,\n\t\t\tproviderToAggregatorFx\n\t\t);\n\t}\n\n\t/**\n\t * @dev Gets token-specific fee settings.\n\t * @param token The token address to query.\n\t * @return TokenFeeSettings struct containing all fee settings for the token.\n\t */\n\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\n\t\treturn _tokenFeeSettings[token];\n\t}\n}\n" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7.output.json b/artifacts/build-info/solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7.output.json new file mode 100644 index 0000000..55c8dc8 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7","output":{"contracts":{"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol":{"Ownable2StepUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"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. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":\"Ownable2StepUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":{\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75267b14b60dc216d01d596a4008189a6c44d3314e53eded0edb1e757d95be16\",\"dweb:/ipfs/QmQoMaxTRT6V7uQj9USfdQH9jh1crywB9auVjThzUSAbG2\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol":{"OwnableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"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\":\"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. By default, the owner account will be the one that deploys the contract. 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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"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.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":\"OwnableUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"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] ```\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_initialized\":{\"custom:oz-retyped-from\":\"bool\",\"details\":\"Indicates that the contract has been initialized.\"},\"_initializing\":{\"details\":\"Indicates that the contract is in the process of being initialized.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol":{"AddressUpgradeable":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f371fbfdbc9f171623de9b760d0f6ab652a855e39fa93618e0a0e274fe333d264736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2F CALLDATACOPY 0x1F 0xBF 0xDB 0xC9 CALL PUSH18 0x623DE9B760D0F6AB652A855E39FA93618E0A 0xE 0x27 0x4F 0xE3 CALLER 0xD2 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"194:9180:3:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;194:9180:3;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f371fbfdbc9f171623de9b760d0f6ab652a855e39fa93618e0a0e274fe333d264736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2F CALLDATACOPY 0x1F 0xBF 0xDB 0xC9 CALL PUSH18 0x623DE9B760D0F6AB652A855E39FA93618E0A 0xE 0x27 0x4F 0xE3 CALLER 0xD2 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"194:9180:3:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":\"AddressUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]}},\"version\":1}"}},"project/contracts/GatewaySettingManager.sol":{"GatewaySettingManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"608060405234801561000f575f80fd5b50610a538061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xA53 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x90 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x164 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x94 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xA9 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH2 0xA2 CALLDATASIZE PUSH1 0x4 PUSH2 0x963 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH2 0x369 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x37C JUMP JUMPDEST PUSH2 0xA7 PUSH2 0xC7 CALLDATASIZE PUSH1 0x4 PUSH2 0x98D JUMP JUMPDEST PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x689 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 SWAP2 DUP3 ADD MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x14E CALLDATASIZE PUSH1 0x4 PUSH2 0x9EB JUMP JUMPDEST PUSH2 0x6FD JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x128 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x818 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1D2 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH8 0x7472656173757279 PUSH1 0xC0 SHL SUB PUSH2 0x288 JUMPI PUSH1 0x98 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SUB PUSH2 0x257 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 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x1E481CD95D PUSH1 0xDA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x98 DUP1 SLOAD PUSH9 0x10000000000000000 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x40 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH2 0x328 JUMP JUMPDEST DUP3 PUSH10 0x30B3B3B932B3B0BA37B9 PUSH1 0xB1 SHL SUB PUSH2 0x328 JUMPI PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND SUB PUSH2 0x309 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 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x18591E481CD95D PUSH1 0xCA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x99 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 SSTORE PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x364 JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP5 SWAP1 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 SWAP1 PUSH0 SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x371 PUSH2 0x889 JUMP JUMPDEST PUSH2 0x37A PUSH0 PUSH2 0x8E3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x65 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x3EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3732BB9037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH2 0x3F3 DUP2 PUSH2 0x8E3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3FE PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x465 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 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x3232B9 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x525 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 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x3932B3B0BA37B9 PUSH1 0xC9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x585 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 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x33B0BA37B9 PUSH1 0xD9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0xE4CACEC2E8DEE440CCF PUSH1 0xB3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP1 DUP3 ADD DUP4 MSTORE DUP7 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP8 DUP2 MSTORE DUP4 DUP6 ADD DUP8 DUP2 MSTORE PUSH1 0x60 DUP1 DUP7 ADD DUP9 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9B DUP8 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP2 MLOAD PUSH1 0x2 DUP8 ADD SSTORE SWAP1 MLOAD PUSH1 0x3 SWAP1 SWAP6 ADD SWAP5 SWAP1 SWAP5 SSTORE DUP5 MLOAD DUP10 DUP2 MSTORE SWAP2 DUP3 ADD DUP9 SWAP1 MSTORE SWAP4 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x6B0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x705 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x753 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP1 PUSH1 0x1 EQ DUP1 PUSH2 0x762 JUMPI POP DUP1 PUSH1 0x2 EQ JUMPDEST PUSH2 0x7AE 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 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP3 PUSH5 0x3A37B5B2B7 PUSH1 0xD9 SHL SUB PUSH2 0x364 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP5 SWAP1 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C SWAP1 PUSH2 0x80B SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x820 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x65 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 0x851 PUSH1 0x33 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 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x37A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x65 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x3F3 DUP2 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x95E JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x974 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x984 PUSH1 0x20 DUP5 ADD PUSH2 0x948 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x9A1 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9AA DUP7 PUSH2 0x948 JUMP JUMPDEST SWAP8 PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP8 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP7 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP7 POP PUSH1 0x80 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9DB JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9E4 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FD JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0xA0D PUSH1 0x20 DUP6 ADD PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH22 0xFC0DC624E2E560BAA461EC00CF4304ED5FA3AD5FE38E 0x23 DUP5 PUSH20 0xE5ABEF0CEE9864736F6C63430008140033000000 ","sourceMap":"276:4766:5:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_176":{"entryPoint":2185,"id":176,"parameterSlots":0,"returnSlots":0},"@_msgSender_766":{"entryPoint":null,"id":766,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_233":{"entryPoint":null,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":2275,"id":78,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":892,"id":100,"parameterSlots":0,"returnSlots":0},"@getTokenFeeSettings_1064":{"entryPoint":1673,"id":1064,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":null,"id":162,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":null,"id":41,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":873,"id":190,"parameterSlots":0,"returnSlots":0},"@setTokenFeeSettings_1050":{"entryPoint":1014,"id":1050,"parameterSlots":5,"returnSlots":0},"@settingManagerBool_905":{"entryPoint":1789,"id":905,"parameterSlots":3,"returnSlots":0},"@transferOwnership_61":{"entryPoint":2072,"id":61,"parameterSlots":1,"returnSlots":0},"@updateProtocolAddress_977":{"entryPoint":375,"id":977,"parameterSlots":2,"returnSlots":0},"abi_decode_address":{"entryPoint":2376,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":2507,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":2445,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":2403,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":2539,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_TokenFeeSettings_$815_memory_ptr__to_t_struct$_TokenFeeSettings_$815_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_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:6935:6","statements":[{"nodeType":"YulBlock","src":"6:3:6","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:6","statements":[{"nodeType":"YulAssignment","src":"73:29:6","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:6"},"nodeType":"YulFunctionCall","src":"82:20:6"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:6"}]},{"body":{"nodeType":"YulBlock","src":"165:16:6","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:6","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:6","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:6"},"nodeType":"YulFunctionCall","src":"167:12:6"},"nodeType":"YulExpressionStatement","src":"167:12:6"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:6"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:6"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:6","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:6","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:6"},"nodeType":"YulFunctionCall","src":"146:11:6"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:6","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:6"},"nodeType":"YulFunctionCall","src":"142:19:6"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:6"},"nodeType":"YulFunctionCall","src":"131:31:6"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:6"},"nodeType":"YulFunctionCall","src":"121:42:6"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:6"},"nodeType":"YulFunctionCall","src":"114:50:6"},"nodeType":"YulIf","src":"111:70:6"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:6","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:6","type":""}],"src":"14:173:6"},{"body":{"nodeType":"YulBlock","src":"279:167:6","statements":[{"body":{"nodeType":"YulBlock","src":"325:16:6","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:1:6","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"337:1:6","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"327:6:6"},"nodeType":"YulFunctionCall","src":"327:12:6"},"nodeType":"YulExpressionStatement","src":"327:12:6"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"300:7:6"},{"name":"headStart","nodeType":"YulIdentifier","src":"309:9:6"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"296:3:6"},"nodeType":"YulFunctionCall","src":"296:23:6"},{"kind":"number","nodeType":"YulLiteral","src":"321:2:6","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"292:3:6"},"nodeType":"YulFunctionCall","src":"292:32:6"},"nodeType":"YulIf","src":"289:52:6"},{"nodeType":"YulAssignment","src":"350:33:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"373:9:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"360:12:6"},"nodeType":"YulFunctionCall","src":"360:23:6"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"350:6:6"}]},{"nodeType":"YulAssignment","src":"392:48:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"425:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"436:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"421:3:6"},"nodeType":"YulFunctionCall","src":"421:18:6"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"402:18:6"},"nodeType":"YulFunctionCall","src":"402:38:6"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"392:6:6"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"237:9:6","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"248:7:6","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"260:6:6","type":""},{"name":"value1","nodeType":"YulTypedName","src":"268:6:6","type":""}],"src":"192:254:6"},{"body":{"nodeType":"YulBlock","src":"589:322:6","statements":[{"body":{"nodeType":"YulBlock","src":"636:16:6","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"645:1:6","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"648:1:6","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"638:6:6"},"nodeType":"YulFunctionCall","src":"638:12:6"},"nodeType":"YulExpressionStatement","src":"638:12:6"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"610:7:6"},{"name":"headStart","nodeType":"YulIdentifier","src":"619:9:6"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"606:3:6"},"nodeType":"YulFunctionCall","src":"606:23:6"},{"kind":"number","nodeType":"YulLiteral","src":"631:3:6","type":"","value":"160"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"602:3:6"},"nodeType":"YulFunctionCall","src":"602:33:6"},"nodeType":"YulIf","src":"599:53:6"},{"nodeType":"YulAssignment","src":"661:39:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"690:9:6"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"671:18:6"},"nodeType":"YulFunctionCall","src":"671:29:6"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"661:6:6"}]},{"nodeType":"YulAssignment","src":"709:42:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"736:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"747:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"732:3:6"},"nodeType":"YulFunctionCall","src":"732:18:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"719:12:6"},"nodeType":"YulFunctionCall","src":"719:32:6"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"709:6:6"}]},{"nodeType":"YulAssignment","src":"760:42:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"787:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"798:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"783:3:6"},"nodeType":"YulFunctionCall","src":"783:18:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"770:12:6"},"nodeType":"YulFunctionCall","src":"770:32:6"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"760:6:6"}]},{"nodeType":"YulAssignment","src":"811:42:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"838:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"849:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"834:3:6"},"nodeType":"YulFunctionCall","src":"834:18:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"821:12:6"},"nodeType":"YulFunctionCall","src":"821:32:6"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"811:6:6"}]},{"nodeType":"YulAssignment","src":"862:43:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"889:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"900:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"885:3:6"},"nodeType":"YulFunctionCall","src":"885:19:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"872:12:6"},"nodeType":"YulFunctionCall","src":"872:33:6"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"862:6:6"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"523:9:6","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"534:7:6","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"546:6:6","type":""},{"name":"value1","nodeType":"YulTypedName","src":"554:6:6","type":""},{"name":"value2","nodeType":"YulTypedName","src":"562:6:6","type":""},{"name":"value3","nodeType":"YulTypedName","src":"570:6:6","type":""},{"name":"value4","nodeType":"YulTypedName","src":"578:6:6","type":""}],"src":"451:460:6"},{"body":{"nodeType":"YulBlock","src":"986:116:6","statements":[{"body":{"nodeType":"YulBlock","src":"1032:16:6","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1041:1:6","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1044:1:6","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1034:6:6"},"nodeType":"YulFunctionCall","src":"1034:12:6"},"nodeType":"YulExpressionStatement","src":"1034:12:6"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1007:7:6"},{"name":"headStart","nodeType":"YulIdentifier","src":"1016:9:6"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1003:3:6"},"nodeType":"YulFunctionCall","src":"1003:23:6"},{"kind":"number","nodeType":"YulLiteral","src":"1028:2:6","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"999:3:6"},"nodeType":"YulFunctionCall","src":"999:32:6"},"nodeType":"YulIf","src":"996:52:6"},{"nodeType":"YulAssignment","src":"1057:39:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1086:9:6"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1067:18:6"},"nodeType":"YulFunctionCall","src":"1067:29:6"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1057:6:6"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"952:9:6","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"963:7:6","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"975:6:6","type":""}],"src":"916:186:6"},{"body":{"nodeType":"YulBlock","src":"1274:273:6","statements":[{"nodeType":"YulAssignment","src":"1284:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1296:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"1307:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1292:3:6"},"nodeType":"YulFunctionCall","src":"1292:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1284:4:6"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1327:9:6"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1344:6:6"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1338:5:6"},"nodeType":"YulFunctionCall","src":"1338:13:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1320:6:6"},"nodeType":"YulFunctionCall","src":"1320:32:6"},"nodeType":"YulExpressionStatement","src":"1320:32:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1372:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"1383:4:6","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1368:3:6"},"nodeType":"YulFunctionCall","src":"1368:20:6"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1400:6:6"},{"kind":"number","nodeType":"YulLiteral","src":"1408:4:6","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1396:3:6"},"nodeType":"YulFunctionCall","src":"1396:17:6"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1390:5:6"},"nodeType":"YulFunctionCall","src":"1390:24:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1361:6:6"},"nodeType":"YulFunctionCall","src":"1361:54:6"},"nodeType":"YulExpressionStatement","src":"1361:54:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1435:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"1446:4:6","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1431:3:6"},"nodeType":"YulFunctionCall","src":"1431:20:6"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1463:6:6"},{"kind":"number","nodeType":"YulLiteral","src":"1471:4:6","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1459:3:6"},"nodeType":"YulFunctionCall","src":"1459:17:6"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1453:5:6"},"nodeType":"YulFunctionCall","src":"1453:24:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1424:6:6"},"nodeType":"YulFunctionCall","src":"1424:54:6"},"nodeType":"YulExpressionStatement","src":"1424:54:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1498:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"1509:4:6","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:6"},"nodeType":"YulFunctionCall","src":"1494:20:6"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1526:6:6"},{"kind":"number","nodeType":"YulLiteral","src":"1534:4:6","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1522:3:6"},"nodeType":"YulFunctionCall","src":"1522:17:6"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1516:5:6"},"nodeType":"YulFunctionCall","src":"1516:24:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1487:6:6"},"nodeType":"YulFunctionCall","src":"1487:54:6"},"nodeType":"YulExpressionStatement","src":"1487:54:6"}]},"name":"abi_encode_tuple_t_struct$_TokenFeeSettings_$815_memory_ptr__to_t_struct$_TokenFeeSettings_$815_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1243:9:6","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1254:6:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1265:4:6","type":""}],"src":"1107:440:6"},{"body":{"nodeType":"YulBlock","src":"1653:102:6","statements":[{"nodeType":"YulAssignment","src":"1663:26:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1675:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"1686:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1671:3:6"},"nodeType":"YulFunctionCall","src":"1671:18:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1663:4:6"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1705:9:6"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1720:6:6"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1736:3:6","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1741:1:6","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1732:3:6"},"nodeType":"YulFunctionCall","src":"1732:11:6"},{"kind":"number","nodeType":"YulLiteral","src":"1745:1:6","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1728:3:6"},"nodeType":"YulFunctionCall","src":"1728:19:6"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1716:3:6"},"nodeType":"YulFunctionCall","src":"1716:32:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1698:6:6"},"nodeType":"YulFunctionCall","src":"1698:51:6"},"nodeType":"YulExpressionStatement","src":"1698:51:6"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1622:9:6","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1633:6:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1644:4:6","type":""}],"src":"1552:203:6"},{"body":{"nodeType":"YulBlock","src":"1864:218:6","statements":[{"body":{"nodeType":"YulBlock","src":"1910:16:6","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1919:1:6","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1922:1:6","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1912:6:6"},"nodeType":"YulFunctionCall","src":"1912:12:6"},"nodeType":"YulExpressionStatement","src":"1912:12:6"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1885:7:6"},{"name":"headStart","nodeType":"YulIdentifier","src":"1894:9:6"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1881:3:6"},"nodeType":"YulFunctionCall","src":"1881:23:6"},{"kind":"number","nodeType":"YulLiteral","src":"1906:2:6","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1877:3:6"},"nodeType":"YulFunctionCall","src":"1877:32:6"},"nodeType":"YulIf","src":"1874:52:6"},{"nodeType":"YulAssignment","src":"1935:33:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1958:9:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1945:12:6"},"nodeType":"YulFunctionCall","src":"1945:23:6"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1935:6:6"}]},{"nodeType":"YulAssignment","src":"1977:48:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2010:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2021:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2006:3:6"},"nodeType":"YulFunctionCall","src":"2006:18:6"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1987:18:6"},"nodeType":"YulFunctionCall","src":"1987:38:6"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1977:6:6"}]},{"nodeType":"YulAssignment","src":"2034:42:6","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2061:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2072:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2057:3:6"},"nodeType":"YulFunctionCall","src":"2057:18:6"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2044:12:6"},"nodeType":"YulFunctionCall","src":"2044:32:6"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2034:6:6"}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1814:9:6","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1825:7:6","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1837:6:6","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1845:6:6","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1853:6:6","type":""}],"src":"1760:322:6"},{"body":{"nodeType":"YulBlock","src":"2261:171:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2278:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2289:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2271:6:6"},"nodeType":"YulFunctionCall","src":"2271:21:6"},"nodeType":"YulExpressionStatement","src":"2271:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2312:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2323:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2308:3:6"},"nodeType":"YulFunctionCall","src":"2308:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"2328:2:6","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2301:6:6"},"nodeType":"YulFunctionCall","src":"2301:30:6"},"nodeType":"YulExpressionStatement","src":"2301:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2351:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2362:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2347:3:6"},"nodeType":"YulFunctionCall","src":"2347:18:6"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"2367:23:6","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2340:6:6"},"nodeType":"YulFunctionCall","src":"2340:51:6"},"nodeType":"YulExpressionStatement","src":"2340:51:6"},{"nodeType":"YulAssignment","src":"2400:26:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2412:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2423:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2408:3:6"},"nodeType":"YulFunctionCall","src":"2408:18:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2400:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2238:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2252:4:6","type":""}],"src":"2087:345:6"},{"body":{"nodeType":"YulBlock","src":"2611:227:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2628:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2639:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2621:6:6"},"nodeType":"YulFunctionCall","src":"2621:21:6"},"nodeType":"YulExpressionStatement","src":"2621:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2662:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2673:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2658:3:6"},"nodeType":"YulFunctionCall","src":"2658:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"2678:2:6","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2651:6:6"},"nodeType":"YulFunctionCall","src":"2651:30:6"},"nodeType":"YulExpressionStatement","src":"2651:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2701:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2712:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2697:3:6"},"nodeType":"YulFunctionCall","src":"2697:18:6"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"2717:34:6","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2690:6:6"},"nodeType":"YulFunctionCall","src":"2690:62:6"},"nodeType":"YulExpressionStatement","src":"2690:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2772:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2783:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2768:3:6"},"nodeType":"YulFunctionCall","src":"2768:18:6"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"2788:7:6","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2761:6:6"},"nodeType":"YulFunctionCall","src":"2761:35:6"},"nodeType":"YulExpressionStatement","src":"2761:35:6"},{"nodeType":"YulAssignment","src":"2805:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2817:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"2828:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2813:3:6"},"nodeType":"YulFunctionCall","src":"2813:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2805:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2588:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2602:4:6","type":""}],"src":"2437:401:6"},{"body":{"nodeType":"YulBlock","src":"3017:229:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3034:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3045:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3027:6:6"},"nodeType":"YulFunctionCall","src":"3027:21:6"},"nodeType":"YulExpressionStatement","src":"3027:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3068:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3079:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3064:3:6"},"nodeType":"YulFunctionCall","src":"3064:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"3084:2:6","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3057:6:6"},"nodeType":"YulFunctionCall","src":"3057:30:6"},"nodeType":"YulExpressionStatement","src":"3057:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3107:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3118:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3103:3:6"},"nodeType":"YulFunctionCall","src":"3103:18:6"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"3123:34:6","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3096:6:6"},"nodeType":"YulFunctionCall","src":"3096:62:6"},"nodeType":"YulExpressionStatement","src":"3096:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3178:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3189:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3174:3:6"},"nodeType":"YulFunctionCall","src":"3174:18:6"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"3194:9:6","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3167:6:6"},"nodeType":"YulFunctionCall","src":"3167:37:6"},"nodeType":"YulExpressionStatement","src":"3167:37:6"},{"nodeType":"YulAssignment","src":"3213:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3225:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3236:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3221:3:6"},"nodeType":"YulFunctionCall","src":"3221:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3213:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2994:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3008:4:6","type":""}],"src":"2843:403:6"},{"body":{"nodeType":"YulBlock","src":"3425:231:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3442:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3453:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3435:6:6"},"nodeType":"YulFunctionCall","src":"3435:21:6"},"nodeType":"YulExpressionStatement","src":"3435:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3476:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3487:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3472:3:6"},"nodeType":"YulFunctionCall","src":"3472:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"3492:2:6","type":"","value":"41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3465:6:6"},"nodeType":"YulFunctionCall","src":"3465:30:6"},"nodeType":"YulExpressionStatement","src":"3465:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3515:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3526:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3511:3:6"},"nodeType":"YulFunctionCall","src":"3511:18:6"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"3531:34:6","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3504:6:6"},"nodeType":"YulFunctionCall","src":"3504:62:6"},"nodeType":"YulExpressionStatement","src":"3504:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3586:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3597:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3582:3:6"},"nodeType":"YulFunctionCall","src":"3582:18:6"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"3602:11:6","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3575:6:6"},"nodeType":"YulFunctionCall","src":"3575:39:6"},"nodeType":"YulExpressionStatement","src":"3575:39:6"},{"nodeType":"YulAssignment","src":"3623:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3635:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3646:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3631:3:6"},"nodeType":"YulFunctionCall","src":"3631:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3623:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3402:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3416:4:6","type":""}],"src":"3251:405:6"},{"body":{"nodeType":"YulBlock","src":"3835:178:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3852:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3863:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3845:6:6"},"nodeType":"YulFunctionCall","src":"3845:21:6"},"nodeType":"YulExpressionStatement","src":"3845:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3886:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3897:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3882:3:6"},"nodeType":"YulFunctionCall","src":"3882:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"3902:2:6","type":"","value":"28"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3875:6:6"},"nodeType":"YulFunctionCall","src":"3875:30:6"},"nodeType":"YulExpressionStatement","src":"3875:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3925:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"3936:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3921:3:6"},"nodeType":"YulFunctionCall","src":"3921:18:6"},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","kind":"string","nodeType":"YulLiteral","src":"3941:30:6","type":"","value":"Gateway: token not supported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3914:6:6"},"nodeType":"YulFunctionCall","src":"3914:58:6"},"nodeType":"YulExpressionStatement","src":"3914:58:6"},{"nodeType":"YulAssignment","src":"3981:26:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3993:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4004:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3989:3:6"},"nodeType":"YulFunctionCall","src":"3989:18:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3981:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3812:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3826:4:6","type":""}],"src":"3661:352:6"},{"body":{"nodeType":"YulBlock","src":"4192:225:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4209:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4220:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4202:6:6"},"nodeType":"YulFunctionCall","src":"4202:21:6"},"nodeType":"YulExpressionStatement","src":"4202:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4243:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4254:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4239:3:6"},"nodeType":"YulFunctionCall","src":"4239:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"4259:2:6","type":"","value":"35"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4232:6:6"},"nodeType":"YulFunctionCall","src":"4232:30:6"},"nodeType":"YulExpressionStatement","src":"4232:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4282:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4293:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4278:3:6"},"nodeType":"YulFunctionCall","src":"4278:18:6"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669","kind":"string","nodeType":"YulLiteral","src":"4298:34:6","type":"","value":"Gateway: invalid sender to provi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4271:6:6"},"nodeType":"YulFunctionCall","src":"4271:62:6"},"nodeType":"YulExpressionStatement","src":"4271:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4353:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4364:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4349:3:6"},"nodeType":"YulFunctionCall","src":"4349:18:6"},{"hexValue":"646572","kind":"string","nodeType":"YulLiteral","src":"4369:5:6","type":"","value":"der"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4342:6:6"},"nodeType":"YulFunctionCall","src":"4342:33:6"},"nodeType":"YulExpressionStatement","src":"4342:33:6"},{"nodeType":"YulAssignment","src":"4384:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4396:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4407:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4392:3:6"},"nodeType":"YulFunctionCall","src":"4392:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4384:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4169:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4183:4:6","type":""}],"src":"4018:399:6"},{"body":{"nodeType":"YulBlock","src":"4596:229:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4613:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4624:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4606:6:6"},"nodeType":"YulFunctionCall","src":"4606:21:6"},"nodeType":"YulExpressionStatement","src":"4606:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4647:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4658:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4643:3:6"},"nodeType":"YulFunctionCall","src":"4643:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"4663:2:6","type":"","value":"39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4636:6:6"},"nodeType":"YulFunctionCall","src":"4636:30:6"},"nodeType":"YulExpressionStatement","src":"4636:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4686:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4697:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4682:3:6"},"nodeType":"YulFunctionCall","src":"4682:18:6"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"4702:34:6","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4675:6:6"},"nodeType":"YulFunctionCall","src":"4675:62:6"},"nodeType":"YulExpressionStatement","src":"4675:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4757:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4768:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4753:3:6"},"nodeType":"YulFunctionCall","src":"4753:18:6"},{"hexValue":"72656761746f72","kind":"string","nodeType":"YulLiteral","src":"4773:9:6","type":"","value":"regator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4746:6:6"},"nodeType":"YulFunctionCall","src":"4746:37:6"},"nodeType":"YulExpressionStatement","src":"4746:37:6"},{"nodeType":"YulAssignment","src":"4792:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4804:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"4815:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4800:3:6"},"nodeType":"YulFunctionCall","src":"4800:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4792:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4573:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4587:4:6","type":""}],"src":"4422:403:6"},{"body":{"nodeType":"YulBlock","src":"5004:227:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5021:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5032:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5014:6:6"},"nodeType":"YulFunctionCall","src":"5014:21:6"},"nodeType":"YulExpressionStatement","src":"5014:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5055:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5066:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5051:3:6"},"nodeType":"YulFunctionCall","src":"5051:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"5071:2:6","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5044:6:6"},"nodeType":"YulFunctionCall","src":"5044:30:6"},"nodeType":"YulExpressionStatement","src":"5044:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5094:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5105:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5090:3:6"},"nodeType":"YulFunctionCall","src":"5090:18:6"},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f206167677265","kind":"string","nodeType":"YulLiteral","src":"5110:34:6","type":"","value":"Gateway: invalid sender to aggre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5083:6:6"},"nodeType":"YulFunctionCall","src":"5083:62:6"},"nodeType":"YulExpressionStatement","src":"5083:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5165:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5176:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5161:3:6"},"nodeType":"YulFunctionCall","src":"5161:18:6"},{"hexValue":"6761746f72","kind":"string","nodeType":"YulLiteral","src":"5181:7:6","type":"","value":"gator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5154:6:6"},"nodeType":"YulFunctionCall","src":"5154:35:6"},"nodeType":"YulExpressionStatement","src":"5154:35:6"},{"nodeType":"YulAssignment","src":"5198:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5210:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5221:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5206:3:6"},"nodeType":"YulFunctionCall","src":"5206:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5198:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4981:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4995:4:6","type":""}],"src":"4830:401:6"},{"body":{"nodeType":"YulBlock","src":"5410:232:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5427:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5438:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5420:6:6"},"nodeType":"YulFunctionCall","src":"5420:21:6"},"nodeType":"YulExpressionStatement","src":"5420:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5461:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5472:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5457:3:6"},"nodeType":"YulFunctionCall","src":"5457:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"5477:2:6","type":"","value":"42"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5450:6:6"},"nodeType":"YulFunctionCall","src":"5450:30:6"},"nodeType":"YulExpressionStatement","src":"5450:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5500:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5511:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5496:3:6"},"nodeType":"YulFunctionCall","src":"5496:18:6"},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f20616767","kind":"string","nodeType":"YulLiteral","src":"5516:34:6","type":"","value":"Gateway: invalid provider to agg"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5489:6:6"},"nodeType":"YulFunctionCall","src":"5489:62:6"},"nodeType":"YulExpressionStatement","src":"5489:62:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5571:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5582:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5567:3:6"},"nodeType":"YulFunctionCall","src":"5567:18:6"},{"hexValue":"72656761746f72206678","kind":"string","nodeType":"YulLiteral","src":"5587:12:6","type":"","value":"regator fx"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5560:6:6"},"nodeType":"YulFunctionCall","src":"5560:40:6"},"nodeType":"YulExpressionStatement","src":"5560:40:6"},{"nodeType":"YulAssignment","src":"5609:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5621:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5632:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5617:3:6"},"nodeType":"YulFunctionCall","src":"5617:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5609:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5387:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5401:4:6","type":""}],"src":"5236:406:6"},{"body":{"nodeType":"YulBlock","src":"5832:206:6","statements":[{"nodeType":"YulAssignment","src":"5842:27:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5854:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5865:3:6","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5850:3:6"},"nodeType":"YulFunctionCall","src":"5850:19:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5842:4:6"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5885:9:6"},{"name":"value0","nodeType":"YulIdentifier","src":"5896:6:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5878:6:6"},"nodeType":"YulFunctionCall","src":"5878:25:6"},"nodeType":"YulExpressionStatement","src":"5878:25:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5923:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5934:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5919:3:6"},"nodeType":"YulFunctionCall","src":"5919:18:6"},{"name":"value1","nodeType":"YulIdentifier","src":"5939:6:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5912:6:6"},"nodeType":"YulFunctionCall","src":"5912:34:6"},"nodeType":"YulExpressionStatement","src":"5912:34:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5966:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"5977:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5962:3:6"},"nodeType":"YulFunctionCall","src":"5962:18:6"},{"name":"value2","nodeType":"YulIdentifier","src":"5982:6:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5955:6:6"},"nodeType":"YulFunctionCall","src":"5955:34:6"},"nodeType":"YulExpressionStatement","src":"5955:34:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6009:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6020:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6005:3:6"},"nodeType":"YulFunctionCall","src":"6005:18:6"},{"name":"value3","nodeType":"YulIdentifier","src":"6025:6:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5998:6:6"},"nodeType":"YulFunctionCall","src":"5998:34:6"},"nodeType":"YulExpressionStatement","src":"5998:34:6"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5777:9:6","type":""},{"name":"value3","nodeType":"YulTypedName","src":"5788:6:6","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5796:6:6","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5804:6:6","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5812:6:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5823:4:6","type":""}],"src":"5647:391:6"},{"body":{"nodeType":"YulBlock","src":"6217:173:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6234:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6245:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6227:6:6"},"nodeType":"YulFunctionCall","src":"6227:21:6"},"nodeType":"YulExpressionStatement","src":"6227:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6268:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6279:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6264:3:6"},"nodeType":"YulFunctionCall","src":"6264:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"6284:2:6","type":"","value":"23"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6257:6:6"},"nodeType":"YulFunctionCall","src":"6257:30:6"},"nodeType":"YulExpressionStatement","src":"6257:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6307:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6318:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6303:3:6"},"nodeType":"YulFunctionCall","src":"6303:18:6"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"6323:25:6","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6296:6:6"},"nodeType":"YulFunctionCall","src":"6296:53:6"},"nodeType":"YulExpressionStatement","src":"6296:53:6"},{"nodeType":"YulAssignment","src":"6358:26:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6370:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6381:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6366:3:6"},"nodeType":"YulFunctionCall","src":"6366:18:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6358:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6194:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6208:4:6","type":""}],"src":"6043:347:6"},{"body":{"nodeType":"YulBlock","src":"6496:76:6","statements":[{"nodeType":"YulAssignment","src":"6506:26:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6518:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6529:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6514:3:6"},"nodeType":"YulFunctionCall","src":"6514:18:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6506:4:6"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6548:9:6"},{"name":"value0","nodeType":"YulIdentifier","src":"6559:6:6"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6541:6:6"},"nodeType":"YulFunctionCall","src":"6541:25:6"},"nodeType":"YulExpressionStatement","src":"6541:25:6"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6465:9:6","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6476:6:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6487:4:6","type":""}],"src":"6395:177:6"},{"body":{"nodeType":"YulBlock","src":"6751:182:6","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6768:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6779:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6761:6:6"},"nodeType":"YulFunctionCall","src":"6761:21:6"},"nodeType":"YulExpressionStatement","src":"6761:21:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6802:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6813:2:6","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6798:3:6"},"nodeType":"YulFunctionCall","src":"6798:18:6"},{"kind":"number","nodeType":"YulLiteral","src":"6818:2:6","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6791:6:6"},"nodeType":"YulFunctionCall","src":"6791:30:6"},"nodeType":"YulExpressionStatement","src":"6791:30:6"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6841:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6852:2:6","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6837:3:6"},"nodeType":"YulFunctionCall","src":"6837:18:6"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"6857:34:6","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6830:6:6"},"nodeType":"YulFunctionCall","src":"6830:62:6"},"nodeType":"YulExpressionStatement","src":"6830:62:6"},{"nodeType":"YulAssignment","src":"6901:26:6","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6913:9:6"},{"kind":"number","nodeType":"YulLiteral","src":"6924:2:6","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6909:3:6"},"nodeType":"YulFunctionCall","src":"6909:18:6"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6901:4:6"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6728:9:6","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6742:4:6","type":""}],"src":"6577:356:6"}]},"contents":"{\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_bytes32t_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := calldataload(add(headStart, 96))\n value4 := calldataload(add(headStart, 128))\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_struct$_TokenFeeSettings_$815_memory_ptr__to_t_struct$_TokenFeeSettings_$815_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, mload(value0))\n mstore(add(headStart, 0x20), mload(add(value0, 0x20)))\n mstore(add(headStart, 0x40), mload(add(value0, 0x40)))\n mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\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_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__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), \"Gateway: zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__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), \"Gateway: treasury address alread\")\n mstore(add(headStart, 96), \"y set\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__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), \"Gateway: aggregator address alre\")\n mstore(add(headStart, 96), \"ady set\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"Ownable2Step: caller is not the \")\n mstore(add(headStart, 96), \"new owner\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c__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), \"Gateway: token not supported\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"Gateway: invalid sender to provi\")\n mstore(add(headStart, 96), \"der\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b__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), \"Gateway: invalid provider to agg\")\n mstore(add(headStart, 96), \"regator\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d__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), \"Gateway: invalid sender to aggre\")\n mstore(add(headStart, 96), \"gator\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"Gateway: invalid provider to agg\")\n mstore(add(headStart, 96), \"regator fx\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n }\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__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), \"Gateway: invalid status\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n}","id":6,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x90 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8BFA0549 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x8BFA0549 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x164 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x94 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xA9 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xB1 JUMPI DUP1 PUSH4 0x898861B0 EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH2 0xA2 CALLDATASIZE PUSH1 0x4 PUSH2 0x963 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH2 0x369 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x37C JUMP JUMPDEST PUSH2 0xA7 PUSH2 0xC7 CALLDATASIZE PUSH1 0x4 PUSH2 0x98D JUMP JUMPDEST PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x689 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 SWAP2 DUP3 ADD MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x14E CALLDATASIZE PUSH1 0x4 PUSH2 0x9EB JUMP JUMPDEST PUSH2 0x6FD JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x128 JUMP JUMPDEST PUSH2 0xA7 PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CB JUMP JUMPDEST PUSH2 0x818 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1D2 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH8 0x7472656173757279 PUSH1 0xC0 SHL SUB PUSH2 0x288 JUMPI PUSH1 0x98 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x1 PUSH1 0x40 SHL SWAP1 SWAP3 DIV AND SUB PUSH2 0x257 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 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x1E481CD95D PUSH1 0xDA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x98 DUP1 SLOAD PUSH9 0x10000000000000000 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x40 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH2 0x328 JUMP JUMPDEST DUP3 PUSH10 0x30B3B3B932B3B0BA37B9 PUSH1 0xB1 SHL SUB PUSH2 0x328 JUMPI PUSH1 0x99 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND SUB PUSH2 0x309 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 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x18591E481CD95D PUSH1 0xCA SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST POP PUSH1 0x99 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 SSTORE PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x364 JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP5 SWAP1 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 SWAP1 PUSH0 SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x371 PUSH2 0x889 JUMP JUMPDEST PUSH2 0x37A PUSH0 PUSH2 0x8E3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x65 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x3EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3732BB9037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH2 0x3F3 DUP2 PUSH2 0x8E3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3FE PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 EQ PUSH2 0x465 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 0x476174657761793A20746F6B656E206E6F7420737570706F7274656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP5 GT ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642073656E64657220746F2070726F7669 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x3232B9 PUSH1 0xE9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP4 GT ISZERO PUSH2 0x525 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 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x3932B3B0BA37B9 PUSH1 0xC9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP3 GT ISZERO PUSH2 0x585 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 0x476174657761793A20696E76616C69642073656E64657220746F206167677265 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x33B0BA37B9 PUSH1 0xD9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x97 SLOAD DUP2 GT ISZERO PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x476174657761793A20696E76616C69642070726F766964657220746F20616767 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0xE4CACEC2E8DEE440CCF PUSH1 0xB3 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP1 DUP3 ADD DUP4 MSTORE DUP7 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP8 DUP2 MSTORE DUP4 DUP6 ADD DUP8 DUP2 MSTORE PUSH1 0x60 DUP1 DUP7 ADD DUP9 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9B DUP8 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP2 MLOAD PUSH1 0x2 DUP8 ADD SSTORE SWAP1 MLOAD PUSH1 0x3 SWAP1 SWAP6 ADD SWAP5 SWAP1 SWAP5 SSTORE DUP5 MLOAD DUP10 DUP2 MSTORE SWAP2 DUP3 ADD DUP9 SWAP1 MSTORE SWAP4 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH32 0xD4D646CFFA66EBF695B792BD660C97076ED45A889E14D544EB8AB8A44B34A59C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x6B0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x9B PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x705 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x753 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 0x476174657761793A207A65726F2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP1 PUSH1 0x1 EQ DUP1 PUSH2 0x762 JUMPI POP DUP1 PUSH1 0x2 EQ JUMPDEST PUSH2 0x7AE 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 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST DUP3 PUSH5 0x3A37B5B2B7 PUSH1 0xD9 SHL SUB PUSH2 0x364 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x9A PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP5 SWAP1 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C SWAP1 PUSH2 0x80B SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x820 PUSH2 0x889 JUMP JUMPDEST PUSH1 0x65 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 0x851 PUSH1 0x33 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 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x37A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x65 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x3F3 DUP2 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x95E JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x974 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x984 PUSH1 0x20 DUP5 ADD PUSH2 0x948 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x9A1 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9AA DUP7 PUSH2 0x948 JUMP JUMPDEST SWAP8 PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP8 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP7 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP7 POP PUSH1 0x80 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9DB JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9E4 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FD JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0xA0D PUSH1 0x20 DUP6 ADD PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH22 0xFC0DC624E2E560BAA461EC00CF4304ED5FA3AD5FE38E 0x23 DUP5 PUSH20 0xE5ABEF0CEE9864736F6C63430008140033000000 ","sourceMap":"276:4766:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2579:551;;;;;;:::i;:::-;;:::i;:::-;;2085:101:1;;;:::i;2031:212:0:-;;;:::i;3741:988:5:-;;;;;;:::i;:::-;;:::i;4909:131::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;1338:13:6;;1320:32;;1408:4;1396:17;;;1390:24;1368:20;;;1361:54;1471:4;1459:17;;;1453:24;1431:20;;;1424:54;1534:4;1522:17;;;1516:24;1494:20;;;1487:54;;;;1307:3;1292:19;;1107:440;4909:131:5;;;;;;;;1462:85:1;1534:6;;-1:-1:-1;;;;;1534:6:1;1462:85;;;-1:-1:-1;;;;;1716:32:6;;;1698:51;;1686:2;1671:18;1462:85:1;1552:203:6;2015:335:5;;;;;;:::i;:::-;;:::i;1144:99:0:-;1223:13;;-1:-1:-1;;;;;1223:13:0;1144:99;;1436:178;;;;;;:::i;:::-;;:::i;2579:551:5:-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;2670:19:5;::::1;2662:53;;;::::0;-1:-1:-1;;;2662:53:5;;2289:2:6;2662:53:5::1;::::0;::::1;2271:21:6::0;2328:2;2308:18;;;2301:30;-1:-1:-1;;;2347:18:6;;;2340:51;2408:18;;2662:53:5::1;;;;;;;;;2719:12;2739:4;-1:-1:-1::0;;;2739:18:5;2735:326:::1;;2772:15;::::0;-1:-1:-1;;;;;2772:24:5;;::::1;-1:-1:-1::0;;;2772:15:5;;::::1;;:24:::0;2764:74:::1;;;::::0;-1:-1:-1;;;2764:74:5;;2639:2:6;2764:74:5::1;::::0;::::1;2621:21:6::0;2678:2;2658:18;;;2651:30;2717:34;2697:18;;;2690:62;-1:-1:-1;;;2768:18:6;;;2761:35;2813:19;;2764:74:5::1;2437:401:6::0;2764:74:5::1;-1:-1:-1::0;2843:15:5::1;:23:::0;;-1:-1:-1;;;;;;2843:23:5::1;-1:-1:-1::0;;;;;;;;2843:23:5;::::1;;;::::0;;-1:-1:-1;2735:326:5::1;;;2900:4;-1:-1:-1::0;;;2900:20:5;2896:165:::1;;2935:18;::::0;-1:-1:-1;;;;;2935:27:5;;::::1;:18:::0;::::1;:27:::0;2927:79:::1;;;::::0;-1:-1:-1;;;2927:79:5;;3045:2:6;2927:79:5::1;::::0;::::1;3027:21:6::0;3084:2;3064:18;;;3057:30;3123:34;3103:18;;;3096:62;-1:-1:-1;;;3174:18:6;;;3167:37;3221:19;;2927:79:5::1;2843:403:6::0;2927:79:5::1;-1:-1:-1::0;3011:18:5::1;:26:::0;;-1:-1:-1;;;;;;3011:26:5::1;-1:-1:-1::0;;;;;3011:26:5;::::1;;::::0;;-1:-1:-1;2896:165:5::1;3068:7;3064:63;;;3087:35;::::0;-1:-1:-1;;;;;3087:35:5;::::1;::::0;3110:4;;3087:35:::1;::::0;;;::::1;3064:63;2658:472;2579:551:::0;;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;2031:212:0:-;1223:13;;965:10:4;;-1:-1:-1;;;;;1223:13:0;2130:24;;2122:78;;;;-1:-1:-1;;;2122:78:0;;3453:2:6;2122:78:0;;;3435:21:6;3492:2;3472:18;;;3465:30;3531:34;3511:18;;;3504:62;-1:-1:-1;;;3582:18:6;;;3575:39;3631:19;;2122:78:0;3251:405:6;2122:78:0;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;3741:988:5:-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;3945:24:5;::::1;;::::0;;;:17:::1;:24;::::0;;;;;3973:1:::1;3945:29;3937:70;;;::::0;-1:-1:-1;;;3937:70:5;;3863:2:6;3937:70:5::1;::::0;::::1;3845:21:6::0;3902:2;3882:18;;;3875:30;3941;3921:18;;;3914:58;3989:18;;3937:70:5::1;3661:352:6::0;3937:70:5::1;4039:7;;4019:16;:27;;4011:75;;;::::0;-1:-1:-1;;;4011:75:5;;4220:2:6;4011:75:5::1;::::0;::::1;4202:21:6::0;4259:2;4239:18;;;4232:30;4298:34;4278:18;;;4271:62;-1:-1:-1;;;4349:18:6;;;4342:33;4392:19;;4011:75:5::1;4018:399:6::0;4011:75:5::1;4122:7;;4098:20;:31;;4090:83;;;::::0;-1:-1:-1;;;4090:83:5;;4624:2:6;4090:83:5::1;::::0;::::1;4606:21:6::0;4663:2;4643:18;;;4636:30;4702:34;4682:18;;;4675:62;-1:-1:-1;;;4753:18:6;;;4746:37;4800:19;;4090:83:5::1;4422:403:6::0;4090:83:5::1;4207:7;;4185:18;:29;;4177:79;;;::::0;-1:-1:-1;;;4177:79:5;;5032:2:6;4177:79:5::1;::::0;::::1;5014:21:6::0;5071:2;5051:18;;;5044:30;5110:34;5090:18;;;5083:62;-1:-1:-1;;;5161:18:6;;;5154:35;5206:19;;4177:79:5::1;4830:401:6::0;4177:79:5::1;4294:7;;4268:22;:33;;4260:88;;;::::0;-1:-1:-1;;;4260:88:5;;5438:2:6;4260:88:5::1;::::0;::::1;5420:21:6::0;5477:2;5457:18;;;5450:30;5516:34;5496:18;;;5489:62;-1:-1:-1;;;5567:18:6;;;5560:40;5617:19;;4260:88:5::1;5236:406:6::0;4260:88:5::1;4380:202;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4353:24:5;::::1;-1:-1:-1::0;4353:24:5;;;:17:::1;:24:::0;;;;;:229;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;4592:133;;5878:25:6;;;5919:18;;;5912:34;;;5962:18;;;5955:34;;;6005:18;;;5998:34;;;4592:133:5::1;::::0;5850:19:6;4592:133:5::1;;;;;;;3741:988:::0;;;;;:::o;4909:131::-;4976:23;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4976:23:5;-1:-1:-1;;;;;;5012:24:5;;;;;:17;:24;;;;;;;;;5005:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4909:131::o;2015:335::-;1355:13:1;:11;:13::i;:::-;-1:-1:-1;;;;;2119:19:5;::::1;2111:53;;;::::0;-1:-1:-1;;;2111:53:5;;2289:2:6;2111:53:5::1;::::0;::::1;2271:21:6::0;2328:2;2308:18;;;2301:30;-1:-1:-1;;;2347:18:6;;;2340:51;2408:18;;2111:53:5::1;2087:345:6::0;2111:53:5::1;2176:6;2186:1;2176:11;:26;;;;2191:6;2201:1;2191:11;2176:26;2168:62;;;::::0;-1:-1:-1;;;2168:62:5;;6245:2:6;2168:62:5::1;::::0;::::1;6227:21:6::0;6284:2;6264:18;;;6257:30;6323:25;6303:18;;;6296:53;6366:18;;2168:62:5::1;6043:347:6::0;2168:62:5::1;2238:4;-1:-1:-1::0;;;2238:15:5;2234:113:::1;;-1:-1:-1::0;;;;;2260:24:5;::::1;;::::0;;;:17:::1;:24;::::0;;;;;;:33;;;2303:39;2322:4;;2303:39:::1;::::0;::::1;::::0;2287:6;6541:25:6;;6529:2;6514:18;;6395:177;2303:39:5::1;;;;;;;;2015:335:::0;;;:::o;1436:178:0:-;1355:13:1;:11;:13::i;:::-;1525::0::1;:24:::0;;-1:-1:-1;;;;;1525:24:0;::::1;-1:-1:-1::0;;;;;;1525:24:0;;::::1;::::0;::::1;::::0;;;1589:7:::1;1534:6:1::0;;-1:-1:-1;;;;;1534:6:1;;1462:85;1589:7:0::1;-1:-1:-1::0;;;;;1564:43:0::1;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1534:6;;-1:-1:-1;;;;;1534:6:1;965:10:4;1683:23:1;1675:68;;;;-1:-1:-1;;;1675:68:1;;6779:2:6;1675:68:1;;;6761:21:6;;;6798:18;;;6791:30;6857:34;6837:18;;;6830:62;6909:18;;1675:68:1;6577:356:6;1798:153:0;1887:13;1880:20;;-1:-1:-1;;;;;;1880:20:0;;;1910:34;1935:8;2779:6:1;;;-1:-1:-1;;;;;2795:17:1;;;-1:-1:-1;;;;;;2795:17:1;;;;;;;2827:40;;2779:6;;;2795:17;2779:6;;2827:40;;2760:16;;2827:40;2750:124;2687:187;:::o;14:173:6:-;82:20;;-1:-1:-1;;;;;131:31:6;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;373:9;360:23;350:33;;402:38;436:2;425:9;421:18;402:38;:::i;:::-;392:48;;192:254;;;;;:::o;451:460::-;546:6;554;562;570;578;631:3;619:9;610:7;606:23;602:33;599:53;;;648:1;645;638:12;599:53;671:29;690:9;671:29;:::i;:::-;661:39;747:2;732:18;;719:32;;-1:-1:-1;798:2:6;783:18;;770:32;;849:2;834:18;;821:32;;-1:-1:-1;900:3:6;885:19;872:33;;-1:-1:-1;451:460:6;-1:-1:-1;;;451:460:6:o;916:186::-;975:6;1028:2;1016:9;1007:7;1003:23;999:32;996:52;;;1044:1;1041;1034:12;996:52;1067:29;1086:9;1067:29;:::i;:::-;1057:39;916:186;-1:-1:-1;;;916:186:6:o;1760:322::-;1837:6;1845;1853;1906:2;1894:9;1885:7;1881:23;1877:32;1874:52;;;1922:1;1919;1912:12;1874:52;1958:9;1945:23;1935:33;;1987:38;2021:2;2010:9;2006:18;1987:38;:::i;:::-;1977:48;;2072:2;2061:9;2057:18;2044:32;2034:42;;1760:322;;;;;:::o"},"methodIdentifiers":{"acceptOwnership()":"79ba5097","getTokenFeeSettings(address)":"8bfa0549","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","setTokenFeeSettings(address,uint256,uint256,uint256,uint256)":"898861b0","settingManagerBool(bytes32,address,uint256)":"cd992400","transferOwnership(address)":"f2fde38b","updateProtocolAddress(bytes32,address)":"40ebc677"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"TokenFeeSettingsUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getTokenFeeSettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"internalType\":\"struct GatewaySettingManager.TokenFeeSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderToProvider\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"senderToAggregator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"providerToAggregatorFx\",\"type\":\"uint256\"}],\"name\":\"setTokenFeeSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"getTokenFeeSettings(address)\":{\"details\":\"Gets token-specific fee settings.\",\"params\":{\"token\":\"The token address to query.\"},\"returns\":{\"_0\":\"TokenFeeSettings struct containing all fee settings for the token.\"}},\"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.\"},\"setTokenFeeSettings(address,uint256,uint256,uint256,uint256)\":{\"details\":\"Sets token-specific fee settings for stablecoins.\",\"params\":{\"providerToAggregator\":\"Percentage of provider's share that goes to aggregator (local mode).\",\"providerToAggregatorFx\":\"Percentage of transaction amount provider pays to aggregator (fx mode). Requirements: - The token must be supported. - Fee percentages must be within valid ranges.\",\"senderToAggregator\":\"Percentage of sender fee that goes to aggregator (fx mode).\",\"senderToProvider\":\"Percentage of sender fee that goes to provider (local mode).\",\"token\":\"The token address to configure.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"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.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/GatewaySettingManager.sol\":\"GatewaySettingManager\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol\":{\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75267b14b60dc216d01d596a4008189a6c44d3314e53eded0edb1e757d95be16\",\"dweb:/ipfs/QmQoMaxTRT6V7uQj9USfdQH9jh1crywB9auVjThzUSAbG2\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]},\"project/contracts/GatewaySettingManager.sol\":{\"keccak256\":\"0x7c1bead31b085f7e2efd902dcd3c60c26e50865c601404ac6b42ed227edb7272\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://8d4b5ff25e485e328cb369502594fa0b7e0adc22c4dc1986a4d21032abbfcfb9\",\"dweb:/ipfs/QmexLQm11m59vFeQG1xEoLBQPjs7pc656fG7TgZaFW7cBY\"]}},\"version\":1}"}}},"sources":{"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[789],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":107,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:0"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol","file":"./OwnableUpgradeable.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":240,"src":"132:34:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":409,"src":"167:63:0","symbolAliases":[{"foreign":{"id":3,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"175:13:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"Initializable","nameLocations":["719:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"719:13:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"719:13:0"},{"baseName":{"id":8,"name":"OwnableUpgradeable","nameLocations":["734:18:0"],"nodeType":"IdentifierPath","referencedDeclaration":239,"src":"734:18:0"},"id":9,"nodeType":"InheritanceSpecifier","src":"734:18:0"}],"canonicalName":"Ownable2StepUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"232:441:0","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 By default, the owner account will be the one that deploys the contract. 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":106,"linearizedBaseContracts":[106,239,789,408],"name":"Ownable2StepUpgradeable","nameLocation":"692:23:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":11,"mutability":"mutable","name":"_pendingOwner","nameLocation":"775:13:0","nodeType":"VariableDeclaration","scope":106,"src":"759:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"759:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700","id":17,"name":"OwnershipTransferStarted","nameLocation":"801:24:0","nodeType":"EventDefinition","parameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"842:13:0","nodeType":"VariableDeclaration","scope":17,"src":"826:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"873:8:0","nodeType":"VariableDeclaration","scope":17,"src":"857:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14,"name":"address","nodeType":"ElementaryTypeName","src":"857:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"825:57:0"},"src":"795:88:0"},{"body":{"id":25,"nodeType":"Block","src":"946:43:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":22,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"956:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"956:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24,"nodeType":"ExpressionStatement","src":"956:26:0"}]},"id":26,"implemented":true,"kind":"function","modifiers":[{"id":20,"kind":"modifierInvocation","modifierName":{"id":19,"name":"onlyInitializing","nameLocations":["929:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"929:16:0"},"nodeType":"ModifierInvocation","src":"929:16:0"}],"name":"__Ownable2Step_init","nameLocation":"898:19:0","nodeType":"FunctionDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[],"src":"917:2:0"},"returnParameters":{"id":21,"nodeType":"ParameterList","parameters":[],"src":"946:0:0"},"scope":106,"src":"889:100:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":31,"nodeType":"Block","src":"1062:7:0","statements":[]},"id":32,"implemented":true,"kind":"function","modifiers":[{"id":29,"kind":"modifierInvocation","modifierName":{"id":28,"name":"onlyInitializing","nameLocations":["1045:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1045:16:0"},"nodeType":"ModifierInvocation","src":"1045:16:0"}],"name":"__Ownable2Step_init_unchained","nameLocation":"1004:29:0","nodeType":"FunctionDefinition","parameters":{"id":27,"nodeType":"ParameterList","parameters":[],"src":"1033:2:0"},"returnParameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1062:0:0"},"scope":106,"src":"995:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":40,"nodeType":"Block","src":"1206:37:0","statements":[{"expression":{"id":38,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1223:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":37,"id":39,"nodeType":"Return","src":"1216:20:0"}]},"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"1074:65:0","text":" @dev Returns the address of the pending owner."},"functionSelector":"e30c3978","id":41,"implemented":true,"kind":"function","modifiers":[],"name":"pendingOwner","nameLocation":"1153:12:0","nodeType":"FunctionDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[],"src":"1165:2:0"},"returnParameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":41,"src":"1197:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":35,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1196:9:0"},"scope":106,"src":"1144:99:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[213],"body":{"id":60,"nodeType":"Block","src":"1515:99:0","statements":[{"expression":{"id":52,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":50,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1525:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":51,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1541:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1525:24:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":53,"nodeType":"ExpressionStatement","src":"1525:24:0"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":55,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1589:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1589:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":57,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1598:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":54,"name":"OwnershipTransferStarted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17,"src":"1564:24:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":59,"nodeType":"EmitStatement","src":"1559:48:0"}]},"documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"1249:182:0","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."},"functionSelector":"f2fde38b","id":61,"implemented":true,"kind":"function","modifiers":[{"id":48,"kind":"modifierInvocation","modifierName":{"id":47,"name":"onlyOwner","nameLocations":["1505:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1505:9:0"},"nodeType":"ModifierInvocation","src":"1505:9:0"}],"name":"transferOwnership","nameLocation":"1445:17:0","nodeType":"FunctionDefinition","overrides":{"id":46,"nodeType":"OverrideSpecifier","overrides":[],"src":"1496:8:0"},"parameters":{"id":45,"nodeType":"ParameterList","parameters":[{"constant":false,"id":44,"mutability":"mutable","name":"newOwner","nameLocation":"1471:8:0","nodeType":"VariableDeclaration","scope":61,"src":"1463:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":43,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:18:0"},"returnParameters":{"id":49,"nodeType":"ParameterList","parameters":[],"src":"1515:0:0"},"scope":106,"src":"1436:178:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[233],"body":{"id":77,"nodeType":"Block","src":"1870:81:0","statements":[{"expression":{"id":69,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1880:20:0","subExpression":{"id":68,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1887:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":70,"nodeType":"ExpressionStatement","src":"1880:20:0"},{"expression":{"arguments":[{"id":74,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":64,"src":"1935:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":71,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1910:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Ownable2StepUpgradeable_$106_$","typeString":"type(contract super Ownable2StepUpgradeable)"}},"id":73,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1916:18:0","memberName":"_transferOwnership","nodeType":"MemberAccess","referencedDeclaration":233,"src":"1910:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":76,"nodeType":"ExpressionStatement","src":"1910:34:0"}]},"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"1620:173:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n Internal function without access restriction."},"id":78,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"1807:18:0","nodeType":"FunctionDefinition","overrides":{"id":66,"nodeType":"OverrideSpecifier","overrides":[],"src":"1861:8:0"},"parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"newOwner","nameLocation":"1834:8:0","nodeType":"VariableDeclaration","scope":78,"src":"1826:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"1826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1825:18:0"},"returnParameters":{"id":67,"nodeType":"ParameterList","parameters":[],"src":"1870:0:0"},"scope":106,"src":"1798:153:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":99,"nodeType":"Block","src":"2073:170:0","statements":[{"assignments":[83],"declarations":[{"constant":false,"id":83,"mutability":"mutable","name":"sender","nameLocation":"2091:6:0","nodeType":"VariableDeclaration","scope":99,"src":"2083:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":82,"name":"address","nodeType":"ElementaryTypeName","src":"2083:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":86,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":84,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"2100:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2100:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2083:29:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":91,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"2130:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2130:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":90,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2148:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2130:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e6572","id":92,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2156:43:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""},"value":"Ownable2Step: caller is not the new owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""}],"id":87,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2122:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":93,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2122:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":94,"nodeType":"ExpressionStatement","src":"2122:78:0"},{"expression":{"arguments":[{"id":96,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2229:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":95,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[78],"referencedDeclaration":78,"src":"2210:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":97,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2210:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":98,"nodeType":"ExpressionStatement","src":"2210:26:0"}]},"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"1957:69:0","text":" @dev The new owner accepts the ownership transfer."},"functionSelector":"79ba5097","id":100,"implemented":true,"kind":"function","modifiers":[],"name":"acceptOwnership","nameLocation":"2040:15:0","nodeType":"FunctionDefinition","parameters":{"id":80,"nodeType":"ParameterList","parameters":[],"src":"2055:2:0"},"returnParameters":{"id":81,"nodeType":"ParameterList","parameters":[],"src":"2073:0:0"},"scope":106,"src":"2031:212:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"constant":false,"documentation":{"id":101,"nodeType":"StructuredDocumentation","src":"2249:254:0","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":105,"mutability":"mutable","name":"__gap","nameLocation":"2528:5:0","nodeType":"VariableDeclaration","scope":106,"src":"2508:25:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"2508:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":104,"length":{"hexValue":"3439","id":103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2516:2:0","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"2508:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":107,"src":"674:1862:0","usedErrors":[],"usedEvents":[17,124,254]}],"src":"107:2430:0"},"id":0},"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[789],"Initializable":[408],"OwnableUpgradeable":[239]},"id":240,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":108,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:1"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":790,"src":"127:41:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":111,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":409,"src":"169:63:1","symbolAliases":[{"foreign":{"id":110,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"177:13:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":113,"name":"Initializable","nameLocations":["769:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"769:13:1"},"id":114,"nodeType":"InheritanceSpecifier","src":"769:13:1"},{"baseName":{"id":115,"name":"ContextUpgradeable","nameLocations":["784:18:1"],"nodeType":"IdentifierPath","referencedDeclaration":789,"src":"784:18:1"},"id":116,"nodeType":"InheritanceSpecifier","src":"784:18:1"}],"canonicalName":"OwnableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"234:494:1","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 By default, the owner account will be the one that deploys the contract. This\n can 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":239,"linearizedBaseContracts":[239,789,408],"name":"OwnableUpgradeable","nameLocation":"747:18:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":118,"mutability":"mutable","name":"_owner","nameLocation":"825:6:1","nodeType":"VariableDeclaration","scope":239,"src":"809:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"809:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":124,"name":"OwnershipTransferred","nameLocation":"844:20:1","nodeType":"EventDefinition","parameters":{"id":123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"881:13:1","nodeType":"VariableDeclaration","scope":124,"src":"865:29:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":119,"name":"address","nodeType":"ElementaryTypeName","src":"865:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":122,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"912:8:1","nodeType":"VariableDeclaration","scope":124,"src":"896:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":121,"name":"address","nodeType":"ElementaryTypeName","src":"896:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"864:57:1"},"src":"838:84:1"},{"body":{"id":133,"nodeType":"Block","src":"1076:43:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":130,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"1086:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1086:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":132,"nodeType":"ExpressionStatement","src":"1086:26:1"}]},"documentation":{"id":125,"nodeType":"StructuredDocumentation","src":"928:91:1","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":134,"implemented":true,"kind":"function","modifiers":[{"id":128,"kind":"modifierInvocation","modifierName":{"id":127,"name":"onlyInitializing","nameLocations":["1059:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1059:16:1"},"nodeType":"ModifierInvocation","src":"1059:16:1"}],"name":"__Ownable_init","nameLocation":"1033:14:1","nodeType":"FunctionDefinition","parameters":{"id":126,"nodeType":"ParameterList","parameters":[],"src":"1047:2:1"},"returnParameters":{"id":129,"nodeType":"ParameterList","parameters":[],"src":"1076:0:1"},"scope":239,"src":"1024:95:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":144,"nodeType":"Block","src":"1187:49:1","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":140,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"1216:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1216:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":139,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"1197:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1197:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":143,"nodeType":"ExpressionStatement","src":"1197:32:1"}]},"id":145,"implemented":true,"kind":"function","modifiers":[{"id":137,"kind":"modifierInvocation","modifierName":{"id":136,"name":"onlyInitializing","nameLocations":["1170:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1170:16:1"},"nodeType":"ModifierInvocation","src":"1170:16:1"}],"name":"__Ownable_init_unchained","nameLocation":"1134:24:1","nodeType":"FunctionDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[],"src":"1158:2:1"},"returnParameters":{"id":138,"nodeType":"ParameterList","parameters":[],"src":"1187:0:1"},"scope":239,"src":"1125:111:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":152,"nodeType":"Block","src":"1345:41:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":148,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1355:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1355:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":150,"nodeType":"ExpressionStatement","src":"1355:13:1"},{"id":151,"nodeType":"PlaceholderStatement","src":"1378:1:1"}]},"documentation":{"id":146,"nodeType":"StructuredDocumentation","src":"1242:77:1","text":" @dev Throws if called by any account other than the owner."},"id":153,"name":"onlyOwner","nameLocation":"1333:9:1","nodeType":"ModifierDefinition","parameters":{"id":147,"nodeType":"ParameterList","parameters":[],"src":"1342:2:1"},"src":"1324:62:1","virtual":false,"visibility":"internal"},{"body":{"id":161,"nodeType":"Block","src":"1517:30:1","statements":[{"expression":{"id":159,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1534:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":158,"id":160,"nodeType":"Return","src":"1527:13:1"}]},"documentation":{"id":154,"nodeType":"StructuredDocumentation","src":"1392:65:1","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":162,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1471:5:1","nodeType":"FunctionDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[],"src":"1476:2:1"},"returnParameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":162,"src":"1508:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1508:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1507:9:1"},"scope":239,"src":"1462:85:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":175,"nodeType":"Block","src":"1665:85:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":167,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1683:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1683:7:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":169,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"1694:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1694:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1683:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1708:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":166,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1675:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":174,"nodeType":"ExpressionStatement","src":"1675:68:1"}]},"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"1553:62:1","text":" @dev Throws if the sender is not the owner."},"id":176,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1629:11:1","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"1640:2:1"},"returnParameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"1665:0:1"},"scope":239,"src":"1620:130:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":189,"nodeType":"Block","src":"2139:47:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2176:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2168:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":183,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:1","typeDescriptions":{}}},"id":186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":182,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2149:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2149:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":188,"nodeType":"ExpressionStatement","src":"2149:30:1"}]},"documentation":{"id":177,"nodeType":"StructuredDocumentation","src":"1756:324:1","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":190,"implemented":true,"kind":"function","modifiers":[{"id":180,"kind":"modifierInvocation","modifierName":{"id":179,"name":"onlyOwner","nameLocations":["2129:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2129:9:1"},"nodeType":"ModifierInvocation","src":"2129:9:1"}],"name":"renounceOwnership","nameLocation":"2094:17:1","nodeType":"FunctionDefinition","parameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"2111:2:1"},"returnParameters":{"id":181,"nodeType":"ParameterList","parameters":[],"src":"2139:0:1"},"scope":239,"src":"2085:101:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":212,"nodeType":"Block","src":"2405:128:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2423:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2443:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2435:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":200,"name":"address","nodeType":"ElementaryTypeName","src":"2435:7:1","typeDescriptions":{}}},"id":203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2423:22:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2447:40:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":198,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2415:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2415:73:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":207,"nodeType":"ExpressionStatement","src":"2415:73:1"},{"expression":{"arguments":[{"id":209,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2517:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":208,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2498:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2498:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":211,"nodeType":"ExpressionStatement","src":"2498:28:1"}]},"documentation":{"id":191,"nodeType":"StructuredDocumentation","src":"2192:138:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":213,"implemented":true,"kind":"function","modifiers":[{"id":196,"kind":"modifierInvocation","modifierName":{"id":195,"name":"onlyOwner","nameLocations":["2395:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2395:9:1"},"nodeType":"ModifierInvocation","src":"2395:9:1"}],"name":"transferOwnership","nameLocation":"2344:17:1","nodeType":"FunctionDefinition","parameters":{"id":194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":193,"mutability":"mutable","name":"newOwner","nameLocation":"2370:8:1","nodeType":"VariableDeclaration","scope":213,"src":"2362:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":192,"name":"address","nodeType":"ElementaryTypeName","src":"2362:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2361:18:1"},"returnParameters":{"id":197,"nodeType":"ParameterList","parameters":[],"src":"2405:0:1"},"scope":239,"src":"2335:198:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":232,"nodeType":"Block","src":"2750:124:1","statements":[{"assignments":[220],"declarations":[{"constant":false,"id":220,"mutability":"mutable","name":"oldOwner","nameLocation":"2768:8:1","nodeType":"VariableDeclaration","scope":232,"src":"2760:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":219,"name":"address","nodeType":"ElementaryTypeName","src":"2760:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":222,"initialValue":{"id":221,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2779:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2760:25:1"},{"expression":{"id":225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":223,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2795:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":224,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2804:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2795:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":226,"nodeType":"ExpressionStatement","src":"2795:17:1"},{"eventCall":{"arguments":[{"id":228,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"2848:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":229,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2858:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"2827:20:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2827:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":231,"nodeType":"EmitStatement","src":"2822:45:1"}]},"documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"2539:143:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":233,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2696:18:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":216,"mutability":"mutable","name":"newOwner","nameLocation":"2723:8:1","nodeType":"VariableDeclaration","scope":233,"src":"2715:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":215,"name":"address","nodeType":"ElementaryTypeName","src":"2715:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2714:18:1"},"returnParameters":{"id":218,"nodeType":"ParameterList","parameters":[],"src":"2750:0:1"},"scope":239,"src":"2687:187:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":234,"nodeType":"StructuredDocumentation","src":"2880:254:1","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":238,"mutability":"mutable","name":"__gap","nameLocation":"3159:5:1","nodeType":"VariableDeclaration","scope":239,"src":"3139:25:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":235,"name":"uint256","nodeType":"ElementaryTypeName","src":"3139:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":237,"length":{"hexValue":"3439","id":236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:2:1","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3139:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":240,"src":"729:2438:1","usedErrors":[],"usedEvents":[124,254]}],"src":"102:3066:1"},"id":1},"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","exportedSymbols":{"AddressUpgradeable":[738],"Initializable":[408]},"id":409,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":241,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"113:23:2"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol","file":"../../utils/AddressUpgradeable.sol","id":242,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":409,"sourceUnit":739,"src":"138:44:2","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":243,"nodeType":"StructuredDocumentation","src":"184: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":408,"linearizedBaseContracts":[408],"name":"Initializable","nameLocation":"2412:13:2","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"2432:109:2","text":" @dev Indicates that the contract has been initialized.\n @custom:oz-retyped-from bool"},"id":246,"mutability":"mutable","name":"_initialized","nameLocation":"2560:12:2","nodeType":"VariableDeclaration","scope":408,"src":"2546:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":245,"name":"uint8","nodeType":"ElementaryTypeName","src":"2546:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"constant":false,"documentation":{"id":247,"nodeType":"StructuredDocumentation","src":"2579:91:2","text":" @dev Indicates that the contract is in the process of being initialized."},"id":249,"mutability":"mutable","name":"_initializing","nameLocation":"2688:13:2","nodeType":"VariableDeclaration","scope":408,"src":"2675:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":248,"name":"bool","nodeType":"ElementaryTypeName","src":"2675:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"anonymous":false,"documentation":{"id":250,"nodeType":"StructuredDocumentation","src":"2708:90:2","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498","id":254,"name":"Initialized","nameLocation":"2809:11:2","nodeType":"EventDefinition","parameters":{"id":253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"2827:7:2","nodeType":"VariableDeclaration","scope":254,"src":"2821:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":251,"name":"uint8","nodeType":"ElementaryTypeName","src":"2821:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2820:15:2"},"src":"2803:33:2"},{"body":{"id":309,"nodeType":"Block","src":"3269:483:2","statements":[{"assignments":[258],"declarations":[{"constant":false,"id":258,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"3284:14:2","nodeType":"VariableDeclaration","scope":309,"src":"3279:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":257,"name":"bool","nodeType":"ElementaryTypeName","src":"3279:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":261,"initialValue":{"id":260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3301:14:2","subExpression":{"id":259,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3302:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3279:36:2"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":263,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3347:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":264,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3365:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3380:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3365:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3347:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3346:36:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3387:45:2","subExpression":{"arguments":[{"arguments":[{"id":273,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3426:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}],"id":272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3418:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"3418:7:2","typeDescriptions":{}}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":269,"name":"AddressUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":738,"src":"3388:18:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AddressUpgradeable_$738_$","typeString":"type(library AddressUpgradeable)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3407:10:2","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":426,"src":"3388:29:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3388:44:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":277,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3436:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3452:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3436:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3387:66:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3386:68:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3346:108:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3468:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":262,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3325:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3325:201:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"ExpressionStatement","src":"3325:201:2"},{"expression":{"id":288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":286,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3536:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3551:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3536:16:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":289,"nodeType":"ExpressionStatement","src":"3536:16:2"},{"condition":{"id":290,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3566:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":296,"nodeType":"IfStatement","src":"3562:65:2","trueBody":{"id":295,"nodeType":"Block","src":"3582:45:2","statements":[{"expression":{"id":293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":291,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3596:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3612:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3596:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":294,"nodeType":"ExpressionStatement","src":"3596:20:2"}]}},{"id":297,"nodeType":"PlaceholderStatement","src":"3636:1:2"},{"condition":{"id":298,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3651:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":308,"nodeType":"IfStatement","src":"3647:99:2","trueBody":{"id":307,"nodeType":"Block","src":"3667:79:2","statements":[{"expression":{"id":301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":299,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3681:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3697:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3681:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":302,"nodeType":"ExpressionStatement","src":"3681:21:2"},{"eventCall":{"arguments":[{"hexValue":"31","id":304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3733: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":303,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"3721:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3721:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":306,"nodeType":"EmitStatement","src":"3716:19:2"}]}}]},"documentation":{"id":255,"nodeType":"StructuredDocumentation","src":"2842:399: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 functions marked with `initializer` can be nested in the context of a\n constructor.\n Emits an {Initialized} event."},"id":310,"name":"initializer","nameLocation":"3255:11:2","nodeType":"ModifierDefinition","parameters":{"id":256,"nodeType":"ParameterList","parameters":[],"src":"3266:2:2"},"src":"3246:506:2","virtual":false,"visibility":"internal"},{"body":{"id":342,"nodeType":"Block","src":"4863:255:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4881:14:2","subExpression":{"id":316,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"4882:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":318,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4899:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":319,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4914:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4899:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4881:40:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4923:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":315,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4873:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4873:99:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4873:99:2"},{"expression":{"id":327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":325,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4982:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":326,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4997:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4982:22:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":328,"nodeType":"ExpressionStatement","src":"4982:22:2"},{"expression":{"id":331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":329,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5014:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5030:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5014:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":332,"nodeType":"ExpressionStatement","src":"5014:20:2"},{"id":333,"nodeType":"PlaceholderStatement","src":"5044:1:2"},{"expression":{"id":336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":334,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5055:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5071:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5055:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":337,"nodeType":"ExpressionStatement","src":"5055:21:2"},{"eventCall":{"arguments":[{"id":339,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"5103:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":338,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"5091:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5091:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":341,"nodeType":"EmitStatement","src":"5086:25:2"}]},"documentation":{"id":311,"nodeType":"StructuredDocumentation","src":"3758:1062: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 255 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":343,"name":"reinitializer","nameLocation":"4834:13:2","nodeType":"ModifierDefinition","parameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":313,"mutability":"mutable","name":"version","nameLocation":"4854:7:2","nodeType":"VariableDeclaration","scope":343,"src":"4848:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":312,"name":"uint8","nodeType":"ElementaryTypeName","src":"4848:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4847:15:2"},"src":"4825:293:2","virtual":false,"visibility":"internal"},{"body":{"id":352,"nodeType":"Block","src":"5356:97:2","statements":[{"expression":{"arguments":[{"id":347,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5374:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420696e697469616c697a696e67","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5389:45:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""},"value":"Initializable: contract is not initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""}],"id":346,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5366:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5366:69:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":350,"nodeType":"ExpressionStatement","src":"5366:69:2"},{"id":351,"nodeType":"PlaceholderStatement","src":"5445:1:2"}]},"documentation":{"id":344,"nodeType":"StructuredDocumentation","src":"5124: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":353,"name":"onlyInitializing","nameLocation":"5337:16:2","nodeType":"ModifierDefinition","parameters":{"id":345,"nodeType":"ParameterList","parameters":[],"src":"5353:2:2"},"src":"5328:125:2","virtual":false,"visibility":"internal"},{"body":{"id":388,"nodeType":"Block","src":"5988:231:2","statements":[{"expression":{"arguments":[{"id":359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6006:14:2","subExpression":{"id":358,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6007:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e67","id":360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6022:41:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""},"value":"Initializable: contract is initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""}],"id":357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5998:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5998:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":362,"nodeType":"ExpressionStatement","src":"5998:66:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":363,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6078:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6099:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":365,"name":"uint8","nodeType":"ElementaryTypeName","src":"6099:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":364,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6094:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6094:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6106:3:2","memberName":"max","nodeType":"MemberAccess","src":"6094:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6078:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":387,"nodeType":"IfStatement","src":"6074:139:2","trueBody":{"id":386,"nodeType":"Block","src":"6111:102:2","statements":[{"expression":{"id":376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":370,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6125:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6145:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":372,"name":"uint8","nodeType":"ElementaryTypeName","src":"6145:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":371,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6140:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6152:3:2","memberName":"max","nodeType":"MemberAccess","src":"6140:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6125:30:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":377,"nodeType":"ExpressionStatement","src":"6125:30:2"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6191:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":380,"name":"uint8","nodeType":"ElementaryTypeName","src":"6191:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":379,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6186:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6186:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6198:3:2","memberName":"max","nodeType":"MemberAccess","src":"6186:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":378,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"6174:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6174:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":385,"nodeType":"EmitStatement","src":"6169:33:2"}]}}]},"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"5459: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":389,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"5948:20:2","nodeType":"FunctionDefinition","parameters":{"id":355,"nodeType":"ParameterList","parameters":[],"src":"5968:2:2"},"returnParameters":{"id":356,"nodeType":"ParameterList","parameters":[],"src":"5988:0:2"},"scope":408,"src":"5939:280:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":397,"nodeType":"Block","src":"6393:36:2","statements":[{"expression":{"id":395,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6410:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":394,"id":396,"nodeType":"Return","src":"6403:19:2"}]},"documentation":{"id":390,"nodeType":"StructuredDocumentation","src":"6225:99:2","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":398,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"6338:22:2","nodeType":"FunctionDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[],"src":"6360:2:2"},"returnParameters":{"id":394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":398,"src":"6386:5:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":392,"name":"uint8","nodeType":"ElementaryTypeName","src":"6386:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6385:7:2"},"scope":408,"src":"6329:100:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":406,"nodeType":"Block","src":"6601:37:2","statements":[{"expression":{"id":404,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6618:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":403,"id":405,"nodeType":"Return","src":"6611:20:2"}]},"documentation":{"id":399,"nodeType":"StructuredDocumentation","src":"6435:105:2","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":407,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"6554:15:2","nodeType":"FunctionDefinition","parameters":{"id":400,"nodeType":"ParameterList","parameters":[],"src":"6569:2:2"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":407,"src":"6595:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":401,"name":"bool","nodeType":"ElementaryTypeName","src":"6595:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6594:6:2"},"scope":408,"src":"6545:93:2","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":409,"src":"2394:4246:2","usedErrors":[],"usedEvents":[254]}],"src":"113:6528:2"},"id":2},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol","exportedSymbols":{"AddressUpgradeable":[738]},"id":739,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":410,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:3"},{"abstract":false,"baseContracts":[],"canonicalName":"AddressUpgradeable","contractDependencies":[],"contractKind":"library","documentation":{"id":411,"nodeType":"StructuredDocumentation","src":"126:67:3","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":738,"linearizedBaseContracts":[738],"name":"AddressUpgradeable","nameLocation":"202:18:3","nodeType":"ContractDefinition","nodes":[{"body":{"id":425,"nodeType":"Block","src":"1489:254:3","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":419,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":414,"src":"1713:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1721:4:3","memberName":"code","nodeType":"MemberAccess","src":"1713:12:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1726:6:3","memberName":"length","nodeType":"MemberAccess","src":"1713:19:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1735:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1713:23:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":418,"id":424,"nodeType":"Return","src":"1706:30:3"}]},"documentation":{"id":412,"nodeType":"StructuredDocumentation","src":"227:1191:3","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":426,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1432:10:3","nodeType":"FunctionDefinition","parameters":{"id":415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":414,"mutability":"mutable","name":"account","nameLocation":"1451:7:3","nodeType":"VariableDeclaration","scope":426,"src":"1443:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":413,"name":"address","nodeType":"ElementaryTypeName","src":"1443:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1442:17:3"},"returnParameters":{"id":418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":426,"src":"1483:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":416,"name":"bool","nodeType":"ElementaryTypeName","src":"1483:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1482:6:3"},"scope":738,"src":"1423:320:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":459,"nodeType":"Block","src":"2729:241:3","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":437,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2755:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$738","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$738","typeString":"library AddressUpgradeable"}],"id":436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2747:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":435,"name":"address","nodeType":"ElementaryTypeName","src":"2747:7:3","typeDescriptions":{}}},"id":438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2747:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2761:7:3","memberName":"balance","nodeType":"MemberAccess","src":"2747:21:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":440,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":431,"src":"2772:6:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2747:31:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2780:31:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":434,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2739:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:73:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":444,"nodeType":"ExpressionStatement","src":"2739:73:3"},{"assignments":[446,null],"declarations":[{"constant":false,"id":446,"mutability":"mutable","name":"success","nameLocation":"2829:7:3","nodeType":"VariableDeclaration","scope":459,"src":"2824:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":445,"name":"bool","nodeType":"ElementaryTypeName","src":"2824:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":453,"initialValue":{"arguments":[{"hexValue":"","id":451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2872:2:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":447,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":429,"src":"2842:9:3","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:4:3","memberName":"call","nodeType":"MemberAccess","src":"2842:14:3","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":450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":449,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":431,"src":"2864:6:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2842:29:3","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":452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2842:33:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2823:52:3"},{"expression":{"arguments":[{"id":455,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":446,"src":"2893:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2902:60:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":454,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2885:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2885:78:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":458,"nodeType":"ExpressionStatement","src":"2885:78:3"}]},"documentation":{"id":427,"nodeType":"StructuredDocumentation","src":"1749:904:3","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":460,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2667:9:3","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":429,"mutability":"mutable","name":"recipient","nameLocation":"2693:9:3","nodeType":"VariableDeclaration","scope":460,"src":"2677:25:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":428,"name":"address","nodeType":"ElementaryTypeName","src":"2677:15:3","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":431,"mutability":"mutable","name":"amount","nameLocation":"2712:6:3","nodeType":"VariableDeclaration","scope":460,"src":"2704:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":430,"name":"uint256","nodeType":"ElementaryTypeName","src":"2704:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:3"},"returnParameters":{"id":433,"nodeType":"ParameterList","parameters":[],"src":"2729:0:3"},"scope":738,"src":"2658:312:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":477,"nodeType":"Block","src":"3801:96:3","statements":[{"expression":{"arguments":[{"id":471,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":463,"src":"3840:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":472,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":465,"src":"3848:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3854:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3857:32:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":470,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[518,562],"referencedDeclaration":562,"src":"3818:21:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3818:72:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":469,"id":476,"nodeType":"Return","src":"3811:79:3"}]},"documentation":{"id":461,"nodeType":"StructuredDocumentation","src":"2976:731:3","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":478,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3721:12:3","nodeType":"FunctionDefinition","parameters":{"id":466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":463,"mutability":"mutable","name":"target","nameLocation":"3742:6:3","nodeType":"VariableDeclaration","scope":478,"src":"3734:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":462,"name":"address","nodeType":"ElementaryTypeName","src":"3734:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":465,"mutability":"mutable","name":"data","nameLocation":"3763:4:3","nodeType":"VariableDeclaration","scope":478,"src":"3750:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":464,"name":"bytes","nodeType":"ElementaryTypeName","src":"3750:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3733:35:3"},"returnParameters":{"id":469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":468,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":478,"src":"3787:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":467,"name":"bytes","nodeType":"ElementaryTypeName","src":"3787:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3786:14:3"},"scope":738,"src":"3712:185:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":497,"nodeType":"Block","src":"4266:76:3","statements":[{"expression":{"arguments":[{"id":491,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":481,"src":"4305:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":492,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":483,"src":"4313:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4319:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":494,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":485,"src":"4322:12:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":490,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[518,562],"referencedDeclaration":562,"src":"4283:21:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4283:52:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":489,"id":496,"nodeType":"Return","src":"4276:59:3"}]},"documentation":{"id":479,"nodeType":"StructuredDocumentation","src":"3903:211:3","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":498,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4128:12:3","nodeType":"FunctionDefinition","parameters":{"id":486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":481,"mutability":"mutable","name":"target","nameLocation":"4158:6:3","nodeType":"VariableDeclaration","scope":498,"src":"4150:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":480,"name":"address","nodeType":"ElementaryTypeName","src":"4150:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":483,"mutability":"mutable","name":"data","nameLocation":"4187:4:3","nodeType":"VariableDeclaration","scope":498,"src":"4174:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":482,"name":"bytes","nodeType":"ElementaryTypeName","src":"4174:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":485,"mutability":"mutable","name":"errorMessage","nameLocation":"4215:12:3","nodeType":"VariableDeclaration","scope":498,"src":"4201:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":484,"name":"string","nodeType":"ElementaryTypeName","src":"4201:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4140:93:3"},"returnParameters":{"id":489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":488,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":498,"src":"4252:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":487,"name":"bytes","nodeType":"ElementaryTypeName","src":"4252:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4251:14:3"},"scope":738,"src":"4119:223:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":517,"nodeType":"Block","src":"4817:111:3","statements":[{"expression":{"arguments":[{"id":511,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"4856:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":512,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"4864:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":513,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"4870:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4877:43:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":510,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[518,562],"referencedDeclaration":562,"src":"4834:21:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4834:87:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":509,"id":516,"nodeType":"Return","src":"4827:94:3"}]},"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"4348:351:3","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":518,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4713:21:3","nodeType":"FunctionDefinition","parameters":{"id":506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":501,"mutability":"mutable","name":"target","nameLocation":"4743:6:3","nodeType":"VariableDeclaration","scope":518,"src":"4735:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":500,"name":"address","nodeType":"ElementaryTypeName","src":"4735:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":503,"mutability":"mutable","name":"data","nameLocation":"4764:4:3","nodeType":"VariableDeclaration","scope":518,"src":"4751:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":502,"name":"bytes","nodeType":"ElementaryTypeName","src":"4751:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":505,"mutability":"mutable","name":"value","nameLocation":"4778:5:3","nodeType":"VariableDeclaration","scope":518,"src":"4770:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":504,"name":"uint256","nodeType":"ElementaryTypeName","src":"4770:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4734:50:3"},"returnParameters":{"id":509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":518,"src":"4803:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":507,"name":"bytes","nodeType":"ElementaryTypeName","src":"4803:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4802:14:3"},"scope":738,"src":"4704:224:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":561,"nodeType":"Block","src":"5355:267:3","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":535,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5381:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$738","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$738","typeString":"library AddressUpgradeable"}],"id":534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5373:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":533,"name":"address","nodeType":"ElementaryTypeName","src":"5373:7:3","typeDescriptions":{}}},"id":536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5373:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5387:7:3","memberName":"balance","nodeType":"MemberAccess","src":"5373:21:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":538,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"5398:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5373:30:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5405:40:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":532,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5365:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5365:81:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":542,"nodeType":"ExpressionStatement","src":"5365:81:3"},{"assignments":[544,546],"declarations":[{"constant":false,"id":544,"mutability":"mutable","name":"success","nameLocation":"5462:7:3","nodeType":"VariableDeclaration","scope":561,"src":"5457:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":543,"name":"bool","nodeType":"ElementaryTypeName","src":"5457:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":546,"mutability":"mutable","name":"returndata","nameLocation":"5484:10:3","nodeType":"VariableDeclaration","scope":561,"src":"5471:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":545,"name":"bytes","nodeType":"ElementaryTypeName","src":"5471:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":553,"initialValue":{"arguments":[{"id":551,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"5524:4:3","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":547,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":521,"src":"5498:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5505:4:3","memberName":"call","nodeType":"MemberAccess","src":"5498:11:3","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":550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":549,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"5517:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5498:25:3","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":552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5456:73:3"},{"expression":{"arguments":[{"id":555,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":521,"src":"5573:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":556,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":544,"src":"5581:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":557,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":546,"src":"5590:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":558,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"5602:12:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":554,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"5546:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5546:69:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":531,"id":560,"nodeType":"Return","src":"5539:76:3"}]},"documentation":{"id":519,"nodeType":"StructuredDocumentation","src":"4934:237:3","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":562,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5185:21:3","nodeType":"FunctionDefinition","parameters":{"id":528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":521,"mutability":"mutable","name":"target","nameLocation":"5224:6:3","nodeType":"VariableDeclaration","scope":562,"src":"5216:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":520,"name":"address","nodeType":"ElementaryTypeName","src":"5216:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":523,"mutability":"mutable","name":"data","nameLocation":"5253:4:3","nodeType":"VariableDeclaration","scope":562,"src":"5240:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":522,"name":"bytes","nodeType":"ElementaryTypeName","src":"5240:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":525,"mutability":"mutable","name":"value","nameLocation":"5275:5:3","nodeType":"VariableDeclaration","scope":562,"src":"5267:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":524,"name":"uint256","nodeType":"ElementaryTypeName","src":"5267:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":527,"mutability":"mutable","name":"errorMessage","nameLocation":"5304:12:3","nodeType":"VariableDeclaration","scope":562,"src":"5290:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":526,"name":"string","nodeType":"ElementaryTypeName","src":"5290:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5206:116:3"},"returnParameters":{"id":531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":562,"src":"5341:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":529,"name":"bytes","nodeType":"ElementaryTypeName","src":"5341:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5340:14:3"},"scope":738,"src":"5176:446:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":578,"nodeType":"Block","src":"5899:97:3","statements":[{"expression":{"arguments":[{"id":573,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":565,"src":"5935:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":574,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":567,"src":"5943:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5949:39:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":572,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[579,608],"referencedDeclaration":608,"src":"5916:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5916:73:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":571,"id":577,"nodeType":"Return","src":"5909:80:3"}]},"documentation":{"id":563,"nodeType":"StructuredDocumentation","src":"5628:166:3","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":579,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5808:18:3","nodeType":"FunctionDefinition","parameters":{"id":568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":565,"mutability":"mutable","name":"target","nameLocation":"5835:6:3","nodeType":"VariableDeclaration","scope":579,"src":"5827:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":564,"name":"address","nodeType":"ElementaryTypeName","src":"5827:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":567,"mutability":"mutable","name":"data","nameLocation":"5856:4:3","nodeType":"VariableDeclaration","scope":579,"src":"5843:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":566,"name":"bytes","nodeType":"ElementaryTypeName","src":"5843:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5826:35:3"},"returnParameters":{"id":571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":570,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":579,"src":"5885:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":569,"name":"bytes","nodeType":"ElementaryTypeName","src":"5885:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5884:14:3"},"scope":738,"src":"5799:197:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":607,"nodeType":"Block","src":"6338:168:3","statements":[{"assignments":[592,594],"declarations":[{"constant":false,"id":592,"mutability":"mutable","name":"success","nameLocation":"6354:7:3","nodeType":"VariableDeclaration","scope":607,"src":"6349:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":591,"name":"bool","nodeType":"ElementaryTypeName","src":"6349:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":594,"mutability":"mutable","name":"returndata","nameLocation":"6376:10:3","nodeType":"VariableDeclaration","scope":607,"src":"6363:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":593,"name":"bytes","nodeType":"ElementaryTypeName","src":"6363:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":599,"initialValue":{"arguments":[{"id":597,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":584,"src":"6408:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":595,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"6390:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6397:10:3","memberName":"staticcall","nodeType":"MemberAccess","src":"6390:17:3","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6390:23:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6348:65:3"},{"expression":{"arguments":[{"id":601,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"6457:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":602,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":592,"src":"6465:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":603,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":594,"src":"6474:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":604,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"6486:12:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":600,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"6430:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6430:69:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":590,"id":606,"nodeType":"Return","src":"6423:76:3"}]},"documentation":{"id":580,"nodeType":"StructuredDocumentation","src":"6002:173:3","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":608,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6189:18:3","nodeType":"FunctionDefinition","parameters":{"id":587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":582,"mutability":"mutable","name":"target","nameLocation":"6225:6:3","nodeType":"VariableDeclaration","scope":608,"src":"6217:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":581,"name":"address","nodeType":"ElementaryTypeName","src":"6217:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":584,"mutability":"mutable","name":"data","nameLocation":"6254:4:3","nodeType":"VariableDeclaration","scope":608,"src":"6241:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":583,"name":"bytes","nodeType":"ElementaryTypeName","src":"6241:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":586,"mutability":"mutable","name":"errorMessage","nameLocation":"6282:12:3","nodeType":"VariableDeclaration","scope":608,"src":"6268:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":585,"name":"string","nodeType":"ElementaryTypeName","src":"6268:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6207:93:3"},"returnParameters":{"id":590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":608,"src":"6324:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":588,"name":"bytes","nodeType":"ElementaryTypeName","src":"6324:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6323:14:3"},"scope":738,"src":"6180:326:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":624,"nodeType":"Block","src":"6782:101:3","statements":[{"expression":{"arguments":[{"id":619,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":611,"src":"6820:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":620,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"6828:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6834:41:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":618,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[625,654],"referencedDeclaration":654,"src":"6799:20:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6799:77:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":617,"id":623,"nodeType":"Return","src":"6792:84:3"}]},"documentation":{"id":609,"nodeType":"StructuredDocumentation","src":"6512:168:3","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":625,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6694:20:3","nodeType":"FunctionDefinition","parameters":{"id":614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":611,"mutability":"mutable","name":"target","nameLocation":"6723:6:3","nodeType":"VariableDeclaration","scope":625,"src":"6715:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":610,"name":"address","nodeType":"ElementaryTypeName","src":"6715:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":613,"mutability":"mutable","name":"data","nameLocation":"6744:4:3","nodeType":"VariableDeclaration","scope":625,"src":"6731:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":612,"name":"bytes","nodeType":"ElementaryTypeName","src":"6731:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6714:35:3"},"returnParameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":625,"src":"6768:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":615,"name":"bytes","nodeType":"ElementaryTypeName","src":"6768:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6767:14:3"},"scope":738,"src":"6685:198:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":653,"nodeType":"Block","src":"7224:170:3","statements":[{"assignments":[638,640],"declarations":[{"constant":false,"id":638,"mutability":"mutable","name":"success","nameLocation":"7240:7:3","nodeType":"VariableDeclaration","scope":653,"src":"7235:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":637,"name":"bool","nodeType":"ElementaryTypeName","src":"7235:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":640,"mutability":"mutable","name":"returndata","nameLocation":"7262:10:3","nodeType":"VariableDeclaration","scope":653,"src":"7249:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":639,"name":"bytes","nodeType":"ElementaryTypeName","src":"7249:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":645,"initialValue":{"arguments":[{"id":643,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":630,"src":"7296:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":641,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"7276:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7283:12:3","memberName":"delegatecall","nodeType":"MemberAccess","src":"7276:19:3","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7276:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7234:67:3"},{"expression":{"arguments":[{"id":647,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"7345:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":648,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":638,"src":"7353:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":649,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":640,"src":"7362:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":650,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":632,"src":"7374:12:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":646,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"7318:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":651,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7318:69:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":636,"id":652,"nodeType":"Return","src":"7311:76:3"}]},"documentation":{"id":626,"nodeType":"StructuredDocumentation","src":"6889:175:3","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":654,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7078:20:3","nodeType":"FunctionDefinition","parameters":{"id":633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":628,"mutability":"mutable","name":"target","nameLocation":"7116:6:3","nodeType":"VariableDeclaration","scope":654,"src":"7108:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":627,"name":"address","nodeType":"ElementaryTypeName","src":"7108:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":630,"mutability":"mutable","name":"data","nameLocation":"7145:4:3","nodeType":"VariableDeclaration","scope":654,"src":"7132:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":629,"name":"bytes","nodeType":"ElementaryTypeName","src":"7132:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":632,"mutability":"mutable","name":"errorMessage","nameLocation":"7173:12:3","nodeType":"VariableDeclaration","scope":654,"src":"7159:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":631,"name":"string","nodeType":"ElementaryTypeName","src":"7159:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7098:93:3"},"returnParameters":{"id":636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":635,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":654,"src":"7210:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":634,"name":"bytes","nodeType":"ElementaryTypeName","src":"7210:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7209:14:3"},"scope":738,"src":"7069:325:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":692,"nodeType":"Block","src":"7876:434:3","statements":[{"condition":{"id":668,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":659,"src":"7890:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":690,"nodeType":"Block","src":"8246:58:3","statements":[{"expression":{"arguments":[{"id":686,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":661,"src":"8268:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":687,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"8280:12:3","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":685,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"8260:7:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8260:33:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":689,"nodeType":"ExpressionStatement","src":"8260:33:3"}]},"id":691,"nodeType":"IfStatement","src":"7886:418:3","trueBody":{"id":684,"nodeType":"Block","src":"7899:341:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":669,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":661,"src":"7917:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7928:6:3","memberName":"length","nodeType":"MemberAccess","src":"7917:17:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7938:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7917:22:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":681,"nodeType":"IfStatement","src":"7913:286:3","trueBody":{"id":680,"nodeType":"Block","src":"7941:258:3","statements":[{"expression":{"arguments":[{"arguments":[{"id":675,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":657,"src":"8143:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":674,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":426,"src":"8132:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8152:31:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":673,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8124:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8124:60:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":679,"nodeType":"ExpressionStatement","src":"8124:60:3"}]}},{"expression":{"id":682,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":661,"src":"8219:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":667,"id":683,"nodeType":"Return","src":"8212:17:3"}]}}]},"documentation":{"id":655,"nodeType":"StructuredDocumentation","src":"7400:277:3","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":693,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7691:26:3","nodeType":"FunctionDefinition","parameters":{"id":664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":657,"mutability":"mutable","name":"target","nameLocation":"7735:6:3","nodeType":"VariableDeclaration","scope":693,"src":"7727:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":656,"name":"address","nodeType":"ElementaryTypeName","src":"7727:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":659,"mutability":"mutable","name":"success","nameLocation":"7756:7:3","nodeType":"VariableDeclaration","scope":693,"src":"7751:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":658,"name":"bool","nodeType":"ElementaryTypeName","src":"7751:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":661,"mutability":"mutable","name":"returndata","nameLocation":"7786:10:3","nodeType":"VariableDeclaration","scope":693,"src":"7773:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":660,"name":"bytes","nodeType":"ElementaryTypeName","src":"7773:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":663,"mutability":"mutable","name":"errorMessage","nameLocation":"7820:12:3","nodeType":"VariableDeclaration","scope":693,"src":"7806:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":662,"name":"string","nodeType":"ElementaryTypeName","src":"7806:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7717:121:3"},"returnParameters":{"id":667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":666,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":693,"src":"7862:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":665,"name":"bytes","nodeType":"ElementaryTypeName","src":"7862:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7861:14:3"},"scope":738,"src":"7682:628:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":716,"nodeType":"Block","src":"8691:135:3","statements":[{"condition":{"id":705,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":696,"src":"8705:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":714,"nodeType":"Block","src":"8762:58:3","statements":[{"expression":{"arguments":[{"id":710,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":698,"src":"8784:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":711,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":700,"src":"8796:12:3","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":709,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"8776:7:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8776:33:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":713,"nodeType":"ExpressionStatement","src":"8776:33:3"}]},"id":715,"nodeType":"IfStatement","src":"8701:119:3","trueBody":{"id":708,"nodeType":"Block","src":"8714:42:3","statements":[{"expression":{"id":706,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":698,"src":"8735:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":704,"id":707,"nodeType":"Return","src":"8728:17:3"}]}}]},"documentation":{"id":694,"nodeType":"StructuredDocumentation","src":"8316:210:3","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":717,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8540:16:3","nodeType":"FunctionDefinition","parameters":{"id":701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":696,"mutability":"mutable","name":"success","nameLocation":"8571:7:3","nodeType":"VariableDeclaration","scope":717,"src":"8566:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":695,"name":"bool","nodeType":"ElementaryTypeName","src":"8566:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":698,"mutability":"mutable","name":"returndata","nameLocation":"8601:10:3","nodeType":"VariableDeclaration","scope":717,"src":"8588:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":697,"name":"bytes","nodeType":"ElementaryTypeName","src":"8588:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":700,"mutability":"mutable","name":"errorMessage","nameLocation":"8635:12:3","nodeType":"VariableDeclaration","scope":717,"src":"8621:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":699,"name":"string","nodeType":"ElementaryTypeName","src":"8621:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8556:97:3"},"returnParameters":{"id":704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":703,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":717,"src":"8677:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":702,"name":"bytes","nodeType":"ElementaryTypeName","src":"8677:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8676:14:3"},"scope":738,"src":"8531:295:3","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":736,"nodeType":"Block","src":"8915:457:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":724,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":719,"src":"8991:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9002:6:3","memberName":"length","nodeType":"MemberAccess","src":"8991:17:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9011:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8991:21:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":734,"nodeType":"Block","src":"9321:45:3","statements":[{"expression":{"arguments":[{"id":731,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":721,"src":"9342:12:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":730,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9335:6:3","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9335:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":733,"nodeType":"ExpressionStatement","src":"9335:20:3"}]},"id":735,"nodeType":"IfStatement","src":"8987:379:3","trueBody":{"id":729,"nodeType":"Block","src":"9014:301:3","statements":[{"AST":{"nodeType":"YulBlock","src":"9172:133:3","statements":[{"nodeType":"YulVariableDeclaration","src":"9190:40:3","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9219:10:3"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9213:5:3"},"nodeType":"YulFunctionCall","src":"9213:17:3"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9194:15:3","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9258:2:3","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9262:10:3"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9254:3:3"},"nodeType":"YulFunctionCall","src":"9254:19:3"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9275:15:3"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9247:6:3"},"nodeType":"YulFunctionCall","src":"9247:44:3"},"nodeType":"YulExpressionStatement","src":"9247:44:3"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":719,"isOffset":false,"isSlot":false,"src":"9219:10:3","valueSize":1},{"declaration":719,"isOffset":false,"isSlot":false,"src":"9262:10:3","valueSize":1}],"id":728,"nodeType":"InlineAssembly","src":"9163:142:3"}]}}]},"id":737,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8841:7:3","nodeType":"FunctionDefinition","parameters":{"id":722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":719,"mutability":"mutable","name":"returndata","nameLocation":"8862:10:3","nodeType":"VariableDeclaration","scope":737,"src":"8849:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":718,"name":"bytes","nodeType":"ElementaryTypeName","src":"8849:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":721,"mutability":"mutable","name":"errorMessage","nameLocation":"8888:12:3","nodeType":"VariableDeclaration","scope":737,"src":"8874:26:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":720,"name":"string","nodeType":"ElementaryTypeName","src":"8874:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8848:53:3"},"returnParameters":{"id":723,"nodeType":"ParameterList","parameters":[],"src":"8915:0:3"},"scope":738,"src":"8832:540:3","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":739,"src":"194:9180:3","usedErrors":[],"usedEvents":[]}],"src":"101:9274:3"},"id":3},"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[789],"Initializable":[408]},"id":790,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":740,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:4"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":742,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":790,"sourceUnit":409,"src":"125:63:4","symbolAliases":[{"foreign":{"id":741,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"133:13:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":744,"name":"Initializable","nameLocations":["727:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"727:13:4"},"id":745,"nodeType":"InheritanceSpecifier","src":"727:13:4"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":743,"nodeType":"StructuredDocumentation","src":"190:496:4","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":789,"linearizedBaseContracts":[789,408],"name":"ContextUpgradeable","nameLocation":"705:18:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":750,"nodeType":"Block","src":"799:7:4","statements":[]},"id":751,"implemented":true,"kind":"function","modifiers":[{"id":748,"kind":"modifierInvocation","modifierName":{"id":747,"name":"onlyInitializing","nameLocations":["782:16:4"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"782:16:4"},"nodeType":"ModifierInvocation","src":"782:16:4"}],"name":"__Context_init","nameLocation":"756:14:4","nodeType":"FunctionDefinition","parameters":{"id":746,"nodeType":"ParameterList","parameters":[],"src":"770:2:4"},"returnParameters":{"id":749,"nodeType":"ParameterList","parameters":[],"src":"799:0:4"},"scope":789,"src":"747:59:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":756,"nodeType":"Block","src":"874:7:4","statements":[]},"id":757,"implemented":true,"kind":"function","modifiers":[{"id":754,"kind":"modifierInvocation","modifierName":{"id":753,"name":"onlyInitializing","nameLocations":["857:16:4"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"857:16:4"},"nodeType":"ModifierInvocation","src":"857:16:4"}],"name":"__Context_init_unchained","nameLocation":"821:24:4","nodeType":"FunctionDefinition","parameters":{"id":752,"nodeType":"ParameterList","parameters":[],"src":"845:2:4"},"returnParameters":{"id":755,"nodeType":"ParameterList","parameters":[],"src":"874:0:4"},"scope":789,"src":"812:69:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":765,"nodeType":"Block","src":"948:34:4","statements":[{"expression":{"expression":{"id":762,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"965:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"969:6:4","memberName":"sender","nodeType":"MemberAccess","src":"965:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":761,"id":764,"nodeType":"Return","src":"958:17:4"}]},"id":766,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"895:10:4","nodeType":"FunctionDefinition","parameters":{"id":758,"nodeType":"ParameterList","parameters":[],"src":"905:2:4"},"returnParameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":766,"src":"939:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":759,"name":"address","nodeType":"ElementaryTypeName","src":"939:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"938:9:4"},"scope":789,"src":"886:96:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":774,"nodeType":"Block","src":"1055:32:4","statements":[{"expression":{"expression":{"id":771,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1072:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1076:4:4","memberName":"data","nodeType":"MemberAccess","src":"1072:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":770,"id":773,"nodeType":"Return","src":"1065:15:4"}]},"id":775,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"997:8:4","nodeType":"FunctionDefinition","parameters":{"id":767,"nodeType":"ParameterList","parameters":[],"src":"1005:2:4"},"returnParameters":{"id":770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":769,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":775,"src":"1039:14:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":768,"name":"bytes","nodeType":"ElementaryTypeName","src":"1039:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1038:16:4"},"scope":789,"src":"988:99:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":782,"nodeType":"Block","src":"1165:25:4","statements":[{"expression":{"hexValue":"30","id":780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1182:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":779,"id":781,"nodeType":"Return","src":"1175:8:4"}]},"id":783,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1102:20:4","nodeType":"FunctionDefinition","parameters":{"id":776,"nodeType":"ParameterList","parameters":[],"src":"1122:2:4"},"returnParameters":{"id":779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":778,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":783,"src":"1156:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":777,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1155:9:4"},"scope":789,"src":"1093:97:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":784,"nodeType":"StructuredDocumentation","src":"1196:254:4","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":788,"mutability":"mutable","name":"__gap","nameLocation":"1475:5:4","nodeType":"VariableDeclaration","scope":789,"src":"1455:25:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":785,"name":"uint256","nodeType":"ElementaryTypeName","src":"1455:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":787,"length":{"hexValue":"3530","id":786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1463:2:4","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"1455:11:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":790,"src":"687:796:4","usedErrors":[],"usedEvents":[254]}],"src":"101:1383:4"},"id":4},"project/contracts/GatewaySettingManager.sol":{"ast":{"absolutePath":"project/contracts/GatewaySettingManager.sol","exportedSymbols":{"ContextUpgradeable":[789],"GatewaySettingManager":[1065],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":1066,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":791,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"168:24:5"},{"absolutePath":"npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","id":792,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1066,"sourceUnit":107,"src":"194:80:5","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":793,"name":"Ownable2StepUpgradeable","nameLocations":["310:23:5"],"nodeType":"IdentifierPath","referencedDeclaration":106,"src":"310:23:5"},"id":794,"nodeType":"InheritanceSpecifier","src":"310:23:5"}],"canonicalName":"GatewaySettingManager","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":1065,"linearizedBaseContracts":[1065,106,239,789,408],"name":"GatewaySettingManager","nameLocation":"285:21:5","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":796,"mutability":"mutable","name":"MAX_BPS","nameLocation":"354:7:5","nodeType":"VariableDeclaration","scope":1065,"src":"337:24:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"337:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":798,"mutability":"mutable","name":"protocolFeePercent","nameLocation":"380:18:5","nodeType":"VariableDeclaration","scope":1065,"src":"364:34:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":797,"name":"uint64","nodeType":"ElementaryTypeName","src":"364:6:5","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":800,"mutability":"mutable","name":"treasuryAddress","nameLocation":"489:15:5","nodeType":"VariableDeclaration","scope":1065,"src":"472:32:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":799,"name":"address","nodeType":"ElementaryTypeName","src":"472:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":802,"mutability":"mutable","name":"_aggregatorAddress","nameLocation":"524:18:5","nodeType":"VariableDeclaration","scope":1065,"src":"507:35:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":801,"name":"address","nodeType":"ElementaryTypeName","src":"507:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":806,"mutability":"mutable","name":"_isTokenSupported","nameLocation":"582:17:5","nodeType":"VariableDeclaration","scope":1065,"src":"545:54:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":805,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":803,"name":"address","nodeType":"ElementaryTypeName","src":"553:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"545:27:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":804,"name":"uint256","nodeType":"ElementaryTypeName","src":"564:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"canonicalName":"GatewaySettingManager.TokenFeeSettings","id":815,"members":[{"constant":false,"id":808,"mutability":"mutable","name":"senderToProvider","nameLocation":"671:16:5","nodeType":"VariableDeclaration","scope":815,"src":"663:24:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":807,"name":"uint256","nodeType":"ElementaryTypeName","src":"663:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":810,"mutability":"mutable","name":"providerToAggregator","nameLocation":"753:20:5","nodeType":"VariableDeclaration","scope":815,"src":"745:28:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":809,"name":"uint256","nodeType":"ElementaryTypeName","src":"745:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":812,"mutability":"mutable","name":"senderToAggregator","nameLocation":"847:18:5","nodeType":"VariableDeclaration","scope":815,"src":"839:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":811,"name":"uint256","nodeType":"ElementaryTypeName","src":"839:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":814,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"930:22:5","nodeType":"VariableDeclaration","scope":815,"src":"922:30:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":813,"name":"uint256","nodeType":"ElementaryTypeName","src":"922:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"TokenFeeSettings","nameLocation":"642:16:5","nodeType":"StructDefinition","scope":1065,"src":"635:386:5","visibility":"public"},{"constant":false,"id":820,"mutability":"mutable","name":"_tokenFeeSettings","nameLocation":"1070:17:5","nodeType":"VariableDeclaration","scope":1065,"src":"1024:63:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$815_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"typeName":{"id":819,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":816,"name":"address","nodeType":"ElementaryTypeName","src":"1032:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1024:36:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$815_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":818,"nodeType":"UserDefinedTypeName","pathNode":{"id":817,"name":"TokenFeeSettings","nameLocations":["1043:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":815,"src":"1043:16:5"},"referencedDeclaration":815,"src":"1043:16:5","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}}},"visibility":"internal"},{"constant":false,"id":824,"mutability":"mutable","name":"__gap","nameLocation":"1111:5:5","nodeType":"VariableDeclaration","scope":1065,"src":"1091:25:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":821,"name":"uint256","nodeType":"ElementaryTypeName","src":"1091:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":823,"length":{"hexValue":"3439","id":822,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1099:2:5","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"1091:11:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"},{"anonymous":false,"eventSelector":"cfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c","id":832,"name":"SettingManagerBool","nameLocation":"1126:18:5","nodeType":"EventDefinition","parameters":{"id":831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":826,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1161:4:5","nodeType":"VariableDeclaration","scope":832,"src":"1145:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":825,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1145:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":828,"indexed":true,"mutability":"mutable","name":"value","nameLocation":"1183:5:5","nodeType":"VariableDeclaration","scope":832,"src":"1167:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":827,"name":"address","nodeType":"ElementaryTypeName","src":"1167:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":830,"indexed":false,"mutability":"mutable","name":"status","nameLocation":"1198:6:5","nodeType":"VariableDeclaration","scope":832,"src":"1190:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":829,"name":"uint256","nodeType":"ElementaryTypeName","src":"1190:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1144:61:5"},"src":"1120:86:5"},{"anonymous":false,"eventSelector":"bbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4","id":838,"name":"ProtocolAddressUpdated","nameLocation":"1214:22:5","nodeType":"EventDefinition","parameters":{"id":837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":834,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1253:4:5","nodeType":"VariableDeclaration","scope":838,"src":"1237:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":833,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1237:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":836,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1275:15:5","nodeType":"VariableDeclaration","scope":838,"src":"1259:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":835,"name":"address","nodeType":"ElementaryTypeName","src":"1259:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1236:55:5"},"src":"1208:84:5"},{"anonymous":false,"eventSelector":"2e979f80fe4d43055c584cf4a8467c55875ea36728fc37176c05acd784eb7a73","id":842,"name":"SetFeeRecipient","nameLocation":"1300:15:5","nodeType":"EventDefinition","parameters":{"id":841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":840,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1332:15:5","nodeType":"VariableDeclaration","scope":842,"src":"1316:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":839,"name":"address","nodeType":"ElementaryTypeName","src":"1316:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1315:33:5"},"src":"1294:55:5"},{"anonymous":false,"eventSelector":"d4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c","id":854,"name":"TokenFeeSettingsUpdated","nameLocation":"1357:23:5","nodeType":"EventDefinition","parameters":{"id":853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":844,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"1400:5:5","nodeType":"VariableDeclaration","scope":854,"src":"1384:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":843,"name":"address","nodeType":"ElementaryTypeName","src":"1384:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":846,"indexed":false,"mutability":"mutable","name":"senderToProvider","nameLocation":"1417:16:5","nodeType":"VariableDeclaration","scope":854,"src":"1409:24:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":845,"name":"uint256","nodeType":"ElementaryTypeName","src":"1409:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":848,"indexed":false,"mutability":"mutable","name":"providerToAggregator","nameLocation":"1445:20:5","nodeType":"VariableDeclaration","scope":854,"src":"1437:28:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":847,"name":"uint256","nodeType":"ElementaryTypeName","src":"1437:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":850,"indexed":false,"mutability":"mutable","name":"senderToAggregator","nameLocation":"1477:18:5","nodeType":"VariableDeclaration","scope":854,"src":"1469:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":849,"name":"uint256","nodeType":"ElementaryTypeName","src":"1469:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":852,"indexed":false,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"1507:22:5","nodeType":"VariableDeclaration","scope":854,"src":"1499:30:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":851,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1380:152:5"},"src":"1351:182:5"},{"body":{"id":904,"nodeType":"Block","src":"2107:243:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":867,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":859,"src":"2119:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2136:1:5","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":869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2128:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":868,"name":"address","nodeType":"ElementaryTypeName","src":"2128:7:5","typeDescriptions":{}}},"id":871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2128:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2119:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2140:23:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":866,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2111:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2111:53:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":875,"nodeType":"ExpressionStatement","src":"2111:53:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":877,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":861,"src":"2176:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2186:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2176:11:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":880,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":861,"src":"2191:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2201:1:5","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2191:11:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2176:26:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c696420737461747573","id":884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2204:25:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""},"value":"Gateway: invalid status"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""}],"id":876,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2168:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:62:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":886,"nodeType":"ExpressionStatement","src":"2168:62:5"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":887,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"2238:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"746f6b656e","id":888,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2246:7:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_9b9b0454cadcb5884dd3faa6ba975da4d2459aa3f11d31291a25a8358f84946d","typeString":"literal_string \"token\""},"value":"token"},"src":"2238:15:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":903,"nodeType":"IfStatement","src":"2234:113:5","trueBody":{"id":902,"nodeType":"Block","src":"2255:92:5","statements":[{"expression":{"id":894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":890,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":806,"src":"2260:17:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":892,"indexExpression":{"id":891,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":859,"src":"2278:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2260:24:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":893,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":861,"src":"2287:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2260:33:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":895,"nodeType":"ExpressionStatement","src":"2260:33:5"},{"eventCall":{"arguments":[{"id":897,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"2322:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":898,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":859,"src":"2328:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":899,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":861,"src":"2335:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":896,"name":"SettingManagerBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":832,"src":"2303:18:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2303:39:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":901,"nodeType":"EmitStatement","src":"2298:44:5"}]}}]},"documentation":{"id":855,"nodeType":"StructuredDocumentation","src":"1730:283:5","text":" @dev Sets the boolean value for a specific setting.\n @param what The setting to be updated.\n @param value The address or value associated with the setting.\n @param status The boolean value to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"cd992400","id":905,"implemented":true,"kind":"function","modifiers":[{"id":864,"kind":"modifierInvocation","modifierName":{"id":863,"name":"onlyOwner","nameLocations":["2097:9:5"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2097:9:5"},"nodeType":"ModifierInvocation","src":"2097:9:5"}],"name":"settingManagerBool","nameLocation":"2024:18:5","nodeType":"FunctionDefinition","parameters":{"id":862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":857,"mutability":"mutable","name":"what","nameLocation":"2051:4:5","nodeType":"VariableDeclaration","scope":905,"src":"2043:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":856,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2043:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":859,"mutability":"mutable","name":"value","nameLocation":"2065:5:5","nodeType":"VariableDeclaration","scope":905,"src":"2057:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":858,"name":"address","nodeType":"ElementaryTypeName","src":"2057:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":861,"mutability":"mutable","name":"status","nameLocation":"2080:6:5","nodeType":"VariableDeclaration","scope":905,"src":"2072:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":860,"name":"uint256","nodeType":"ElementaryTypeName","src":"2072:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2042:45:5"},"returnParameters":{"id":865,"nodeType":"ParameterList","parameters":[],"src":"2107:0:5"},"scope":1065,"src":"2015:335:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":976,"nodeType":"Block","src":"2658:472:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":916,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"2670:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2687:1:5","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":918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2679:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":917,"name":"address","nodeType":"ElementaryTypeName","src":"2679:7:5","typeDescriptions":{}}},"id":920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2679:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2670:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2691:23:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":915,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2662:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2662:53:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":924,"nodeType":"ExpressionStatement","src":"2662:53:5"},{"assignments":[926],"declarations":[{"constant":false,"id":926,"mutability":"mutable","name":"updated","nameLocation":"2724:7:5","nodeType":"VariableDeclaration","scope":976,"src":"2719:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":925,"name":"bool","nodeType":"ElementaryTypeName","src":"2719:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":927,"nodeType":"VariableDeclarationStatement","src":"2719:12:5"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":928,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":908,"src":"2739:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"7472656173757279","id":929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2747:10:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_cbd818ad4dd6f1ff9338c2bb62480241424dd9a65f9f3284101a01cd099ad8ac","typeString":"literal_string \"treasury\""},"value":"treasury"},"src":"2739:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":947,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":908,"src":"2900:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"61676772656761746f72","id":948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2908:12:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_e124d7cc79a19705865fa21b784ba187cd393559e960c0c071132cb60354d1a3","typeString":"literal_string \"aggregator\""},"value":"aggregator"},"src":"2900:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":966,"nodeType":"IfStatement","src":"2896:165:5","trueBody":{"id":965,"nodeType":"Block","src":"2922:139:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":951,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":802,"src":"2935:18:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":952,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"2957:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2935:27:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c726561647920736574","id":954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2964:41:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""},"value":"Gateway: aggregator address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""}],"id":950,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2927:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2927:79:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":956,"nodeType":"ExpressionStatement","src":"2927:79:5"},{"expression":{"id":959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":957,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":802,"src":"3011:18:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":958,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"3032:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3011:26:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":960,"nodeType":"ExpressionStatement","src":"3011:26:5"},{"expression":{"id":963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":961,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":926,"src":"3042:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":962,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3052:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3042:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":964,"nodeType":"ExpressionStatement","src":"3042:14:5"}]}},"id":967,"nodeType":"IfStatement","src":"2735:326:5","trueBody":{"id":946,"nodeType":"Block","src":"2759:131:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":932,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":800,"src":"2772:15:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":933,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"2791:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2772:24:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207472656173757279206164647265737320616c726561647920736574","id":935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2798:39:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""},"value":"Gateway: treasury address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""}],"id":931,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2764:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2764:74:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":937,"nodeType":"ExpressionStatement","src":"2764:74:5"},{"expression":{"id":940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":938,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":800,"src":"2843:15:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":939,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"2861:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2843:23:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":941,"nodeType":"ExpressionStatement","src":"2843:23:5"},{"expression":{"id":944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":942,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":926,"src":"2871:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2881:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2871:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":945,"nodeType":"ExpressionStatement","src":"2871:14:5"}]}},{"condition":{"id":968,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":926,"src":"3068:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":975,"nodeType":"IfStatement","src":"3064:63:5","trueBody":{"id":974,"nodeType":"Block","src":"3077:50:5","statements":[{"eventCall":{"arguments":[{"id":970,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":908,"src":"3110:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":971,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"3116:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":969,"name":"ProtocolAddressUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":838,"src":"3087:22:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3087:35:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":973,"nodeType":"EmitStatement","src":"3082:40:5"}]}}]},"documentation":{"id":906,"nodeType":"StructuredDocumentation","src":"2353:224:5","text":" @dev Updates a protocol address.\n @param what The address type to be updated (treasury or aggregator).\n @param value The new address to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"40ebc677","id":977,"implemented":true,"kind":"function","modifiers":[{"id":913,"kind":"modifierInvocation","modifierName":{"id":912,"name":"onlyOwner","nameLocations":["2648:9:5"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2648:9:5"},"nodeType":"ModifierInvocation","src":"2648:9:5"}],"name":"updateProtocolAddress","nameLocation":"2588:21:5","nodeType":"FunctionDefinition","parameters":{"id":911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":908,"mutability":"mutable","name":"what","nameLocation":"2618:4:5","nodeType":"VariableDeclaration","scope":977,"src":"2610:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":907,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2610:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":910,"mutability":"mutable","name":"value","nameLocation":"2632:5:5","nodeType":"VariableDeclaration","scope":977,"src":"2624:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":909,"name":"address","nodeType":"ElementaryTypeName","src":"2624:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2609:29:5"},"returnParameters":{"id":914,"nodeType":"ParameterList","parameters":[],"src":"2658:0:5"},"scope":1065,"src":"2579:551:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1049,"nodeType":"Block","src":"3933:796:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":994,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":806,"src":"3945:17:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":996,"indexExpression":{"id":995,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"3963:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3945:24:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3973:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3945:29:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20746f6b656e206e6f7420737570706f72746564","id":999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3976:30:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""},"value":"Gateway: token not supported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3f07205cb39e6c947bbb133a9fd10de17701d35b93bb895cea8433bd9918af0c","typeString":"literal_string \"Gateway: token not supported\""}],"id":993,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3937:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3937:70:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1001,"nodeType":"ExpressionStatement","src":"3937:70:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1003,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":982,"src":"4019:16:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1004,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"4039:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4019:27:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2070726f7669646572","id":1006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4048:37:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""},"value":"Gateway: invalid sender to provider"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_63b58bcc4a91718aacfb3c174b0bff74bdb13cf537c07508b5245f214de30cb8","typeString":"literal_string \"Gateway: invalid sender to provider\""}],"id":1002,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4011:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4011:75:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1008,"nodeType":"ExpressionStatement","src":"4011:75:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1010,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"4098:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1011,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"4122:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4098:31:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72","id":1013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4131:41:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""},"value":"Gateway: invalid provider to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1edac53312281d76c5b407cdad258a2635f6fd17361674c33f407694617e237b","typeString":"literal_string \"Gateway: invalid provider to aggregator\""}],"id":1009,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4090:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4090:83:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1015,"nodeType":"ExpressionStatement","src":"4090:83:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1017,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":986,"src":"4185:18:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1018,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"4207:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4185:29:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642073656e64657220746f2061676772656761746f72","id":1020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4216:39:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""},"value":"Gateway: invalid sender to aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b1a50bdb98a1e1bd299635184f9dc47280e72f96c271e38a8fd57c97b205c22d","typeString":"literal_string \"Gateway: invalid sender to aggregator\""}],"id":1016,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4177:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4177:79:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1022,"nodeType":"ExpressionStatement","src":"4177:79:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1024,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":988,"src":"4268:22:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1025,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"4294:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4268:33:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c69642070726f766964657220746f2061676772656761746f72206678","id":1027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4303:44:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""},"value":"Gateway: invalid provider to aggregator fx"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3834603f284ea1fcac348414560e8d54be711b53b8500dcc3aa4160f01819029","typeString":"literal_string \"Gateway: invalid provider to aggregator fx\""}],"id":1023,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4260:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4260:88:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1029,"nodeType":"ExpressionStatement","src":"4260:88:5"},{"expression":{"id":1039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1030,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":820,"src":"4353:17:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$815_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1032,"indexExpression":{"id":1031,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"4371:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4353:24:5","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1034,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":982,"src":"4420:16:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1035,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"4463:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1036,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":986,"src":"4508:18:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1037,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":988,"src":"4555:22:5","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"}],"id":1033,"name":"TokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":815,"src":"4380:16:5","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TokenFeeSettings_$815_storage_ptr_$","typeString":"type(struct GatewaySettingManager.TokenFeeSettings storage pointer)"}},"id":1038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4402:16:5","4441:20:5","4488:18:5","4531:22:5"],"names":["senderToProvider","providerToAggregator","senderToAggregator","providerToAggregatorFx"],"nodeType":"FunctionCall","src":"4380:202:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings memory"}},"src":"4353:229:5","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"id":1040,"nodeType":"ExpressionStatement","src":"4353:229:5"},{"eventCall":{"arguments":[{"id":1042,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"4620:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1043,"name":"senderToProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":982,"src":"4630:16:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1044,"name":"providerToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":984,"src":"4651:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1045,"name":"senderToAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":986,"src":"4676:18:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1046,"name":"providerToAggregatorFx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":988,"src":"4699:22:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1041,"name":"TokenFeeSettingsUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":854,"src":"4592:23:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,uint256)"}},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4592:133:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1048,"nodeType":"EmitStatement","src":"4587:138:5"}]},"documentation":{"id":978,"nodeType":"StructuredDocumentation","src":"3133:606:5","text":" @dev Sets token-specific fee settings for stablecoins.\n @param token The token address to configure.\n @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n Requirements:\n - The token must be supported.\n - Fee percentages must be within valid ranges."},"functionSelector":"898861b0","id":1050,"implemented":true,"kind":"function","modifiers":[{"id":991,"kind":"modifierInvocation","modifierName":{"id":990,"name":"onlyOwner","nameLocations":["3923:9:5"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"3923:9:5"},"nodeType":"ModifierInvocation","src":"3923:9:5"}],"name":"setTokenFeeSettings","nameLocation":"3750:19:5","nodeType":"FunctionDefinition","parameters":{"id":989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":980,"mutability":"mutable","name":"token","nameLocation":"3781:5:5","nodeType":"VariableDeclaration","scope":1050,"src":"3773:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":979,"name":"address","nodeType":"ElementaryTypeName","src":"3773:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":982,"mutability":"mutable","name":"senderToProvider","nameLocation":"3798:16:5","nodeType":"VariableDeclaration","scope":1050,"src":"3790:24:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":981,"name":"uint256","nodeType":"ElementaryTypeName","src":"3790:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":984,"mutability":"mutable","name":"providerToAggregator","nameLocation":"3826:20:5","nodeType":"VariableDeclaration","scope":1050,"src":"3818:28:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":983,"name":"uint256","nodeType":"ElementaryTypeName","src":"3818:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":986,"mutability":"mutable","name":"senderToAggregator","nameLocation":"3858:18:5","nodeType":"VariableDeclaration","scope":1050,"src":"3850:26:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":985,"name":"uint256","nodeType":"ElementaryTypeName","src":"3850:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":988,"mutability":"mutable","name":"providerToAggregatorFx","nameLocation":"3888:22:5","nodeType":"VariableDeclaration","scope":1050,"src":"3880:30:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":987,"name":"uint256","nodeType":"ElementaryTypeName","src":"3880:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3769:144:5"},"returnParameters":{"id":992,"nodeType":"ParameterList","parameters":[],"src":"3933:0:5"},"scope":1065,"src":"3741:988:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1063,"nodeType":"Block","src":"5001:39:5","statements":[{"expression":{"baseExpression":{"id":1059,"name":"_tokenFeeSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":820,"src":"5012:17:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TokenFeeSettings_$815_storage_$","typeString":"mapping(address => struct GatewaySettingManager.TokenFeeSettings storage ref)"}},"id":1061,"indexExpression":{"id":1060,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1053,"src":"5030:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5012:24:5","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_storage","typeString":"struct GatewaySettingManager.TokenFeeSettings storage ref"}},"functionReturnParameters":1058,"id":1062,"nodeType":"Return","src":"5005:31:5"}]},"documentation":{"id":1051,"nodeType":"StructuredDocumentation","src":"4732:175:5","text":" @dev Gets token-specific fee settings.\n @param token The token address to query.\n @return TokenFeeSettings struct containing all fee settings for the token."},"functionSelector":"8bfa0549","id":1064,"implemented":true,"kind":"function","modifiers":[],"name":"getTokenFeeSettings","nameLocation":"4918:19:5","nodeType":"FunctionDefinition","parameters":{"id":1054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1053,"mutability":"mutable","name":"token","nameLocation":"4946:5:5","nodeType":"VariableDeclaration","scope":1064,"src":"4938:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1052,"name":"address","nodeType":"ElementaryTypeName","src":"4938:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4937:15:5"},"returnParameters":{"id":1058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1057,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1064,"src":"4976:23:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_memory_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"},"typeName":{"id":1056,"nodeType":"UserDefinedTypeName","pathNode":{"id":1055,"name":"TokenFeeSettings","nameLocations":["4976:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":815,"src":"4976:16:5"},"referencedDeclaration":815,"src":"4976:16:5","typeDescriptions":{"typeIdentifier":"t_struct$_TokenFeeSettings_$815_storage_ptr","typeString":"struct GatewaySettingManager.TokenFeeSettings"}},"visibility":"internal"}],"src":"4975:25:5"},"scope":1065,"src":"4909:131:5","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1066,"src":"276:4766:5","usedErrors":[],"usedEvents":[17,124,254,832,838,842,854]}],"src":"168:4875:5"},"id":5}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf.json b/artifacts/build-info/solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf.json new file mode 100644 index 0000000..2e8ba7c --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf.json @@ -0,0 +1,53 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/mocks/MockUSDC.sol": "project/contracts/mocks/MockUSDC.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.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 ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the 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 override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` 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 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * 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 `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `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 * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev 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 amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/Context.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n" + }, + "project/contracts/mocks/MockUSDC.sol": { + "content": "//SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\n/// @dev Mock mintable USDC\ncontract MockUSDT is ERC20 {\n constructor() ERC20(\"MockUDSC\", \"MUSDC\") {\n _mint(msg.sender, 1_000_000E18);\n }\n\n function mint(uint256 _amount) external {\n _mint(msg.sender, _amount);\n }\n\n function burn(uint256 _amount) external {\n _burn(msg.sender, _amount);\n }\n\n function burnAll() external {\n uint256 _balanceOf = balanceOf(msg.sender);\n require(_balanceOf > 0, \"MockUSDT: Nothing to burn\");\n _burn(msg.sender, _balanceOf);\n }\n}\n" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf.output.json b/artifacts/build-info/solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf.output.json new file mode 100644 index 0000000..16dfdb8 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf","output":{"contracts":{"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_44":{"entryPoint":null,"id":44,"parameterSlots":2,"returnSlots":0},"abi_decode_string_fromMemory":{"entryPoint":109,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory":{"entryPoint":279,"id":null,"parameterSlots":2,"returnSlots":2},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":439,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":521,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":381,"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":89,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:4144:5","statements":[{"nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:5"},"nodeType":"YulFunctionCall","src":"66:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:5"},"nodeType":"YulFunctionCall","src":"56:31:5"},"nodeType":"YulExpressionStatement","src":"56:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:5","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:5"},"nodeType":"YulFunctionCall","src":"96:15:5"},"nodeType":"YulExpressionStatement","src":"96:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:5"},"nodeType":"YulFunctionCall","src":"120:15:5"},"nodeType":"YulExpressionStatement","src":"120:15:5"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:5"},{"body":{"nodeType":"YulBlock","src":"210:776:5","statements":[{"body":{"nodeType":"YulBlock","src":"259:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"271:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"261:6:5"},"nodeType":"YulFunctionCall","src":"261:12:5"},"nodeType":"YulExpressionStatement","src":"261:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"238:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"246:4:5","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"234:3:5"},"nodeType":"YulFunctionCall","src":"234:17:5"},{"name":"end","nodeType":"YulIdentifier","src":"253:3:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"230:3:5"},"nodeType":"YulFunctionCall","src":"230:27:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"223:6:5"},"nodeType":"YulFunctionCall","src":"223:35:5"},"nodeType":"YulIf","src":"220:55:5"},{"nodeType":"YulVariableDeclaration","src":"284:23:5","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"300:6:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"294:5:5"},"nodeType":"YulFunctionCall","src":"294:13:5"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"288:2:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"316:28:5","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:2:5","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"338:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"330:3:5"},"nodeType":"YulFunctionCall","src":"330:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"342:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"326:3:5"},"nodeType":"YulFunctionCall","src":"326:18:5"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"320:2:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"367:22:5","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"369:16:5"},"nodeType":"YulFunctionCall","src":"369:18:5"},"nodeType":"YulExpressionStatement","src":"369:18:5"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"359:2:5"},{"name":"_2","nodeType":"YulIdentifier","src":"363:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"356:2:5"},"nodeType":"YulFunctionCall","src":"356:10:5"},"nodeType":"YulIf","src":"353:36:5"},{"nodeType":"YulVariableDeclaration","src":"398:17:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"412:2:5","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"408:3:5"},"nodeType":"YulFunctionCall","src":"408:7:5"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"402:2:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"424:23:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"444:2:5","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"438:5:5"},"nodeType":"YulFunctionCall","src":"438:9:5"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"428:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"456:71:5","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"478:6:5"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"502:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"506:4:5","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"498:3:5"},"nodeType":"YulFunctionCall","src":"498:13:5"},{"name":"_3","nodeType":"YulIdentifier","src":"513:2:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"494:3:5"},"nodeType":"YulFunctionCall","src":"494:22:5"},{"kind":"number","nodeType":"YulLiteral","src":"518:2:5","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"490:3:5"},"nodeType":"YulFunctionCall","src":"490:31:5"},{"name":"_3","nodeType":"YulIdentifier","src":"523:2:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"486:3:5"},"nodeType":"YulFunctionCall","src":"486:40:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"474:3:5"},"nodeType":"YulFunctionCall","src":"474:53:5"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"460:10:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"586:22:5","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"588:16:5"},"nodeType":"YulFunctionCall","src":"588:18:5"},"nodeType":"YulExpressionStatement","src":"588:18:5"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"545:10:5"},{"name":"_2","nodeType":"YulIdentifier","src":"557:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"542:2:5"},"nodeType":"YulFunctionCall","src":"542:18:5"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"565:10:5"},{"name":"memPtr","nodeType":"YulIdentifier","src":"577:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"562:2:5"},"nodeType":"YulFunctionCall","src":"562:22:5"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"539:2:5"},"nodeType":"YulFunctionCall","src":"539:46:5"},"nodeType":"YulIf","src":"536:72:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"624:2:5","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"628:10:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"617:6:5"},"nodeType":"YulFunctionCall","src":"617:22:5"},"nodeType":"YulExpressionStatement","src":"617:22:5"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"655:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"663:2:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"648:6:5"},"nodeType":"YulFunctionCall","src":"648:18:5"},"nodeType":"YulExpressionStatement","src":"648:18:5"},{"nodeType":"YulVariableDeclaration","src":"675:14:5","value":{"kind":"number","nodeType":"YulLiteral","src":"685:4:5","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"679:2:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"735:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"744:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"747:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"737:6:5"},"nodeType":"YulFunctionCall","src":"737:12:5"},"nodeType":"YulExpressionStatement","src":"737:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"712:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"720:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"708:3:5"},"nodeType":"YulFunctionCall","src":"708:15:5"},{"name":"_4","nodeType":"YulIdentifier","src":"725:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"704:3:5"},"nodeType":"YulFunctionCall","src":"704:24:5"},{"name":"end","nodeType":"YulIdentifier","src":"730:3:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"701:2:5"},"nodeType":"YulFunctionCall","src":"701:33:5"},"nodeType":"YulIf","src":"698:53:5"},{"nodeType":"YulVariableDeclaration","src":"760:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"769:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"764:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"825:87:5","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"854:6:5"},{"name":"i","nodeType":"YulIdentifier","src":"862:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"850:3:5"},"nodeType":"YulFunctionCall","src":"850:14:5"},{"name":"_4","nodeType":"YulIdentifier","src":"866:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"846:3:5"},"nodeType":"YulFunctionCall","src":"846:23:5"},{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"885:6:5"},{"name":"i","nodeType":"YulIdentifier","src":"893:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"881:3:5"},"nodeType":"YulFunctionCall","src":"881:14:5"},{"name":"_4","nodeType":"YulIdentifier","src":"897:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:5"},"nodeType":"YulFunctionCall","src":"877:23:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"871:5:5"},"nodeType":"YulFunctionCall","src":"871:30:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"839:6:5"},"nodeType":"YulFunctionCall","src":"839:63:5"},"nodeType":"YulExpressionStatement","src":"839:63:5"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"790:1:5"},{"name":"_1","nodeType":"YulIdentifier","src":"793:2:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"787:2:5"},"nodeType":"YulFunctionCall","src":"787:9:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"797:19:5","statements":[{"nodeType":"YulAssignment","src":"799:15:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"808:1:5"},{"name":"_4","nodeType":"YulIdentifier","src":"811:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"804:3:5"},"nodeType":"YulFunctionCall","src":"804:10:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"799:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"783:3:5","statements":[]},"src":"779:133:5"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"936:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"944:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"932:3:5"},"nodeType":"YulFunctionCall","src":"932:15:5"},{"name":"_4","nodeType":"YulIdentifier","src":"949:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"928:3:5"},"nodeType":"YulFunctionCall","src":"928:24:5"},{"kind":"number","nodeType":"YulLiteral","src":"954:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"921:6:5"},"nodeType":"YulFunctionCall","src":"921:35:5"},"nodeType":"YulExpressionStatement","src":"921:35:5"},{"nodeType":"YulAssignment","src":"965:15:5","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"974:6:5"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"965:5:5"}]}]},"name":"abi_decode_string_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"184:6:5","type":""},{"name":"end","nodeType":"YulTypedName","src":"192:3:5","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"200:5:5","type":""}],"src":"146:840:5"},{"body":{"nodeType":"YulBlock","src":"1109:444:5","statements":[{"body":{"nodeType":"YulBlock","src":"1155:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1164:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1167:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1157:6:5"},"nodeType":"YulFunctionCall","src":"1157:12:5"},"nodeType":"YulExpressionStatement","src":"1157:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1130:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"1139:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1126:3:5"},"nodeType":"YulFunctionCall","src":"1126:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"1151:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1122:3:5"},"nodeType":"YulFunctionCall","src":"1122:32:5"},"nodeType":"YulIf","src":"1119:52:5"},{"nodeType":"YulVariableDeclaration","src":"1180:30:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1200:9:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1194:5:5"},"nodeType":"YulFunctionCall","src":"1194:16:5"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1184:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1219:28:5","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1237:2:5","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1241:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1233:3:5"},"nodeType":"YulFunctionCall","src":"1233:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"1245:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1229:3:5"},"nodeType":"YulFunctionCall","src":"1229:18:5"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1223:2:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1274:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1283:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1286:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1276:6:5"},"nodeType":"YulFunctionCall","src":"1276:12:5"},"nodeType":"YulExpressionStatement","src":"1276:12:5"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1262:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"1270:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1259:2:5"},"nodeType":"YulFunctionCall","src":"1259:14:5"},"nodeType":"YulIf","src":"1256:34:5"},{"nodeType":"YulAssignment","src":"1299:71:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1342:9:5"},{"name":"offset","nodeType":"YulIdentifier","src":"1353:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1338:3:5"},"nodeType":"YulFunctionCall","src":"1338:22:5"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1362:7:5"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1309:28:5"},"nodeType":"YulFunctionCall","src":"1309:61:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1299:6:5"}]},{"nodeType":"YulVariableDeclaration","src":"1379:41:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1405:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1416:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1401:3:5"},"nodeType":"YulFunctionCall","src":"1401:18:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1395:5:5"},"nodeType":"YulFunctionCall","src":"1395:25:5"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1383:8:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1449:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1458:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1461:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1451:6:5"},"nodeType":"YulFunctionCall","src":"1451:12:5"},"nodeType":"YulExpressionStatement","src":"1451:12:5"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1435:8:5"},{"name":"_1","nodeType":"YulIdentifier","src":"1445:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1432:2:5"},"nodeType":"YulFunctionCall","src":"1432:16:5"},"nodeType":"YulIf","src":"1429:36:5"},{"nodeType":"YulAssignment","src":"1474:73:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1517:9:5"},{"name":"offset_1","nodeType":"YulIdentifier","src":"1528:8:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1513:3:5"},"nodeType":"YulFunctionCall","src":"1513:24:5"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1539:7:5"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1484:28:5"},"nodeType":"YulFunctionCall","src":"1484:63:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1474:6:5"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1067:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1078:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1090:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1098:6:5","type":""}],"src":"991:562:5"},{"body":{"nodeType":"YulBlock","src":"1613:325:5","statements":[{"nodeType":"YulAssignment","src":"1623:22:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1637:1:5","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"1640:4:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1633:3:5"},"nodeType":"YulFunctionCall","src":"1633:12:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1623:6:5"}]},{"nodeType":"YulVariableDeclaration","src":"1654:38:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1684:4:5"},{"kind":"number","nodeType":"YulLiteral","src":"1690:1:5","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1680:3:5"},"nodeType":"YulFunctionCall","src":"1680:12:5"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"1658:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1731:31:5","statements":[{"nodeType":"YulAssignment","src":"1733:27:5","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1747:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"1755:4:5","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1743:3:5"},"nodeType":"YulFunctionCall","src":"1743:17:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1733:6:5"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1711:18:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1704:6:5"},"nodeType":"YulFunctionCall","src":"1704:26:5"},"nodeType":"YulIf","src":"1701:61:5"},{"body":{"nodeType":"YulBlock","src":"1821:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1842:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1849:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1854:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1845:3:5"},"nodeType":"YulFunctionCall","src":"1845:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1835:6:5"},"nodeType":"YulFunctionCall","src":"1835:31:5"},"nodeType":"YulExpressionStatement","src":"1835:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1886:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1889:4:5","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1879:6:5"},"nodeType":"YulFunctionCall","src":"1879:15:5"},"nodeType":"YulExpressionStatement","src":"1879:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1914:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1917:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1907:6:5"},"nodeType":"YulFunctionCall","src":"1907:15:5"},"nodeType":"YulExpressionStatement","src":"1907:15:5"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1777:18:5"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1800:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"1808:2:5","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1797:2:5"},"nodeType":"YulFunctionCall","src":"1797:14:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1774:2:5"},"nodeType":"YulFunctionCall","src":"1774:38:5"},"nodeType":"YulIf","src":"1771:161:5"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"1593:4:5","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"1602:6:5","type":""}],"src":"1558:380:5"},{"body":{"nodeType":"YulBlock","src":"1999:65:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2016:1:5","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"2019:3:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2009:6:5"},"nodeType":"YulFunctionCall","src":"2009:14:5"},"nodeType":"YulExpressionStatement","src":"2009:14:5"},{"nodeType":"YulAssignment","src":"2032:26:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2050:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2053:4:5","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2040:9:5"},"nodeType":"YulFunctionCall","src":"2040:18:5"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"2032:4:5"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"1982:3:5","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"1990:4:5","type":""}],"src":"1943:121:5"},{"body":{"nodeType":"YulBlock","src":"2150:464:5","statements":[{"body":{"nodeType":"YulBlock","src":"2183:425:5","statements":[{"nodeType":"YulVariableDeclaration","src":"2197:11:5","value":{"kind":"number","nodeType":"YulLiteral","src":"2207:1:5","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2201:2:5","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2228:2:5"},{"name":"array","nodeType":"YulIdentifier","src":"2232:5:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2221:6:5"},"nodeType":"YulFunctionCall","src":"2221:17:5"},"nodeType":"YulExpressionStatement","src":"2221:17:5"},{"nodeType":"YulVariableDeclaration","src":"2251:31:5","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2273:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"2277:4:5","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2263:9:5"},"nodeType":"YulFunctionCall","src":"2263:19:5"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"2255:4:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2295:57:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2318:4:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2328:1:5","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2335:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"2347:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2331:3:5"},"nodeType":"YulFunctionCall","src":"2331:19:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2324:3:5"},"nodeType":"YulFunctionCall","src":"2324:27:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2314:3:5"},"nodeType":"YulFunctionCall","src":"2314:38:5"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"2299:11:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2389:23:5","statements":[{"nodeType":"YulAssignment","src":"2391:19:5","value":{"name":"data","nodeType":"YulIdentifier","src":"2406:4:5"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"2391:11:5"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2371:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"2383:4:5","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2368:2:5"},"nodeType":"YulFunctionCall","src":"2368:20:5"},"nodeType":"YulIf","src":"2365:47:5"},{"nodeType":"YulVariableDeclaration","src":"2425:41:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2439:4:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2449:1:5","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2456:3:5"},{"kind":"number","nodeType":"YulLiteral","src":"2461:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2452:3:5"},"nodeType":"YulFunctionCall","src":"2452:12:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2445:3:5"},"nodeType":"YulFunctionCall","src":"2445:20:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2435:3:5"},"nodeType":"YulFunctionCall","src":"2435:31:5"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2429:2:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2479:24:5","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"2492:11:5"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"2483:5:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2577:21:5","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2586:5:5"},{"name":"_1","nodeType":"YulIdentifier","src":"2593:2:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2579:6:5"},"nodeType":"YulFunctionCall","src":"2579:17:5"},"nodeType":"YulExpressionStatement","src":"2579:17:5"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2527:5:5"},{"name":"_2","nodeType":"YulIdentifier","src":"2534:2:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2524:2:5"},"nodeType":"YulFunctionCall","src":"2524:13:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2538:26:5","statements":[{"nodeType":"YulAssignment","src":"2540:22:5","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2553:5:5"},{"kind":"number","nodeType":"YulLiteral","src":"2560:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2549:3:5"},"nodeType":"YulFunctionCall","src":"2549:13:5"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2540:5:5"}]}]},"pre":{"nodeType":"YulBlock","src":"2520:3:5","statements":[]},"src":"2516:82:5"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2166:3:5"},{"kind":"number","nodeType":"YulLiteral","src":"2171:2:5","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2163:2:5"},"nodeType":"YulFunctionCall","src":"2163:11:5"},"nodeType":"YulIf","src":"2160:448:5"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"2122:5:5","type":""},{"name":"len","nodeType":"YulTypedName","src":"2129:3:5","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"2134:10:5","type":""}],"src":"2069:545:5"},{"body":{"nodeType":"YulBlock","src":"2704:81:5","statements":[{"nodeType":"YulAssignment","src":"2714:65:5","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2729:4:5"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2747:1:5","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"2750:3:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2743:3:5"},"nodeType":"YulFunctionCall","src":"2743:11:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2760:1:5","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2756:3:5"},"nodeType":"YulFunctionCall","src":"2756:6:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2739:3:5"},"nodeType":"YulFunctionCall","src":"2739:24:5"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2735:3:5"},"nodeType":"YulFunctionCall","src":"2735:29:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2725:3:5"},"nodeType":"YulFunctionCall","src":"2725:40:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2771:1:5","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"2774:3:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2767:3:5"},"nodeType":"YulFunctionCall","src":"2767:11:5"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2722:2:5"},"nodeType":"YulFunctionCall","src":"2722:57:5"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"2714:4:5"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2681:4:5","type":""},{"name":"len","nodeType":"YulTypedName","src":"2687:3:5","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"2695:4:5","type":""}],"src":"2619:166:5"},{"body":{"nodeType":"YulBlock","src":"2886:1256:5","statements":[{"nodeType":"YulVariableDeclaration","src":"2896:24:5","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2916:3:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2910:5:5"},"nodeType":"YulFunctionCall","src":"2910:10:5"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"2900:6:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2963:22:5","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2965:16:5"},"nodeType":"YulFunctionCall","src":"2965:18:5"},"nodeType":"YulExpressionStatement","src":"2965:18:5"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2935:6:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2951:2:5","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"2955:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2947:3:5"},"nodeType":"YulFunctionCall","src":"2947:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"2959:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2943:3:5"},"nodeType":"YulFunctionCall","src":"2943:18:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2932:2:5"},"nodeType":"YulFunctionCall","src":"2932:30:5"},"nodeType":"YulIf","src":"2929:56:5"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3038:4:5"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3076:4:5"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"3070:5:5"},"nodeType":"YulFunctionCall","src":"3070:11:5"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"3044:25:5"},"nodeType":"YulFunctionCall","src":"3044:38:5"},{"name":"newLen","nodeType":"YulIdentifier","src":"3084:6:5"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"2994:43:5"},"nodeType":"YulFunctionCall","src":"2994:97:5"},"nodeType":"YulExpressionStatement","src":"2994:97:5"},{"nodeType":"YulVariableDeclaration","src":"3100:18:5","value":{"kind":"number","nodeType":"YulLiteral","src":"3117:1:5","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"3104:9:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3127:23:5","value":{"kind":"number","nodeType":"YulLiteral","src":"3146:4:5","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"3131:11:5","type":""}]},{"nodeType":"YulAssignment","src":"3159:24:5","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3172:11:5"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3159:9:5"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"3229:656:5","statements":[{"nodeType":"YulVariableDeclaration","src":"3243:35:5","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3262:6:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3274:2:5","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3270:3:5"},"nodeType":"YulFunctionCall","src":"3270:7:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3258:3:5"},"nodeType":"YulFunctionCall","src":"3258:20:5"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"3247:7:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3291:49:5","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3335:4:5"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"3305:29:5"},"nodeType":"YulFunctionCall","src":"3305:35:5"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"3295:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3353:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"3362:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3357:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"3440:172:5","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3465:6:5"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3483:3:5"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3488:9:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3479:3:5"},"nodeType":"YulFunctionCall","src":"3479:19:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3473:5:5"},"nodeType":"YulFunctionCall","src":"3473:26:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3458:6:5"},"nodeType":"YulFunctionCall","src":"3458:42:5"},"nodeType":"YulExpressionStatement","src":"3458:42:5"},{"nodeType":"YulAssignment","src":"3517:24:5","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3531:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"3539:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3527:3:5"},"nodeType":"YulFunctionCall","src":"3527:14:5"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3517:6:5"}]},{"nodeType":"YulAssignment","src":"3558:40:5","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3575:9:5"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3586:11:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3571:3:5"},"nodeType":"YulFunctionCall","src":"3571:27:5"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3558:9:5"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3387:1:5"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"3390:7:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3384:2:5"},"nodeType":"YulFunctionCall","src":"3384:14:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3399:28:5","statements":[{"nodeType":"YulAssignment","src":"3401:24:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3410:1:5"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3413:11:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3406:3:5"},"nodeType":"YulFunctionCall","src":"3406:19:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3401:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"3380:3:5","statements":[]},"src":"3376:236:5"},{"body":{"nodeType":"YulBlock","src":"3660:166:5","statements":[{"nodeType":"YulVariableDeclaration","src":"3678:43:5","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3705:3:5"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3710:9:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3701:3:5"},"nodeType":"YulFunctionCall","src":"3701:19:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3695:5:5"},"nodeType":"YulFunctionCall","src":"3695:26:5"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"3682:9:5","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3745:6:5"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"3757:9:5"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3784:1:5","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"3787:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3780:3:5"},"nodeType":"YulFunctionCall","src":"3780:14:5"},{"kind":"number","nodeType":"YulLiteral","src":"3796:3:5","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3776:3:5"},"nodeType":"YulFunctionCall","src":"3776:24:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3806:1:5","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3802:3:5"},"nodeType":"YulFunctionCall","src":"3802:6:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3772:3:5"},"nodeType":"YulFunctionCall","src":"3772:37:5"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3768:3:5"},"nodeType":"YulFunctionCall","src":"3768:42:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3753:3:5"},"nodeType":"YulFunctionCall","src":"3753:58:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3738:6:5"},"nodeType":"YulFunctionCall","src":"3738:74:5"},"nodeType":"YulExpressionStatement","src":"3738:74:5"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"3631:7:5"},{"name":"newLen","nodeType":"YulIdentifier","src":"3640:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3628:2:5"},"nodeType":"YulFunctionCall","src":"3628:19:5"},"nodeType":"YulIf","src":"3625:201:5"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3846:4:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3860:1:5","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"3863:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3856:3:5"},"nodeType":"YulFunctionCall","src":"3856:14:5"},{"kind":"number","nodeType":"YulLiteral","src":"3872:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3852:3:5"},"nodeType":"YulFunctionCall","src":"3852:22:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3839:6:5"},"nodeType":"YulFunctionCall","src":"3839:36:5"},"nodeType":"YulExpressionStatement","src":"3839:36:5"}]},"nodeType":"YulCase","src":"3222:663:5","value":{"kind":"number","nodeType":"YulLiteral","src":"3227:1:5","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"3902:234:5","statements":[{"nodeType":"YulVariableDeclaration","src":"3916:14:5","value":{"kind":"number","nodeType":"YulLiteral","src":"3929:1:5","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3920:5:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"3965:67:5","statements":[{"nodeType":"YulAssignment","src":"3983:35:5","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4002:3:5"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4007:9:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3998:3:5"},"nodeType":"YulFunctionCall","src":"3998:19:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3992:5:5"},"nodeType":"YulFunctionCall","src":"3992:26:5"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"3983:5:5"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"3946:6:5"},"nodeType":"YulIf","src":"3943:89:5"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4052:4:5"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4111:5:5"},{"name":"newLen","nodeType":"YulIdentifier","src":"4118:6:5"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"4058:52:5"},"nodeType":"YulFunctionCall","src":"4058:67:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4045:6:5"},"nodeType":"YulFunctionCall","src":"4045:81:5"},"nodeType":"YulExpressionStatement","src":"4045:81:5"}]},"nodeType":"YulCase","src":"3894:242:5","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3202:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"3210:2:5","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3199:2:5"},"nodeType":"YulFunctionCall","src":"3199:14:5"},"nodeType":"YulSwitch","src":"3192:944:5"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"2871:4:5","type":""},{"name":"src","nodeType":"YulTypedName","src":"2877:3:5","type":""}],"src":"2790:1352:5"}]},"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 abi_decode_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let _3 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n let i := 0\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n mstore(add(add(memPtr, _1), _4), 0)\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function 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 let _1 := 0\n mstore(_1, array)\n let data := keccak256(_1, 0x20)\n let deleteStart := add(data, shr(5, add(startIndex, 31)))\n if lt(startIndex, 0x20) { deleteStart := data }\n let _2 := add(data, shr(5, add(len, 31)))\n let start := deleteStart\n for { } lt(start, _2) { start := add(start, 1) }\n { sstore(start, _1) }\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 let srcOffset_1 := 0x20\n srcOffset := srcOffset_1\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, srcOffset_1) }\n {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, srcOffset_1)\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":5,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b5060405162000b0e38038062000b0e833981016040819052620000339162000117565b600362000041838262000209565b50600462000050828262000209565b505050620002d1565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126200007d575f80fd5b81516001600160401b03808211156200009a576200009a62000059565b604051601f8301601f19908116603f01168101908282118183101715620000c557620000c562000059565b81604052838152602092508683858801011115620000e1575f80fd5b5f91505b83821015620001045785820183015181830184015290820190620000e5565b5f93810190920192909252949350505050565b5f806040838503121562000129575f80fd5b82516001600160401b038082111562000140575f80fd5b6200014e868387016200006d565b9350602085015191508082111562000164575f80fd5b5062000173858286016200006d565b9150509250929050565b600181811c908216806200019257607f821691505b602082108103620001b157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000204575f81815260208120601f850160051c81016020861015620001df5750805b601f850160051c820191505b818110156200020057828155600101620001eb565b5050505b505050565b81516001600160401b0381111562000225576200022562000059565b6200023d816200023684546200017d565b84620001b7565b602080601f83116001811462000273575f84156200025b5750858301515b5f19600386901b1c1916600185901b17855562000200565b5f85815260208120601f198616915b82811015620002a35788860151825594840194600190910190840162000282565b5085821015620002c157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61082f80620002df5f395ff3fe608060405234801561000f575f80fd5b50600436106100a6575f3560e01c8063395093511161006e578063395093511461011f57806370a082311461013257806395d89b411461015a578063a457c2d714610162578063a9059cbb14610175578063dd62ed3e14610188575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f80fd5b6100b261019b565b6040516100bf919061068a565b60405180910390f35b6100db6100d63660046106f0565b61022b565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b366004610718565b610244565b604051601281526020016100bf565b6100db61012d3660046106f0565b610267565b6100ef610140366004610751565b6001600160a01b03165f9081526020819052604090205490565b6100b2610288565b6100db6101703660046106f0565b610297565b6100db6101833660046106f0565b610316565b6100ef610196366004610771565b610323565b6060600380546101aa906107a2565b80601f01602080910402602001604051908101604052809291908181526020018280546101d6906107a2565b80156102215780601f106101f857610100808354040283529160200191610221565b820191905f5260205f20905b81548152906001019060200180831161020457829003601f168201915b5050505050905090565b5f3361023881858561034d565b60019150505b92915050565b5f33610251858285610470565b61025c8585856104e8565b506001949350505050565b5f336102388185856102798383610323565b61028391906107da565b61034d565b6060600480546101aa906107a2565b5f33816102a48286610323565b9050838110156103095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61025c828686840361034d565b5f336102388185856104e8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610300565b6001600160a01b0382166104105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610300565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61047b8484610323565b90505f1981146104e257818110156104d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610300565b6104e2848484840361034d565b50505050565b6001600160a01b03831661054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610300565b6001600160a01b0382166105ae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610300565b6001600160a01b0383165f90815260208190526040902054818110156106255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610300565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104e2565b5f6020808352835180828501525f5b818110156106b557858101830151858201604001528201610699565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146106eb575f80fd5b919050565b5f8060408385031215610701575f80fd5b61070a836106d5565b946020939093013593505050565b5f805f6060848603121561072a575f80fd5b610733846106d5565b9250610741602085016106d5565b9150604084013590509250925092565b5f60208284031215610761575f80fd5b61076a826106d5565b9392505050565b5f8060408385031215610782575f80fd5b61078b836106d5565b9150610799602084016106d5565b90509250929050565b600181811c908216806107b657607f821691505b6020821081036107d457634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561023e57634e487b7160e01b5f52601160045260245ffdfea26469706673582212201d735478ea55edce29e854cef02c824681615b62474df6ba4fc967818c4c188764736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xB0E CODESIZE SUB DUP1 PUSH3 0xB0E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x33 SWAP2 PUSH3 0x117 JUMP JUMPDEST PUSH1 0x3 PUSH3 0x41 DUP4 DUP3 PUSH3 0x209 JUMP JUMPDEST POP PUSH1 0x4 PUSH3 0x50 DUP3 DUP3 PUSH3 0x209 JUMP JUMPDEST POP POP POP PUSH3 0x2D1 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 PUSH3 0x7D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x9A JUMPI PUSH3 0x9A PUSH3 0x59 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0xC5 JUMPI PUSH3 0xC5 PUSH3 0x59 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0xE1 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x104 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0xE5 JUMP JUMPDEST PUSH0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x129 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x140 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH3 0x14E DUP7 DUP4 DUP8 ADD PUSH3 0x6D JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x164 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH3 0x173 DUP6 DUP3 DUP7 ADD PUSH3 0x6D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x192 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1B1 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 PUSH3 0x204 JUMPI PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x1DF JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x200 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1EB JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x225 JUMPI PUSH3 0x225 PUSH3 0x59 JUMP JUMPDEST PUSH3 0x23D DUP2 PUSH3 0x236 DUP5 SLOAD PUSH3 0x17D JUMP JUMPDEST DUP5 PUSH3 0x1B7 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x273 JUMPI PUSH0 DUP5 ISZERO PUSH3 0x25B JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x200 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x2A3 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x282 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x2C1 JUMPI DUP8 DUP6 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x82F DUP1 PUSH3 0x2DF PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA6 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x175 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x188 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x110 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB2 PUSH2 0x19B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x68A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x22B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x718 JUMP JUMPDEST PUSH2 0x244 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x12D CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x267 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x140 CALLDATASIZE PUSH1 0x4 PUSH2 0x751 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 0xB2 PUSH2 0x288 JUMP JUMPDEST PUSH2 0xDB PUSH2 0x170 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH2 0xDB PUSH2 0x183 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x316 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x196 CALLDATASIZE PUSH1 0x4 PUSH2 0x771 JUMP JUMPDEST PUSH2 0x323 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AA SWAP1 PUSH2 0x7A2 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 0x1D6 SWAP1 PUSH2 0x7A2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x221 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1F8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x221 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 0x204 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x238 DUP2 DUP6 DUP6 PUSH2 0x34D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x251 DUP6 DUP3 DUP6 PUSH2 0x470 JUMP JUMPDEST PUSH2 0x25C DUP6 DUP6 DUP6 PUSH2 0x4E8 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x238 DUP2 DUP6 DUP6 PUSH2 0x279 DUP4 DUP4 PUSH2 0x323 JUMP JUMPDEST PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x7DA JUMP JUMPDEST PUSH2 0x34D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AA SWAP1 PUSH2 0x7A2 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0x2A4 DUP3 DUP7 PUSH2 0x323 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x309 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x25C DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x34D JUMP JUMPDEST PUSH0 CALLER PUSH2 0x238 DUP2 DUP6 DUP6 PUSH2 0x4E8 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x410 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x47B DUP5 DUP5 PUSH2 0x323 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 EQ PUSH2 0x4E2 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4D5 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x300 JUMP JUMPDEST PUSH2 0x4E2 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x34D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x54C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5AE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 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 0x625 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4E2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6B5 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x699 JUMP JUMPDEST POP PUSH0 PUSH1 0x40 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6EB JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x701 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x70A DUP4 PUSH2 0x6D5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x72A JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x733 DUP5 PUSH2 0x6D5 JUMP JUMPDEST SWAP3 POP PUSH2 0x741 PUSH1 0x20 DUP6 ADD PUSH2 0x6D5 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x761 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x76A DUP3 PUSH2 0x6D5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x782 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x78B DUP4 PUSH2 0x6D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x799 PUSH1 0x20 DUP5 ADD PUSH2 0x6D5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7B6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x7D4 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 0x23E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR PUSH20 0x5478EA55EDCE29E854CEF02C824681615B62474D 0xF6 0xBA 0x4F 0xC9 PUSH8 0x818C4C188764736F PUSH13 0x63430008140033000000000000 ","sourceMap":"1532:11312:0:-:0;;;1980:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2046:5;:13;2054:5;2046;:13;:::i;:::-;-1:-1:-1;2069:7:0;:17;2079:7;2069;:17;:::i;:::-;;1980:113;;1532:11312;;14:127:5;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:840;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;294:13;;-1:-1:-1;;;;;356:10:5;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:5;;;518:2;490:31;486:40;474:53;;;542:18;;;562:22;;;539:46;536:72;;;588:18;;:::i;:::-;628:10;624:2;617:22;663:2;655:6;648:18;685:4;675:14;;730:3;725:2;720;712:6;708:15;704:24;701:33;698:53;;;747:1;744;737:12;698:53;769:1;760:10;;779:133;793:2;790:1;787:9;779:133;;;881:14;;;877:23;;871:30;850:14;;;846:23;;839:63;804:10;;;;779:133;;;954:1;932:15;;;928:24;;;921:35;;;;936:6;146:840;-1:-1:-1;;;;146:840:5:o;991:562::-;1090:6;1098;1151:2;1139:9;1130:7;1126:23;1122:32;1119:52;;;1167:1;1164;1157:12;1119:52;1194:16;;-1:-1:-1;;;;;1259:14:5;;;1256:34;;;1286:1;1283;1276:12;1256:34;1309:61;1362:7;1353:6;1342:9;1338:22;1309:61;:::i;:::-;1299:71;;1416:2;1405:9;1401:18;1395:25;1379:41;;1445:2;1435:8;1432:16;1429:36;;;1461:1;1458;1451:12;1429:36;;1484:63;1539:7;1528:8;1517:9;1513:24;1484:63;:::i;:::-;1474:73;;;991:562;;;;;:::o;1558:380::-;1637:1;1633:12;;;;1680;;;1701:61;;1755:4;1747:6;1743:17;1733:27;;1701:61;1808:2;1800:6;1797:14;1777:18;1774:38;1771:161;;1854:10;1849:3;1845:20;1842:1;1835:31;1889:4;1886:1;1879:15;1917:4;1914:1;1907:15;1771:161;;1558:380;;;:::o;2069:545::-;2171:2;2166:3;2163:11;2160:448;;;2207:1;2232:5;2228:2;2221:17;2277:4;2273:2;2263:19;2347:2;2335:10;2331:19;2328:1;2324:27;2318:4;2314:38;2383:4;2371:10;2368:20;2365:47;;;-1:-1:-1;2406:4:5;2365:47;2461:2;2456:3;2452:12;2449:1;2445:20;2439:4;2435:31;2425:41;;2516:82;2534:2;2527:5;2524:13;2516:82;;;2579:17;;;2560:1;2549:13;2516:82;;;2520:3;;;2160:448;2069:545;;;:::o;2790:1352::-;2910:10;;-1:-1:-1;;;;;2932:30:5;;2929:56;;;2965:18;;:::i;:::-;2994:97;3084:6;3044:38;3076:4;3070:11;3044:38;:::i;:::-;3038:4;2994:97;:::i;:::-;3146:4;;3210:2;3199:14;;3227:1;3222:663;;;;3929:1;3946:6;3943:89;;;-1:-1:-1;3998:19:5;;;3992:26;3943:89;-1:-1:-1;;2747:1:5;2743:11;;;2739:24;2735:29;2725:40;2771:1;2767:11;;;2722:57;4045:81;;3192:944;;3222:663;2016:1;2009:14;;;2053:4;2040:18;;-1:-1:-1;;3258:20:5;;;3376:236;3390:7;3387:1;3384:14;3376:236;;;3479:19;;;3473:26;3458:42;;3571:27;;;;3539:1;3527:14;;;;3406:19;;3376:236;;;3380:3;3640:6;3631:7;3628:19;3625:201;;;3701:19;;;3695:26;-1:-1:-1;;3784:1:5;3780:14;;;3796:3;3776:24;3772:37;3768:42;3753:58;3738:74;;3625:201;-1:-1:-1;;;;;3872:1:5;3856:14;;;3852:22;3839:36;;-1:-1:-1;2790:1352:5:o;:::-;1532:11312:0;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_585":{"entryPoint":null,"id":585,"parameterSlots":3,"returnSlots":0},"@_approve_520":{"entryPoint":845,"id":520,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_574":{"entryPoint":null,"id":574,"parameterSlots":3,"returnSlots":0},"@_msgSender_701":{"entryPoint":null,"id":701,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_563":{"entryPoint":1136,"id":563,"parameterSlots":3,"returnSlots":0},"@_transfer_346":{"entryPoint":1256,"id":346,"parameterSlots":3,"returnSlots":0},"@allowance_141":{"entryPoint":803,"id":141,"parameterSlots":2,"returnSlots":1},"@approve_166":{"entryPoint":555,"id":166,"parameterSlots":2,"returnSlots":1},"@balanceOf_98":{"entryPoint":null,"id":98,"parameterSlots":1,"returnSlots":1},"@decimals_74":{"entryPoint":null,"id":74,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_269":{"entryPoint":663,"id":269,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_228":{"entryPoint":615,"id":228,"parameterSlots":2,"returnSlots":1},"@name_54":{"entryPoint":411,"id":54,"parameterSlots":0,"returnSlots":1},"@symbol_64":{"entryPoint":648,"id":64,"parameterSlots":0,"returnSlots":1},"@totalSupply_84":{"entryPoint":null,"id":84,"parameterSlots":0,"returnSlots":1},"@transferFrom_199":{"entryPoint":580,"id":199,"parameterSlots":3,"returnSlots":1},"@transfer_123":{"entryPoint":790,"id":123,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":1749,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":1873,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":1905,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":1816,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":1776,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1674,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":2010,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":1954,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5754:5","statements":[{"nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nodeType":"YulBlock","src":"135:427:5","statements":[{"nodeType":"YulVariableDeclaration","src":"145:12:5","value":{"kind":"number","nodeType":"YulLiteral","src":"155:2:5","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"149:2:5","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"173:9:5"},{"name":"_1","nodeType":"YulIdentifier","src":"184:2:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"166:6:5"},"nodeType":"YulFunctionCall","src":"166:21:5"},"nodeType":"YulExpressionStatement","src":"166:21:5"},{"nodeType":"YulVariableDeclaration","src":"196:27:5","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"216:6:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"210:5:5"},"nodeType":"YulFunctionCall","src":"210:13:5"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"200:6:5","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"243:9:5"},{"name":"_1","nodeType":"YulIdentifier","src":"254:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"239:3:5"},"nodeType":"YulFunctionCall","src":"239:18:5"},{"name":"length","nodeType":"YulIdentifier","src":"259:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"232:6:5"},"nodeType":"YulFunctionCall","src":"232:34:5"},"nodeType":"YulExpressionStatement","src":"232:34:5"},{"nodeType":"YulVariableDeclaration","src":"275:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"284:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"279:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"344:90:5","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"373:9:5"},{"name":"i","nodeType":"YulIdentifier","src":"384:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"369:3:5"},"nodeType":"YulFunctionCall","src":"369:17:5"},{"kind":"number","nodeType":"YulLiteral","src":"388:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"365:3:5"},"nodeType":"YulFunctionCall","src":"365:26:5"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"407:6:5"},{"name":"i","nodeType":"YulIdentifier","src":"415:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"403:3:5"},"nodeType":"YulFunctionCall","src":"403:14:5"},{"name":"_1","nodeType":"YulIdentifier","src":"419:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"399:3:5"},"nodeType":"YulFunctionCall","src":"399:23:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"393:5:5"},"nodeType":"YulFunctionCall","src":"393:30:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"358:6:5"},"nodeType":"YulFunctionCall","src":"358:66:5"},"nodeType":"YulExpressionStatement","src":"358:66:5"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"305:1:5"},{"name":"length","nodeType":"YulIdentifier","src":"308:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"302:2:5"},"nodeType":"YulFunctionCall","src":"302:13:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"316:19:5","statements":[{"nodeType":"YulAssignment","src":"318:15:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"327:1:5"},{"name":"_1","nodeType":"YulIdentifier","src":"330:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"323:3:5"},"nodeType":"YulFunctionCall","src":"323:10:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"318:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"298:3:5","statements":[]},"src":"294:140:5"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"458:9:5"},{"name":"length","nodeType":"YulIdentifier","src":"469:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"454:3:5"},"nodeType":"YulFunctionCall","src":"454:22:5"},{"kind":"number","nodeType":"YulLiteral","src":"478:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"450:3:5"},"nodeType":"YulFunctionCall","src":"450:31:5"},{"kind":"number","nodeType":"YulLiteral","src":"483:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"443:6:5"},"nodeType":"YulFunctionCall","src":"443:42:5"},"nodeType":"YulExpressionStatement","src":"443:42:5"},{"nodeType":"YulAssignment","src":"494:62:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"510:9:5"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"529:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"537:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"525:3:5"},"nodeType":"YulFunctionCall","src":"525:15:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"546:2:5","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"542:3:5"},"nodeType":"YulFunctionCall","src":"542:7:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"521:3:5"},"nodeType":"YulFunctionCall","src":"521:29:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"506:3:5"},"nodeType":"YulFunctionCall","src":"506:45:5"},{"kind":"number","nodeType":"YulLiteral","src":"553:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"502:3:5"},"nodeType":"YulFunctionCall","src":"502:54:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"494:4:5"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"104:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"115:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"126:4:5","type":""}],"src":"14:548:5"},{"body":{"nodeType":"YulBlock","src":"616:124:5","statements":[{"nodeType":"YulAssignment","src":"626:29:5","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"648:6:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"635:12:5"},"nodeType":"YulFunctionCall","src":"635:20:5"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"626:5:5"}]},{"body":{"nodeType":"YulBlock","src":"718:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"727:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"730:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"720:6:5"},"nodeType":"YulFunctionCall","src":"720:12:5"},"nodeType":"YulExpressionStatement","src":"720:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"677:5:5"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"688:5:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"703:3:5","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"708:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"699:3:5"},"nodeType":"YulFunctionCall","src":"699:11:5"},{"kind":"number","nodeType":"YulLiteral","src":"712:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"695:3:5"},"nodeType":"YulFunctionCall","src":"695:19:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"684:3:5"},"nodeType":"YulFunctionCall","src":"684:31:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"674:2:5"},"nodeType":"YulFunctionCall","src":"674:42:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"667:6:5"},"nodeType":"YulFunctionCall","src":"667:50:5"},"nodeType":"YulIf","src":"664:70:5"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"595:6:5","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"606:5:5","type":""}],"src":"567:173:5"},{"body":{"nodeType":"YulBlock","src":"832:167:5","statements":[{"body":{"nodeType":"YulBlock","src":"878:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"887:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"890:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"880:6:5"},"nodeType":"YulFunctionCall","src":"880:12:5"},"nodeType":"YulExpressionStatement","src":"880:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"853:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"862:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"849:3:5"},"nodeType":"YulFunctionCall","src":"849:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"874:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"845:3:5"},"nodeType":"YulFunctionCall","src":"845:32:5"},"nodeType":"YulIf","src":"842:52:5"},{"nodeType":"YulAssignment","src":"903:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"932:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"913:18:5"},"nodeType":"YulFunctionCall","src":"913:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"903:6:5"}]},{"nodeType":"YulAssignment","src":"951:42:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"978:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"989:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"974:3:5"},"nodeType":"YulFunctionCall","src":"974:18:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"961:12:5"},"nodeType":"YulFunctionCall","src":"961:32:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"951:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"790:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"801:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"813:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"821:6:5","type":""}],"src":"745:254:5"},{"body":{"nodeType":"YulBlock","src":"1099:92:5","statements":[{"nodeType":"YulAssignment","src":"1109:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1121:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1132:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1117:3:5"},"nodeType":"YulFunctionCall","src":"1117:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1109:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1151:9:5"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1176:6:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1169:6:5"},"nodeType":"YulFunctionCall","src":"1169:14:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1162:6:5"},"nodeType":"YulFunctionCall","src":"1162:22:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1144:6:5"},"nodeType":"YulFunctionCall","src":"1144:41:5"},"nodeType":"YulExpressionStatement","src":"1144:41:5"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1068:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1079:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1090:4:5","type":""}],"src":"1004:187:5"},{"body":{"nodeType":"YulBlock","src":"1297:76:5","statements":[{"nodeType":"YulAssignment","src":"1307:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1319:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1330:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1315:3:5"},"nodeType":"YulFunctionCall","src":"1315:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1307:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1349:9:5"},{"name":"value0","nodeType":"YulIdentifier","src":"1360:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1342:6:5"},"nodeType":"YulFunctionCall","src":"1342:25:5"},"nodeType":"YulExpressionStatement","src":"1342:25:5"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1266:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1277:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1288:4:5","type":""}],"src":"1196:177:5"},{"body":{"nodeType":"YulBlock","src":"1482:224:5","statements":[{"body":{"nodeType":"YulBlock","src":"1528:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1537:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1540:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1530:6:5"},"nodeType":"YulFunctionCall","src":"1530:12:5"},"nodeType":"YulExpressionStatement","src":"1530:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1503:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"1512:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1499:3:5"},"nodeType":"YulFunctionCall","src":"1499:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"1524:2:5","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1495:3:5"},"nodeType":"YulFunctionCall","src":"1495:32:5"},"nodeType":"YulIf","src":"1492:52:5"},{"nodeType":"YulAssignment","src":"1553:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1582:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1563:18:5"},"nodeType":"YulFunctionCall","src":"1563:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1553:6:5"}]},{"nodeType":"YulAssignment","src":"1601:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1634:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1645:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1630:3:5"},"nodeType":"YulFunctionCall","src":"1630:18:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1611:18:5"},"nodeType":"YulFunctionCall","src":"1611:38:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1601:6:5"}]},{"nodeType":"YulAssignment","src":"1658:42:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1685:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1696:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1681:3:5"},"nodeType":"YulFunctionCall","src":"1681:18:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1668:12:5"},"nodeType":"YulFunctionCall","src":"1668:32:5"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1658:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1432:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1443:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1455:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1463:6:5","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1471:6:5","type":""}],"src":"1378:328:5"},{"body":{"nodeType":"YulBlock","src":"1808:87:5","statements":[{"nodeType":"YulAssignment","src":"1818:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1830:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1841:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1826:3:5"},"nodeType":"YulFunctionCall","src":"1826:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1818:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1860:9:5"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1875:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"1883:4:5","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1871:3:5"},"nodeType":"YulFunctionCall","src":"1871:17:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1853:6:5"},"nodeType":"YulFunctionCall","src":"1853:36:5"},"nodeType":"YulExpressionStatement","src":"1853:36:5"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1777:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1788:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1799:4:5","type":""}],"src":"1711:184:5"},{"body":{"nodeType":"YulBlock","src":"1970:116:5","statements":[{"body":{"nodeType":"YulBlock","src":"2016:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2025:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2028:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2018:6:5"},"nodeType":"YulFunctionCall","src":"2018:12:5"},"nodeType":"YulExpressionStatement","src":"2018:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1991:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"2000:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1987:3:5"},"nodeType":"YulFunctionCall","src":"1987:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"2012:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1983:3:5"},"nodeType":"YulFunctionCall","src":"1983:32:5"},"nodeType":"YulIf","src":"1980:52:5"},{"nodeType":"YulAssignment","src":"2041:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2070:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2051:18:5"},"nodeType":"YulFunctionCall","src":"2051:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2041:6:5"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1936:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1947:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1959:6:5","type":""}],"src":"1900:186:5"},{"body":{"nodeType":"YulBlock","src":"2178:173:5","statements":[{"body":{"nodeType":"YulBlock","src":"2224:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2233:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2236:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2226:6:5"},"nodeType":"YulFunctionCall","src":"2226:12:5"},"nodeType":"YulExpressionStatement","src":"2226:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2199:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"2208:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2195:3:5"},"nodeType":"YulFunctionCall","src":"2195:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"2220:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2191:3:5"},"nodeType":"YulFunctionCall","src":"2191:32:5"},"nodeType":"YulIf","src":"2188:52:5"},{"nodeType":"YulAssignment","src":"2249:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2278:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2259:18:5"},"nodeType":"YulFunctionCall","src":"2259:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2249:6:5"}]},{"nodeType":"YulAssignment","src":"2297:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2330:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2341:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2326:3:5"},"nodeType":"YulFunctionCall","src":"2326:18:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2307:18:5"},"nodeType":"YulFunctionCall","src":"2307:38:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2297:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2136:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2147:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2159:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2167:6:5","type":""}],"src":"2091:260:5"},{"body":{"nodeType":"YulBlock","src":"2411:325:5","statements":[{"nodeType":"YulAssignment","src":"2421:22:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2435:1:5","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"2438:4:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2431:3:5"},"nodeType":"YulFunctionCall","src":"2431:12:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2421:6:5"}]},{"nodeType":"YulVariableDeclaration","src":"2452:38:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2482:4:5"},{"kind":"number","nodeType":"YulLiteral","src":"2488:1:5","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2478:3:5"},"nodeType":"YulFunctionCall","src":"2478:12:5"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"2456:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2529:31:5","statements":[{"nodeType":"YulAssignment","src":"2531:27:5","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2545:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"2553:4:5","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2541:3:5"},"nodeType":"YulFunctionCall","src":"2541:17:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2531:6:5"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2509:18:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2502:6:5"},"nodeType":"YulFunctionCall","src":"2502:26:5"},"nodeType":"YulIf","src":"2499:61:5"},{"body":{"nodeType":"YulBlock","src":"2619:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2640:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2647:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2652:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2643:3:5"},"nodeType":"YulFunctionCall","src":"2643:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2633:6:5"},"nodeType":"YulFunctionCall","src":"2633:31:5"},"nodeType":"YulExpressionStatement","src":"2633:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2684:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2687:4:5","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2677:6:5"},"nodeType":"YulFunctionCall","src":"2677:15:5"},"nodeType":"YulExpressionStatement","src":"2677:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2712:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2715:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2705:6:5"},"nodeType":"YulFunctionCall","src":"2705:15:5"},"nodeType":"YulExpressionStatement","src":"2705:15:5"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2575:18:5"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2598:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"2606:2:5","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2595:2:5"},"nodeType":"YulFunctionCall","src":"2595:14:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2572:2:5"},"nodeType":"YulFunctionCall","src":"2572:38:5"},"nodeType":"YulIf","src":"2569:161:5"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2391:4:5","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"2400:6:5","type":""}],"src":"2356:380:5"},{"body":{"nodeType":"YulBlock","src":"2789:174:5","statements":[{"nodeType":"YulAssignment","src":"2799:16:5","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2810:1:5"},{"name":"y","nodeType":"YulIdentifier","src":"2813:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2806:3:5"},"nodeType":"YulFunctionCall","src":"2806:9:5"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"2799:3:5"}]},{"body":{"nodeType":"YulBlock","src":"2846:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2867:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2874:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2879:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2870:3:5"},"nodeType":"YulFunctionCall","src":"2870:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2860:6:5"},"nodeType":"YulFunctionCall","src":"2860:31:5"},"nodeType":"YulExpressionStatement","src":"2860:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2911:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2914:4:5","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2904:6:5"},"nodeType":"YulFunctionCall","src":"2904:15:5"},"nodeType":"YulExpressionStatement","src":"2904:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2939:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2942:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2932:6:5"},"nodeType":"YulFunctionCall","src":"2932:15:5"},"nodeType":"YulExpressionStatement","src":"2932:15:5"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2830:1:5"},{"name":"sum","nodeType":"YulIdentifier","src":"2833:3:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2827:2:5"},"nodeType":"YulFunctionCall","src":"2827:10:5"},"nodeType":"YulIf","src":"2824:133:5"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"2772:1:5","type":""},{"name":"y","nodeType":"YulTypedName","src":"2775:1:5","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"2781:3:5","type":""}],"src":"2741:222:5"},{"body":{"nodeType":"YulBlock","src":"3142:227:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3159:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3170:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3152:6:5"},"nodeType":"YulFunctionCall","src":"3152:21:5"},"nodeType":"YulExpressionStatement","src":"3152:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3193:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3204:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3189:3:5"},"nodeType":"YulFunctionCall","src":"3189:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"3209:2:5","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3182:6:5"},"nodeType":"YulFunctionCall","src":"3182:30:5"},"nodeType":"YulExpressionStatement","src":"3182:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3232:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3243:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3228:3:5"},"nodeType":"YulFunctionCall","src":"3228:18:5"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nodeType":"YulLiteral","src":"3248:34:5","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3221:6:5"},"nodeType":"YulFunctionCall","src":"3221:62:5"},"nodeType":"YulExpressionStatement","src":"3221:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3303:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3314:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3299:3:5"},"nodeType":"YulFunctionCall","src":"3299:18:5"},{"hexValue":"207a65726f","kind":"string","nodeType":"YulLiteral","src":"3319:7:5","type":"","value":" zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3292:6:5"},"nodeType":"YulFunctionCall","src":"3292:35:5"},"nodeType":"YulExpressionStatement","src":"3292:35:5"},{"nodeType":"YulAssignment","src":"3336:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3348:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3359:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3344:3:5"},"nodeType":"YulFunctionCall","src":"3344:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3336:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3119:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3133:4:5","type":""}],"src":"2968:401:5"},{"body":{"nodeType":"YulBlock","src":"3548:226:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3565:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3576:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3558:6:5"},"nodeType":"YulFunctionCall","src":"3558:21:5"},"nodeType":"YulExpressionStatement","src":"3558:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3599:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3610:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3595:3:5"},"nodeType":"YulFunctionCall","src":"3595:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"3615:2:5","type":"","value":"36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3588:6:5"},"nodeType":"YulFunctionCall","src":"3588:30:5"},"nodeType":"YulExpressionStatement","src":"3588:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3638:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3649:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3634:3:5"},"nodeType":"YulFunctionCall","src":"3634:18:5"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"3654:34:5","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3627:6:5"},"nodeType":"YulFunctionCall","src":"3627:62:5"},"nodeType":"YulExpressionStatement","src":"3627:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3709:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3720:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3705:3:5"},"nodeType":"YulFunctionCall","src":"3705:18:5"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"3725:6:5","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3698:6:5"},"nodeType":"YulFunctionCall","src":"3698:34:5"},"nodeType":"YulExpressionStatement","src":"3698:34:5"},{"nodeType":"YulAssignment","src":"3741:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3753:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3764:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3749:3:5"},"nodeType":"YulFunctionCall","src":"3749:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3741:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3525:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3539:4:5","type":""}],"src":"3374:400:5"},{"body":{"nodeType":"YulBlock","src":"3953:224:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3970:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3981:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3963:6:5"},"nodeType":"YulFunctionCall","src":"3963:21:5"},"nodeType":"YulExpressionStatement","src":"3963:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4004:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4015:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4000:3:5"},"nodeType":"YulFunctionCall","src":"4000:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"4020:2:5","type":"","value":"34"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3993:6:5"},"nodeType":"YulFunctionCall","src":"3993:30:5"},"nodeType":"YulExpressionStatement","src":"3993:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4043:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4054:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4039:3:5"},"nodeType":"YulFunctionCall","src":"4039:18:5"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nodeType":"YulLiteral","src":"4059:34:5","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4032:6:5"},"nodeType":"YulFunctionCall","src":"4032:62:5"},"nodeType":"YulExpressionStatement","src":"4032:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4114:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4125:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4110:3:5"},"nodeType":"YulFunctionCall","src":"4110:18:5"},{"hexValue":"7373","kind":"string","nodeType":"YulLiteral","src":"4130:4:5","type":"","value":"ss"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4103:6:5"},"nodeType":"YulFunctionCall","src":"4103:32:5"},"nodeType":"YulExpressionStatement","src":"4103:32:5"},{"nodeType":"YulAssignment","src":"4144:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4156:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4167:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4152:3:5"},"nodeType":"YulFunctionCall","src":"4152:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4144:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3930:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3944:4:5","type":""}],"src":"3779:398:5"},{"body":{"nodeType":"YulBlock","src":"4356:179:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4373:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4384:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4366:6:5"},"nodeType":"YulFunctionCall","src":"4366:21:5"},"nodeType":"YulExpressionStatement","src":"4366:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4407:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4418:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4403:3:5"},"nodeType":"YulFunctionCall","src":"4403:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"4423:2:5","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4396:6:5"},"nodeType":"YulFunctionCall","src":"4396:30:5"},"nodeType":"YulExpressionStatement","src":"4396:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4446:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4457:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4442:3:5"},"nodeType":"YulFunctionCall","src":"4442:18:5"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nodeType":"YulLiteral","src":"4462:31:5","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4435:6:5"},"nodeType":"YulFunctionCall","src":"4435:59:5"},"nodeType":"YulExpressionStatement","src":"4435:59:5"},{"nodeType":"YulAssignment","src":"4503:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4515:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4526:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4511:3:5"},"nodeType":"YulFunctionCall","src":"4511:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4503:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4333:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4347:4:5","type":""}],"src":"4182:353:5"},{"body":{"nodeType":"YulBlock","src":"4714:227:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4731:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4742:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4724:6:5"},"nodeType":"YulFunctionCall","src":"4724:21:5"},"nodeType":"YulExpressionStatement","src":"4724:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4765:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4776:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4761:3:5"},"nodeType":"YulFunctionCall","src":"4761:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"4781:2:5","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4754:6:5"},"nodeType":"YulFunctionCall","src":"4754:30:5"},"nodeType":"YulExpressionStatement","src":"4754:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4804:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4815:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4800:3:5"},"nodeType":"YulFunctionCall","src":"4800:18:5"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"4820:34:5","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4793:6:5"},"nodeType":"YulFunctionCall","src":"4793:62:5"},"nodeType":"YulExpressionStatement","src":"4793:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4875:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4886:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4871:3:5"},"nodeType":"YulFunctionCall","src":"4871:18:5"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"4891:7:5","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4864:6:5"},"nodeType":"YulFunctionCall","src":"4864:35:5"},"nodeType":"YulExpressionStatement","src":"4864:35:5"},{"nodeType":"YulAssignment","src":"4908:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4920:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4931:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4916:3:5"},"nodeType":"YulFunctionCall","src":"4916:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4908:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4691:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4705:4:5","type":""}],"src":"4540:401:5"},{"body":{"nodeType":"YulBlock","src":"5120:225:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5137:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5148:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5130:6:5"},"nodeType":"YulFunctionCall","src":"5130:21:5"},"nodeType":"YulExpressionStatement","src":"5130:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5171:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5182:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5167:3:5"},"nodeType":"YulFunctionCall","src":"5167:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"5187:2:5","type":"","value":"35"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5160:6:5"},"nodeType":"YulFunctionCall","src":"5160:30:5"},"nodeType":"YulExpressionStatement","src":"5160:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5210:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5221:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5206:3:5"},"nodeType":"YulFunctionCall","src":"5206:18:5"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nodeType":"YulLiteral","src":"5226:34:5","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5199:6:5"},"nodeType":"YulFunctionCall","src":"5199:62:5"},"nodeType":"YulExpressionStatement","src":"5199:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5281:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5292:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5277:3:5"},"nodeType":"YulFunctionCall","src":"5277:18:5"},{"hexValue":"657373","kind":"string","nodeType":"YulLiteral","src":"5297:5:5","type":"","value":"ess"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5270:6:5"},"nodeType":"YulFunctionCall","src":"5270:33:5"},"nodeType":"YulExpressionStatement","src":"5270:33:5"},{"nodeType":"YulAssignment","src":"5312:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5324:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5335:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5320:3:5"},"nodeType":"YulFunctionCall","src":"5320:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5312:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5097:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5111:4:5","type":""}],"src":"4946:399:5"},{"body":{"nodeType":"YulBlock","src":"5524:228:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5541:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5552:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5534:6:5"},"nodeType":"YulFunctionCall","src":"5534:21:5"},"nodeType":"YulExpressionStatement","src":"5534:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5575:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5586:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5571:3:5"},"nodeType":"YulFunctionCall","src":"5571:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"5591:2:5","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5564:6:5"},"nodeType":"YulFunctionCall","src":"5564:30:5"},"nodeType":"YulExpressionStatement","src":"5564:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5614:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5625:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5610:3:5"},"nodeType":"YulFunctionCall","src":"5610:18:5"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nodeType":"YulLiteral","src":"5630:34:5","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5603:6:5"},"nodeType":"YulFunctionCall","src":"5603:62:5"},"nodeType":"YulExpressionStatement","src":"5603:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5685:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5696:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5681:3:5"},"nodeType":"YulFunctionCall","src":"5681:18:5"},{"hexValue":"616c616e6365","kind":"string","nodeType":"YulLiteral","src":"5701:8:5","type":"","value":"alance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5674:6:5"},"nodeType":"YulFunctionCall","src":"5674:36:5"},"nodeType":"YulExpressionStatement","src":"5674:36:5"},{"nodeType":"YulAssignment","src":"5719:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5731:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5742:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5727:3:5"},"nodeType":"YulFunctionCall","src":"5727:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5719:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5501:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5515:4:5","type":""}],"src":"5350:402:5"}]},"contents":"{\n { }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n mstore(add(add(headStart, length), 64), 0)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\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 value1 := calldataload(add(headStart, 32))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_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 value2 := calldataload(add(headStart, 64))\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_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function 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 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_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n mstore(add(headStart, 96), \" zero\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n mstore(add(headStart, 96), \"ss\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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), \"ERC20: insufficient allowance\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n mstore(add(headStart, 96), \"dress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n mstore(add(headStart, 96), \"ess\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n mstore(add(headStart, 96), \"alance\")\n tail := add(headStart, 128)\n }\n}","id":5,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b50600436106100a6575f3560e01c8063395093511161006e578063395093511461011f57806370a082311461013257806395d89b411461015a578063a457c2d714610162578063a9059cbb14610175578063dd62ed3e14610188575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f80fd5b6100b261019b565b6040516100bf919061068a565b60405180910390f35b6100db6100d63660046106f0565b61022b565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b366004610718565b610244565b604051601281526020016100bf565b6100db61012d3660046106f0565b610267565b6100ef610140366004610751565b6001600160a01b03165f9081526020819052604090205490565b6100b2610288565b6100db6101703660046106f0565b610297565b6100db6101833660046106f0565b610316565b6100ef610196366004610771565b610323565b6060600380546101aa906107a2565b80601f01602080910402602001604051908101604052809291908181526020018280546101d6906107a2565b80156102215780601f106101f857610100808354040283529160200191610221565b820191905f5260205f20905b81548152906001019060200180831161020457829003601f168201915b5050505050905090565b5f3361023881858561034d565b60019150505b92915050565b5f33610251858285610470565b61025c8585856104e8565b506001949350505050565b5f336102388185856102798383610323565b61028391906107da565b61034d565b6060600480546101aa906107a2565b5f33816102a48286610323565b9050838110156103095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61025c828686840361034d565b5f336102388185856104e8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610300565b6001600160a01b0382166104105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610300565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61047b8484610323565b90505f1981146104e257818110156104d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610300565b6104e2848484840361034d565b50505050565b6001600160a01b03831661054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610300565b6001600160a01b0382166105ae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610300565b6001600160a01b0383165f90815260208190526040902054818110156106255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610300565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104e2565b5f6020808352835180828501525f5b818110156106b557858101830151858201604001528201610699565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146106eb575f80fd5b919050565b5f8060408385031215610701575f80fd5b61070a836106d5565b946020939093013593505050565b5f805f6060848603121561072a575f80fd5b610733846106d5565b9250610741602085016106d5565b9150604084013590509250925092565b5f60208284031215610761575f80fd5b61076a826106d5565b9392505050565b5f8060408385031215610782575f80fd5b61078b836106d5565b9150610799602084016106d5565b90509250929050565b600181811c908216806107b657607f821691505b6020821081036107d457634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561023e57634e487b7160e01b5f52601160045260245ffdfea26469706673582212201d735478ea55edce29e854cef02c824681615b62474df6ba4fc967818c4c188764736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA6 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x175 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x188 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC8 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x110 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xB2 PUSH2 0x19B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x68A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x22B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x718 JUMP JUMPDEST PUSH2 0x244 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0xDB PUSH2 0x12D CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x267 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x140 CALLDATASIZE PUSH1 0x4 PUSH2 0x751 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 0xB2 PUSH2 0x288 JUMP JUMPDEST PUSH2 0xDB PUSH2 0x170 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH2 0xDB PUSH2 0x183 CALLDATASIZE PUSH1 0x4 PUSH2 0x6F0 JUMP JUMPDEST PUSH2 0x316 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x196 CALLDATASIZE PUSH1 0x4 PUSH2 0x771 JUMP JUMPDEST PUSH2 0x323 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AA SWAP1 PUSH2 0x7A2 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 0x1D6 SWAP1 PUSH2 0x7A2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x221 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1F8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x221 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 0x204 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x238 DUP2 DUP6 DUP6 PUSH2 0x34D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x251 DUP6 DUP3 DUP6 PUSH2 0x470 JUMP JUMPDEST PUSH2 0x25C DUP6 DUP6 DUP6 PUSH2 0x4E8 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x238 DUP2 DUP6 DUP6 PUSH2 0x279 DUP4 DUP4 PUSH2 0x323 JUMP JUMPDEST PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x7DA JUMP JUMPDEST PUSH2 0x34D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AA SWAP1 PUSH2 0x7A2 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0x2A4 DUP3 DUP7 PUSH2 0x323 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x309 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x25C DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x34D JUMP JUMPDEST PUSH0 CALLER PUSH2 0x238 DUP2 DUP6 DUP6 PUSH2 0x4E8 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x410 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x47B DUP5 DUP5 PUSH2 0x323 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 EQ PUSH2 0x4E2 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4D5 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x300 JUMP JUMPDEST PUSH2 0x4E2 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x34D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x54C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5AE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 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 0x625 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x300 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4E2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6B5 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x699 JUMP JUMPDEST POP PUSH0 PUSH1 0x40 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6EB JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x701 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x70A DUP4 PUSH2 0x6D5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x72A JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x733 DUP5 PUSH2 0x6D5 JUMP JUMPDEST SWAP3 POP PUSH2 0x741 PUSH1 0x20 DUP6 ADD PUSH2 0x6D5 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x761 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x76A DUP3 PUSH2 0x6D5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x782 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x78B DUP4 PUSH2 0x6D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x799 PUSH1 0x20 DUP5 ADD PUSH2 0x6D5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7B6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x7D4 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 0x23E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR PUSH20 0x5478EA55EDCE29E854CEF02C824681615B62474D 0xF6 0xBA 0x4F 0xC9 PUSH8 0x818C4C188764736F PUSH13 0x63430008140033000000000000 ","sourceMap":"1532:11312:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:5;;1162:22;1144:41;;1132:2;1117:18;4444:197:0;1004:187:5;3255:106:0;3342:12;;3255:106;;;1342:25:5;;;1330:2;1315:18;3255:106:0;1196:177:5;5203:256:0;;;;;;:::i;:::-;;:::i;3104:91::-;;;3186:2;1853:36:5;;1841:2;1826:18;3104:91:0;1711:184:5;5854:234:0;;;;;;:::i;:::-;;:::i;3419:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:0;3493:7;3519:18;;;;;;;;;;;;3419:125;2369:102;;;:::i;6575:427::-;;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;:::i;:::-;;:::i;3987:149::-;;;;;;:::i;:::-;;:::i;2158:98::-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;734:10:3;4581:32:0;734:10:3;4597:7:0;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;5203:256::-;5300:4;734:10:3;5356:38:0;5372:4;734:10:3;5387:6:0;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:0;;5203:256;-1:-1:-1;;;;5203:256:0:o;5854:234::-;5942:4;734:10:3;5996:64:0;734:10:3;6012:7:0;6049:10;6021:25;734:10:3;6012:7:0;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;6575:427::-;6668:4;734:10:3;6668:4:0;6749:25;734:10:3;6766:7:0;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:0;;3170:2:5;6784:85:0;;;3152:21:5;3209:2;3189:18;;;3182:30;3248:34;3228:18;;;3221:62;-1:-1:-1;;;3299:18:5;;;3292:35;3344:19;;6784:85:0;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;734:10:3;3873:28:0;734:10:3;3890:2:0;3894:6;3873:9;:28::i;3987:149::-;-1:-1:-1;;;;;4102:18:0;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;10457:340::-;-1:-1:-1;;;;;10558:19:0;;10550:68;;;;-1:-1:-1;;;10550:68:0;;3576:2:5;10550:68:0;;;3558:21:5;3615:2;3595:18;;;3588:30;3654:34;3634:18;;;3627:62;-1:-1:-1;;;3705:18:5;;;3698:34;3749:19;;10550:68:0;3374:400:5;10550:68:0;-1:-1:-1;;;;;10636:21:0;;10628:68;;;;-1:-1:-1;;;10628:68:0;;3981:2:5;10628:68:0;;;3963:21:5;4020:2;4000:18;;;3993:30;4059:34;4039:18;;;4032:62;-1:-1:-1;;;4110:18:5;;;4103:32;4152:19;;10628:68:0;3779:398:5;10628:68:0;-1:-1:-1;;;;;10707:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;1342:25:5;;;10758:32:0;;1315:18:5;10758:32:0;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:0;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:0;;4384:2:5;11297:68:0;;;4366:21:5;4423:2;4403:18;;;4396:30;4462:31;4442:18;;;4435:59;4511:18;;11297:68:0;4182:353:5;11297:68:0;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11168:321;11078:411;;;:::o;7456:788::-;-1:-1:-1;;;;;7552:18:0;;7544:68;;;;-1:-1:-1;;;7544:68:0;;4742:2:5;7544:68:0;;;4724:21:5;4781:2;4761:18;;;4754:30;4820:34;4800:18;;;4793:62;-1:-1:-1;;;4871:18:5;;;4864:35;4916:19;;7544:68:0;4540:401:5;7544:68:0;-1:-1:-1;;;;;7630:16:0;;7622:64;;;;-1:-1:-1;;;7622:64:0;;5148:2:5;7622:64:0;;;5130:21:5;5187:2;5167:18;;;5160:30;5226:34;5206:18;;;5199:62;-1:-1:-1;;;5277:18:5;;;5270:33;5320:19;;7622:64:0;4946:399:5;7622:64:0;-1:-1:-1;;;;;7768:15:0;;7746:19;7768:15;;;;;;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:0;;5552:2:5;7793:72:0;;;5534:21:5;5591:2;5571:18;;;5564:30;5630:34;5610:18;;;5603:62;-1:-1:-1;;;5681:18:5;;;5674:36;5727:19;;7793:72:0;5350:402:5;7793:72:0;-1:-1:-1;;;;;7899:15:0;;;:9;:15;;;;;;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;1342:25:5;;;8114:13:0;;8163:26;;1315:18:5;8163:26:0;;;;;;;8200:37;12073:91;14:548:5;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:5;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:5:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:5:o;2091:260::-;2159:6;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;;2307:38;2341:2;2330:9;2326:18;2307:38;:::i;:::-;2297:48;;2091:260;;;;;:::o;2356:380::-;2435:1;2431:12;;;;2478;;;2499:61;;2553:4;2545:6;2541:17;2531:27;;2499:61;2606:2;2598:6;2595:14;2575:18;2572:38;2569:161;;2652:10;2647:3;2643:20;2640:1;2633:31;2687:4;2684:1;2677:15;2715:4;2712:1;2705:15;2569:161;;2356:380;;;:::o;2741:222::-;2806:9;;;2827:10;;;2824:133;;;2879:10;2874:3;2870:20;2867:1;2860:31;2914:4;2911:1;2904:15;2942:4;2939:1;2932:15"},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","increaseAllowance(address,uint256)":"39509351","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.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 ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` 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}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the 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}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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 `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15\",\"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih\"]},\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/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.20+commit.a1b79de6\"},\"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\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":\"Context\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]}},\"version\":1}"}},"project/contracts/mocks/MockUSDC.sol":{"MockUSDT":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_44":{"entryPoint":null,"id":44,"parameterSlots":2,"returnSlots":0},"@_740":{"entryPoint":null,"id":740,"parameterSlots":0,"returnSlots":0},"@_afterTokenTransfer_585":{"entryPoint":null,"id":585,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_574":{"entryPoint":345,"id":574,"parameterSlots":3,"returnSlots":0},"@_mint_403":{"entryPoint":149,"id":403,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":709,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":428,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":509,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":370,"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":350,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:3501:5","statements":[{"nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:5"},"nodeType":"YulFunctionCall","src":"66:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:5"},"nodeType":"YulFunctionCall","src":"56:31:5"},"nodeType":"YulExpressionStatement","src":"56:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:5","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:5"},"nodeType":"YulFunctionCall","src":"96:15:5"},"nodeType":"YulExpressionStatement","src":"96:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:5"},"nodeType":"YulFunctionCall","src":"120:15:5"},"nodeType":"YulExpressionStatement","src":"120:15:5"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:5"},{"body":{"nodeType":"YulBlock","src":"201:325:5","statements":[{"nodeType":"YulAssignment","src":"211:22:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"225:1:5","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"228:4:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"221:3:5"},"nodeType":"YulFunctionCall","src":"221:12:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"211:6:5"}]},{"nodeType":"YulVariableDeclaration","src":"242:38:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"272:4:5"},{"kind":"number","nodeType":"YulLiteral","src":"278:1:5","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"268:3:5"},"nodeType":"YulFunctionCall","src":"268:12:5"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"246:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"319:31:5","statements":[{"nodeType":"YulAssignment","src":"321:27:5","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"335:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"343:4:5","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"331:3:5"},"nodeType":"YulFunctionCall","src":"331:17:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"321:6:5"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"299:18:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"292:6:5"},"nodeType":"YulFunctionCall","src":"292:26:5"},"nodeType":"YulIf","src":"289:61:5"},{"body":{"nodeType":"YulBlock","src":"409:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"430:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"437:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"442:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"433:3:5"},"nodeType":"YulFunctionCall","src":"433:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"423:6:5"},"nodeType":"YulFunctionCall","src":"423:31:5"},"nodeType":"YulExpressionStatement","src":"423:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"474:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"477:4:5","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"467:6:5"},"nodeType":"YulFunctionCall","src":"467:15:5"},"nodeType":"YulExpressionStatement","src":"467:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"502:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"505:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"495:6:5"},"nodeType":"YulFunctionCall","src":"495:15:5"},"nodeType":"YulExpressionStatement","src":"495:15:5"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"365:18:5"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"388:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"396:2:5","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"385:2:5"},"nodeType":"YulFunctionCall","src":"385:14:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"362:2:5"},"nodeType":"YulFunctionCall","src":"362:38:5"},"nodeType":"YulIf","src":"359:161:5"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"181:4:5","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"190:6:5","type":""}],"src":"146:380:5"},{"body":{"nodeType":"YulBlock","src":"587:65:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"604:1:5","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"607:3:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"597:6:5"},"nodeType":"YulFunctionCall","src":"597:14:5"},"nodeType":"YulExpressionStatement","src":"597:14:5"},{"nodeType":"YulAssignment","src":"620:26:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"638:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"641:4:5","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"628:9:5"},"nodeType":"YulFunctionCall","src":"628:18:5"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"620:4:5"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"570:3:5","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"578:4:5","type":""}],"src":"531:121:5"},{"body":{"nodeType":"YulBlock","src":"738:464:5","statements":[{"body":{"nodeType":"YulBlock","src":"771:425:5","statements":[{"nodeType":"YulVariableDeclaration","src":"785:11:5","value":{"kind":"number","nodeType":"YulLiteral","src":"795:1:5","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"789:2:5","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"816:2:5"},{"name":"array","nodeType":"YulIdentifier","src":"820:5:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"809:6:5"},"nodeType":"YulFunctionCall","src":"809:17:5"},"nodeType":"YulExpressionStatement","src":"809:17:5"},{"nodeType":"YulVariableDeclaration","src":"839:31:5","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"861:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"865:4:5","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"851:9:5"},"nodeType":"YulFunctionCall","src":"851:19:5"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"843:4:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"883:57:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"906:4:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"916:1:5","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"923:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"935:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"919:3:5"},"nodeType":"YulFunctionCall","src":"919:19:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"912:3:5"},"nodeType":"YulFunctionCall","src":"912:27:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"902:3:5"},"nodeType":"YulFunctionCall","src":"902:38:5"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"887:11:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"977:23:5","statements":[{"nodeType":"YulAssignment","src":"979:19:5","value":{"name":"data","nodeType":"YulIdentifier","src":"994:4:5"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"979:11:5"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"959:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"971:4:5","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"956:2:5"},"nodeType":"YulFunctionCall","src":"956:20:5"},"nodeType":"YulIf","src":"953:47:5"},{"nodeType":"YulVariableDeclaration","src":"1013:41:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1027:4:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1037:1:5","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"1044:3:5"},{"kind":"number","nodeType":"YulLiteral","src":"1049:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1040:3:5"},"nodeType":"YulFunctionCall","src":"1040:12:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1033:3:5"},"nodeType":"YulFunctionCall","src":"1033:20:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1023:3:5"},"nodeType":"YulFunctionCall","src":"1023:31:5"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1017:2:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1067:24:5","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"1080:11:5"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"1071:5:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1165:21:5","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"1174:5:5"},{"name":"_1","nodeType":"YulIdentifier","src":"1181:2:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"1167:6:5"},"nodeType":"YulFunctionCall","src":"1167:17:5"},"nodeType":"YulExpressionStatement","src":"1167:17:5"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"1115:5:5"},{"name":"_2","nodeType":"YulIdentifier","src":"1122:2:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1112:2:5"},"nodeType":"YulFunctionCall","src":"1112:13:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1126:26:5","statements":[{"nodeType":"YulAssignment","src":"1128:22:5","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"1141:5:5"},{"kind":"number","nodeType":"YulLiteral","src":"1148:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1137:3:5"},"nodeType":"YulFunctionCall","src":"1137:13:5"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"1128:5:5"}]}]},"pre":{"nodeType":"YulBlock","src":"1108:3:5","statements":[]},"src":"1104:82:5"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"754:3:5"},{"kind":"number","nodeType":"YulLiteral","src":"759:2:5","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"751:2:5"},"nodeType":"YulFunctionCall","src":"751:11:5"},"nodeType":"YulIf","src":"748:448:5"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"710:5:5","type":""},{"name":"len","nodeType":"YulTypedName","src":"717:3:5","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"722:10:5","type":""}],"src":"657:545:5"},{"body":{"nodeType":"YulBlock","src":"1292:81:5","statements":[{"nodeType":"YulAssignment","src":"1302:65:5","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1317:4:5"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1335:1:5","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"1338:3:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1331:3:5"},"nodeType":"YulFunctionCall","src":"1331:11:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1348:1:5","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1344:3:5"},"nodeType":"YulFunctionCall","src":"1344:6:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1327:3:5"},"nodeType":"YulFunctionCall","src":"1327:24:5"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1323:3:5"},"nodeType":"YulFunctionCall","src":"1323:29:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1313:3:5"},"nodeType":"YulFunctionCall","src":"1313:40:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1359:1:5","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"1362:3:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1355:3:5"},"nodeType":"YulFunctionCall","src":"1355:11:5"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1310:2:5"},"nodeType":"YulFunctionCall","src":"1310:57:5"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"1302:4:5"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"1269:4:5","type":""},{"name":"len","nodeType":"YulTypedName","src":"1275:3:5","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"1283:4:5","type":""}],"src":"1207:166:5"},{"body":{"nodeType":"YulBlock","src":"1474:1256:5","statements":[{"nodeType":"YulVariableDeclaration","src":"1484:24:5","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"1504:3:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1498:5:5"},"nodeType":"YulFunctionCall","src":"1498:10:5"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"1488:6:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1551:22:5","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1553:16:5"},"nodeType":"YulFunctionCall","src":"1553:18:5"},"nodeType":"YulExpressionStatement","src":"1553:18:5"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"1523:6:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1539:2:5","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1543:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1535:3:5"},"nodeType":"YulFunctionCall","src":"1535:10:5"},{"kind":"number","nodeType":"YulLiteral","src":"1547:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1531:3:5"},"nodeType":"YulFunctionCall","src":"1531:18:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1520:2:5"},"nodeType":"YulFunctionCall","src":"1520:30:5"},"nodeType":"YulIf","src":"1517:56:5"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"1626:4:5"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"1664:4:5"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"1658:5:5"},"nodeType":"YulFunctionCall","src":"1658:11:5"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"1632:25:5"},"nodeType":"YulFunctionCall","src":"1632:38:5"},{"name":"newLen","nodeType":"YulIdentifier","src":"1672:6:5"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"1582:43:5"},"nodeType":"YulFunctionCall","src":"1582:97:5"},"nodeType":"YulExpressionStatement","src":"1582:97:5"},{"nodeType":"YulVariableDeclaration","src":"1688:18:5","value":{"kind":"number","nodeType":"YulLiteral","src":"1705:1:5","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"1692:9:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1715:23:5","value":{"kind":"number","nodeType":"YulLiteral","src":"1734:4:5","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"1719:11:5","type":""}]},{"nodeType":"YulAssignment","src":"1747:24:5","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"1760:11:5"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"1747:9:5"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"1817:656:5","statements":[{"nodeType":"YulVariableDeclaration","src":"1831:35:5","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"1850:6:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1862:2:5","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1858:3:5"},"nodeType":"YulFunctionCall","src":"1858:7:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1846:3:5"},"nodeType":"YulFunctionCall","src":"1846:20:5"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"1835:7:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1879:49:5","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"1923:4:5"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"1893:29:5"},"nodeType":"YulFunctionCall","src":"1893:35:5"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"1883:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1941:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"1950:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"1945:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2028:172:5","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"2053:6:5"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2071:3:5"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"2076:9:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2067:3:5"},"nodeType":"YulFunctionCall","src":"2067:19:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2061:5:5"},"nodeType":"YulFunctionCall","src":"2061:26:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2046:6:5"},"nodeType":"YulFunctionCall","src":"2046:42:5"},"nodeType":"YulExpressionStatement","src":"2046:42:5"},{"nodeType":"YulAssignment","src":"2105:24:5","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"2119:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"2127:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2115:3:5"},"nodeType":"YulFunctionCall","src":"2115:14:5"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"2105:6:5"}]},{"nodeType":"YulAssignment","src":"2146:40:5","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"2163:9:5"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"2174:11:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2159:3:5"},"nodeType":"YulFunctionCall","src":"2159:27:5"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"2146:9:5"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1975:1:5"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"1978:7:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1972:2:5"},"nodeType":"YulFunctionCall","src":"1972:14:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1987:28:5","statements":[{"nodeType":"YulAssignment","src":"1989:24:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1998:1:5"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"2001:11:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1994:3:5"},"nodeType":"YulFunctionCall","src":"1994:19:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"1989:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"1968:3:5","statements":[]},"src":"1964:236:5"},{"body":{"nodeType":"YulBlock","src":"2248:166:5","statements":[{"nodeType":"YulVariableDeclaration","src":"2266:43:5","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2293:3:5"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"2298:9:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2289:3:5"},"nodeType":"YulFunctionCall","src":"2289:19:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2283:5:5"},"nodeType":"YulFunctionCall","src":"2283:26:5"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"2270:9:5","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"2333:6:5"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"2345:9:5"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2372:1:5","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"2375:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2368:3:5"},"nodeType":"YulFunctionCall","src":"2368:14:5"},{"kind":"number","nodeType":"YulLiteral","src":"2384:3:5","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2364:3:5"},"nodeType":"YulFunctionCall","src":"2364:24:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2394:1:5","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2390:3:5"},"nodeType":"YulFunctionCall","src":"2390:6:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2360:3:5"},"nodeType":"YulFunctionCall","src":"2360:37:5"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2356:3:5"},"nodeType":"YulFunctionCall","src":"2356:42:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2341:3:5"},"nodeType":"YulFunctionCall","src":"2341:58:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2326:6:5"},"nodeType":"YulFunctionCall","src":"2326:74:5"},"nodeType":"YulExpressionStatement","src":"2326:74:5"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"2219:7:5"},{"name":"newLen","nodeType":"YulIdentifier","src":"2228:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2216:2:5"},"nodeType":"YulFunctionCall","src":"2216:19:5"},"nodeType":"YulIf","src":"2213:201:5"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2434:4:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2448:1:5","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"2451:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2444:3:5"},"nodeType":"YulFunctionCall","src":"2444:14:5"},{"kind":"number","nodeType":"YulLiteral","src":"2460:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2440:3:5"},"nodeType":"YulFunctionCall","src":"2440:22:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2427:6:5"},"nodeType":"YulFunctionCall","src":"2427:36:5"},"nodeType":"YulExpressionStatement","src":"2427:36:5"}]},"nodeType":"YulCase","src":"1810:663:5","value":{"kind":"number","nodeType":"YulLiteral","src":"1815:1:5","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"2490:234:5","statements":[{"nodeType":"YulVariableDeclaration","src":"2504:14:5","value":{"kind":"number","nodeType":"YulLiteral","src":"2517:1:5","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"2508:5:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2553:67:5","statements":[{"nodeType":"YulAssignment","src":"2571:35:5","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2590:3:5"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"2595:9:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2586:3:5"},"nodeType":"YulFunctionCall","src":"2586:19:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2580:5:5"},"nodeType":"YulFunctionCall","src":"2580:26:5"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2571:5:5"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"2534:6:5"},"nodeType":"YulIf","src":"2531:89:5"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2640:4:5"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2699:5:5"},{"name":"newLen","nodeType":"YulIdentifier","src":"2706:6:5"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"2646:52:5"},"nodeType":"YulFunctionCall","src":"2646:67:5"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2633:6:5"},"nodeType":"YulFunctionCall","src":"2633:81:5"},"nodeType":"YulExpressionStatement","src":"2633:81:5"}]},"nodeType":"YulCase","src":"2482:242:5","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"1790:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"1798:2:5","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1787:2:5"},"nodeType":"YulFunctionCall","src":"1787:14:5"},"nodeType":"YulSwitch","src":"1780:944:5"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"1459:4:5","type":""},{"name":"src","nodeType":"YulTypedName","src":"1465:3:5","type":""}],"src":"1378:1352:5"},{"body":{"nodeType":"YulBlock","src":"2909:181:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2926:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2937:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2919:6:5"},"nodeType":"YulFunctionCall","src":"2919:21:5"},"nodeType":"YulExpressionStatement","src":"2919:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2960:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2971:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2956:3:5"},"nodeType":"YulFunctionCall","src":"2956:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"2976:2:5","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2949:6:5"},"nodeType":"YulFunctionCall","src":"2949:30:5"},"nodeType":"YulExpressionStatement","src":"2949:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2999:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3010:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2995:3:5"},"nodeType":"YulFunctionCall","src":"2995:18:5"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"3015:33:5","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2988:6:5"},"nodeType":"YulFunctionCall","src":"2988:61:5"},"nodeType":"YulExpressionStatement","src":"2988:61:5"},{"nodeType":"YulAssignment","src":"3058:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3070:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3081:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3066:3:5"},"nodeType":"YulFunctionCall","src":"3066:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3058:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2886:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2900:4:5","type":""}],"src":"2735:355:5"},{"body":{"nodeType":"YulBlock","src":"3143:174:5","statements":[{"nodeType":"YulAssignment","src":"3153:16:5","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3164:1:5"},{"name":"y","nodeType":"YulIdentifier","src":"3167:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3160:3:5"},"nodeType":"YulFunctionCall","src":"3160:9:5"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"3153:3:5"}]},{"body":{"nodeType":"YulBlock","src":"3200:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3221:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3228:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3233:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3224:3:5"},"nodeType":"YulFunctionCall","src":"3224:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3214:6:5"},"nodeType":"YulFunctionCall","src":"3214:31:5"},"nodeType":"YulExpressionStatement","src":"3214:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3265:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3268:4:5","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3258:6:5"},"nodeType":"YulFunctionCall","src":"3258:15:5"},"nodeType":"YulExpressionStatement","src":"3258:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3293:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3296:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3286:6:5"},"nodeType":"YulFunctionCall","src":"3286:15:5"},"nodeType":"YulExpressionStatement","src":"3286:15:5"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3184:1:5"},{"name":"sum","nodeType":"YulIdentifier","src":"3187:3:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3181:2:5"},"nodeType":"YulFunctionCall","src":"3181:10:5"},"nodeType":"YulIf","src":"3178:133:5"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"3126:1:5","type":""},{"name":"y","nodeType":"YulTypedName","src":"3129:1:5","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"3135:3:5","type":""}],"src":"3095:222:5"},{"body":{"nodeType":"YulBlock","src":"3423:76:5","statements":[{"nodeType":"YulAssignment","src":"3433:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3445:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3456:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3441:3:5"},"nodeType":"YulFunctionCall","src":"3441:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3433:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3475:9:5"},{"name":"value0","nodeType":"YulIdentifier","src":"3486:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3468:6:5"},"nodeType":"YulFunctionCall","src":"3468:25:5"},"nodeType":"YulExpressionStatement","src":"3468:25:5"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3392:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3403:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3414:4:5","type":""}],"src":"3322:177:5"}]},"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 let _1 := 0\n mstore(_1, array)\n let data := keccak256(_1, 0x20)\n let deleteStart := add(data, shr(5, add(startIndex, 31)))\n if lt(startIndex, 0x20) { deleteStart := data }\n let _2 := add(data, shr(5, add(len, 31)))\n let start := deleteStart\n for { } lt(start, _2) { start := add(start, 1) }\n { sstore(start, _1) }\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 let srcOffset_1 := 0x20\n srcOffset := srcOffset_1\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, srcOffset_1) }\n {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, srcOffset_1)\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_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n tail := add(headStart, 96)\n }\n function 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_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n}","id":5,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801562000010575f80fd5b50604051806040016040528060088152602001674d6f636b5544534360c01b815250604051806040016040528060058152602001644d5553444360d81b8152508160039081620000619190620001fd565b506004620000708282620001fd565b5050506200008f3369d3c21bcecceda10000006200009560201b60201c565b620002eb565b6001600160a01b038216620000f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001039190620002c5565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018757607f821691505b602082108103620001a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000159575f81815260208120601f850160051c81016020861015620001d45750805b601f850160051c820191505b81811015620001f557828155600101620001e0565b505050505050565b81516001600160401b038111156200021957620002196200015e565b62000231816200022a845462000172565b84620001ac565b602080601f83116001811462000267575f84156200024f5750858301515b5f19600386901b1c1916600185901b178555620001f5565b5f85815260208120601f198616915b82811015620002975788860151825594840194600190910190840162000276565b5085821015620002b557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620002e557634e487b7160e01b5f52601160045260245ffd5b92915050565b610b0e80620002f95f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH8 0x4D6F636B55445343 PUSH1 0xC0 SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x4D55534443 PUSH1 0xD8 SHL DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x61 SWAP2 SWAP1 PUSH3 0x1FD JUMP JUMPDEST POP PUSH1 0x4 PUSH3 0x70 DUP3 DUP3 PUSH3 0x1FD JUMP JUMPDEST POP POP POP PUSH3 0x8F CALLER PUSH10 0xD3C21BCECCEDA1000000 PUSH3 0x95 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x2EB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0xF0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH3 0x103 SWAP2 SWAP1 PUSH3 0x2C5 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST 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 PUSH3 0x187 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1A6 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 PUSH3 0x159 JUMPI PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x1D4 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x1F5 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1E0 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x219 JUMPI PUSH3 0x219 PUSH3 0x15E JUMP JUMPDEST PUSH3 0x231 DUP2 PUSH3 0x22A DUP5 SLOAD PUSH3 0x172 JUMP JUMPDEST DUP5 PUSH3 0x1AC JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x267 JUMPI PUSH0 DUP5 ISZERO PUSH3 0x24F JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x1F5 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x297 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x276 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x2B5 JUMPI DUP8 DUP6 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH3 0x2E5 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB0E DUP1 PUSH3 0x2F9 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE5 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x88 JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x1BE JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1F7 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x9975038C EQ PUSH2 0x1B6 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xC3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x171 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xE9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x107 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x12A JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xF1 PUSH2 0x20A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFE SWAP2 SWAP1 PUSH2 0x952 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x11A PUSH2 0x115 CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x29A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH2 0x11A PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0x9E0 JUMP JUMPDEST PUSH2 0x2B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH2 0x11A PUSH2 0x16C CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x2D6 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x17F CALLDATASIZE PUSH1 0x4 PUSH2 0xA19 JUMP JUMPDEST PUSH2 0x2F7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x12E PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0xA30 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 0xF1 PUSH2 0x304 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x313 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x1CC CALLDATASIZE PUSH1 0x4 PUSH2 0xA19 JUMP JUMPDEST PUSH2 0x374 JUMP JUMPDEST PUSH2 0x11A PUSH2 0x1DF CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x37E JUMP JUMPDEST PUSH2 0x11A PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x3F8 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0xA50 JUMP JUMPDEST PUSH2 0x405 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x219 SWAP1 PUSH2 0xA81 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 0x245 SWAP1 PUSH2 0xA81 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x290 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x267 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x290 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 0x273 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2A7 DUP2 DUP6 DUP6 PUSH2 0x42F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2C0 DUP6 DUP3 DUP6 PUSH2 0x553 JUMP JUMPDEST PUSH2 0x2CB DUP6 DUP6 DUP6 PUSH2 0x5CB JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2A7 DUP2 DUP6 DUP6 PUSH2 0x2E8 DUP4 DUP4 PUSH2 0x405 JUMP JUMPDEST PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0xAB9 JUMP JUMPDEST PUSH2 0x42F JUMP JUMPDEST PUSH2 0x301 CALLER DUP3 PUSH2 0x76D JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x219 SWAP1 PUSH2 0xA81 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP1 PUSH2 0x2F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D6F636B555344543A204E6F7468696E6720746F206275726E00000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x301 CALLER DUP3 PUSH2 0x895 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0x38B DUP3 DUP7 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x3EB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH2 0x2CB DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x42F JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2A7 DUP2 DUP6 DUP6 PUSH2 0x5CB 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x491 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x55E DUP5 DUP5 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 EQ PUSH2 0x5C5 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x5B8 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x36B JUMP JUMPDEST PUSH2 0x5C5 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x42F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x691 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B 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 0x708 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x5C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B 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 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x840 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP7 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP8 SWAP1 SUB SWAP1 SSTORE MLOAD DUP6 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH2 0x546 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8EB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x36B JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x8FC SWAP2 SWAP1 PUSH2 0xAB9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x97D JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x961 JUMP JUMPDEST POP PUSH0 PUSH1 0x40 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x9B3 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x9C9 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9D2 DUP4 PUSH2 0x99D JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9F2 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9FB DUP5 PUSH2 0x99D JUMP JUMPDEST SWAP3 POP PUSH2 0xA09 PUSH1 0x20 DUP6 ADD PUSH2 0x99D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA29 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA40 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA49 DUP3 PUSH2 0x99D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xA61 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA6A DUP4 PUSH2 0x99D JUMP JUMPDEST SWAP2 POP PUSH2 0xA78 PUSH1 0x20 DUP5 ADD PUSH2 0x99D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xA95 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xAB3 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 0x2AD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE 0x2D DUP13 0xF 0xE8 LOG4 DUP13 SLOAD SLOAD MLOAD PUSH18 0xECF4F3B286D55A47396DADF48802EF4D4 0xE2 RETURNDATASIZE 0xEB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"162:496:4:-:0;;;195:89;;;;;;;;;;1980:113:0;;;;;;;;;;;;;-1:-1:-1;;;1980:113:0;;;;;;;;;;;;;;;;-1:-1:-1;;;1980:113:0;;;2054:5;2046;:13;;;;;;:::i;:::-;-1:-1:-1;2069:7:0;:17;2079:7;2069;:17;:::i;:::-;;1980:113;;246:31:4::1;252:10;264:12;246:5;;;:31;;:::i;:::-;162:496:::0;;8520:535:0;-1:-1:-1;;;;;8603:21:0;;8595:65;;;;-1:-1:-1;;;8595:65:0;;2937:2:5;8595:65:0;;;2919:21:5;2976:2;2956:18;;;2949:30;3015:33;2995:18;;;2988:61;3066:18;;8595:65:0;;;;;;;;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8899:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;8952:37;3468:25:5;;;8952:37:0;;3441:18:5;8952:37:0;;;;;;;8520:535;;:::o;12073:91::-;;;;:::o;14:127:5:-;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:545::-;759:2;754:3;751:11;748:448;;;795:1;820:5;816:2;809:17;865:4;861:2;851:19;935:2;923:10;919:19;916:1;912:27;906:4;902:38;971:4;959:10;956:20;953:47;;;-1:-1:-1;994:4:5;953:47;1049:2;1044:3;1040:12;1037:1;1033:20;1027:4;1023:31;1013:41;;1104:82;1122:2;1115:5;1112:13;1104:82;;;1167:17;;;1148:1;1137:13;1104:82;;;1108:3;;;657:545;;;:::o;1378:1352::-;1498:10;;-1:-1:-1;;;;;1520:30:5;;1517:56;;;1553:18;;:::i;:::-;1582:97;1672:6;1632:38;1664:4;1658:11;1632:38;:::i;:::-;1626:4;1582:97;:::i;:::-;1734:4;;1798:2;1787:14;;1815:1;1810:663;;;;2517:1;2534:6;2531:89;;;-1:-1:-1;2586:19:5;;;2580:26;2531:89;-1:-1:-1;;1335:1:5;1331:11;;;1327:24;1323:29;1313:40;1359:1;1355:11;;;1310:57;2633:81;;1780:944;;1810:663;604:1;597:14;;;641:4;628:18;;-1:-1:-1;;1846:20:5;;;1964:236;1978:7;1975:1;1972:14;1964:236;;;2067:19;;;2061:26;2046:42;;2159:27;;;;2127:1;2115:14;;;;1994:19;;1964:236;;;1968:3;2228:6;2219:7;2216:19;2213:201;;;2289:19;;;2283:26;-1:-1:-1;;2372:1:5;2368:14;;;2384:3;2364:24;2360:37;2356:42;2341:58;2326:74;;2213:201;-1:-1:-1;;;;;2460:1:5;2444:14;;;2440:22;2427:36;;-1:-1:-1;1378:1352:5:o;3095:222::-;3160:9;;;3181:10;;;3178:133;;;3233:10;3228:3;3224:20;3221:1;3214:31;3268:4;3265:1;3258:15;3296:4;3293:1;3286:15;3178:133;3095:222;;;;:::o;3322:177::-;162:496:4;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_585":{"entryPoint":null,"id":585,"parameterSlots":3,"returnSlots":0},"@_approve_520":{"entryPoint":1071,"id":520,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_574":{"entryPoint":null,"id":574,"parameterSlots":3,"returnSlots":0},"@_burn_475":{"entryPoint":1901,"id":475,"parameterSlots":2,"returnSlots":0},"@_mint_403":{"entryPoint":2197,"id":403,"parameterSlots":2,"returnSlots":0},"@_msgSender_701":{"entryPoint":null,"id":701,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_563":{"entryPoint":1363,"id":563,"parameterSlots":3,"returnSlots":0},"@_transfer_346":{"entryPoint":1483,"id":346,"parameterSlots":3,"returnSlots":0},"@allowance_141":{"entryPoint":1029,"id":141,"parameterSlots":2,"returnSlots":1},"@approve_166":{"entryPoint":666,"id":166,"parameterSlots":2,"returnSlots":1},"@balanceOf_98":{"entryPoint":null,"id":98,"parameterSlots":1,"returnSlots":1},"@burnAll_788":{"entryPoint":787,"id":788,"parameterSlots":0,"returnSlots":0},"@burn_764":{"entryPoint":759,"id":764,"parameterSlots":1,"returnSlots":0},"@decimals_74":{"entryPoint":null,"id":74,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_269":{"entryPoint":894,"id":269,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_228":{"entryPoint":726,"id":228,"parameterSlots":2,"returnSlots":1},"@mint_752":{"entryPoint":884,"id":752,"parameterSlots":1,"returnSlots":0},"@name_54":{"entryPoint":522,"id":54,"parameterSlots":0,"returnSlots":1},"@symbol_64":{"entryPoint":772,"id":64,"parameterSlots":0,"returnSlots":1},"@totalSupply_84":{"entryPoint":null,"id":84,"parameterSlots":0,"returnSlots":1},"@transferFrom_199":{"entryPoint":691,"id":199,"parameterSlots":3,"returnSlots":1},"@transfer_123":{"entryPoint":1016,"id":123,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":2461,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":2608,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":2640,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":2528,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":2488,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256":{"entryPoint":2585,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2386,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":2745,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":2689,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:7458:5","statements":[{"nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nodeType":"YulBlock","src":"135:427:5","statements":[{"nodeType":"YulVariableDeclaration","src":"145:12:5","value":{"kind":"number","nodeType":"YulLiteral","src":"155:2:5","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"149:2:5","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"173:9:5"},{"name":"_1","nodeType":"YulIdentifier","src":"184:2:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"166:6:5"},"nodeType":"YulFunctionCall","src":"166:21:5"},"nodeType":"YulExpressionStatement","src":"166:21:5"},{"nodeType":"YulVariableDeclaration","src":"196:27:5","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"216:6:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"210:5:5"},"nodeType":"YulFunctionCall","src":"210:13:5"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"200:6:5","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"243:9:5"},{"name":"_1","nodeType":"YulIdentifier","src":"254:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"239:3:5"},"nodeType":"YulFunctionCall","src":"239:18:5"},{"name":"length","nodeType":"YulIdentifier","src":"259:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"232:6:5"},"nodeType":"YulFunctionCall","src":"232:34:5"},"nodeType":"YulExpressionStatement","src":"232:34:5"},{"nodeType":"YulVariableDeclaration","src":"275:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"284:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"279:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"344:90:5","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"373:9:5"},{"name":"i","nodeType":"YulIdentifier","src":"384:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"369:3:5"},"nodeType":"YulFunctionCall","src":"369:17:5"},{"kind":"number","nodeType":"YulLiteral","src":"388:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"365:3:5"},"nodeType":"YulFunctionCall","src":"365:26:5"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"407:6:5"},{"name":"i","nodeType":"YulIdentifier","src":"415:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"403:3:5"},"nodeType":"YulFunctionCall","src":"403:14:5"},{"name":"_1","nodeType":"YulIdentifier","src":"419:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"399:3:5"},"nodeType":"YulFunctionCall","src":"399:23:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"393:5:5"},"nodeType":"YulFunctionCall","src":"393:30:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"358:6:5"},"nodeType":"YulFunctionCall","src":"358:66:5"},"nodeType":"YulExpressionStatement","src":"358:66:5"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"305:1:5"},{"name":"length","nodeType":"YulIdentifier","src":"308:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"302:2:5"},"nodeType":"YulFunctionCall","src":"302:13:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"316:19:5","statements":[{"nodeType":"YulAssignment","src":"318:15:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"327:1:5"},{"name":"_1","nodeType":"YulIdentifier","src":"330:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"323:3:5"},"nodeType":"YulFunctionCall","src":"323:10:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"318:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"298:3:5","statements":[]},"src":"294:140:5"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"458:9:5"},{"name":"length","nodeType":"YulIdentifier","src":"469:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"454:3:5"},"nodeType":"YulFunctionCall","src":"454:22:5"},{"kind":"number","nodeType":"YulLiteral","src":"478:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"450:3:5"},"nodeType":"YulFunctionCall","src":"450:31:5"},{"kind":"number","nodeType":"YulLiteral","src":"483:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"443:6:5"},"nodeType":"YulFunctionCall","src":"443:42:5"},"nodeType":"YulExpressionStatement","src":"443:42:5"},{"nodeType":"YulAssignment","src":"494:62:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"510:9:5"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"529:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"537:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"525:3:5"},"nodeType":"YulFunctionCall","src":"525:15:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"546:2:5","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"542:3:5"},"nodeType":"YulFunctionCall","src":"542:7:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"521:3:5"},"nodeType":"YulFunctionCall","src":"521:29:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"506:3:5"},"nodeType":"YulFunctionCall","src":"506:45:5"},{"kind":"number","nodeType":"YulLiteral","src":"553:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"502:3:5"},"nodeType":"YulFunctionCall","src":"502:54:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"494:4:5"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"104:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"115:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"126:4:5","type":""}],"src":"14:548:5"},{"body":{"nodeType":"YulBlock","src":"616:124:5","statements":[{"nodeType":"YulAssignment","src":"626:29:5","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"648:6:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"635:12:5"},"nodeType":"YulFunctionCall","src":"635:20:5"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"626:5:5"}]},{"body":{"nodeType":"YulBlock","src":"718:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"727:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"730:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"720:6:5"},"nodeType":"YulFunctionCall","src":"720:12:5"},"nodeType":"YulExpressionStatement","src":"720:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"677:5:5"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"688:5:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"703:3:5","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"708:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"699:3:5"},"nodeType":"YulFunctionCall","src":"699:11:5"},{"kind":"number","nodeType":"YulLiteral","src":"712:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"695:3:5"},"nodeType":"YulFunctionCall","src":"695:19:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"684:3:5"},"nodeType":"YulFunctionCall","src":"684:31:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"674:2:5"},"nodeType":"YulFunctionCall","src":"674:42:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"667:6:5"},"nodeType":"YulFunctionCall","src":"667:50:5"},"nodeType":"YulIf","src":"664:70:5"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"595:6:5","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"606:5:5","type":""}],"src":"567:173:5"},{"body":{"nodeType":"YulBlock","src":"832:167:5","statements":[{"body":{"nodeType":"YulBlock","src":"878:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"887:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"890:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"880:6:5"},"nodeType":"YulFunctionCall","src":"880:12:5"},"nodeType":"YulExpressionStatement","src":"880:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"853:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"862:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"849:3:5"},"nodeType":"YulFunctionCall","src":"849:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"874:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"845:3:5"},"nodeType":"YulFunctionCall","src":"845:32:5"},"nodeType":"YulIf","src":"842:52:5"},{"nodeType":"YulAssignment","src":"903:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"932:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"913:18:5"},"nodeType":"YulFunctionCall","src":"913:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"903:6:5"}]},{"nodeType":"YulAssignment","src":"951:42:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"978:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"989:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"974:3:5"},"nodeType":"YulFunctionCall","src":"974:18:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"961:12:5"},"nodeType":"YulFunctionCall","src":"961:32:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"951:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"790:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"801:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"813:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"821:6:5","type":""}],"src":"745:254:5"},{"body":{"nodeType":"YulBlock","src":"1099:92:5","statements":[{"nodeType":"YulAssignment","src":"1109:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1121:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1132:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1117:3:5"},"nodeType":"YulFunctionCall","src":"1117:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1109:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1151:9:5"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1176:6:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1169:6:5"},"nodeType":"YulFunctionCall","src":"1169:14:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1162:6:5"},"nodeType":"YulFunctionCall","src":"1162:22:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1144:6:5"},"nodeType":"YulFunctionCall","src":"1144:41:5"},"nodeType":"YulExpressionStatement","src":"1144:41:5"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1068:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1079:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1090:4:5","type":""}],"src":"1004:187:5"},{"body":{"nodeType":"YulBlock","src":"1297:76:5","statements":[{"nodeType":"YulAssignment","src":"1307:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1319:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1330:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1315:3:5"},"nodeType":"YulFunctionCall","src":"1315:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1307:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1349:9:5"},{"name":"value0","nodeType":"YulIdentifier","src":"1360:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1342:6:5"},"nodeType":"YulFunctionCall","src":"1342:25:5"},"nodeType":"YulExpressionStatement","src":"1342:25:5"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1266:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1277:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1288:4:5","type":""}],"src":"1196:177:5"},{"body":{"nodeType":"YulBlock","src":"1482:224:5","statements":[{"body":{"nodeType":"YulBlock","src":"1528:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1537:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1540:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1530:6:5"},"nodeType":"YulFunctionCall","src":"1530:12:5"},"nodeType":"YulExpressionStatement","src":"1530:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1503:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"1512:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1499:3:5"},"nodeType":"YulFunctionCall","src":"1499:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"1524:2:5","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1495:3:5"},"nodeType":"YulFunctionCall","src":"1495:32:5"},"nodeType":"YulIf","src":"1492:52:5"},{"nodeType":"YulAssignment","src":"1553:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1582:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1563:18:5"},"nodeType":"YulFunctionCall","src":"1563:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1553:6:5"}]},{"nodeType":"YulAssignment","src":"1601:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1634:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1645:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1630:3:5"},"nodeType":"YulFunctionCall","src":"1630:18:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1611:18:5"},"nodeType":"YulFunctionCall","src":"1611:38:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1601:6:5"}]},{"nodeType":"YulAssignment","src":"1658:42:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1685:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1696:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1681:3:5"},"nodeType":"YulFunctionCall","src":"1681:18:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1668:12:5"},"nodeType":"YulFunctionCall","src":"1668:32:5"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1658:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1432:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1443:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1455:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1463:6:5","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1471:6:5","type":""}],"src":"1378:328:5"},{"body":{"nodeType":"YulBlock","src":"1808:87:5","statements":[{"nodeType":"YulAssignment","src":"1818:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1830:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1841:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1826:3:5"},"nodeType":"YulFunctionCall","src":"1826:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1818:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1860:9:5"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1875:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"1883:4:5","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1871:3:5"},"nodeType":"YulFunctionCall","src":"1871:17:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1853:6:5"},"nodeType":"YulFunctionCall","src":"1853:36:5"},"nodeType":"YulExpressionStatement","src":"1853:36:5"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1777:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1788:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1799:4:5","type":""}],"src":"1711:184:5"},{"body":{"nodeType":"YulBlock","src":"1970:110:5","statements":[{"body":{"nodeType":"YulBlock","src":"2016:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2025:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2028:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2018:6:5"},"nodeType":"YulFunctionCall","src":"2018:12:5"},"nodeType":"YulExpressionStatement","src":"2018:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1991:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"2000:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1987:3:5"},"nodeType":"YulFunctionCall","src":"1987:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"2012:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1983:3:5"},"nodeType":"YulFunctionCall","src":"1983:32:5"},"nodeType":"YulIf","src":"1980:52:5"},{"nodeType":"YulAssignment","src":"2041:33:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2064:9:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2051:12:5"},"nodeType":"YulFunctionCall","src":"2051:23:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2041:6:5"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1936:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1947:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1959:6:5","type":""}],"src":"1900:180:5"},{"body":{"nodeType":"YulBlock","src":"2155:116:5","statements":[{"body":{"nodeType":"YulBlock","src":"2201:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2210:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2213:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2203:6:5"},"nodeType":"YulFunctionCall","src":"2203:12:5"},"nodeType":"YulExpressionStatement","src":"2203:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2176:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"2185:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2172:3:5"},"nodeType":"YulFunctionCall","src":"2172:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"2197:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2168:3:5"},"nodeType":"YulFunctionCall","src":"2168:32:5"},"nodeType":"YulIf","src":"2165:52:5"},{"nodeType":"YulAssignment","src":"2226:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2255:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2236:18:5"},"nodeType":"YulFunctionCall","src":"2236:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2226:6:5"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2121:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2132:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2144:6:5","type":""}],"src":"2085:186:5"},{"body":{"nodeType":"YulBlock","src":"2363:173:5","statements":[{"body":{"nodeType":"YulBlock","src":"2409:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2418:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2421:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2411:6:5"},"nodeType":"YulFunctionCall","src":"2411:12:5"},"nodeType":"YulExpressionStatement","src":"2411:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2384:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"2393:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2380:3:5"},"nodeType":"YulFunctionCall","src":"2380:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"2405:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2376:3:5"},"nodeType":"YulFunctionCall","src":"2376:32:5"},"nodeType":"YulIf","src":"2373:52:5"},{"nodeType":"YulAssignment","src":"2434:39:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2463:9:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2444:18:5"},"nodeType":"YulFunctionCall","src":"2444:29:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2434:6:5"}]},{"nodeType":"YulAssignment","src":"2482:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2515:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2526:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2511:3:5"},"nodeType":"YulFunctionCall","src":"2511:18:5"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2492:18:5"},"nodeType":"YulFunctionCall","src":"2492:38:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2482:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2321:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2332:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2344:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2352:6:5","type":""}],"src":"2276:260:5"},{"body":{"nodeType":"YulBlock","src":"2596:325:5","statements":[{"nodeType":"YulAssignment","src":"2606:22:5","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2620:1:5","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"2623:4:5"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2616:3:5"},"nodeType":"YulFunctionCall","src":"2616:12:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2606:6:5"}]},{"nodeType":"YulVariableDeclaration","src":"2637:38:5","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2667:4:5"},{"kind":"number","nodeType":"YulLiteral","src":"2673:1:5","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2663:3:5"},"nodeType":"YulFunctionCall","src":"2663:12:5"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"2641:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"2714:31:5","statements":[{"nodeType":"YulAssignment","src":"2716:27:5","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2730:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"2738:4:5","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2726:3:5"},"nodeType":"YulFunctionCall","src":"2726:17:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2716:6:5"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2694:18:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2687:6:5"},"nodeType":"YulFunctionCall","src":"2687:26:5"},"nodeType":"YulIf","src":"2684:61:5"},{"body":{"nodeType":"YulBlock","src":"2804:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2825:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2832:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2837:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2828:3:5"},"nodeType":"YulFunctionCall","src":"2828:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2818:6:5"},"nodeType":"YulFunctionCall","src":"2818:31:5"},"nodeType":"YulExpressionStatement","src":"2818:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2869:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2872:4:5","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2862:6:5"},"nodeType":"YulFunctionCall","src":"2862:15:5"},"nodeType":"YulExpressionStatement","src":"2862:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2897:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2900:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2890:6:5"},"nodeType":"YulFunctionCall","src":"2890:15:5"},"nodeType":"YulExpressionStatement","src":"2890:15:5"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2760:18:5"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2783:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"2791:2:5","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2780:2:5"},"nodeType":"YulFunctionCall","src":"2780:14:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2757:2:5"},"nodeType":"YulFunctionCall","src":"2757:38:5"},"nodeType":"YulIf","src":"2754:161:5"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2576:4:5","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"2585:6:5","type":""}],"src":"2541:380:5"},{"body":{"nodeType":"YulBlock","src":"2974:174:5","statements":[{"nodeType":"YulAssignment","src":"2984:16:5","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2995:1:5"},{"name":"y","nodeType":"YulIdentifier","src":"2998:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2991:3:5"},"nodeType":"YulFunctionCall","src":"2991:9:5"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"2984:3:5"}]},{"body":{"nodeType":"YulBlock","src":"3031:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3052:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3059:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3064:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3055:3:5"},"nodeType":"YulFunctionCall","src":"3055:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3045:6:5"},"nodeType":"YulFunctionCall","src":"3045:31:5"},"nodeType":"YulExpressionStatement","src":"3045:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3096:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3099:4:5","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3089:6:5"},"nodeType":"YulFunctionCall","src":"3089:15:5"},"nodeType":"YulExpressionStatement","src":"3089:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3124:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3127:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3117:6:5"},"nodeType":"YulFunctionCall","src":"3117:15:5"},"nodeType":"YulExpressionStatement","src":"3117:15:5"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3015:1:5"},{"name":"sum","nodeType":"YulIdentifier","src":"3018:3:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3012:2:5"},"nodeType":"YulFunctionCall","src":"3012:10:5"},"nodeType":"YulIf","src":"3009:133:5"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"2957:1:5","type":""},{"name":"y","nodeType":"YulTypedName","src":"2960:1:5","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"2966:3:5","type":""}],"src":"2926:222:5"},{"body":{"nodeType":"YulBlock","src":"3327:175:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3344:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3355:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3337:6:5"},"nodeType":"YulFunctionCall","src":"3337:21:5"},"nodeType":"YulExpressionStatement","src":"3337:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3378:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3389:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3374:3:5"},"nodeType":"YulFunctionCall","src":"3374:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"3394:2:5","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3367:6:5"},"nodeType":"YulFunctionCall","src":"3367:30:5"},"nodeType":"YulExpressionStatement","src":"3367:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3417:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3428:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3413:3:5"},"nodeType":"YulFunctionCall","src":"3413:18:5"},{"hexValue":"4d6f636b555344543a204e6f7468696e6720746f206275726e","kind":"string","nodeType":"YulLiteral","src":"3433:27:5","type":"","value":"MockUSDT: Nothing to burn"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3406:6:5"},"nodeType":"YulFunctionCall","src":"3406:55:5"},"nodeType":"YulExpressionStatement","src":"3406:55:5"},{"nodeType":"YulAssignment","src":"3470:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3482:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3493:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3478:3:5"},"nodeType":"YulFunctionCall","src":"3478:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3470:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3304:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3318:4:5","type":""}],"src":"3153:349:5"},{"body":{"nodeType":"YulBlock","src":"3681:227:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3698:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3709:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3691:6:5"},"nodeType":"YulFunctionCall","src":"3691:21:5"},"nodeType":"YulExpressionStatement","src":"3691:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3732:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3743:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3728:3:5"},"nodeType":"YulFunctionCall","src":"3728:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"3748:2:5","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3721:6:5"},"nodeType":"YulFunctionCall","src":"3721:30:5"},"nodeType":"YulExpressionStatement","src":"3721:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3771:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3782:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3767:3:5"},"nodeType":"YulFunctionCall","src":"3767:18:5"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nodeType":"YulLiteral","src":"3787:34:5","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3760:6:5"},"nodeType":"YulFunctionCall","src":"3760:62:5"},"nodeType":"YulExpressionStatement","src":"3760:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3842:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3853:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3838:3:5"},"nodeType":"YulFunctionCall","src":"3838:18:5"},{"hexValue":"207a65726f","kind":"string","nodeType":"YulLiteral","src":"3858:7:5","type":"","value":" zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3831:6:5"},"nodeType":"YulFunctionCall","src":"3831:35:5"},"nodeType":"YulExpressionStatement","src":"3831:35:5"},{"nodeType":"YulAssignment","src":"3875:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3887:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3898:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3883:3:5"},"nodeType":"YulFunctionCall","src":"3883:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3875:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3658:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3672:4:5","type":""}],"src":"3507:401:5"},{"body":{"nodeType":"YulBlock","src":"4087:226:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4104:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4115:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4097:6:5"},"nodeType":"YulFunctionCall","src":"4097:21:5"},"nodeType":"YulExpressionStatement","src":"4097:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4138:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4149:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4134:3:5"},"nodeType":"YulFunctionCall","src":"4134:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"4154:2:5","type":"","value":"36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4127:6:5"},"nodeType":"YulFunctionCall","src":"4127:30:5"},"nodeType":"YulExpressionStatement","src":"4127:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4177:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4188:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4173:3:5"},"nodeType":"YulFunctionCall","src":"4173:18:5"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"4193:34:5","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4166:6:5"},"nodeType":"YulFunctionCall","src":"4166:62:5"},"nodeType":"YulExpressionStatement","src":"4166:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4248:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4259:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4244:3:5"},"nodeType":"YulFunctionCall","src":"4244:18:5"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"4264:6:5","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4237:6:5"},"nodeType":"YulFunctionCall","src":"4237:34:5"},"nodeType":"YulExpressionStatement","src":"4237:34:5"},{"nodeType":"YulAssignment","src":"4280:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4292:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4303:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4288:3:5"},"nodeType":"YulFunctionCall","src":"4288:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4280:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4064:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4078:4:5","type":""}],"src":"3913:400:5"},{"body":{"nodeType":"YulBlock","src":"4492:224:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4509:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4520:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4502:6:5"},"nodeType":"YulFunctionCall","src":"4502:21:5"},"nodeType":"YulExpressionStatement","src":"4502:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4543:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4554:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4539:3:5"},"nodeType":"YulFunctionCall","src":"4539:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"4559:2:5","type":"","value":"34"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4532:6:5"},"nodeType":"YulFunctionCall","src":"4532:30:5"},"nodeType":"YulExpressionStatement","src":"4532:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4582:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4593:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4578:3:5"},"nodeType":"YulFunctionCall","src":"4578:18:5"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nodeType":"YulLiteral","src":"4598:34:5","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4571:6:5"},"nodeType":"YulFunctionCall","src":"4571:62:5"},"nodeType":"YulExpressionStatement","src":"4571:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4653:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4664:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4649:3:5"},"nodeType":"YulFunctionCall","src":"4649:18:5"},{"hexValue":"7373","kind":"string","nodeType":"YulLiteral","src":"4669:4:5","type":"","value":"ss"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4642:6:5"},"nodeType":"YulFunctionCall","src":"4642:32:5"},"nodeType":"YulExpressionStatement","src":"4642:32:5"},{"nodeType":"YulAssignment","src":"4683:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4695:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4706:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4691:3:5"},"nodeType":"YulFunctionCall","src":"4691:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4683:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4469:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4483:4:5","type":""}],"src":"4318:398:5"},{"body":{"nodeType":"YulBlock","src":"4895:179:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4912:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4923:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4905:6:5"},"nodeType":"YulFunctionCall","src":"4905:21:5"},"nodeType":"YulExpressionStatement","src":"4905:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4946:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4957:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4942:3:5"},"nodeType":"YulFunctionCall","src":"4942:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"4962:2:5","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4935:6:5"},"nodeType":"YulFunctionCall","src":"4935:30:5"},"nodeType":"YulExpressionStatement","src":"4935:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4985:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"4996:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4981:3:5"},"nodeType":"YulFunctionCall","src":"4981:18:5"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nodeType":"YulLiteral","src":"5001:31:5","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4974:6:5"},"nodeType":"YulFunctionCall","src":"4974:59:5"},"nodeType":"YulExpressionStatement","src":"4974:59:5"},{"nodeType":"YulAssignment","src":"5042:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5054:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5065:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5050:3:5"},"nodeType":"YulFunctionCall","src":"5050:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5042:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4872:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4886:4:5","type":""}],"src":"4721:353:5"},{"body":{"nodeType":"YulBlock","src":"5253:227:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5270:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5281:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5263:6:5"},"nodeType":"YulFunctionCall","src":"5263:21:5"},"nodeType":"YulExpressionStatement","src":"5263:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5304:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5315:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5300:3:5"},"nodeType":"YulFunctionCall","src":"5300:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"5320:2:5","type":"","value":"37"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5293:6:5"},"nodeType":"YulFunctionCall","src":"5293:30:5"},"nodeType":"YulExpressionStatement","src":"5293:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5343:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5354:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5339:3:5"},"nodeType":"YulFunctionCall","src":"5339:18:5"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"5359:34:5","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5332:6:5"},"nodeType":"YulFunctionCall","src":"5332:62:5"},"nodeType":"YulExpressionStatement","src":"5332:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5414:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5425:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5410:3:5"},"nodeType":"YulFunctionCall","src":"5410:18:5"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"5430:7:5","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5403:6:5"},"nodeType":"YulFunctionCall","src":"5403:35:5"},"nodeType":"YulExpressionStatement","src":"5403:35:5"},{"nodeType":"YulAssignment","src":"5447:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5459:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5470:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5455:3:5"},"nodeType":"YulFunctionCall","src":"5455:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5447:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5230:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5244:4:5","type":""}],"src":"5079:401:5"},{"body":{"nodeType":"YulBlock","src":"5659:225:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5676:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5687:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5669:6:5"},"nodeType":"YulFunctionCall","src":"5669:21:5"},"nodeType":"YulExpressionStatement","src":"5669:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5710:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5721:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5706:3:5"},"nodeType":"YulFunctionCall","src":"5706:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"5726:2:5","type":"","value":"35"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5699:6:5"},"nodeType":"YulFunctionCall","src":"5699:30:5"},"nodeType":"YulExpressionStatement","src":"5699:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5749:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5760:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5745:3:5"},"nodeType":"YulFunctionCall","src":"5745:18:5"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nodeType":"YulLiteral","src":"5765:34:5","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5738:6:5"},"nodeType":"YulFunctionCall","src":"5738:62:5"},"nodeType":"YulExpressionStatement","src":"5738:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5820:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5831:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5816:3:5"},"nodeType":"YulFunctionCall","src":"5816:18:5"},{"hexValue":"657373","kind":"string","nodeType":"YulLiteral","src":"5836:5:5","type":"","value":"ess"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5809:6:5"},"nodeType":"YulFunctionCall","src":"5809:33:5"},"nodeType":"YulExpressionStatement","src":"5809:33:5"},{"nodeType":"YulAssignment","src":"5851:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5863:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"5874:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5859:3:5"},"nodeType":"YulFunctionCall","src":"5859:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5851:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5636:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5650:4:5","type":""}],"src":"5485:399:5"},{"body":{"nodeType":"YulBlock","src":"6063:228:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6080:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6091:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6073:6:5"},"nodeType":"YulFunctionCall","src":"6073:21:5"},"nodeType":"YulExpressionStatement","src":"6073:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6114:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6125:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6110:3:5"},"nodeType":"YulFunctionCall","src":"6110:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"6130:2:5","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6103:6:5"},"nodeType":"YulFunctionCall","src":"6103:30:5"},"nodeType":"YulExpressionStatement","src":"6103:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6153:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6164:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6149:3:5"},"nodeType":"YulFunctionCall","src":"6149:18:5"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nodeType":"YulLiteral","src":"6169:34:5","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6142:6:5"},"nodeType":"YulFunctionCall","src":"6142:62:5"},"nodeType":"YulExpressionStatement","src":"6142:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6224:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6235:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6220:3:5"},"nodeType":"YulFunctionCall","src":"6220:18:5"},{"hexValue":"616c616e6365","kind":"string","nodeType":"YulLiteral","src":"6240:8:5","type":"","value":"alance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6213:6:5"},"nodeType":"YulFunctionCall","src":"6213:36:5"},"nodeType":"YulExpressionStatement","src":"6213:36:5"},{"nodeType":"YulAssignment","src":"6258:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6270:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6281:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6266:3:5"},"nodeType":"YulFunctionCall","src":"6266:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6258:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6040:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6054:4:5","type":""}],"src":"5889:402:5"},{"body":{"nodeType":"YulBlock","src":"6470:223:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6487:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6498:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6480:6:5"},"nodeType":"YulFunctionCall","src":"6480:21:5"},"nodeType":"YulExpressionStatement","src":"6480:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6521:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6532:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6517:3:5"},"nodeType":"YulFunctionCall","src":"6517:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"6537:2:5","type":"","value":"33"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6510:6:5"},"nodeType":"YulFunctionCall","src":"6510:30:5"},"nodeType":"YulExpressionStatement","src":"6510:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6560:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6571:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6556:3:5"},"nodeType":"YulFunctionCall","src":"6556:18:5"},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f20616464726573","kind":"string","nodeType":"YulLiteral","src":"6576:34:5","type":"","value":"ERC20: burn from the zero addres"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6549:6:5"},"nodeType":"YulFunctionCall","src":"6549:62:5"},"nodeType":"YulExpressionStatement","src":"6549:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6631:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6642:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6627:3:5"},"nodeType":"YulFunctionCall","src":"6627:18:5"},{"hexValue":"73","kind":"string","nodeType":"YulLiteral","src":"6647:3:5","type":"","value":"s"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6620:6:5"},"nodeType":"YulFunctionCall","src":"6620:31:5"},"nodeType":"YulExpressionStatement","src":"6620:31:5"},{"nodeType":"YulAssignment","src":"6660:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6672:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6683:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6668:3:5"},"nodeType":"YulFunctionCall","src":"6668:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6660:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6447:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6461:4:5","type":""}],"src":"6296:397:5"},{"body":{"nodeType":"YulBlock","src":"6872:224:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6889:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6900:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6882:6:5"},"nodeType":"YulFunctionCall","src":"6882:21:5"},"nodeType":"YulExpressionStatement","src":"6882:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6923:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6934:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6919:3:5"},"nodeType":"YulFunctionCall","src":"6919:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"6939:2:5","type":"","value":"34"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6912:6:5"},"nodeType":"YulFunctionCall","src":"6912:30:5"},"nodeType":"YulExpressionStatement","src":"6912:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6962:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6973:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6958:3:5"},"nodeType":"YulFunctionCall","src":"6958:18:5"},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e","kind":"string","nodeType":"YulLiteral","src":"6978:34:5","type":"","value":"ERC20: burn amount exceeds balan"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6951:6:5"},"nodeType":"YulFunctionCall","src":"6951:62:5"},"nodeType":"YulExpressionStatement","src":"6951:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7033:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"7044:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7029:3:5"},"nodeType":"YulFunctionCall","src":"7029:18:5"},{"hexValue":"6365","kind":"string","nodeType":"YulLiteral","src":"7049:4:5","type":"","value":"ce"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7022:6:5"},"nodeType":"YulFunctionCall","src":"7022:32:5"},"nodeType":"YulExpressionStatement","src":"7022:32:5"},{"nodeType":"YulAssignment","src":"7063:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7075:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"7086:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7071:3:5"},"nodeType":"YulFunctionCall","src":"7071:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7063:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6849:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6863:4:5","type":""}],"src":"6698:398:5"},{"body":{"nodeType":"YulBlock","src":"7275:181:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7292:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"7303:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7285:6:5"},"nodeType":"YulFunctionCall","src":"7285:21:5"},"nodeType":"YulExpressionStatement","src":"7285:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7326:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"7337:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7322:3:5"},"nodeType":"YulFunctionCall","src":"7322:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"7342:2:5","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7315:6:5"},"nodeType":"YulFunctionCall","src":"7315:30:5"},"nodeType":"YulExpressionStatement","src":"7315:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7365:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"7376:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7361:3:5"},"nodeType":"YulFunctionCall","src":"7361:18:5"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"7381:33:5","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7354:6:5"},"nodeType":"YulFunctionCall","src":"7354:61:5"},"nodeType":"YulExpressionStatement","src":"7354:61:5"},{"nodeType":"YulAssignment","src":"7424:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7436:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"7447:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7432:3:5"},"nodeType":"YulFunctionCall","src":"7432:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7424:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7252:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7266:4:5","type":""}],"src":"7101:355:5"}]},"contents":"{\n { }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n mstore(add(add(headStart, length), 64), 0)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\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 value1 := calldataload(add(headStart, 32))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_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 value2 := calldataload(add(headStart, 64))\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_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function 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 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_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"MockUSDT: Nothing to burn\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n mstore(add(headStart, 96), \" zero\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n mstore(add(headStart, 96), \"ss\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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), \"ERC20: insufficient allowance\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n mstore(add(headStart, 96), \"dress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n mstore(add(headStart, 96), \"ess\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n mstore(add(headStart, 96), \"alance\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 33)\n mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n mstore(add(headStart, 96), \"s\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n mstore(add(headStart, 96), \"ce\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n tail := add(headStart, 96)\n }\n}","id":5,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE5 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x88 JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x1BE JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1F7 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x9975038C EQ PUSH2 0x1B6 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xC3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14F JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x171 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xE9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x107 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x12A JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xF1 PUSH2 0x20A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFE SWAP2 SWAP1 PUSH2 0x952 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x11A PUSH2 0x115 CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x29A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH2 0x11A PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0x9E0 JUMP JUMPDEST PUSH2 0x2B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH2 0x11A PUSH2 0x16C CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x2D6 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x17F CALLDATASIZE PUSH1 0x4 PUSH2 0xA19 JUMP JUMPDEST PUSH2 0x2F7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x12E PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0xA30 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 0xF1 PUSH2 0x304 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x313 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x1CC CALLDATASIZE PUSH1 0x4 PUSH2 0xA19 JUMP JUMPDEST PUSH2 0x374 JUMP JUMPDEST PUSH2 0x11A PUSH2 0x1DF CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x37E JUMP JUMPDEST PUSH2 0x11A PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x9B8 JUMP JUMPDEST PUSH2 0x3F8 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0xA50 JUMP JUMPDEST PUSH2 0x405 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x219 SWAP1 PUSH2 0xA81 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 0x245 SWAP1 PUSH2 0xA81 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x290 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x267 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x290 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 0x273 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2A7 DUP2 DUP6 DUP6 PUSH2 0x42F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2C0 DUP6 DUP3 DUP6 PUSH2 0x553 JUMP JUMPDEST PUSH2 0x2CB DUP6 DUP6 DUP6 PUSH2 0x5CB JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2A7 DUP2 DUP6 DUP6 PUSH2 0x2E8 DUP4 DUP4 PUSH2 0x405 JUMP JUMPDEST PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0xAB9 JUMP JUMPDEST PUSH2 0x42F JUMP JUMPDEST PUSH2 0x301 CALLER DUP3 PUSH2 0x76D JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x219 SWAP1 PUSH2 0xA81 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP1 PUSH2 0x2F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D6F636B555344543A204E6F7468696E6720746F206275726E00000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x301 CALLER DUP3 PUSH2 0x895 JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0x38B DUP3 DUP7 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x3EB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH2 0x2CB DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x42F JUMP JUMPDEST PUSH0 CALLER PUSH2 0x2A7 DUP2 DUP6 DUP6 PUSH2 0x5CB 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x491 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x55E DUP5 DUP5 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 EQ PUSH2 0x5C5 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x5B8 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x36B JUMP JUMPDEST PUSH2 0x5C5 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x42F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x691 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B 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 0x708 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x5C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7CD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B 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 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x840 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x36B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP7 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP8 SWAP1 SUB SWAP1 SSTORE MLOAD DUP6 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH2 0x546 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8EB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x36B JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x8FC SWAP2 SWAP1 PUSH2 0xAB9 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x97D JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x961 JUMP JUMPDEST POP PUSH0 PUSH1 0x40 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x9B3 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x9C9 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9D2 DUP4 PUSH2 0x99D JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9F2 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x9FB DUP5 PUSH2 0x99D JUMP JUMPDEST SWAP3 POP PUSH2 0xA09 PUSH1 0x20 DUP6 ADD PUSH2 0x99D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA29 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA40 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA49 DUP3 PUSH2 0x99D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xA61 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA6A DUP4 PUSH2 0x99D JUMP JUMPDEST SWAP2 POP PUSH2 0xA78 PUSH1 0x20 DUP5 ADD PUSH2 0x99D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xA95 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xAB3 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 0x2AD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE 0x2D DUP13 0xF 0xE8 LOG4 DUP13 SLOAD SLOAD MLOAD PUSH18 0xECF4F3B286D55A47396DADF48802EF4D4 0xE2 RETURNDATASIZE 0xEB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"162:496:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:5;;1162:22;1144:41;;1132:2;1117:18;4444:197:0;1004:187:5;3255:106:0;3342:12;;3255:106;;;1342:25:5;;;1330:2;1315:18;3255:106:0;1196:177:5;5203:256:0;;;;;;:::i;:::-;;:::i;3104:91::-;;;3186:2;1853:36:5;;1841:2;1826:18;3104:91:0;1711:184:5;5854:234:0;;;;;;:::i;:::-;;:::i;379:83:4:-;;;;;;:::i;:::-;;:::i;:::-;;3419:125:0;;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:0;3493:7;3519:18;;;;;;;;;;;;3419:125;2369:102;;;:::i;468:188:4:-;;;:::i;290:83::-;;;;;;:::i;:::-;;:::i;6575:427:0:-;;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;:::i;:::-;;:::i;3987:149::-;;;;;;:::i;:::-;;:::i;2158:98::-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;734:10:3;4581:32:0;734:10:3;4597:7:0;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;5203:256::-;5300:4;734:10:3;5356:38:0;5372:4;734:10:3;5387:6:0;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:0;;5203:256;-1:-1:-1;;;;5203:256:0:o;5854:234::-;5942:4;734:10:3;5996:64:0;734:10:3;6012:7:0;6049:10;6021:25;734:10:3;6012:7:0;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;379:83:4:-;429:26;435:10;447:7;429:5;:26::i;:::-;379:83;:::o;2369:102:0:-;2425:13;2457:7;2450:14;;;;;:::i;468:188:4:-;537:10;506:18;3519::0;;;;;;;;;;;566:14:4;558:52;;;;-1:-1:-1;;;558:52:4;;3355:2:5;558:52:4;;;3337:21:5;3394:2;3374:18;;;3367:30;3433:27;3413:18;;;3406:55;3478:18;;558:52:4;;;;;;;;290:83;340:26;346:10;358:7;340:5;:26::i;6575:427:0:-;6668:4;734:10:3;6668:4:0;6749:25;734:10:3;6766:7:0;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:0;;3709:2:5;6784:85:0;;;3691:21:5;3748:2;3728:18;;;3721:30;3787:34;3767:18;;;3760:62;-1:-1:-1;;;3838:18:5;;;3831:35;3883:19;;6784:85:0;3507:401:5;6784:85:0;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;734:10:3;3873:28:0;734:10:3;3890:2:0;3894:6;3873:9;:28::i;3987:149::-;-1:-1:-1;;;;;4102:18:0;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;10457:340::-;-1:-1:-1;;;;;10558:19:0;;10550:68;;;;-1:-1:-1;;;10550:68:0;;4115:2:5;10550:68:0;;;4097:21:5;4154:2;4134:18;;;4127:30;4193:34;4173:18;;;4166:62;-1:-1:-1;;;4244:18:5;;;4237:34;4288:19;;10550:68:0;3913:400:5;10550:68:0;-1:-1:-1;;;;;10636:21:0;;10628:68;;;;-1:-1:-1;;;10628:68:0;;4520:2:5;10628:68:0;;;4502:21:5;4559:2;4539:18;;;4532:30;4598:34;4578:18;;;4571:62;-1:-1:-1;;;4649:18:5;;;4642:32;4691:19;;10628:68:0;4318:398:5;10628:68:0;-1:-1:-1;;;;;10707:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;1342:25:5;;;10758:32:0;;1315:18:5;10758:32:0;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:0;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:0;;4923:2:5;11297:68:0;;;4905:21:5;4962:2;4942:18;;;4935:30;5001:31;4981:18;;;4974:59;5050:18;;11297:68:0;4721:353:5;11297:68:0;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11168:321;11078:411;;;:::o;7456:788::-;-1:-1:-1;;;;;7552:18:0;;7544:68;;;;-1:-1:-1;;;7544:68:0;;5281:2:5;7544:68:0;;;5263:21:5;5320:2;5300:18;;;5293:30;5359:34;5339:18;;;5332:62;-1:-1:-1;;;5410:18:5;;;5403:35;5455:19;;7544:68:0;5079:401:5;7544:68:0;-1:-1:-1;;;;;7630:16:0;;7622:64;;;;-1:-1:-1;;;7622:64:0;;5687:2:5;7622:64:0;;;5669:21:5;5726:2;5706:18;;;5699:30;5765:34;5745:18;;;5738:62;-1:-1:-1;;;5816:18:5;;;5809:33;5859:19;;7622:64:0;5485:399:5;7622:64:0;-1:-1:-1;;;;;7768:15:0;;7746:19;7768:15;;;;;;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:0;;6091:2:5;7793:72:0;;;6073:21:5;6130:2;6110:18;;;6103:30;6169:34;6149:18;;;6142:62;-1:-1:-1;;;6220:18:5;;;6213:36;6266:19;;7793:72:0;5889:402:5;7793:72:0;-1:-1:-1;;;;;7899:15:0;;;:9;:15;;;;;;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;1342:25:5;;;8114:13:0;;8163:26;;1315:18:5;8163:26:0;;;;;;;8200:37;9375:659;;-1:-1:-1;;;;;9458:21:0;;9450:67;;;;-1:-1:-1;;;9450:67:0;;6498:2:5;9450:67:0;;;6480:21:5;6537:2;6517:18;;;6510:30;6576:34;6556:18;;;6549:62;-1:-1:-1;;;6627:18:5;;;6620:31;6668:19;;9450:67:0;6296:397:5;9450:67:0;-1:-1:-1;;;;;9613:18:0;;9588:22;9613:18;;;;;;;;;;;9649:24;;;;9641:71;;;;-1:-1:-1;;;9641:71:0;;6900:2:5;9641:71:0;;;6882:21:5;6939:2;6919:18;;;6912:30;6978:34;6958:18;;;6951:62;-1:-1:-1;;;7029:18:5;;;7022:32;7071:19;;9641:71:0;6698:398:5;9641:71:0;-1:-1:-1;;;;;9746:18:0;;:9;:18;;;;;;;;;;;9767:23;;;9746:44;;9883:12;:22;;;;;;;9931:37;1342:25:5;;;9746:9:0;;:18;9931:37;;1315:18:5;9931:37:0;1196:177:5;8520:535:0;-1:-1:-1;;;;;8603:21:0;;8595:65;;;;-1:-1:-1;;;8595:65:0;;7303:2:5;8595:65:0;;;7285:21:5;7342:2;7322:18;;;7315:30;7381:33;7361:18;;;7354:61;7432:18;;8595:65:0;7101:355:5;8595:65:0;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8899:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;8952:37;1342:25:5;;;8952:37:0;;1315:18:5;8952:37:0;;;;;;;8520:535;;:::o;14:548:5:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:5;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:5:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:5;;1900:180;-1:-1:-1;1900:180:5:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:5:o;2276:260::-;2344:6;2352;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2444:29;2463:9;2444:29;:::i;:::-;2434:39;;2492:38;2526:2;2515:9;2511:18;2492:38;:::i;:::-;2482:48;;2276:260;;;;;:::o;2541:380::-;2620:1;2616:12;;;;2663;;;2684:61;;2738:4;2730:6;2726:17;2716:27;;2684:61;2791:2;2783:6;2780:14;2760:18;2757:38;2754:161;;2837:10;2832:3;2828:20;2825:1;2818:31;2872:4;2869:1;2862:15;2900:4;2897:1;2890:15;2754:161;;2541:380;;;:::o;2926:222::-;2991:9;;;3012:10;;;3009:133;;;3064:10;3059:3;3055:20;3052:1;3045:31;3099:4;3096:1;3089:15;3127:4;3124:1;3117:15"},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(uint256)":"42966c68","burnAll()":"9975038c","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","increaseAllowance(address,uint256)":"39509351","mint(uint256)":"a0712d68","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"burnAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Mock mintable USDC\",\"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 `amount` 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}.\"},\"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}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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 `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/mocks/MockUSDC.sol\":\"MockUSDT\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15\",\"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih\"]},\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"project/contracts/mocks/MockUSDC.sol\":{\"keccak256\":\"0x983ae7c4c407602537b8623a63a3598cf983fbb637943d39338f0bb0fb6d4f13\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://a73b80a334db53ddaa32cc77c9b0f50b4e89beef720ef8eea074376de675e2e9\",\"dweb:/ipfs/QmcqbQESojJSYYmmvNgyZVZjW1gd1vA2AhZNZ81mpC5njU\"]}},\"version\":1}"}}},"sources":{"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[719],"ERC20":[586],"IERC20":[664],"IERC20Metadata":[689]},"id":587,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:0"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":587,"sourceUnit":665,"src":"130:22:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":587,"sourceUnit":690,"src":"153:41:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol","file":"../../utils/Context.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":587,"sourceUnit":720,"src":"195:33:0","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6,"name":"Context","nameLocations":["1550:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":719,"src":"1550:7:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"1550:7:0"},{"baseName":{"id":8,"name":"IERC20","nameLocations":["1559:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":664,"src":"1559:6:0"},"id":9,"nodeType":"InheritanceSpecifier","src":"1559:6:0"},{"baseName":{"id":10,"name":"IERC20Metadata","nameLocations":["1567:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":689,"src":"1567:14:0"},"id":11,"nodeType":"InheritanceSpecifier","src":"1567:14:0"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"230:1301:0","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.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 ERC20\n applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."},"fullyImplemented":true,"id":586,"linearizedBaseContracts":[586,689,664,719],"name":"ERC20","nameLocation":"1541:5:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":15,"mutability":"mutable","name":"_balances","nameLocation":"1624:9:0","nodeType":"VariableDeclaration","scope":586,"src":"1588:45:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":14,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"1596:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1588:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":13,"name":"uint256","nodeType":"ElementaryTypeName","src":"1607:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":21,"mutability":"mutable","name":"_allowances","nameLocation":"1696:11:0","nodeType":"VariableDeclaration","scope":586,"src":"1640:67:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":20,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":16,"name":"address","nodeType":"ElementaryTypeName","src":"1648:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1640:47:0","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":19,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":17,"name":"address","nodeType":"ElementaryTypeName","src":"1667:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1659:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":18,"name":"uint256","nodeType":"ElementaryTypeName","src":"1678:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":23,"mutability":"mutable","name":"_totalSupply","nameLocation":"1730:12:0","nodeType":"VariableDeclaration","scope":586,"src":"1714:28:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22,"name":"uint256","nodeType":"ElementaryTypeName","src":"1714:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":25,"mutability":"mutable","name":"_name","nameLocation":"1764:5:0","nodeType":"VariableDeclaration","scope":586,"src":"1749:20:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":24,"name":"string","nodeType":"ElementaryTypeName","src":"1749:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":27,"mutability":"mutable","name":"_symbol","nameLocation":"1790:7:0","nodeType":"VariableDeclaration","scope":586,"src":"1775:22:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":26,"name":"string","nodeType":"ElementaryTypeName","src":"1775:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":43,"nodeType":"Block","src":"2036:57:0","statements":[{"expression":{"id":37,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":35,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25,"src":"2046:5:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":36,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30,"src":"2054:5:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2046:13:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":38,"nodeType":"ExpressionStatement","src":"2046:13:0"},{"expression":{"id":41,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27,"src":"2069:7:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":40,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32,"src":"2079:7:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2069:17:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":42,"nodeType":"ExpressionStatement","src":"2069:17:0"}]},"documentation":{"id":28,"nodeType":"StructuredDocumentation","src":"1804:171:0","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":44,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":33,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30,"mutability":"mutable","name":"name_","nameLocation":"2006:5:0","nodeType":"VariableDeclaration","scope":44,"src":"1992:19:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":29,"name":"string","nodeType":"ElementaryTypeName","src":"1992:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":32,"mutability":"mutable","name":"symbol_","nameLocation":"2027:7:0","nodeType":"VariableDeclaration","scope":44,"src":"2013:21:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31,"name":"string","nodeType":"ElementaryTypeName","src":"2013:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1991:44:0"},"returnParameters":{"id":34,"nodeType":"ParameterList","parameters":[],"src":"2036:0:0"},"scope":586,"src":"1980:113:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[676],"body":{"id":53,"nodeType":"Block","src":"2227:29:0","statements":[{"expression":{"id":51,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25,"src":"2244:5:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":50,"id":52,"nodeType":"Return","src":"2237:12:0"}]},"documentation":{"id":45,"nodeType":"StructuredDocumentation","src":"2099:54:0","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":54,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2167:4:0","nodeType":"FunctionDefinition","overrides":{"id":47,"nodeType":"OverrideSpecifier","overrides":[],"src":"2194:8:0"},"parameters":{"id":46,"nodeType":"ParameterList","parameters":[],"src":"2171:2:0"},"returnParameters":{"id":50,"nodeType":"ParameterList","parameters":[{"constant":false,"id":49,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":54,"src":"2212:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":48,"name":"string","nodeType":"ElementaryTypeName","src":"2212:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2211:15:0"},"scope":586,"src":"2158:98:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[682],"body":{"id":63,"nodeType":"Block","src":"2440:31:0","statements":[{"expression":{"id":61,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27,"src":"2457:7:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":60,"id":62,"nodeType":"Return","src":"2450:14:0"}]},"documentation":{"id":55,"nodeType":"StructuredDocumentation","src":"2262:102:0","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":64,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2378:6:0","nodeType":"FunctionDefinition","overrides":{"id":57,"nodeType":"OverrideSpecifier","overrides":[],"src":"2407:8:0"},"parameters":{"id":56,"nodeType":"ParameterList","parameters":[],"src":"2384:2:0"},"returnParameters":{"id":60,"nodeType":"ParameterList","parameters":[{"constant":false,"id":59,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":64,"src":"2425:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":58,"name":"string","nodeType":"ElementaryTypeName","src":"2425:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2424:15:0"},"scope":586,"src":"2369:102:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[688],"body":{"id":73,"nodeType":"Block","src":"3169:26:0","statements":[{"expression":{"hexValue":"3138","id":71,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3186:2:0","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":70,"id":72,"nodeType":"Return","src":"3179:9:0"}]},"documentation":{"id":65,"nodeType":"StructuredDocumentation","src":"2477:622:0","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":74,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3113:8:0","nodeType":"FunctionDefinition","overrides":{"id":67,"nodeType":"OverrideSpecifier","overrides":[],"src":"3144:8:0"},"parameters":{"id":66,"nodeType":"ParameterList","parameters":[],"src":"3121:2:0"},"returnParameters":{"id":70,"nodeType":"ParameterList","parameters":[{"constant":false,"id":69,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":74,"src":"3162:5:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":68,"name":"uint8","nodeType":"ElementaryTypeName","src":"3162:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3161:7:0"},"scope":586,"src":"3104:91:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[613],"body":{"id":83,"nodeType":"Block","src":"3325:36:0","statements":[{"expression":{"id":81,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23,"src":"3342:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":80,"id":82,"nodeType":"Return","src":"3335:19:0"}]},"documentation":{"id":75,"nodeType":"StructuredDocumentation","src":"3201:49:0","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":84,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"3264:11:0","nodeType":"FunctionDefinition","overrides":{"id":77,"nodeType":"OverrideSpecifier","overrides":[],"src":"3298:8:0"},"parameters":{"id":76,"nodeType":"ParameterList","parameters":[],"src":"3275:2:0"},"returnParameters":{"id":80,"nodeType":"ParameterList","parameters":[{"constant":false,"id":79,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":84,"src":"3316:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":78,"name":"uint256","nodeType":"ElementaryTypeName","src":"3316:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3315:9:0"},"scope":586,"src":"3255:106:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[621],"body":{"id":97,"nodeType":"Block","src":"3502:42:0","statements":[{"expression":{"baseExpression":{"id":93,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"3519:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":95,"indexExpression":{"id":94,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":87,"src":"3529:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3519:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":92,"id":96,"nodeType":"Return","src":"3512:25:0"}]},"documentation":{"id":85,"nodeType":"StructuredDocumentation","src":"3367:47:0","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":98,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3428:9:0","nodeType":"FunctionDefinition","overrides":{"id":89,"nodeType":"OverrideSpecifier","overrides":[],"src":"3475:8:0"},"parameters":{"id":88,"nodeType":"ParameterList","parameters":[{"constant":false,"id":87,"mutability":"mutable","name":"account","nameLocation":"3446:7:0","nodeType":"VariableDeclaration","scope":98,"src":"3438:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":86,"name":"address","nodeType":"ElementaryTypeName","src":"3438:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3437:17:0"},"returnParameters":{"id":92,"nodeType":"ParameterList","parameters":[{"constant":false,"id":91,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":98,"src":"3493:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":90,"name":"uint256","nodeType":"ElementaryTypeName","src":"3493:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3492:9:0"},"scope":586,"src":"3419:125:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[631],"body":{"id":122,"nodeType":"Block","src":"3825:104:0","statements":[{"assignments":[110],"declarations":[{"constant":false,"id":110,"mutability":"mutable","name":"owner","nameLocation":"3843:5:0","nodeType":"VariableDeclaration","scope":122,"src":"3835:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":109,"name":"address","nodeType":"ElementaryTypeName","src":"3835:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":113,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":111,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"3851:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3851:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3835:28:0"},{"expression":{"arguments":[{"id":115,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":110,"src":"3883:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":116,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":101,"src":"3890:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":117,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":103,"src":"3894:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":114,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":346,"src":"3873:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3873:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":119,"nodeType":"ExpressionStatement","src":"3873:28:0"},{"expression":{"hexValue":"74727565","id":120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3918:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":108,"id":121,"nodeType":"Return","src":"3911:11:0"}]},"documentation":{"id":99,"nodeType":"StructuredDocumentation","src":"3550:185:0","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `amount`."},"functionSelector":"a9059cbb","id":123,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3749:8:0","nodeType":"FunctionDefinition","overrides":{"id":105,"nodeType":"OverrideSpecifier","overrides":[],"src":"3801:8:0"},"parameters":{"id":104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":101,"mutability":"mutable","name":"to","nameLocation":"3766:2:0","nodeType":"VariableDeclaration","scope":123,"src":"3758:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":100,"name":"address","nodeType":"ElementaryTypeName","src":"3758:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":103,"mutability":"mutable","name":"amount","nameLocation":"3778:6:0","nodeType":"VariableDeclaration","scope":123,"src":"3770:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"3770:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3757:28:0"},"returnParameters":{"id":108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":107,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":123,"src":"3819:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":106,"name":"bool","nodeType":"ElementaryTypeName","src":"3819:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3818:6:0"},"scope":586,"src":"3740:189:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[641],"body":{"id":140,"nodeType":"Block","src":"4085:51:0","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":134,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21,"src":"4102:11:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":136,"indexExpression":{"id":135,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":126,"src":"4114:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4102:18:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":138,"indexExpression":{"id":137,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"4121:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4102:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":133,"id":139,"nodeType":"Return","src":"4095:34:0"}]},"documentation":{"id":124,"nodeType":"StructuredDocumentation","src":"3935:47:0","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":141,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3996:9:0","nodeType":"FunctionDefinition","overrides":{"id":130,"nodeType":"OverrideSpecifier","overrides":[],"src":"4058:8:0"},"parameters":{"id":129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":126,"mutability":"mutable","name":"owner","nameLocation":"4014:5:0","nodeType":"VariableDeclaration","scope":141,"src":"4006:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":125,"name":"address","nodeType":"ElementaryTypeName","src":"4006:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":128,"mutability":"mutable","name":"spender","nameLocation":"4029:7:0","nodeType":"VariableDeclaration","scope":141,"src":"4021:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":127,"name":"address","nodeType":"ElementaryTypeName","src":"4021:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4005:32:0"},"returnParameters":{"id":133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":132,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":141,"src":"4076:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":131,"name":"uint256","nodeType":"ElementaryTypeName","src":"4076:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4075:9:0"},"scope":586,"src":"3987:149:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[651],"body":{"id":165,"nodeType":"Block","src":"4533:108:0","statements":[{"assignments":[153],"declarations":[{"constant":false,"id":153,"mutability":"mutable","name":"owner","nameLocation":"4551:5:0","nodeType":"VariableDeclaration","scope":165,"src":"4543:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":152,"name":"address","nodeType":"ElementaryTypeName","src":"4543:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":156,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":154,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"4559:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4559:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4543:28:0"},{"expression":{"arguments":[{"id":158,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":153,"src":"4590:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":159,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":144,"src":"4597:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":160,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"4606:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":157,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"4581:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4581:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":162,"nodeType":"ExpressionStatement","src":"4581:32:0"},{"expression":{"hexValue":"74727565","id":163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4630:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":151,"id":164,"nodeType":"Return","src":"4623:11:0"}]},"documentation":{"id":142,"nodeType":"StructuredDocumentation","src":"4142:297:0","text":" @dev See {IERC20-approve}.\n NOTE: If `amount` 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":166,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4453:7:0","nodeType":"FunctionDefinition","overrides":{"id":148,"nodeType":"OverrideSpecifier","overrides":[],"src":"4509:8:0"},"parameters":{"id":147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":144,"mutability":"mutable","name":"spender","nameLocation":"4469:7:0","nodeType":"VariableDeclaration","scope":166,"src":"4461:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":143,"name":"address","nodeType":"ElementaryTypeName","src":"4461:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":146,"mutability":"mutable","name":"amount","nameLocation":"4486:6:0","nodeType":"VariableDeclaration","scope":166,"src":"4478:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":145,"name":"uint256","nodeType":"ElementaryTypeName","src":"4478:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4460:33:0"},"returnParameters":{"id":151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":150,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":166,"src":"4527:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":149,"name":"bool","nodeType":"ElementaryTypeName","src":"4527:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4526:6:0"},"scope":586,"src":"4444:197:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[663],"body":{"id":198,"nodeType":"Block","src":"5306:153:0","statements":[{"assignments":[180],"declarations":[{"constant":false,"id":180,"mutability":"mutable","name":"spender","nameLocation":"5324:7:0","nodeType":"VariableDeclaration","scope":198,"src":"5316:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":179,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":183,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":181,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"5334:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5334:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5316:30:0"},{"expression":{"arguments":[{"id":185,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"5372:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":186,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":180,"src":"5378:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":187,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":173,"src":"5387:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":184,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":563,"src":"5356:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5356:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":189,"nodeType":"ExpressionStatement","src":"5356:38:0"},{"expression":{"arguments":[{"id":191,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"5414:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":192,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"5420:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":193,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":173,"src":"5424:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":190,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":346,"src":"5404:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5404:27:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":195,"nodeType":"ExpressionStatement","src":"5404:27:0"},{"expression":{"hexValue":"74727565","id":196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5448:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":178,"id":197,"nodeType":"Return","src":"5441:11:0"}]},"documentation":{"id":167,"nodeType":"StructuredDocumentation","src":"4647:551:0","text":" @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n 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 `amount`.\n - the caller must have allowance for ``from``'s tokens of at least\n `amount`."},"functionSelector":"23b872dd","id":199,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5212:12:0","nodeType":"FunctionDefinition","overrides":{"id":175,"nodeType":"OverrideSpecifier","overrides":[],"src":"5282:8:0"},"parameters":{"id":174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":169,"mutability":"mutable","name":"from","nameLocation":"5233:4:0","nodeType":"VariableDeclaration","scope":199,"src":"5225:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":168,"name":"address","nodeType":"ElementaryTypeName","src":"5225:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":171,"mutability":"mutable","name":"to","nameLocation":"5247:2:0","nodeType":"VariableDeclaration","scope":199,"src":"5239:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":170,"name":"address","nodeType":"ElementaryTypeName","src":"5239:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":173,"mutability":"mutable","name":"amount","nameLocation":"5259:6:0","nodeType":"VariableDeclaration","scope":199,"src":"5251:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":172,"name":"uint256","nodeType":"ElementaryTypeName","src":"5251:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5224:42:0"},"returnParameters":{"id":178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":177,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":199,"src":"5300:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":176,"name":"bool","nodeType":"ElementaryTypeName","src":"5300:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5299:6:0"},"scope":586,"src":"5203:256:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":227,"nodeType":"Block","src":"5948:140:0","statements":[{"assignments":[210],"declarations":[{"constant":false,"id":210,"mutability":"mutable","name":"owner","nameLocation":"5966:5:0","nodeType":"VariableDeclaration","scope":227,"src":"5958:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":209,"name":"address","nodeType":"ElementaryTypeName","src":"5958:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":213,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":211,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"5974:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5974:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5958:28:0"},{"expression":{"arguments":[{"id":215,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":210,"src":"6005:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":216,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":202,"src":"6012:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":218,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":210,"src":"6031:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":219,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":202,"src":"6038:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":217,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":141,"src":"6021:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6021:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":221,"name":"addedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":204,"src":"6049:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6021:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":214,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"5996:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5996:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":224,"nodeType":"ExpressionStatement","src":"5996:64:0"},{"expression":{"hexValue":"74727565","id":225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6077:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":208,"id":226,"nodeType":"Return","src":"6070:11:0"}]},"documentation":{"id":200,"nodeType":"StructuredDocumentation","src":"5465:384:0","text":" @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"39509351","id":228,"implemented":true,"kind":"function","modifiers":[],"name":"increaseAllowance","nameLocation":"5863:17:0","nodeType":"FunctionDefinition","parameters":{"id":205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":202,"mutability":"mutable","name":"spender","nameLocation":"5889:7:0","nodeType":"VariableDeclaration","scope":228,"src":"5881:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":201,"name":"address","nodeType":"ElementaryTypeName","src":"5881:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":204,"mutability":"mutable","name":"addedValue","nameLocation":"5906:10:0","nodeType":"VariableDeclaration","scope":228,"src":"5898:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":203,"name":"uint256","nodeType":"ElementaryTypeName","src":"5898:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5880:37:0"},"returnParameters":{"id":208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":207,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":228,"src":"5942:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":206,"name":"bool","nodeType":"ElementaryTypeName","src":"5942:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5941:6:0"},"scope":586,"src":"5854:234:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":268,"nodeType":"Block","src":"6674:328:0","statements":[{"assignments":[239],"declarations":[{"constant":false,"id":239,"mutability":"mutable","name":"owner","nameLocation":"6692:5:0","nodeType":"VariableDeclaration","scope":268,"src":"6684:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":238,"name":"address","nodeType":"ElementaryTypeName","src":"6684:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":242,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":240,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"6700:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6700:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6684:28:0"},{"assignments":[244],"declarations":[{"constant":false,"id":244,"mutability":"mutable","name":"currentAllowance","nameLocation":"6730:16:0","nodeType":"VariableDeclaration","scope":268,"src":"6722:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":243,"name":"uint256","nodeType":"ElementaryTypeName","src":"6722:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":249,"initialValue":{"arguments":[{"id":246,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":239,"src":"6759:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":247,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"6766:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":245,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":141,"src":"6749:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6749:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6722:52:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":251,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":244,"src":"6792:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":252,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"6812:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6792:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f","id":254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6829:39:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","typeString":"literal_string \"ERC20: decreased allowance below zero\""},"value":"ERC20: decreased allowance below zero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","typeString":"literal_string \"ERC20: decreased allowance below zero\""}],"id":250,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6784:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6784:85:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":256,"nodeType":"ExpressionStatement","src":"6784:85:0"},{"id":265,"nodeType":"UncheckedBlock","src":"6879:95:0","statements":[{"expression":{"arguments":[{"id":258,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":239,"src":"6912:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":259,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":231,"src":"6919:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":260,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":244,"src":"6928:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":261,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"6947:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6928:34:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":257,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"6903:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6903:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":264,"nodeType":"ExpressionStatement","src":"6903:60:0"}]},{"expression":{"hexValue":"74727565","id":266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6991:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":237,"id":267,"nodeType":"Return","src":"6984:11:0"}]},"documentation":{"id":229,"nodeType":"StructuredDocumentation","src":"6094:476:0","text":" @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."},"functionSelector":"a457c2d7","id":269,"implemented":true,"kind":"function","modifiers":[],"name":"decreaseAllowance","nameLocation":"6584:17:0","nodeType":"FunctionDefinition","parameters":{"id":234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":231,"mutability":"mutable","name":"spender","nameLocation":"6610:7:0","nodeType":"VariableDeclaration","scope":269,"src":"6602:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":230,"name":"address","nodeType":"ElementaryTypeName","src":"6602:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":233,"mutability":"mutable","name":"subtractedValue","nameLocation":"6627:15:0","nodeType":"VariableDeclaration","scope":269,"src":"6619:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":232,"name":"uint256","nodeType":"ElementaryTypeName","src":"6619:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6601:42:0"},"returnParameters":{"id":237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":269,"src":"6668:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":235,"name":"bool","nodeType":"ElementaryTypeName","src":"6668:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6667:6:0"},"scope":586,"src":"6575:427:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":345,"nodeType":"Block","src":"7534:710:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":280,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":272,"src":"7552:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7568:1:0","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":282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7560:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":281,"name":"address","nodeType":"ElementaryTypeName","src":"7560:7:0","typeDescriptions":{}}},"id":284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7560:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7552:18:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373","id":286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7572:39:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","typeString":"literal_string \"ERC20: transfer from the zero address\""},"value":"ERC20: transfer from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","typeString":"literal_string \"ERC20: transfer from the zero address\""}],"id":279,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7544:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7544:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":288,"nodeType":"ExpressionStatement","src":"7544:68:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":290,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":274,"src":"7630:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7644:1:0","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":292,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7636:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":291,"name":"address","nodeType":"ElementaryTypeName","src":"7636:7:0","typeDescriptions":{}}},"id":294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7636:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7630:16:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472657373","id":296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7648:37:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","typeString":"literal_string \"ERC20: transfer to the zero address\""},"value":"ERC20: transfer to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","typeString":"literal_string \"ERC20: transfer to the zero address\""}],"id":289,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7622:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7622:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":298,"nodeType":"ExpressionStatement","src":"7622:64:0"},{"expression":{"arguments":[{"id":300,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":272,"src":"7718:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":301,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":274,"src":"7724:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":302,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"7728:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":299,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"7697:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7697:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":304,"nodeType":"ExpressionStatement","src":"7697:38:0"},{"assignments":[306],"declarations":[{"constant":false,"id":306,"mutability":"mutable","name":"fromBalance","nameLocation":"7754:11:0","nodeType":"VariableDeclaration","scope":345,"src":"7746:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":305,"name":"uint256","nodeType":"ElementaryTypeName","src":"7746:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":310,"initialValue":{"baseExpression":{"id":307,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"7768:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":309,"indexExpression":{"id":308,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":272,"src":"7778:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7768:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7746:37:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":312,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":306,"src":"7801:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":313,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"7816:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365","id":315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7824:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","typeString":"literal_string \"ERC20: transfer amount exceeds balance\""},"value":"ERC20: transfer amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","typeString":"literal_string \"ERC20: transfer amount exceeds balance\""}],"id":311,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7793:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7793:72:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":317,"nodeType":"ExpressionStatement","src":"7793:72:0"},{"id":332,"nodeType":"UncheckedBlock","src":"7875:273:0","statements":[{"expression":{"id":324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":318,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"7899:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":320,"indexExpression":{"id":319,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":272,"src":"7909:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7899:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":321,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":306,"src":"7917:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":322,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"7931:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7917:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7899:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":325,"nodeType":"ExpressionStatement","src":"7899:38:0"},{"expression":{"id":330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":326,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"8114:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":328,"indexExpression":{"id":327,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":274,"src":"8124:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8114:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":329,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"8131:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8114:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":331,"nodeType":"ExpressionStatement","src":"8114:23:0"}]},{"eventCall":{"arguments":[{"id":334,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":272,"src":"8172:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":335,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":274,"src":"8178:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":336,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"8182:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":333,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":598,"src":"8163:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8163:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":338,"nodeType":"EmitStatement","src":"8158:31:0"},{"expression":{"arguments":[{"id":340,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":272,"src":"8220:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":341,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":274,"src":"8226:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":342,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"8230:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":339,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":585,"src":"8200:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8200:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":344,"nodeType":"ExpressionStatement","src":"8200:37:0"}]},"documentation":{"id":270,"nodeType":"StructuredDocumentation","src":"7008:443:0","text":" @dev Moves `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 Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`."},"id":346,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"7465:9:0","nodeType":"FunctionDefinition","parameters":{"id":277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":272,"mutability":"mutable","name":"from","nameLocation":"7483:4:0","nodeType":"VariableDeclaration","scope":346,"src":"7475:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"7475:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":274,"mutability":"mutable","name":"to","nameLocation":"7497:2:0","nodeType":"VariableDeclaration","scope":346,"src":"7489:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":273,"name":"address","nodeType":"ElementaryTypeName","src":"7489:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":276,"mutability":"mutable","name":"amount","nameLocation":"7509:6:0","nodeType":"VariableDeclaration","scope":346,"src":"7501:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":275,"name":"uint256","nodeType":"ElementaryTypeName","src":"7501:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7474:42:0"},"returnParameters":{"id":278,"nodeType":"ParameterList","parameters":[],"src":"7534:0:0"},"scope":586,"src":"7456:788:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":402,"nodeType":"Block","src":"8585:470:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":355,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"8603:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8622:1:0","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":357,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8614:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":356,"name":"address","nodeType":"ElementaryTypeName","src":"8614:7:0","typeDescriptions":{}}},"id":359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8614:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8603:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","id":361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8626:33:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","typeString":"literal_string \"ERC20: mint to the zero address\""},"value":"ERC20: mint to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","typeString":"literal_string \"ERC20: mint to the zero address\""}],"id":354,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8595:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8595:65:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":363,"nodeType":"ExpressionStatement","src":"8595:65:0"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8700:1:0","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":366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8692:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":365,"name":"address","nodeType":"ElementaryTypeName","src":"8692:7:0","typeDescriptions":{}}},"id":368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8692:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":369,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"8704:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":370,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":351,"src":"8713:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":364,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"8671:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8671:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":372,"nodeType":"ExpressionStatement","src":"8671:49:0"},{"expression":{"id":375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":373,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23,"src":"8731:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":374,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":351,"src":"8747:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8731:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":376,"nodeType":"ExpressionStatement","src":"8731:22:0"},{"id":383,"nodeType":"UncheckedBlock","src":"8763:175:0","statements":[{"expression":{"id":381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":377,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"8899:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":379,"indexExpression":{"id":378,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"8909:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8899:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":380,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":351,"src":"8921:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8899:28:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":382,"nodeType":"ExpressionStatement","src":"8899:28:0"}]},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8969:1:0","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":386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8961:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":385,"name":"address","nodeType":"ElementaryTypeName","src":"8961:7:0","typeDescriptions":{}}},"id":388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8961:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":389,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"8973:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":390,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":351,"src":"8982:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":384,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":598,"src":"8952:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":392,"nodeType":"EmitStatement","src":"8947:42:0"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9028:1:0","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":395,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9020:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":394,"name":"address","nodeType":"ElementaryTypeName","src":"9020:7:0","typeDescriptions":{}}},"id":397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9020:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":398,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"9032:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":399,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":351,"src":"9041:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":393,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":585,"src":"9000:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9000:48:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":401,"nodeType":"ExpressionStatement","src":"9000:48:0"}]},"documentation":{"id":347,"nodeType":"StructuredDocumentation","src":"8250:265:0","text":"@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."},"id":403,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8529:5:0","nodeType":"FunctionDefinition","parameters":{"id":352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":349,"mutability":"mutable","name":"account","nameLocation":"8543:7:0","nodeType":"VariableDeclaration","scope":403,"src":"8535:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":348,"name":"address","nodeType":"ElementaryTypeName","src":"8535:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":351,"mutability":"mutable","name":"amount","nameLocation":"8560:6:0","nodeType":"VariableDeclaration","scope":403,"src":"8552:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":350,"name":"uint256","nodeType":"ElementaryTypeName","src":"8552:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8534:33:0"},"returnParameters":{"id":353,"nodeType":"ParameterList","parameters":[],"src":"8585:0:0"},"scope":586,"src":"8520:535:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":474,"nodeType":"Block","src":"9440:594:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":412,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"9458:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9477:1:0","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":414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9469:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":413,"name":"address","nodeType":"ElementaryTypeName","src":"9469:7:0","typeDescriptions":{}}},"id":416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9469:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9458:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f2061646472657373","id":418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9481:35:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","typeString":"literal_string \"ERC20: burn from the zero address\""},"value":"ERC20: burn from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","typeString":"literal_string \"ERC20: burn from the zero address\""}],"id":411,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9450:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9450:67:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":420,"nodeType":"ExpressionStatement","src":"9450:67:0"},{"expression":{"arguments":[{"id":422,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"9549:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9566:1:0","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":424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9558:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":423,"name":"address","nodeType":"ElementaryTypeName","src":"9558:7:0","typeDescriptions":{}}},"id":426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9558:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":427,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"9570:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":421,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"9528:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9528:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":429,"nodeType":"ExpressionStatement","src":"9528:49:0"},{"assignments":[431],"declarations":[{"constant":false,"id":431,"mutability":"mutable","name":"accountBalance","nameLocation":"9596:14:0","nodeType":"VariableDeclaration","scope":474,"src":"9588:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":430,"name":"uint256","nodeType":"ElementaryTypeName","src":"9588:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":435,"initialValue":{"baseExpression":{"id":432,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"9613:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":434,"indexExpression":{"id":433,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"9623:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9613:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9588:43:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":437,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":431,"src":"9649:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":438,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"9667:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9649:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365","id":440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9675:36:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","typeString":"literal_string \"ERC20: burn amount exceeds balance\""},"value":"ERC20: burn amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","typeString":"literal_string \"ERC20: burn amount exceeds balance\""}],"id":436,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9641:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9641:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":442,"nodeType":"ExpressionStatement","src":"9641:71:0"},{"id":455,"nodeType":"UncheckedBlock","src":"9722:194:0","statements":[{"expression":{"id":449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":443,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"9746:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":445,"indexExpression":{"id":444,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"9756:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9746:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":446,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":431,"src":"9767:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":447,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"9784:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9767:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9746:44:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":450,"nodeType":"ExpressionStatement","src":"9746:44:0"},{"expression":{"id":453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":451,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23,"src":"9883:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":452,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"9899:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9883:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":454,"nodeType":"ExpressionStatement","src":"9883:22:0"}]},{"eventCall":{"arguments":[{"id":457,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"9940:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9957:1:0","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":459,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9949:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":458,"name":"address","nodeType":"ElementaryTypeName","src":"9949:7:0","typeDescriptions":{}}},"id":461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9949:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":462,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"9961:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":456,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":598,"src":"9931:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9931:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":464,"nodeType":"EmitStatement","src":"9926:42:0"},{"expression":{"arguments":[{"id":466,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"9999:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10016:1:0","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":468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10008:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":467,"name":"address","nodeType":"ElementaryTypeName","src":"10008:7:0","typeDescriptions":{}}},"id":470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10008:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":471,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"10020:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":465,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":585,"src":"9979:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9979:48:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":473,"nodeType":"ExpressionStatement","src":"9979:48:0"}]},"documentation":{"id":404,"nodeType":"StructuredDocumentation","src":"9061:309:0","text":" @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."},"id":475,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"9384:5:0","nodeType":"FunctionDefinition","parameters":{"id":409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":406,"mutability":"mutable","name":"account","nameLocation":"9398:7:0","nodeType":"VariableDeclaration","scope":475,"src":"9390:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":405,"name":"address","nodeType":"ElementaryTypeName","src":"9390:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":408,"mutability":"mutable","name":"amount","nameLocation":"9415:6:0","nodeType":"VariableDeclaration","scope":475,"src":"9407:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":407,"name":"uint256","nodeType":"ElementaryTypeName","src":"9407:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9389:33:0"},"returnParameters":{"id":410,"nodeType":"ParameterList","parameters":[],"src":"9440:0:0"},"scope":586,"src":"9375:659:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":519,"nodeType":"Block","src":"10540:257:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":486,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"10558:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10575:1:0","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":488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10567:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":487,"name":"address","nodeType":"ElementaryTypeName","src":"10567:7:0","typeDescriptions":{}}},"id":490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10567:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10558:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373","id":492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10579:38:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","typeString":"literal_string \"ERC20: approve from the zero address\""},"value":"ERC20: approve from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","typeString":"literal_string \"ERC20: approve from the zero address\""}],"id":485,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10550:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10550:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":494,"nodeType":"ExpressionStatement","src":"10550:68:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":496,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":480,"src":"10636:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10655:1:0","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":498,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10647:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":497,"name":"address","nodeType":"ElementaryTypeName","src":"10647:7:0","typeDescriptions":{}}},"id":500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10647:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10636:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f2061646472657373","id":502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10659:36:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","typeString":"literal_string \"ERC20: approve to the zero address\""},"value":"ERC20: approve to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","typeString":"literal_string \"ERC20: approve to the zero address\""}],"id":495,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10628:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10628:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":504,"nodeType":"ExpressionStatement","src":"10628:68:0"},{"expression":{"id":511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":505,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21,"src":"10707:11:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":508,"indexExpression":{"id":506,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"10719:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10707:18:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":509,"indexExpression":{"id":507,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":480,"src":"10726:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10707:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":510,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":482,"src":"10737:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10707:36:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":512,"nodeType":"ExpressionStatement","src":"10707:36:0"},{"eventCall":{"arguments":[{"id":514,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"10767:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":515,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":480,"src":"10774:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":516,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":482,"src":"10783:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":513,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":607,"src":"10758:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10758:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":518,"nodeType":"EmitStatement","src":"10753:37:0"}]},"documentation":{"id":476,"nodeType":"StructuredDocumentation","src":"10040:412:0","text":" @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."},"id":520,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10466:8:0","nodeType":"FunctionDefinition","parameters":{"id":483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":478,"mutability":"mutable","name":"owner","nameLocation":"10483:5:0","nodeType":"VariableDeclaration","scope":520,"src":"10475:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":477,"name":"address","nodeType":"ElementaryTypeName","src":"10475:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":480,"mutability":"mutable","name":"spender","nameLocation":"10498:7:0","nodeType":"VariableDeclaration","scope":520,"src":"10490:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":479,"name":"address","nodeType":"ElementaryTypeName","src":"10490:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":482,"mutability":"mutable","name":"amount","nameLocation":"10515:6:0","nodeType":"VariableDeclaration","scope":520,"src":"10507:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":481,"name":"uint256","nodeType":"ElementaryTypeName","src":"10507:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10474:48:0"},"returnParameters":{"id":484,"nodeType":"ParameterList","parameters":[],"src":"10540:0:0"},"scope":586,"src":"10457:340:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":562,"nodeType":"Block","src":"11168:321:0","statements":[{"assignments":[531],"declarations":[{"constant":false,"id":531,"mutability":"mutable","name":"currentAllowance","nameLocation":"11186:16:0","nodeType":"VariableDeclaration","scope":562,"src":"11178:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":530,"name":"uint256","nodeType":"ElementaryTypeName","src":"11178:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":536,"initialValue":{"arguments":[{"id":533,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"11215:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":534,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"11222:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":532,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":141,"src":"11205:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11205:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11178:52:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":537,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"11244:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11269:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":539,"name":"uint256","nodeType":"ElementaryTypeName","src":"11269:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":538,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11264:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11264:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11278:3:0","memberName":"max","nodeType":"MemberAccess","src":"11264:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11244:37:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":561,"nodeType":"IfStatement","src":"11240:243:0","trueBody":{"id":560,"nodeType":"Block","src":"11283:200:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":545,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"11305:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":546,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"11325:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11305:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","id":548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11333:31:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""},"value":"ERC20: insufficient allowance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""}],"id":544,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11297:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11297:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":550,"nodeType":"ExpressionStatement","src":"11297:68:0"},{"id":559,"nodeType":"UncheckedBlock","src":"11379:94:0","statements":[{"expression":{"arguments":[{"id":552,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"11416:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":553,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"11423:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":554,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"11432:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":555,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"11451:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11432:25:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":551,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"11407:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11407:51:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":558,"nodeType":"ExpressionStatement","src":"11407:51:0"}]}]}}]},"documentation":{"id":521,"nodeType":"StructuredDocumentation","src":"10803:270:0","text":" @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n Does not update the allowance amount in case of infinite allowance.\n Revert if not enough allowance is available.\n Might emit an {Approval} event."},"id":563,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"11087:15:0","nodeType":"FunctionDefinition","parameters":{"id":528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":523,"mutability":"mutable","name":"owner","nameLocation":"11111:5:0","nodeType":"VariableDeclaration","scope":563,"src":"11103:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":522,"name":"address","nodeType":"ElementaryTypeName","src":"11103:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":525,"mutability":"mutable","name":"spender","nameLocation":"11126:7:0","nodeType":"VariableDeclaration","scope":563,"src":"11118:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":524,"name":"address","nodeType":"ElementaryTypeName","src":"11118:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":527,"mutability":"mutable","name":"amount","nameLocation":"11143:6:0","nodeType":"VariableDeclaration","scope":563,"src":"11135:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":526,"name":"uint256","nodeType":"ElementaryTypeName","src":"11135:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11102:48:0"},"returnParameters":{"id":529,"nodeType":"ParameterList","parameters":[],"src":"11168:0:0"},"scope":586,"src":"11078:411:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":573,"nodeType":"Block","src":"12162:2:0","statements":[]},"documentation":{"id":564,"nodeType":"StructuredDocumentation","src":"11495:573:0","text":" @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":574,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"12082:20:0","nodeType":"FunctionDefinition","parameters":{"id":571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":566,"mutability":"mutable","name":"from","nameLocation":"12111:4:0","nodeType":"VariableDeclaration","scope":574,"src":"12103:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":565,"name":"address","nodeType":"ElementaryTypeName","src":"12103:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":568,"mutability":"mutable","name":"to","nameLocation":"12125:2:0","nodeType":"VariableDeclaration","scope":574,"src":"12117:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":567,"name":"address","nodeType":"ElementaryTypeName","src":"12117:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":570,"mutability":"mutable","name":"amount","nameLocation":"12137:6:0","nodeType":"VariableDeclaration","scope":574,"src":"12129:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":569,"name":"uint256","nodeType":"ElementaryTypeName","src":"12129:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12102:42:0"},"returnParameters":{"id":572,"nodeType":"ParameterList","parameters":[],"src":"12162:0:0"},"scope":586,"src":"12073:91:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":584,"nodeType":"Block","src":"12840:2:0","statements":[]},"documentation":{"id":575,"nodeType":"StructuredDocumentation","src":"12170:577:0","text":" @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":585,"implemented":true,"kind":"function","modifiers":[],"name":"_afterTokenTransfer","nameLocation":"12761:19:0","nodeType":"FunctionDefinition","parameters":{"id":582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":577,"mutability":"mutable","name":"from","nameLocation":"12789:4:0","nodeType":"VariableDeclaration","scope":585,"src":"12781:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":576,"name":"address","nodeType":"ElementaryTypeName","src":"12781:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":579,"mutability":"mutable","name":"to","nameLocation":"12803:2:0","nodeType":"VariableDeclaration","scope":585,"src":"12795:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":578,"name":"address","nodeType":"ElementaryTypeName","src":"12795:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":581,"mutability":"mutable","name":"amount","nameLocation":"12815:6:0","nodeType":"VariableDeclaration","scope":585,"src":"12807:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":580,"name":"uint256","nodeType":"ElementaryTypeName","src":"12807:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12780:42:0"},"returnParameters":{"id":583,"nodeType":"ParameterList","parameters":[],"src":"12840:0:0"},"scope":586,"src":"12752:90:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":587,"src":"1532:11312:0","usedErrors":[],"usedEvents":[598,607]}],"src":"105:12740:0"},"id":0},"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[664]},"id":665,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":588,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:1"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":589,"nodeType":"StructuredDocumentation","src":"131:70:1","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":664,"linearizedBaseContracts":[664],"name":"IERC20","nameLocation":"212:6:1","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":590,"nodeType":"StructuredDocumentation","src":"225:158:1","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":598,"name":"Transfer","nameLocation":"394:8:1","nodeType":"EventDefinition","parameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":592,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:1","nodeType":"VariableDeclaration","scope":598,"src":"403:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":591,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":594,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:1","nodeType":"VariableDeclaration","scope":598,"src":"425:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":593,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":596,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:1","nodeType":"VariableDeclaration","scope":598,"src":"445:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":595,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:1"},"src":"388:72:1"},{"anonymous":false,"documentation":{"id":599,"nodeType":"StructuredDocumentation","src":"466:148:1","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":607,"name":"Approval","nameLocation":"625:8:1","nodeType":"EventDefinition","parameters":{"id":606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":601,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:1","nodeType":"VariableDeclaration","scope":607,"src":"634:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":600,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":603,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:1","nodeType":"VariableDeclaration","scope":607,"src":"657:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":602,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":605,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:1","nodeType":"VariableDeclaration","scope":607,"src":"682:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":604,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:1"},"src":"619:78:1"},{"documentation":{"id":608,"nodeType":"StructuredDocumentation","src":"703:66:1","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":613,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:1","nodeType":"FunctionDefinition","parameters":{"id":609,"nodeType":"ParameterList","parameters":[],"src":"794:2:1"},"returnParameters":{"id":612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":611,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":613,"src":"820:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":610,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:1"},"scope":664,"src":"774:55:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":614,"nodeType":"StructuredDocumentation","src":"835:72:1","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":621,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:1","nodeType":"FunctionDefinition","parameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"account","nameLocation":"939:7:1","nodeType":"VariableDeclaration","scope":621,"src":"931:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":615,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:1"},"returnParameters":{"id":620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":619,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":621,"src":"971:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":618,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:1"},"scope":664,"src":"912:68:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":622,"nodeType":"StructuredDocumentation","src":"986:202:1","text":" @dev Moves `amount` 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":631,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:1","nodeType":"FunctionDefinition","parameters":{"id":627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":624,"mutability":"mutable","name":"to","nameLocation":"1219:2:1","nodeType":"VariableDeclaration","scope":631,"src":"1211:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":623,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":626,"mutability":"mutable","name":"amount","nameLocation":"1231:6:1","nodeType":"VariableDeclaration","scope":631,"src":"1223:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":625,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:1"},"returnParameters":{"id":630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":629,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":631,"src":"1257:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":628,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:1"},"scope":664,"src":"1193:70:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":632,"nodeType":"StructuredDocumentation","src":"1269:264:1","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":641,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:1","nodeType":"FunctionDefinition","parameters":{"id":637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":634,"mutability":"mutable","name":"owner","nameLocation":"1565:5:1","nodeType":"VariableDeclaration","scope":641,"src":"1557:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":633,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":636,"mutability":"mutable","name":"spender","nameLocation":"1580:7:1","nodeType":"VariableDeclaration","scope":641,"src":"1572:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":635,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:1"},"returnParameters":{"id":640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":639,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":641,"src":"1612:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":638,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:1"},"scope":664,"src":"1538:83:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":642,"nodeType":"StructuredDocumentation","src":"1627:642:1","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":651,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:1","nodeType":"FunctionDefinition","parameters":{"id":647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":644,"mutability":"mutable","name":"spender","nameLocation":"2299:7:1","nodeType":"VariableDeclaration","scope":651,"src":"2291:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":643,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":646,"mutability":"mutable","name":"amount","nameLocation":"2316:6:1","nodeType":"VariableDeclaration","scope":651,"src":"2308:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":645,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:1"},"returnParameters":{"id":650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":649,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":651,"src":"2342:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":648,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:1"},"scope":664,"src":"2274:74:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":652,"nodeType":"StructuredDocumentation","src":"2354:287:1","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":663,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:1","nodeType":"FunctionDefinition","parameters":{"id":659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":654,"mutability":"mutable","name":"from","nameLocation":"2676:4:1","nodeType":"VariableDeclaration","scope":663,"src":"2668:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":653,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":656,"mutability":"mutable","name":"to","nameLocation":"2690:2:1","nodeType":"VariableDeclaration","scope":663,"src":"2682:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":655,"name":"address","nodeType":"ElementaryTypeName","src":"2682:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":658,"mutability":"mutable","name":"amount","nameLocation":"2702:6:1","nodeType":"VariableDeclaration","scope":663,"src":"2694:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":657,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:42:1"},"returnParameters":{"id":662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":661,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":663,"src":"2728:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":660,"name":"bool","nodeType":"ElementaryTypeName","src":"2728:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2727:6:1"},"scope":664,"src":"2646:88:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":665,"src":"202:2534:1","usedErrors":[],"usedEvents":[598,607]}],"src":"106:2631:1"},"id":1},"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[664],"IERC20Metadata":[689]},"id":690,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":666,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"110:23:2"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":667,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":690,"sourceUnit":665,"src":"135:23:2","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":669,"name":"IERC20","nameLocations":["305:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":664,"src":"305:6:2"},"id":670,"nodeType":"InheritanceSpecifier","src":"305:6:2"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":668,"nodeType":"StructuredDocumentation","src":"160:116:2","text":" @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"},"fullyImplemented":false,"id":689,"linearizedBaseContracts":[689,664],"name":"IERC20Metadata","nameLocation":"287:14:2","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":671,"nodeType":"StructuredDocumentation","src":"318:54:2","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":676,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"386:4:2","nodeType":"FunctionDefinition","parameters":{"id":672,"nodeType":"ParameterList","parameters":[],"src":"390:2:2"},"returnParameters":{"id":675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":674,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":676,"src":"416:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":673,"name":"string","nodeType":"ElementaryTypeName","src":"416:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"415:15:2"},"scope":689,"src":"377:54:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":677,"nodeType":"StructuredDocumentation","src":"437:56:2","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":682,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"507:6:2","nodeType":"FunctionDefinition","parameters":{"id":678,"nodeType":"ParameterList","parameters":[],"src":"513:2:2"},"returnParameters":{"id":681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":680,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":682,"src":"539:13:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":679,"name":"string","nodeType":"ElementaryTypeName","src":"539:6:2","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"538:15:2"},"scope":689,"src":"498:56:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":683,"nodeType":"StructuredDocumentation","src":"560:65:2","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":688,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"639:8:2","nodeType":"FunctionDefinition","parameters":{"id":684,"nodeType":"ParameterList","parameters":[],"src":"647:2:2"},"returnParameters":{"id":687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":686,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":688,"src":"673:5:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":685,"name":"uint8","nodeType":"ElementaryTypeName","src":"673:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"672:7:2"},"scope":689,"src":"630:50:2","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":690,"src":"277:405:2","usedErrors":[],"usedEvents":[598,607]}],"src":"110:573:2"},"id":2},"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol","exportedSymbols":{"Context":[719]},"id":720,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":691,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:3"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":692,"nodeType":"StructuredDocumentation","src":"126:496:3","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":719,"linearizedBaseContracts":[719],"name":"Context","nameLocation":"641:7:3","nodeType":"ContractDefinition","nodes":[{"body":{"id":700,"nodeType":"Block","src":"717:34:3","statements":[{"expression":{"expression":{"id":697,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"734:3:3","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"738:6:3","memberName":"sender","nodeType":"MemberAccess","src":"734:10:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":696,"id":699,"nodeType":"Return","src":"727:17:3"}]},"id":701,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"664:10:3","nodeType":"FunctionDefinition","parameters":{"id":693,"nodeType":"ParameterList","parameters":[],"src":"674:2:3"},"returnParameters":{"id":696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":695,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":701,"src":"708:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":694,"name":"address","nodeType":"ElementaryTypeName","src":"708:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"707:9:3"},"scope":719,"src":"655:96:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":709,"nodeType":"Block","src":"824:32:3","statements":[{"expression":{"expression":{"id":706,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"841:3:3","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"845:4:3","memberName":"data","nodeType":"MemberAccess","src":"841:8:3","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":705,"id":708,"nodeType":"Return","src":"834:15:3"}]},"id":710,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"766:8:3","nodeType":"FunctionDefinition","parameters":{"id":702,"nodeType":"ParameterList","parameters":[],"src":"774:2:3"},"returnParameters":{"id":705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":704,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":710,"src":"808:14:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":703,"name":"bytes","nodeType":"ElementaryTypeName","src":"808:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"807:16:3"},"scope":719,"src":"757:99:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":717,"nodeType":"Block","src":"934:25:3","statements":[{"expression":{"hexValue":"30","id":715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"951:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":714,"id":716,"nodeType":"Return","src":"944:8:3"}]},"id":718,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"871:20:3","nodeType":"FunctionDefinition","parameters":{"id":711,"nodeType":"ParameterList","parameters":[],"src":"891:2:3"},"returnParameters":{"id":714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":713,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":718,"src":"925:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":712,"name":"uint256","nodeType":"ElementaryTypeName","src":"925:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"924:9:3"},"scope":719,"src":"862:97:3","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":720,"src":"623:338:3","usedErrors":[],"usedEvents":[]}],"src":"101:861:3"},"id":3},"project/contracts/mocks/MockUSDC.sol":{"ast":{"absolutePath":"project/contracts/mocks/MockUSDC.sol","exportedSymbols":{"ERC20":[586],"MockUSDT":[789]},"id":790,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":721,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"38:24:4"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":723,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":790,"sourceUnit":587,"src":"64:68:4","symbolAliases":[{"foreign":{"id":722,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"72:5:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":725,"name":"ERC20","nameLocations":["183:5:4"],"nodeType":"IdentifierPath","referencedDeclaration":586,"src":"183:5:4"},"id":726,"nodeType":"InheritanceSpecifier","src":"183:5:4"}],"canonicalName":"MockUSDT","contractDependencies":[],"contractKind":"contract","documentation":{"id":724,"nodeType":"StructuredDocumentation","src":"134:28:4","text":"@dev Mock mintable USDC"},"fullyImplemented":true,"id":789,"linearizedBaseContracts":[789,586,689,664,719],"name":"MockUSDT","nameLocation":"171:8:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":739,"nodeType":"Block","src":"236:48:4","statements":[{"expression":{"arguments":[{"expression":{"id":734,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"252:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"256:6:4","memberName":"sender","nodeType":"MemberAccess","src":"252:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"315f3030305f303030453138","id":736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"264:12:4","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000000000_by_1","typeString":"int_const 1000000000000000000000000"},"value":"1_000_000E18"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_1000000000000000000000000_by_1","typeString":"int_const 1000000000000000000000000"}],"id":733,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"246:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"246:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":738,"nodeType":"ExpressionStatement","src":"246:31:4"}]},"id":740,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"4d6f636b55445343","id":729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"215:10:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_94e1f9c6f37f68c7fbe9a402bd5dbcd03f36019e7e48bd72249c8c505bfa86d6","typeString":"literal_string \"MockUDSC\""},"value":"MockUDSC"},{"hexValue":"4d55534443","id":730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"227:7:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_0b881b1a06d818eb813952573bf9829bb21a81b032d939e3244337841a6fff45","typeString":"literal_string \"MUSDC\""},"value":"MUSDC"}],"id":731,"kind":"baseConstructorSpecifier","modifierName":{"id":728,"name":"ERC20","nameLocations":["209:5:4"],"nodeType":"IdentifierPath","referencedDeclaration":586,"src":"209:5:4"},"nodeType":"ModifierInvocation","src":"209:26:4"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":727,"nodeType":"ParameterList","parameters":[],"src":"206:2:4"},"returnParameters":{"id":732,"nodeType":"ParameterList","parameters":[],"src":"236:0:4"},"scope":789,"src":"195:89:4","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":751,"nodeType":"Block","src":"330:43:4","statements":[{"expression":{"arguments":[{"expression":{"id":746,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"346:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"350:6:4","memberName":"sender","nodeType":"MemberAccess","src":"346:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":748,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"358:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":745,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"340:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"340:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":750,"nodeType":"ExpressionStatement","src":"340:26:4"}]},"functionSelector":"a0712d68","id":752,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"299:4:4","nodeType":"FunctionDefinition","parameters":{"id":743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":742,"mutability":"mutable","name":"_amount","nameLocation":"312:7:4","nodeType":"VariableDeclaration","scope":752,"src":"304:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":741,"name":"uint256","nodeType":"ElementaryTypeName","src":"304:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"303:17:4"},"returnParameters":{"id":744,"nodeType":"ParameterList","parameters":[],"src":"330:0:4"},"scope":789,"src":"290:83:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":763,"nodeType":"Block","src":"419:43:4","statements":[{"expression":{"arguments":[{"expression":{"id":758,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"435:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"439:6:4","memberName":"sender","nodeType":"MemberAccess","src":"435:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":760,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":754,"src":"447:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":757,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"429:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"429:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":762,"nodeType":"ExpressionStatement","src":"429:26:4"}]},"functionSelector":"42966c68","id":764,"implemented":true,"kind":"function","modifiers":[],"name":"burn","nameLocation":"388:4:4","nodeType":"FunctionDefinition","parameters":{"id":755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":754,"mutability":"mutable","name":"_amount","nameLocation":"401:7:4","nodeType":"VariableDeclaration","scope":764,"src":"393:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":753,"name":"uint256","nodeType":"ElementaryTypeName","src":"393:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"392:17:4"},"returnParameters":{"id":756,"nodeType":"ParameterList","parameters":[],"src":"419:0:4"},"scope":789,"src":"379:83:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":787,"nodeType":"Block","src":"496:160:4","statements":[{"assignments":[768],"declarations":[{"constant":false,"id":768,"mutability":"mutable","name":"_balanceOf","nameLocation":"514:10:4","nodeType":"VariableDeclaration","scope":787,"src":"506:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":767,"name":"uint256","nodeType":"ElementaryTypeName","src":"506:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":773,"initialValue":{"arguments":[{"expression":{"id":770,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"537:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"541:6:4","memberName":"sender","nodeType":"MemberAccess","src":"537:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":769,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"527:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"527:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"506:42:4"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":775,"name":"_balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"566:10:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"579:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"566:14:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f636b555344543a204e6f7468696e6720746f206275726e","id":778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"582:27:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","typeString":"literal_string \"MockUSDT: Nothing to burn\""},"value":"MockUSDT: Nothing to burn"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","typeString":"literal_string \"MockUSDT: Nothing to burn\""}],"id":774,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"558:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"558:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":780,"nodeType":"ExpressionStatement","src":"558:52:4"},{"expression":{"arguments":[{"expression":{"id":782,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"626:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"630:6:4","memberName":"sender","nodeType":"MemberAccess","src":"626:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":784,"name":"_balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"638:10:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":781,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"620:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"620:29:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":786,"nodeType":"ExpressionStatement","src":"620:29:4"}]},"functionSelector":"9975038c","id":788,"implemented":true,"kind":"function","modifiers":[],"name":"burnAll","nameLocation":"477:7:4","nodeType":"FunctionDefinition","parameters":{"id":765,"nodeType":"ParameterList","parameters":[],"src":"484:2:4"},"returnParameters":{"id":766,"nodeType":"ParameterList","parameters":[],"src":"496:0:4"},"scope":789,"src":"468:188:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":790,"src":"162:496:4","usedErrors":[],"usedEvents":[598,607]}],"src":"38:621:4"},"id":4}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65.json b/artifacts/build-info/solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65.json new file mode 100644 index 0000000..21fa60a --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65.json @@ -0,0 +1,72 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol": "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [] + }, + "sources": { + "npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../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 * By default, the owner account will be the one that deploys the contract. This\n * can 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 event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\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 require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\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 require(newOwner != address(0), \"Ownable: new owner is the zero address\");\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" + }, + "npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822Proxiable {\n /**\n * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n * address.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy.\n */\n function proxiableUUID() external view returns (bytes32);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n *\n * _Available since v4.8.3._\n */\ninterface IERC1967 {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {BeaconProxy} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Proxy.sol\";\nimport \"./ERC1967Upgrade.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy, ERC1967Upgrade {\n /**\n * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.\n *\n * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded\n * function call, and allows initializing the storage of the proxy like a Solidity constructor.\n */\n constructor(address _logic, bytes memory _data) payable {\n _upgradeToAndCall(_logic, _data, false);\n }\n\n /**\n * @dev Returns the current implementation address.\n */\n function _implementation() internal view virtual override returns (address impl) {\n return ERC1967Upgrade._getImplementation();\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../beacon/IBeacon.sol\";\nimport \"../../interfaces/IERC1967.sol\";\nimport \"../../interfaces/draft-IERC1822.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This abstract contract provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n *\n * _Available since v4.1._\n */\nabstract contract ERC1967Upgrade is IERC1967 {\n // This is the keccak-256 hash of \"eip1967.proxy.rollback\" subtracted by 1\n bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;\n\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n /**\n * @dev Returns the current implementation address.\n */\n function _getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Perform implementation upgrade\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeTo(address newImplementation) internal {\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n }\n\n /**\n * @dev Perform implementation upgrade with additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {\n _upgradeTo(newImplementation);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(newImplementation, data);\n }\n }\n\n /**\n * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {\n // Upgrades from old implementations will perform a rollback test. This test requires the new\n // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing\n // this special case will break upgrade paths from old UUPS implementation to new ones.\n if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) {\n _setImplementation(newImplementation);\n } else {\n try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n require(slot == _IMPLEMENTATION_SLOT, \"ERC1967Upgrade: unsupported proxiableUUID\");\n } catch {\n revert(\"ERC1967Upgrade: new implementation is not UUPS\");\n }\n _upgradeToAndCall(newImplementation, data, forceCall);\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n */\n function _getAdmin() internal view returns (address) {\n return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n require(newAdmin != address(0), \"ERC1967: new admin is the zero address\");\n StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _changeAdmin(address newAdmin) internal {\n emit AdminChanged(_getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\n */\n bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function _getBeacon() internal view returns (address) {\n return StorageSlot.getAddressSlot(_BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the EIP1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n require(Address.isContract(newBeacon), \"ERC1967: new beacon is not a contract\");\n require(\n Address.isContract(IBeacon(newBeacon).implementation()),\n \"ERC1967: beacon implementation is not a contract\"\n );\n StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;\n }\n\n /**\n * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n *\n * Emits a {BeaconUpgraded} event.\n */\n function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {\n _setBeacon(newBeacon);\n emit BeaconUpgraded(newBeacon);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n /**\n * @dev Delegates the current call to `implementation`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _delegate(address implementation) internal virtual {\n assembly {\n // Copy msg.data. We take full control of memory in this inline assembly\n // block because it will not return to Solidity code. We overwrite the\n // Solidity scratch pad at memory position 0.\n calldatacopy(0, 0, calldatasize())\n\n // Call the implementation.\n // out and outsize are 0 because we don't know the size yet.\n let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)\n\n // Copy the returned data.\n returndatacopy(0, 0, returndatasize())\n\n switch result\n // delegatecall returns 0 on error.\n case 0 {\n revert(0, returndatasize())\n }\n default {\n return(0, returndatasize())\n }\n }\n }\n\n /**\n * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function\n * and {_fallback} should delegate.\n */\n function _implementation() internal view virtual returns (address);\n\n /**\n * @dev Delegates the current call to the address returned by `_implementation()`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _fallback() internal virtual {\n _beforeFallback();\n _delegate(_implementation());\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n * function in the contract matches the call data.\n */\n fallback() external payable virtual {\n _fallback();\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data\n * is empty.\n */\n receive() external payable virtual {\n _fallback();\n }\n\n /**\n * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`\n * call, or as part of the Solidity `fallback` or `receive` functions.\n *\n * If overridden should call `super._beforeFallback()`.\n */\n function _beforeFallback() internal virtual {}\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/ProxyAdmin.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./TransparentUpgradeableProxy.sol\";\nimport \"../../access/Ownable.sol\";\n\n/**\n * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an\n * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.\n */\ncontract ProxyAdmin is Ownable {\n /**\n * @dev Returns the current implementation of `proxy`.\n *\n * Requirements:\n *\n * - This contract must be the admin of `proxy`.\n */\n function getProxyImplementation(ITransparentUpgradeableProxy proxy) public view virtual returns (address) {\n // We need to manually run the static call since the getter cannot be flagged as view\n // bytes4(keccak256(\"implementation()\")) == 0x5c60da1b\n (bool success, bytes memory returndata) = address(proxy).staticcall(hex\"5c60da1b\");\n require(success);\n return abi.decode(returndata, (address));\n }\n\n /**\n * @dev Returns the current admin of `proxy`.\n *\n * Requirements:\n *\n * - This contract must be the admin of `proxy`.\n */\n function getProxyAdmin(ITransparentUpgradeableProxy proxy) public view virtual returns (address) {\n // We need to manually run the static call since the getter cannot be flagged as view\n // bytes4(keccak256(\"admin()\")) == 0xf851a440\n (bool success, bytes memory returndata) = address(proxy).staticcall(hex\"f851a440\");\n require(success);\n return abi.decode(returndata, (address));\n }\n\n /**\n * @dev Changes the admin of `proxy` to `newAdmin`.\n *\n * Requirements:\n *\n * - This contract must be the current admin of `proxy`.\n */\n function changeProxyAdmin(ITransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner {\n proxy.changeAdmin(newAdmin);\n }\n\n /**\n * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}.\n *\n * Requirements:\n *\n * - This contract must be the admin of `proxy`.\n */\n function upgrade(ITransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner {\n proxy.upgradeTo(implementation);\n }\n\n /**\n * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See\n * {TransparentUpgradeableProxy-upgradeToAndCall}.\n *\n * Requirements:\n *\n * - This contract must be the admin of `proxy`.\n */\n function upgradeAndCall(\n ITransparentUpgradeableProxy proxy,\n address implementation,\n bytes memory data\n ) public payable virtual onlyOwner {\n proxy.upgradeToAndCall{value: msg.value}(implementation, data);\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/transparent/TransparentUpgradeableProxy.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC1967/ERC1967Proxy.sol\";\n\n/**\n * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}\n * does not implement this interface directly, and some of its functions are implemented by an internal dispatch\n * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not\n * include them in the ABI so this interface must be used to interact with it.\n */\ninterface ITransparentUpgradeableProxy is IERC1967 {\n function admin() external view returns (address);\n\n function implementation() external view returns (address);\n\n function changeAdmin(address) external;\n\n function upgradeTo(address) external;\n\n function upgradeToAndCall(address, bytes memory) external payable;\n}\n\n/**\n * @dev This contract implements a proxy that is upgradeable by an admin.\n *\n * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n * clashing], which can potentially be used in an attack, this contract uses the\n * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n * things that go hand in hand:\n *\n * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n * that call matches one of the admin functions exposed by the proxy itself.\n * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the\n * implementation. If the admin tries to call a function on the implementation it will fail with an error that says\n * \"admin cannot fallback to proxy target\".\n *\n * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing\n * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due\n * to sudden errors when trying to call a function from the proxy implementation.\n *\n * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,\n * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\n *\n * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not\n * inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch\n * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to\n * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the\n * implementation.\n *\n * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler\n * will not check that there are no selector conflicts, due to the note above. A selector clash between any new function\n * and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could\n * render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised.\n */\ncontract TransparentUpgradeableProxy is ERC1967Proxy {\n /**\n * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and\n * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\n */\n constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {\n _changeAdmin(admin_);\n }\n\n /**\n * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.\n *\n * CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the\n * implementation provides a function with the same selector.\n */\n modifier ifAdmin() {\n if (msg.sender == _getAdmin()) {\n _;\n } else {\n _fallback();\n }\n }\n\n /**\n * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior\n */\n function _fallback() internal virtual override {\n if (msg.sender == _getAdmin()) {\n bytes memory ret;\n bytes4 selector = msg.sig;\n if (selector == ITransparentUpgradeableProxy.upgradeTo.selector) {\n ret = _dispatchUpgradeTo();\n } else if (selector == ITransparentUpgradeableProxy.upgradeToAndCall.selector) {\n ret = _dispatchUpgradeToAndCall();\n } else if (selector == ITransparentUpgradeableProxy.changeAdmin.selector) {\n ret = _dispatchChangeAdmin();\n } else if (selector == ITransparentUpgradeableProxy.admin.selector) {\n ret = _dispatchAdmin();\n } else if (selector == ITransparentUpgradeableProxy.implementation.selector) {\n ret = _dispatchImplementation();\n } else {\n revert(\"TransparentUpgradeableProxy: admin cannot fallback to proxy target\");\n }\n assembly {\n return(add(ret, 0x20), mload(ret))\n }\n } else {\n super._fallback();\n }\n }\n\n /**\n * @dev Returns the current admin.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n */\n function _dispatchAdmin() private returns (bytes memory) {\n _requireZeroValue();\n\n address admin = _getAdmin();\n return abi.encode(admin);\n }\n\n /**\n * @dev Returns the current implementation.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n */\n function _dispatchImplementation() private returns (bytes memory) {\n _requireZeroValue();\n\n address implementation = _implementation();\n return abi.encode(implementation);\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _dispatchChangeAdmin() private returns (bytes memory) {\n _requireZeroValue();\n\n address newAdmin = abi.decode(msg.data[4:], (address));\n _changeAdmin(newAdmin);\n\n return \"\";\n }\n\n /**\n * @dev Upgrade the implementation of the proxy.\n */\n function _dispatchUpgradeTo() private returns (bytes memory) {\n _requireZeroValue();\n\n address newImplementation = abi.decode(msg.data[4:], (address));\n _upgradeToAndCall(newImplementation, bytes(\"\"), false);\n\n return \"\";\n }\n\n /**\n * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified\n * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the\n * proxied contract.\n */\n function _dispatchUpgradeToAndCall() private returns (bytes memory) {\n (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes));\n _upgradeToAndCall(newImplementation, data, true);\n\n return \"\";\n }\n\n /**\n * @dev Returns the current admin.\n *\n * CAUTION: This function is deprecated. Use {ERC1967Upgrade-_getAdmin} instead.\n */\n function _admin() internal view virtual returns (address) {\n return _getAdmin();\n }\n\n /**\n * @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to\n * emulate some proxy functions being non-payable while still allowing value to pass through.\n */\n function _requireZeroValue() private {\n require(msg.value == 0);\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/Address.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/Context.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n}\n" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65.output.json b/artifacts/build-info/solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65.output.json new file mode 100644 index 0000000..beedab0 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-9a23d4033a42a2d57ead2c68f50521743940ec65","output":{"contracts":{"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol":{"Ownable":{"abi":[{"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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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. By default, the owner account will be the one that deploys the contract. 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.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting 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\":{\"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol":{"IERC1967":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. _Available since v4.8.3._\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":\"IERC1967\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol":{"IERC1822Proxiable":{"abi":[{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"proxiableUUID()":"52d1902d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.\",\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":\"IERC1822Proxiable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol":{"ERC1967Proxy":{"abi":[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_167":{"entryPoint":null,"id":167,"parameterSlots":2,"returnSlots":0},"@_revert_1334":{"entryPoint":626,"id":1334,"parameterSlots":2,"returnSlots":0},"@_setImplementation_234":{"entryPoint":202,"id":234,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCall_279":{"entryPoint":52,"id":279,"parameterSlots":3,"returnSlots":0},"@_upgradeTo_249":{"entryPoint":95,"id":249,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_1222":{"entryPoint":158,"id":1222,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_1251":{"entryPoint":381,"id":1251,"parameterSlots":3,"returnSlots":1},"@getAddressSlot_1397":{"entryPoint":null,"id":1397,"parameterSlots":1,"returnSlots":1},"@isContract_1023":{"entryPoint":null,"id":1023,"parameterSlots":1,"returnSlots":1},"@verifyCallResultFromTarget_1290":{"entryPoint":498,"id":1290,"parameterSlots":4,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":722,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":922,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":949,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":688,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":668,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:2931:12","statements":[{"nodeType":"YulBlock","src":"6:3:12","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:12","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:12","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:12","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:12"},"nodeType":"YulFunctionCall","src":"66:20:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:12"},"nodeType":"YulFunctionCall","src":"56:31:12"},"nodeType":"YulExpressionStatement","src":"56:31:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:12","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:12","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:12"},"nodeType":"YulFunctionCall","src":"96:15:12"},"nodeType":"YulExpressionStatement","src":"96:15:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:12","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:12"},"nodeType":"YulFunctionCall","src":"120:15:12"},"nodeType":"YulExpressionStatement","src":"120:15:12"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:12"},{"body":{"nodeType":"YulBlock","src":"212:184:12","statements":[{"nodeType":"YulVariableDeclaration","src":"222:10:12","value":{"kind":"number","nodeType":"YulLiteral","src":"231:1:12","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"226:1:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"291:63:12","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"316:3:12"},{"name":"i","nodeType":"YulIdentifier","src":"321:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"312:3:12"},"nodeType":"YulFunctionCall","src":"312:11:12"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"335:3:12"},{"name":"i","nodeType":"YulIdentifier","src":"340:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"331:3:12"},"nodeType":"YulFunctionCall","src":"331:11:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"325:5:12"},"nodeType":"YulFunctionCall","src":"325:18:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"305:6:12"},"nodeType":"YulFunctionCall","src":"305:39:12"},"nodeType":"YulExpressionStatement","src":"305:39:12"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"252:1:12"},{"name":"length","nodeType":"YulIdentifier","src":"255:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"249:2:12"},"nodeType":"YulFunctionCall","src":"249:13:12"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"263:19:12","statements":[{"nodeType":"YulAssignment","src":"265:15:12","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"274:1:12"},{"kind":"number","nodeType":"YulLiteral","src":"277:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"270:3:12"},"nodeType":"YulFunctionCall","src":"270:10:12"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"265:1:12"}]}]},"pre":{"nodeType":"YulBlock","src":"245:3:12","statements":[]},"src":"241:113:12"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"374:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"379:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"370:3:12"},"nodeType":"YulFunctionCall","src":"370:16:12"},{"kind":"number","nodeType":"YulLiteral","src":"388:1:12","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"363:6:12"},"nodeType":"YulFunctionCall","src":"363:27:12"},"nodeType":"YulExpressionStatement","src":"363:27:12"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"190:3:12","type":""},{"name":"dst","nodeType":"YulTypedName","src":"195:3:12","type":""},{"name":"length","nodeType":"YulTypedName","src":"200:6:12","type":""}],"src":"146:250:12"},{"body":{"nodeType":"YulBlock","src":"508:956:12","statements":[{"body":{"nodeType":"YulBlock","src":"554:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"563:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"566:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"556:6:12"},"nodeType":"YulFunctionCall","src":"556:12:12"},"nodeType":"YulExpressionStatement","src":"556:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"529:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"538:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"525:3:12"},"nodeType":"YulFunctionCall","src":"525:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"550:2:12","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"521:3:12"},"nodeType":"YulFunctionCall","src":"521:32:12"},"nodeType":"YulIf","src":"518:52:12"},{"nodeType":"YulVariableDeclaration","src":"579:29:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"598:9:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"592:5:12"},"nodeType":"YulFunctionCall","src":"592:16:12"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"583:5:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"671:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"680:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"683:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"673:6:12"},"nodeType":"YulFunctionCall","src":"673:12:12"},"nodeType":"YulExpressionStatement","src":"673:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"630:5:12"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"641:5:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"656:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"661:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"652:3:12"},"nodeType":"YulFunctionCall","src":"652:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"665:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"648:3:12"},"nodeType":"YulFunctionCall","src":"648:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"637:3:12"},"nodeType":"YulFunctionCall","src":"637:31:12"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"627:2:12"},"nodeType":"YulFunctionCall","src":"627:42:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"620:6:12"},"nodeType":"YulFunctionCall","src":"620:50:12"},"nodeType":"YulIf","src":"617:70:12"},{"nodeType":"YulAssignment","src":"696:15:12","value":{"name":"value","nodeType":"YulIdentifier","src":"706:5:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"696:6:12"}]},{"nodeType":"YulVariableDeclaration","src":"720:39:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"744:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"755:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"740:3:12"},"nodeType":"YulFunctionCall","src":"740:18:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"734:5:12"},"nodeType":"YulFunctionCall","src":"734:25:12"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"724:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"768:28:12","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"786:2:12","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"790:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"782:3:12"},"nodeType":"YulFunctionCall","src":"782:10:12"},{"kind":"number","nodeType":"YulLiteral","src":"794:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"778:3:12"},"nodeType":"YulFunctionCall","src":"778:18:12"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"772:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"823:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"832:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"835:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"825:6:12"},"nodeType":"YulFunctionCall","src":"825:12:12"},"nodeType":"YulExpressionStatement","src":"825:12:12"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"811:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"819:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"808:2:12"},"nodeType":"YulFunctionCall","src":"808:14:12"},"nodeType":"YulIf","src":"805:34:12"},{"nodeType":"YulVariableDeclaration","src":"848:32:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"862:9:12"},{"name":"offset","nodeType":"YulIdentifier","src":"873:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"858:3:12"},"nodeType":"YulFunctionCall","src":"858:22:12"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"852:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"928:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"937:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"940:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"930:6:12"},"nodeType":"YulFunctionCall","src":"930:12:12"},"nodeType":"YulExpressionStatement","src":"930:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"907:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"911:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"903:3:12"},"nodeType":"YulFunctionCall","src":"903:13:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"918:7:12"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"899:3:12"},"nodeType":"YulFunctionCall","src":"899:27:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"892:6:12"},"nodeType":"YulFunctionCall","src":"892:35:12"},"nodeType":"YulIf","src":"889:55:12"},{"nodeType":"YulVariableDeclaration","src":"953:19:12","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"969:2:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"963:5:12"},"nodeType":"YulFunctionCall","src":"963:9:12"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"957:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"995:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"997:16:12"},"nodeType":"YulFunctionCall","src":"997:18:12"},"nodeType":"YulExpressionStatement","src":"997:18:12"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"987:2:12"},{"name":"_1","nodeType":"YulIdentifier","src":"991:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"984:2:12"},"nodeType":"YulFunctionCall","src":"984:10:12"},"nodeType":"YulIf","src":"981:36:12"},{"nodeType":"YulVariableDeclaration","src":"1026:17:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1040:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1036:3:12"},"nodeType":"YulFunctionCall","src":"1036:7:12"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"1030:2:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1052:23:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1072:2:12","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1066:5:12"},"nodeType":"YulFunctionCall","src":"1066:9:12"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1056:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1084:71:12","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1106:6:12"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1130:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"1134:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1126:3:12"},"nodeType":"YulFunctionCall","src":"1126:13:12"},{"name":"_4","nodeType":"YulIdentifier","src":"1141:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1122:3:12"},"nodeType":"YulFunctionCall","src":"1122:22:12"},{"kind":"number","nodeType":"YulLiteral","src":"1146:2:12","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1118:3:12"},"nodeType":"YulFunctionCall","src":"1118:31:12"},{"name":"_4","nodeType":"YulIdentifier","src":"1151:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1114:3:12"},"nodeType":"YulFunctionCall","src":"1114:40:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1102:3:12"},"nodeType":"YulFunctionCall","src":"1102:53:12"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1088:10:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1214:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1216:16:12"},"nodeType":"YulFunctionCall","src":"1216:18:12"},"nodeType":"YulExpressionStatement","src":"1216:18:12"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1173:10:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1185:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1170:2:12"},"nodeType":"YulFunctionCall","src":"1170:18:12"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1193:10:12"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1205:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1190:2:12"},"nodeType":"YulFunctionCall","src":"1190:22:12"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1167:2:12"},"nodeType":"YulFunctionCall","src":"1167:46:12"},"nodeType":"YulIf","src":"1164:72:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1252:2:12","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1256:10:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1245:6:12"},"nodeType":"YulFunctionCall","src":"1245:22:12"},"nodeType":"YulExpressionStatement","src":"1245:22:12"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1283:6:12"},{"name":"_3","nodeType":"YulIdentifier","src":"1291:2:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1276:6:12"},"nodeType":"YulFunctionCall","src":"1276:18:12"},"nodeType":"YulExpressionStatement","src":"1276:18:12"},{"body":{"nodeType":"YulBlock","src":"1340:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1349:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1352:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1342:6:12"},"nodeType":"YulFunctionCall","src":"1342:12:12"},"nodeType":"YulExpressionStatement","src":"1342:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1317:2:12"},{"name":"_3","nodeType":"YulIdentifier","src":"1321:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1313:3:12"},"nodeType":"YulFunctionCall","src":"1313:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"1326:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1309:3:12"},"nodeType":"YulFunctionCall","src":"1309:20:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1331:7:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1306:2:12"},"nodeType":"YulFunctionCall","src":"1306:33:12"},"nodeType":"YulIf","src":"1303:53:12"},{"expression":{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1404:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"1408:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1400:3:12"},"nodeType":"YulFunctionCall","src":"1400:11:12"},{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1417:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"1425:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1413:3:12"},"nodeType":"YulFunctionCall","src":"1413:15:12"},{"name":"_3","nodeType":"YulIdentifier","src":"1430:2:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"1365:34:12"},"nodeType":"YulFunctionCall","src":"1365:68:12"},"nodeType":"YulExpressionStatement","src":"1365:68:12"},{"nodeType":"YulAssignment","src":"1442:16:12","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"1452:6:12"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1442:6:12"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"466:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"477:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"489:6:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"497:6:12","type":""}],"src":"401:1063:12"},{"body":{"nodeType":"YulBlock","src":"1643:235:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1660:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1671:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1653:6:12"},"nodeType":"YulFunctionCall","src":"1653:21:12"},"nodeType":"YulExpressionStatement","src":"1653:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1694:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1705:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1690:3:12"},"nodeType":"YulFunctionCall","src":"1690:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"1710:2:12","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1683:6:12"},"nodeType":"YulFunctionCall","src":"1683:30:12"},"nodeType":"YulExpressionStatement","src":"1683:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1733:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1744:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1729:3:12"},"nodeType":"YulFunctionCall","src":"1729:18:12"},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e","kind":"string","nodeType":"YulLiteral","src":"1749:34:12","type":"","value":"ERC1967: new implementation is n"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1722:6:12"},"nodeType":"YulFunctionCall","src":"1722:62:12"},"nodeType":"YulExpressionStatement","src":"1722:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1804:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1815:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1800:3:12"},"nodeType":"YulFunctionCall","src":"1800:18:12"},{"hexValue":"6f74206120636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"1820:15:12","type":"","value":"ot a contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1793:6:12"},"nodeType":"YulFunctionCall","src":"1793:43:12"},"nodeType":"YulExpressionStatement","src":"1793:43:12"},{"nodeType":"YulAssignment","src":"1845:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1857:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1868:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1853:3:12"},"nodeType":"YulFunctionCall","src":"1853:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1845:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1620:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1634:4:12","type":""}],"src":"1469:409:12"},{"body":{"nodeType":"YulBlock","src":"2020:150:12","statements":[{"nodeType":"YulVariableDeclaration","src":"2030:27:12","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2050:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2044:5:12"},"nodeType":"YulFunctionCall","src":"2044:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2034:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2105:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"2113:4:12","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2101:3:12"},"nodeType":"YulFunctionCall","src":"2101:17:12"},{"name":"pos","nodeType":"YulIdentifier","src":"2120:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"2125:6:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2066:34:12"},"nodeType":"YulFunctionCall","src":"2066:66:12"},"nodeType":"YulExpressionStatement","src":"2066:66:12"},{"nodeType":"YulAssignment","src":"2141:23:12","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2152:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"2157:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2148:3:12"},"nodeType":"YulFunctionCall","src":"2148:16:12"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"2141:3:12"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"1996:3:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2001:6:12","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2012:3:12","type":""}],"src":"1883:287:12"},{"body":{"nodeType":"YulBlock","src":"2349:179:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2366:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2377:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2359:6:12"},"nodeType":"YulFunctionCall","src":"2359:21:12"},"nodeType":"YulExpressionStatement","src":"2359:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2400:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2411:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2396:3:12"},"nodeType":"YulFunctionCall","src":"2396:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"2416:2:12","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2389:6:12"},"nodeType":"YulFunctionCall","src":"2389:30:12"},"nodeType":"YulExpressionStatement","src":"2389:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2439:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2450:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2435:3:12"},"nodeType":"YulFunctionCall","src":"2435:18:12"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"2455:31:12","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2428:6:12"},"nodeType":"YulFunctionCall","src":"2428:59:12"},"nodeType":"YulExpressionStatement","src":"2428:59:12"},{"nodeType":"YulAssignment","src":"2496:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2508:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2519:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2504:3:12"},"nodeType":"YulFunctionCall","src":"2504:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2496:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2326:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2340:4:12","type":""}],"src":"2175:353:12"},{"body":{"nodeType":"YulBlock","src":"2654:275:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2671:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2682:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2664:6:12"},"nodeType":"YulFunctionCall","src":"2664:21:12"},"nodeType":"YulExpressionStatement","src":"2664:21:12"},{"nodeType":"YulVariableDeclaration","src":"2694:27:12","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2714:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2708:5:12"},"nodeType":"YulFunctionCall","src":"2708:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2698:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2741:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2752:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2737:3:12"},"nodeType":"YulFunctionCall","src":"2737:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"2757:6:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2730:6:12"},"nodeType":"YulFunctionCall","src":"2730:34:12"},"nodeType":"YulExpressionStatement","src":"2730:34:12"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2812:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"2820:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2808:3:12"},"nodeType":"YulFunctionCall","src":"2808:15:12"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2829:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2840:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2825:3:12"},"nodeType":"YulFunctionCall","src":"2825:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"2845:6:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2773:34:12"},"nodeType":"YulFunctionCall","src":"2773:79:12"},"nodeType":"YulExpressionStatement","src":"2773:79:12"},{"nodeType":"YulAssignment","src":"2861:62:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2877:9:12"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2896:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"2904:2:12","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2892:3:12"},"nodeType":"YulFunctionCall","src":"2892:15:12"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2913:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2909:3:12"},"nodeType":"YulFunctionCall","src":"2909:7:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2888:3:12"},"nodeType":"YulFunctionCall","src":"2888:29:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2873:3:12"},"nodeType":"YulFunctionCall","src":"2873:45:12"},{"kind":"number","nodeType":"YulLiteral","src":"2920:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2869:3:12"},"nodeType":"YulFunctionCall","src":"2869:54:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2861:4:12"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2623:9:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2634:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2645:4:12","type":""}],"src":"2533:396:12"}]},"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 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_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let value := mload(headStart)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n value0 := value\n let offset := mload(add(headStart, 32))\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := mload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n copy_memory_to_memory_with_cleanup(add(_2, 32), add(memPtr, 32), _3)\n value1 := memPtr\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: call to non-contract\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory_with_cleanup(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}","id":12,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040526040516104c43803806104c4833981016040819052610022916102d2565b61002d82825f610034565b50506103e7565b61003d8361005f565b5f825111806100495750805b1561005a57610058838361009e565b505b505050565b610068816100ca565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606100c3838360405180606001604052806027815260200161049d6027913961017d565b9392505050565b6001600160a01b0381163b61013c5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80856001600160a01b031685604051610199919061039a565b5f60405180830381855af49150503d805f81146101d1576040519150601f19603f3d011682016040523d82523d5f602084013e6101d6565b606091505b5090925090506101e8868383876101f2565b9695505050505050565b606083156102605782515f03610259576001600160a01b0385163b6102595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610133565b508161026a565b61026a8383610272565b949350505050565b8151156102825781518083602001fd5b8060405162461bcd60e51b815260040161013391906103b5565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156102ca5781810151838201526020016102b2565b50505f910152565b5f80604083850312156102e3575f80fd5b82516001600160a01b03811681146102f9575f80fd5b60208401519092506001600160401b0380821115610315575f80fd5b818501915085601f830112610328575f80fd5b81518181111561033a5761033a61029c565b604051601f8201601f19908116603f011681019083821181831017156103625761036261029c565b8160405282815288602084870101111561037a575f80fd5b61038b8360208301602088016102b0565b80955050505050509250929050565b5f82516103ab8184602087016102b0565b9190910192915050565b602081525f82518060208401526103d38160408501602087016102b0565b601f01601f19169190910160400192915050565b60aa806103f35f395ff3fe608060405236601057600e6013565b005b600e5b601f601b6021565b6057565b565b5f60527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f80375f80365f845af43d5f803e8080156070573d5ff35b3d5ffdfea26469706673582212200f656825a696a173689ce29ed8758f7e01e5a49baca5aeea7f01dba2331dcbf164736f6c63430008140033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x4C4 CODESIZE SUB DUP1 PUSH2 0x4C4 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x2D2 JUMP JUMPDEST PUSH2 0x2D DUP3 DUP3 PUSH0 PUSH2 0x34 JUMP JUMPDEST POP POP PUSH2 0x3E7 JUMP JUMPDEST PUSH2 0x3D DUP4 PUSH2 0x5F JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH2 0x49 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x5A JUMPI PUSH2 0x58 DUP4 DUP4 PUSH2 0x9E JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x68 DUP2 PUSH2 0xCA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xC3 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x49D PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x17D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH2 0x13C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x199 SWAP2 SWAP1 PUSH2 0x39A JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1D1 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 0x1D6 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x1E8 DUP7 DUP4 DUP4 DUP8 PUSH2 0x1F2 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x260 JUMPI DUP3 MLOAD PUSH0 SUB PUSH2 0x259 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x259 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x133 JUMP JUMPDEST POP DUP2 PUSH2 0x26A JUMP JUMPDEST PUSH2 0x26A DUP4 DUP4 PUSH2 0x272 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x282 JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x133 SWAP2 SWAP1 PUSH2 0x3B5 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 0x2CA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2B2 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2E3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2F9 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x315 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x328 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x33A JUMPI PUSH2 0x33A PUSH2 0x29C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x362 JUMPI PUSH2 0x362 PUSH2 0x29C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x37A JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x38B DUP4 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x2B0 JUMP JUMPDEST DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x3AB DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2B0 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x3D3 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x2B0 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xAA DUP1 PUSH2 0x3F3 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH1 0x10 JUMPI PUSH1 0xE PUSH1 0x13 JUMP JUMPDEST STOP JUMPDEST PUSH1 0xE JUMPDEST PUSH1 0x1F PUSH1 0x1B PUSH1 0x21 JUMP JUMPDEST PUSH1 0x57 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x52 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x70 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF PUSH6 0x6825A696A173 PUSH9 0x9CE29ED8758F7E01E5 LOG4 SWAP12 0xAC 0xA5 0xAE 0xEA PUSH32 0x1DBA2331DCBF164736F6C63430008140033416464726573733A206C6F772D6C PUSH6 0x76656C206465 PUSH13 0x65676174652063616C6C206661 PUSH10 0x6C656400000000000000 ","sourceMap":"567:723:3:-:0;;;958:112;;;;;;;;;;;;;;;;;;:::i;:::-;1024:39;1042:6;1050:5;1057;1024:17;:39::i;:::-;958:112;;567:723;;2057:265:4;2165:29;2176:17;2165:10;:29::i;:::-;2222:1;2208:4;:11;:15;:28;;;;2227:9;2208:28;2204:112;;;2252:53;2281:17;2300:4;2252:28;:53::i;:::-;;2204:112;2057:265;;;:::o;1771:152::-;1837:37;1856:17;1837:18;:37::i;:::-;1889:27;;-1:-1:-1;;;;;1889:27:4;;;;;;;;1771:152;:::o;6674:198:9:-;6757:12;6788:77;6809:6;6817:4;6788:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6781:84;6674:198;-1:-1:-1;;;6674:198:9:o;1406:259:4:-;-1:-1:-1;;;;;1702:19:9;;;1479:95:4;;;;-1:-1:-1;;;1479:95:4;;1671:2:12;1479:95:4;;;1653:21:12;1710:2;1690:18;;;1683:30;1749:34;1729:18;;;1722:62;-1:-1:-1;;;1800:18:12;;;1793:43;1853:19;;1479:95:4;;;;;;;;;1030:66;1584:74;;-1:-1:-1;;;;;;1584:74:4;-1:-1:-1;;;;;1584:74:4;;;;;;;;;;1406:259::o;7058:325:9:-;7199:12;7224;7238:23;7265:6;-1:-1:-1;;;;;7265:19:9;7285:4;7265:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7223:67:9;;-1:-1:-1;7223:67:9;-1:-1:-1;7307:69:9;7334:6;7223:67;;7363:12;7307:26;:69::i;:::-;7300:76;7058:325;-1:-1:-1;;;;;;7058:325:9:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;-1:-1:-1;;;;;1702:19:9;;;8113:60;;;;-1:-1:-1;;;8113:60:9;;2377:2:12;8113:60:9;;;2359:21:12;2416:2;2396:18;;;2389:30;2455:31;2435:18;;;2428:59;2504:18;;8113:60:9;2175:353:12;8113:60:9;-1:-1:-1;8208:10:9;8201:17;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;:::o;8821:540::-;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;-1:-1:-1;;;9324:20:9;;;;;;;;:::i;14:127:12:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:250;231:1;241:113;255:6;252:1;249:13;241:113;;;331:11;;;325:18;312:11;;;305:39;277:2;270:10;241:113;;;-1:-1:-1;;388:1:12;370:16;;363:27;146:250::o;401:1063::-;489:6;497;550:2;538:9;529:7;525:23;521:32;518:52;;;566:1;563;556:12;518:52;592:16;;-1:-1:-1;;;;;637:31:12;;627:42;;617:70;;683:1;680;673:12;617:70;755:2;740:18;;734:25;706:5;;-1:-1:-1;;;;;;808:14:12;;;805:34;;;835:1;832;825:12;805:34;873:6;862:9;858:22;848:32;;918:7;911:4;907:2;903:13;899:27;889:55;;940:1;937;930:12;889:55;969:2;963:9;991:2;987;984:10;981:36;;;997:18;;:::i;:::-;1072:2;1066:9;1040:2;1126:13;;-1:-1:-1;;1122:22:12;;;1146:2;1118:31;1114:40;1102:53;;;1170:18;;;1190:22;;;1167:46;1164:72;;;1216:18;;:::i;:::-;1256:10;1252:2;1245:22;1291:2;1283:6;1276:18;1331:7;1326:2;1321;1317;1313:11;1309:20;1306:33;1303:53;;;1352:1;1349;1342:12;1303:53;1365:68;1430:2;1425;1417:6;1413:15;1408:2;1404;1400:11;1365:68;:::i;:::-;1452:6;1442:16;;;;;;;401:1063;;;;;:::o;1883:287::-;2012:3;2050:6;2044:13;2066:66;2125:6;2120:3;2113:4;2105:6;2101:17;2066:66;:::i;:::-;2148:16;;;;;1883:287;-1:-1:-1;;1883:287:12:o;2533:396::-;2682:2;2671:9;2664:21;2645:4;2714:6;2708:13;2757:6;2752:2;2741:9;2737:18;2730:34;2773:79;2845:6;2840:2;2829:9;2825:18;2820:2;2812:6;2808:15;2773:79;:::i;:::-;2913:2;2892:15;-1:-1:-1;;2888:29:12;2873:45;;;;2920:2;2869:54;;2533:396;-1:-1:-1;;2533:396:12:o;:::-;567:723:3;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_522":{"entryPoint":null,"id":522,"parameterSlots":0,"returnSlots":0},"@_530":{"entryPoint":null,"id":530,"parameterSlots":0,"returnSlots":0},"@_beforeFallback_535":{"entryPoint":null,"id":535,"parameterSlots":0,"returnSlots":0},"@_delegate_495":{"entryPoint":87,"id":495,"parameterSlots":1,"returnSlots":0},"@_fallback_514":{"entryPoint":19,"id":514,"parameterSlots":0,"returnSlots":0},"@_getImplementation_210":{"entryPoint":null,"id":210,"parameterSlots":0,"returnSlots":1},"@_implementation_179":{"entryPoint":33,"id":179,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_1397":{"entryPoint":null,"id":1397,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"608060405236601057600e6013565b005b600e5b601f601b6021565b6057565b565b5f60527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f80375f80365f845af43d5f803e8080156070573d5ff35b3d5ffdfea26469706673582212200f656825a696a173689ce29ed8758f7e01e5a49baca5aeea7f01dba2331dcbf164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH1 0x10 JUMPI PUSH1 0xE PUSH1 0x13 JUMP JUMPDEST STOP JUMPDEST PUSH1 0xE JUMPDEST PUSH1 0x1F PUSH1 0x1B PUSH1 0x21 JUMP JUMPDEST PUSH1 0x57 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x52 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x70 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF PUSH6 0x6825A696A173 PUSH9 0x9CE29ED8758F7E01E5 LOG4 SWAP12 0xAC 0xA5 0xAE 0xEA PUSH32 0x1DBA2331DCBF164736F6C634300081400330000000000000000000000000000 ","sourceMap":"567:723:3:-:0;;;;;;2898:11:5;:9;:11::i;:::-;567:723:3;;2675:11:5;2322:110;2397:28;2407:17;:15;:17::i;:::-;2397:9;:28::i;:::-;2322:110::o;1148:140:3:-;1215:12;1246:35;1030:66:4;1254:54;-1:-1:-1;;;;;1254:54:4;;1175:140;1246:35:3;1239:42;;1148:140;:::o;948:895:5:-;1286:14;1283:1;1280;1267:34;1500:1;1497;1481:14;1478:1;1462:14;1455:5;1442:60;1576:16;1573:1;1570;1555:38;1614:6;1681:66;;;;1796:16;1793:1;1786:27;1681:66;1716:16;1713:1;1706:27"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `_logic`. If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":\"ERC1967Proxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol":{"ERC1967Upgrade":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"This abstract contract provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. _Available since v4.1._\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_ADMIN_SLOT\":{\"details\":\"Storage slot with the admin of the contract. This is the keccak-256 hash of \\\"eip1967.proxy.admin\\\" subtracted by 1, and is validated in the constructor.\"},\"_BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\"},\"_IMPLEMENTATION_SLOT\":{\"details\":\"Storage slot with the address of the current implementation. This is the keccak-256 hash of \\\"eip1967.proxy.implementation\\\" subtracted by 1, and is validated in the constructor.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":\"ERC1967Upgrade\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol":{"Proxy":{"abi":[{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":\"Proxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol":{"IBeacon":{"abi":[{"inputs":[],"name":"implementation","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":{"implementation()":"5c60da1b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is the interface that {BeaconProxy} expects of its beacon.\",\"kind\":\"dev\",\"methods\":{\"implementation()\":{\"details\":\"Must return an address that can be used as a delegate call target. {BeaconProxy} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":\"IBeacon\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol":{"ProxyAdmin":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"},{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeProxyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"}],"name":"getProxyAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"}],"name":"getProxyImplementation","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"},{"internalType":"address","name":"implementation","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITransparentUpgradeableProxy","name":"proxy","type":"address"},{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_23":{"entryPoint":null,"id":23,"parameterSlots":0,"returnSlots":0},"@_msgSender_1347":{"entryPoint":null,"id":1347,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_111":{"entryPoint":30,"id":111,"parameterSlots":1,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"608060405234801561000f575f80fd5b506100193361001e565b61006d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6106618061007a5f395ff3fe608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x19 CALLER PUSH2 0x1E JUMP JUMPDEST PUSH2 0x6D 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 0x661 DUP1 PUSH2 0x7A PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x79 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x9623609D GT PUSH2 0x4C JUMPI DUP1 PUSH4 0x9623609D EQ PUSH2 0x109 JUMPI DUP1 PUSH4 0x99A88EC4 EQ PUSH2 0x11C JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xF3B7DEAD EQ PUSH2 0x15A JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x204E1C7A EQ PUSH2 0x7D JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0x7EFF275E EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xED JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x9C PUSH2 0x97 CALLDATASIZE PUSH1 0x4 PUSH2 0x479 JUMP JUMPDEST PUSH2 0x179 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 CALLVALUE DUP1 ISZERO PUSH2 0xC3 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0x204 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0xE8 CALLDATASIZE PUSH1 0x4 PUSH2 0x49B JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9C JUMP JUMPDEST PUSH2 0xCC PUSH2 0x117 CALLDATASIZE PUSH1 0x4 PUSH2 0x4E6 JUMP JUMPDEST PUSH2 0x27A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x127 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0x136 CALLDATASIZE PUSH1 0x4 PUSH2 0x49B JUMP JUMPDEST PUSH2 0x2E5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x146 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0x479 JUMP JUMPDEST PUSH2 0x31B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x165 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x9C PUSH2 0x174 CALLDATASIZE PUSH1 0x4 PUSH2 0x479 JUMP JUMPDEST PUSH2 0x399 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x40 MLOAD PUSH2 0x19D SWAP1 PUSH4 0x5C60DA1B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1D5 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 0x1DA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x5B5 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x20C PUSH2 0x3BD JUMP JUMPDEST PUSH2 0x215 PUSH0 PUSH2 0x416 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x21F PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8F28397 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x8F283970 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x260 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x272 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x282 PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x278F7943 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x4F1EF286 SWAP1 CALLVALUE SWAP1 PUSH2 0x2B2 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x5D0 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2C9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2DB JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2ED PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1B2CE7F3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x3659CFE6 SWAP1 PUSH1 0x24 ADD PUSH2 0x249 JUMP JUMPDEST PUSH2 0x323 PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x38D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x396 DUP2 PUSH2 0x416 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x40 MLOAD PUSH2 0x19D SWAP1 PUSH4 0x3E14691 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 ADD SWAP1 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x215 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x384 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x396 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x489 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x494 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4AC JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B7 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4C7 DUP2 PUSH2 0x465 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4F8 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x503 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x513 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x52F JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x542 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x554 JUMPI PUSH2 0x554 PUSH2 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x57C JUMPI PUSH2 0x57C PUSH2 0x4D2 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP10 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x594 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5C5 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x494 DUP2 PUSH2 0x465 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH0 PUSH1 0x20 PUSH1 0x40 DUP2 DUP5 ADD MSTORE DUP4 MLOAD DUP1 PUSH1 0x40 DUP6 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x60A JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x60 ADD MSTORE DUP3 ADD PUSH2 0x5EE JUMP JUMPDEST POP PUSH0 PUSH1 0x60 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x60 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDMOD SAR CODECOPY PC 0xC5 0xD8 0xC1 BYTE PUSH9 0x5EDD579E3339C71D92 0xB6 PUSH22 0xDCFF63A671429EF1422BEE4064736F6C634300081400 CALLER ","sourceMap":"450:2409:7:-:0;;;;;;;;;;;;-1:-1:-1;936:32:0;734:10:10;936:18:0;:32::i;:::-;450:2409:7;;2426:187:0;2499:16;2518:6;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;450:2409:7:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_54":{"entryPoint":957,"id":54,"parameterSlots":0,"returnSlots":0},"@_msgSender_1347":{"entryPoint":null,"id":1347,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_111":{"entryPoint":1046,"id":111,"parameterSlots":1,"returnSlots":0},"@changeProxyAdmin_639":{"entryPoint":535,"id":639,"parameterSlots":2,"returnSlots":0},"@getProxyAdmin_621":{"entryPoint":921,"id":621,"parameterSlots":1,"returnSlots":1},"@getProxyImplementation_587":{"entryPoint":377,"id":587,"parameterSlots":1,"returnSlots":1},"@owner_40":{"entryPoint":null,"id":40,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_68":{"entryPoint":516,"id":68,"parameterSlots":0,"returnSlots":0},"@transferOwnership_91":{"entryPoint":795,"id":91,"parameterSlots":1,"returnSlots":0},"@upgradeAndCall_681":{"entryPoint":634,"id":681,"parameterSlots":3,"returnSlots":0},"@upgrade_657":{"entryPoint":741,"id":657,"parameterSlots":2,"returnSlots":0},"abi_decode_tuple_t_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payable_fromMemory":{"entryPoint":1461,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716":{"entryPoint":1145,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716t_address":{"entryPoint":1179,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716t_addresst_bytes_memory_ptr":{"entryPoint":1254,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_packed_t_stringliteral_96a4c6be7716f5be15d118c16bd1d464cb27f01187d0b9218993a5d488a47c29__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_cb23cf6c353ccb16f0d92c8e6b5c5b425654e65dd07e2d295b394de4cf15afb7__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes_memory_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":1488,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x41":{"entryPoint":1234,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_ITransparentUpgradeableProxy":{"entryPoint":1125,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5158:12","statements":[{"nodeType":"YulBlock","src":"6:3:12","statements":[]},{"body":{"nodeType":"YulBlock","src":"89:86:12","statements":[{"body":{"nodeType":"YulBlock","src":"153:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"162:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"165:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"155:6:12"},"nodeType":"YulFunctionCall","src":"155:12:12"},"nodeType":"YulExpressionStatement","src":"155:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"112:5:12"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"123:5:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"138:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"143:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"134:3:12"},"nodeType":"YulFunctionCall","src":"134:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"147:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"130:3:12"},"nodeType":"YulFunctionCall","src":"130:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"119:3:12"},"nodeType":"YulFunctionCall","src":"119:31:12"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"109:2:12"},"nodeType":"YulFunctionCall","src":"109:42:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"102:6:12"},"nodeType":"YulFunctionCall","src":"102:50:12"},"nodeType":"YulIf","src":"99:70:12"}]},"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"78:5:12","type":""}],"src":"14:161:12"},{"body":{"nodeType":"YulBlock","src":"286:207:12","statements":[{"body":{"nodeType":"YulBlock","src":"332:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"341:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"344:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"334:6:12"},"nodeType":"YulFunctionCall","src":"334:12:12"},"nodeType":"YulExpressionStatement","src":"334:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"307:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"316:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"303:3:12"},"nodeType":"YulFunctionCall","src":"303:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"328:2:12","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"299:3:12"},"nodeType":"YulFunctionCall","src":"299:32:12"},"nodeType":"YulIf","src":"296:52:12"},{"nodeType":"YulVariableDeclaration","src":"357:36:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"383:9:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"370:12:12"},"nodeType":"YulFunctionCall","src":"370:23:12"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"361:5:12","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"457:5:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"402:54:12"},"nodeType":"YulFunctionCall","src":"402:61:12"},"nodeType":"YulExpressionStatement","src":"402:61:12"},{"nodeType":"YulAssignment","src":"472:15:12","value":{"name":"value","nodeType":"YulIdentifier","src":"482:5:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"472:6:12"}]}]},"name":"abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"252:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"263:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"275:6:12","type":""}],"src":"180:313:12"},{"body":{"nodeType":"YulBlock","src":"599:102:12","statements":[{"nodeType":"YulAssignment","src":"609:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"621:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"632:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"617:3:12"},"nodeType":"YulFunctionCall","src":"617:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"609:4:12"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"651:9:12"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"666:6:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"682:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"687:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"678:3:12"},"nodeType":"YulFunctionCall","src":"678:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"691:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"674:3:12"},"nodeType":"YulFunctionCall","src":"674:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"662:3:12"},"nodeType":"YulFunctionCall","src":"662:32:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"644:6:12"},"nodeType":"YulFunctionCall","src":"644:51:12"},"nodeType":"YulExpressionStatement","src":"644:51:12"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"568:9:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"579:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"590:4:12","type":""}],"src":"498:203:12"},{"body":{"nodeType":"YulBlock","src":"829:361:12","statements":[{"body":{"nodeType":"YulBlock","src":"875:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"884:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"887:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"877:6:12"},"nodeType":"YulFunctionCall","src":"877:12:12"},"nodeType":"YulExpressionStatement","src":"877:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"850:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"859:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"846:3:12"},"nodeType":"YulFunctionCall","src":"846:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"871:2:12","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"842:3:12"},"nodeType":"YulFunctionCall","src":"842:32:12"},"nodeType":"YulIf","src":"839:52:12"},{"nodeType":"YulVariableDeclaration","src":"900:36:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"926:9:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"913:12:12"},"nodeType":"YulFunctionCall","src":"913:23:12"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"904:5:12","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1000:5:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"945:54:12"},"nodeType":"YulFunctionCall","src":"945:61:12"},"nodeType":"YulExpressionStatement","src":"945:61:12"},{"nodeType":"YulAssignment","src":"1015:15:12","value":{"name":"value","nodeType":"YulIdentifier","src":"1025:5:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1015:6:12"}]},{"nodeType":"YulVariableDeclaration","src":"1039:47:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1071:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1082:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1067:3:12"},"nodeType":"YulFunctionCall","src":"1067:18:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1054:12:12"},"nodeType":"YulFunctionCall","src":"1054:32:12"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"1043:7:12","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"1150:7:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"1095:54:12"},"nodeType":"YulFunctionCall","src":"1095:63:12"},"nodeType":"YulExpressionStatement","src":"1095:63:12"},{"nodeType":"YulAssignment","src":"1167:17:12","value":{"name":"value_1","nodeType":"YulIdentifier","src":"1177:7:12"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1167:6:12"}]}]},"name":"abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"787:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"798:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"810:6:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"818:6:12","type":""}],"src":"706:484:12"},{"body":{"nodeType":"YulBlock","src":"1227:95:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1244:1:12","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1251:3:12","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1256:10:12","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1247:3:12"},"nodeType":"YulFunctionCall","src":"1247:20:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1237:6:12"},"nodeType":"YulFunctionCall","src":"1237:31:12"},"nodeType":"YulExpressionStatement","src":"1237:31:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1284:1:12","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1287:4:12","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1277:6:12"},"nodeType":"YulFunctionCall","src":"1277:15:12"},"nodeType":"YulExpressionStatement","src":"1277:15:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1308:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1311:4:12","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1301:6:12"},"nodeType":"YulFunctionCall","src":"1301:15:12"},"nodeType":"YulExpressionStatement","src":"1301:15:12"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"1195:127:12"},{"body":{"nodeType":"YulBlock","src":"1476:1144:12","statements":[{"body":{"nodeType":"YulBlock","src":"1522:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1531:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1534:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1524:6:12"},"nodeType":"YulFunctionCall","src":"1524:12:12"},"nodeType":"YulExpressionStatement","src":"1524:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1497:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"1506:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1493:3:12"},"nodeType":"YulFunctionCall","src":"1493:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"1518:2:12","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1489:3:12"},"nodeType":"YulFunctionCall","src":"1489:32:12"},"nodeType":"YulIf","src":"1486:52:12"},{"nodeType":"YulVariableDeclaration","src":"1547:36:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1573:9:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1560:12:12"},"nodeType":"YulFunctionCall","src":"1560:23:12"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"1551:5:12","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1647:5:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"1592:54:12"},"nodeType":"YulFunctionCall","src":"1592:61:12"},"nodeType":"YulExpressionStatement","src":"1592:61:12"},{"nodeType":"YulAssignment","src":"1662:15:12","value":{"name":"value","nodeType":"YulIdentifier","src":"1672:5:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1662:6:12"}]},{"nodeType":"YulVariableDeclaration","src":"1686:47:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1718:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1729:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1714:3:12"},"nodeType":"YulFunctionCall","src":"1714:18:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1701:12:12"},"nodeType":"YulFunctionCall","src":"1701:32:12"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"1690:7:12","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"1797:7:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"1742:54:12"},"nodeType":"YulFunctionCall","src":"1742:63:12"},"nodeType":"YulExpressionStatement","src":"1742:63:12"},{"nodeType":"YulAssignment","src":"1814:17:12","value":{"name":"value_1","nodeType":"YulIdentifier","src":"1824:7:12"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1814:6:12"}]},{"nodeType":"YulVariableDeclaration","src":"1840:46:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1871:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1882:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1867:3:12"},"nodeType":"YulFunctionCall","src":"1867:18:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1854:12:12"},"nodeType":"YulFunctionCall","src":"1854:32:12"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1844:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1895:28:12","value":{"kind":"number","nodeType":"YulLiteral","src":"1905:18:12","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1899:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1950:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1959:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1962:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1952:6:12"},"nodeType":"YulFunctionCall","src":"1952:12:12"},"nodeType":"YulExpressionStatement","src":"1952:12:12"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1938:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1946:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1935:2:12"},"nodeType":"YulFunctionCall","src":"1935:14:12"},"nodeType":"YulIf","src":"1932:34:12"},{"nodeType":"YulVariableDeclaration","src":"1975:32:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1989:9:12"},{"name":"offset","nodeType":"YulIdentifier","src":"2000:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1985:3:12"},"nodeType":"YulFunctionCall","src":"1985:22:12"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1979:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"2055:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2064:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2067:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2057:6:12"},"nodeType":"YulFunctionCall","src":"2057:12:12"},"nodeType":"YulExpressionStatement","src":"2057:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2034:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"2038:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2030:3:12"},"nodeType":"YulFunctionCall","src":"2030:13:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2045:7:12"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2026:3:12"},"nodeType":"YulFunctionCall","src":"2026:27:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2019:6:12"},"nodeType":"YulFunctionCall","src":"2019:35:12"},"nodeType":"YulIf","src":"2016:55:12"},{"nodeType":"YulVariableDeclaration","src":"2080:26:12","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2103:2:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2090:12:12"},"nodeType":"YulFunctionCall","src":"2090:16:12"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"2084:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"2129:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2131:16:12"},"nodeType":"YulFunctionCall","src":"2131:18:12"},"nodeType":"YulExpressionStatement","src":"2131:18:12"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"2121:2:12"},{"name":"_1","nodeType":"YulIdentifier","src":"2125:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2118:2:12"},"nodeType":"YulFunctionCall","src":"2118:10:12"},"nodeType":"YulIf","src":"2115:36:12"},{"nodeType":"YulVariableDeclaration","src":"2160:17:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2174:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2170:3:12"},"nodeType":"YulFunctionCall","src":"2170:7:12"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"2164:2:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2186:23:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2206:2:12","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2200:5:12"},"nodeType":"YulFunctionCall","src":"2200:9:12"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"2190:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2218:71:12","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2240:6:12"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"2264:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"2268:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2260:3:12"},"nodeType":"YulFunctionCall","src":"2260:13:12"},{"name":"_4","nodeType":"YulIdentifier","src":"2275:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2256:3:12"},"nodeType":"YulFunctionCall","src":"2256:22:12"},{"kind":"number","nodeType":"YulLiteral","src":"2280:2:12","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2252:3:12"},"nodeType":"YulFunctionCall","src":"2252:31:12"},{"name":"_4","nodeType":"YulIdentifier","src":"2285:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2248:3:12"},"nodeType":"YulFunctionCall","src":"2248:40:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2236:3:12"},"nodeType":"YulFunctionCall","src":"2236:53:12"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"2222:10:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"2348:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2350:16:12"},"nodeType":"YulFunctionCall","src":"2350:18:12"},"nodeType":"YulExpressionStatement","src":"2350:18:12"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2307:10:12"},{"name":"_1","nodeType":"YulIdentifier","src":"2319:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2304:2:12"},"nodeType":"YulFunctionCall","src":"2304:18:12"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2327:10:12"},{"name":"memPtr","nodeType":"YulIdentifier","src":"2339:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2324:2:12"},"nodeType":"YulFunctionCall","src":"2324:22:12"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2301:2:12"},"nodeType":"YulFunctionCall","src":"2301:46:12"},"nodeType":"YulIf","src":"2298:72:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2386:2:12","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2390:10:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2379:6:12"},"nodeType":"YulFunctionCall","src":"2379:22:12"},"nodeType":"YulExpressionStatement","src":"2379:22:12"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2417:6:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2425:2:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2410:6:12"},"nodeType":"YulFunctionCall","src":"2410:18:12"},"nodeType":"YulExpressionStatement","src":"2410:18:12"},{"body":{"nodeType":"YulBlock","src":"2474:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2483:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2486:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2476:6:12"},"nodeType":"YulFunctionCall","src":"2476:12:12"},"nodeType":"YulExpressionStatement","src":"2476:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2451:2:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2455:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2447:3:12"},"nodeType":"YulFunctionCall","src":"2447:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"2460:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2443:3:12"},"nodeType":"YulFunctionCall","src":"2443:20:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2465:7:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2440:2:12"},"nodeType":"YulFunctionCall","src":"2440:33:12"},"nodeType":"YulIf","src":"2437:53:12"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2516:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"2524:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2512:3:12"},"nodeType":"YulFunctionCall","src":"2512:15:12"},{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2533:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"2537:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2529:3:12"},"nodeType":"YulFunctionCall","src":"2529:11:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2542:2:12"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"2499:12:12"},"nodeType":"YulFunctionCall","src":"2499:46:12"},"nodeType":"YulExpressionStatement","src":"2499:46:12"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2569:6:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2577:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2565:3:12"},"nodeType":"YulFunctionCall","src":"2565:15:12"},{"kind":"number","nodeType":"YulLiteral","src":"2582:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2561:3:12"},"nodeType":"YulFunctionCall","src":"2561:24:12"},{"kind":"number","nodeType":"YulLiteral","src":"2587:1:12","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2554:6:12"},"nodeType":"YulFunctionCall","src":"2554:35:12"},"nodeType":"YulExpressionStatement","src":"2554:35:12"},{"nodeType":"YulAssignment","src":"2598:16:12","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"2608:6:12"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"2598:6:12"}]}]},"name":"abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716t_addresst_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1426:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1437:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1449:6:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1457:6:12","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1465:6:12","type":""}],"src":"1327:1293:12"},{"body":{"nodeType":"YulBlock","src":"2695:207:12","statements":[{"body":{"nodeType":"YulBlock","src":"2741:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2750:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2753:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2743:6:12"},"nodeType":"YulFunctionCall","src":"2743:12:12"},"nodeType":"YulExpressionStatement","src":"2743:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2716:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"2725:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2712:3:12"},"nodeType":"YulFunctionCall","src":"2712:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"2737:2:12","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2708:3:12"},"nodeType":"YulFunctionCall","src":"2708:32:12"},"nodeType":"YulIf","src":"2705:52:12"},{"nodeType":"YulVariableDeclaration","src":"2766:36:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2792:9:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2779:12:12"},"nodeType":"YulFunctionCall","src":"2779:23:12"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"2770:5:12","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2866:5:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"2811:54:12"},"nodeType":"YulFunctionCall","src":"2811:61:12"},"nodeType":"YulExpressionStatement","src":"2811:61:12"},{"nodeType":"YulAssignment","src":"2881:15:12","value":{"name":"value","nodeType":"YulIdentifier","src":"2891:5:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2881:6:12"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2661:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2672:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2684:6:12","type":""}],"src":"2625:277:12"},{"body":{"nodeType":"YulBlock","src":"3098:76:12","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3115:3:12"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3124:3:12","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3129:10:12","type":"","value":"0x5c60da1b"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3120:3:12"},"nodeType":"YulFunctionCall","src":"3120:20:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3108:6:12"},"nodeType":"YulFunctionCall","src":"3108:33:12"},"nodeType":"YulExpressionStatement","src":"3108:33:12"},{"nodeType":"YulAssignment","src":"3150:18:12","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3161:3:12"},{"kind":"number","nodeType":"YulLiteral","src":"3166:1:12","type":"","value":"4"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3157:3:12"},"nodeType":"YulFunctionCall","src":"3157:11:12"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"3150:3:12"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_96a4c6be7716f5be15d118c16bd1d464cb27f01187d0b9218993a5d488a47c29__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"3082:3:12","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"3090:3:12","type":""}],"src":"2907:267:12"},{"body":{"nodeType":"YulBlock","src":"3268:200:12","statements":[{"body":{"nodeType":"YulBlock","src":"3314:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3323:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3326:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3316:6:12"},"nodeType":"YulFunctionCall","src":"3316:12:12"},"nodeType":"YulExpressionStatement","src":"3316:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3289:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"3298:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3285:3:12"},"nodeType":"YulFunctionCall","src":"3285:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"3310:2:12","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3281:3:12"},"nodeType":"YulFunctionCall","src":"3281:32:12"},"nodeType":"YulIf","src":"3278:52:12"},{"nodeType":"YulVariableDeclaration","src":"3339:29:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3358:9:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3352:5:12"},"nodeType":"YulFunctionCall","src":"3352:16:12"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3343:5:12","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3432:5:12"}],"functionName":{"name":"validator_revert_contract_ITransparentUpgradeableProxy","nodeType":"YulIdentifier","src":"3377:54:12"},"nodeType":"YulFunctionCall","src":"3377:61:12"},"nodeType":"YulExpressionStatement","src":"3377:61:12"},{"nodeType":"YulAssignment","src":"3447:15:12","value":{"name":"value","nodeType":"YulIdentifier","src":"3457:5:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3447:6:12"}]}]},"name":"abi_decode_tuple_t_address_payable_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3234:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3245:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3257:6:12","type":""}],"src":"3179:289:12"},{"body":{"nodeType":"YulBlock","src":"3620:496:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3637:9:12"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3652:6:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3668:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3673:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3664:3:12"},"nodeType":"YulFunctionCall","src":"3664:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"3677:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3660:3:12"},"nodeType":"YulFunctionCall","src":"3660:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3648:3:12"},"nodeType":"YulFunctionCall","src":"3648:32:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3630:6:12"},"nodeType":"YulFunctionCall","src":"3630:51:12"},"nodeType":"YulExpressionStatement","src":"3630:51:12"},{"nodeType":"YulVariableDeclaration","src":"3690:12:12","value":{"kind":"number","nodeType":"YulLiteral","src":"3700:2:12","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"3694:2:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3722:9:12"},{"name":"_1","nodeType":"YulIdentifier","src":"3733:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3718:3:12"},"nodeType":"YulFunctionCall","src":"3718:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"3738:2:12","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3711:6:12"},"nodeType":"YulFunctionCall","src":"3711:30:12"},"nodeType":"YulExpressionStatement","src":"3711:30:12"},{"nodeType":"YulVariableDeclaration","src":"3750:27:12","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"3770:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3764:5:12"},"nodeType":"YulFunctionCall","src":"3764:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"3754:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3797:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3808:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3793:3:12"},"nodeType":"YulFunctionCall","src":"3793:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"3813:6:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3786:6:12"},"nodeType":"YulFunctionCall","src":"3786:34:12"},"nodeType":"YulExpressionStatement","src":"3786:34:12"},{"nodeType":"YulVariableDeclaration","src":"3829:10:12","value":{"kind":"number","nodeType":"YulLiteral","src":"3838:1:12","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3833:1:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"3898:90:12","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3927:9:12"},{"name":"i","nodeType":"YulIdentifier","src":"3938:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3923:3:12"},"nodeType":"YulFunctionCall","src":"3923:17:12"},{"kind":"number","nodeType":"YulLiteral","src":"3942:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3919:3:12"},"nodeType":"YulFunctionCall","src":"3919:26:12"},{"arguments":[{"arguments":[{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"3961:6:12"},{"name":"i","nodeType":"YulIdentifier","src":"3969:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3957:3:12"},"nodeType":"YulFunctionCall","src":"3957:14:12"},{"name":"_1","nodeType":"YulIdentifier","src":"3973:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3953:3:12"},"nodeType":"YulFunctionCall","src":"3953:23:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3947:5:12"},"nodeType":"YulFunctionCall","src":"3947:30:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3912:6:12"},"nodeType":"YulFunctionCall","src":"3912:66:12"},"nodeType":"YulExpressionStatement","src":"3912:66:12"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3859:1:12"},{"name":"length","nodeType":"YulIdentifier","src":"3862:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3856:2:12"},"nodeType":"YulFunctionCall","src":"3856:13:12"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3870:19:12","statements":[{"nodeType":"YulAssignment","src":"3872:15:12","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3881:1:12"},{"name":"_1","nodeType":"YulIdentifier","src":"3884:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3877:3:12"},"nodeType":"YulFunctionCall","src":"3877:10:12"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3872:1:12"}]}]},"pre":{"nodeType":"YulBlock","src":"3852:3:12","statements":[]},"src":"3848:140:12"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4012:9:12"},{"name":"length","nodeType":"YulIdentifier","src":"4023:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4008:3:12"},"nodeType":"YulFunctionCall","src":"4008:22:12"},{"kind":"number","nodeType":"YulLiteral","src":"4032:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4004:3:12"},"nodeType":"YulFunctionCall","src":"4004:31:12"},{"kind":"number","nodeType":"YulLiteral","src":"4037:1:12","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3997:6:12"},"nodeType":"YulFunctionCall","src":"3997:42:12"},"nodeType":"YulExpressionStatement","src":"3997:42:12"},{"nodeType":"YulAssignment","src":"4048:62:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4064:9:12"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4083:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"4091:2:12","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4079:3:12"},"nodeType":"YulFunctionCall","src":"4079:15:12"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4100:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4096:3:12"},"nodeType":"YulFunctionCall","src":"4096:7:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4075:3:12"},"nodeType":"YulFunctionCall","src":"4075:29:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4060:3:12"},"nodeType":"YulFunctionCall","src":"4060:45:12"},{"kind":"number","nodeType":"YulLiteral","src":"4107:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4056:3:12"},"nodeType":"YulFunctionCall","src":"4056:54:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4048:4:12"}]}]},"name":"abi_encode_tuple_t_address_t_bytes_memory_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3581:9:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3592:6:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3600:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3611:4:12","type":""}],"src":"3473:643:12"},{"body":{"nodeType":"YulBlock","src":"4295:228:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4312:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4323:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4305:6:12"},"nodeType":"YulFunctionCall","src":"4305:21:12"},"nodeType":"YulExpressionStatement","src":"4305:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4346:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4357:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4342:3:12"},"nodeType":"YulFunctionCall","src":"4342:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"4362:2:12","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4335:6:12"},"nodeType":"YulFunctionCall","src":"4335:30:12"},"nodeType":"YulExpressionStatement","src":"4335:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4385:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4396:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4381:3:12"},"nodeType":"YulFunctionCall","src":"4381:18:12"},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"4401:34:12","type":"","value":"Ownable: new owner is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4374:6:12"},"nodeType":"YulFunctionCall","src":"4374:62:12"},"nodeType":"YulExpressionStatement","src":"4374:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4456:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4467:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4452:3:12"},"nodeType":"YulFunctionCall","src":"4452:18:12"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"4472:8:12","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4445:6:12"},"nodeType":"YulFunctionCall","src":"4445:36:12"},"nodeType":"YulExpressionStatement","src":"4445:36:12"},{"nodeType":"YulAssignment","src":"4490:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4502:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4513:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4498:3:12"},"nodeType":"YulFunctionCall","src":"4498:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4490:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4272:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4286:4:12","type":""}],"src":"4121:402:12"},{"body":{"nodeType":"YulBlock","src":"4719:76:12","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4736:3:12"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4745:3:12","type":"","value":"230"},{"kind":"number","nodeType":"YulLiteral","src":"4750:10:12","type":"","value":"0x03e14691"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4741:3:12"},"nodeType":"YulFunctionCall","src":"4741:20:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4729:6:12"},"nodeType":"YulFunctionCall","src":"4729:33:12"},"nodeType":"YulExpressionStatement","src":"4729:33:12"},{"nodeType":"YulAssignment","src":"4771:18:12","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4782:3:12"},{"kind":"number","nodeType":"YulLiteral","src":"4787:1:12","type":"","value":"4"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4778:3:12"},"nodeType":"YulFunctionCall","src":"4778:11:12"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"4771:3:12"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_cb23cf6c353ccb16f0d92c8e6b5c5b425654e65dd07e2d295b394de4cf15afb7__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"4703:3:12","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"4711:3:12","type":""}],"src":"4528:267:12"},{"body":{"nodeType":"YulBlock","src":"4974:182:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4991:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"5002:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4984:6:12"},"nodeType":"YulFunctionCall","src":"4984:21:12"},"nodeType":"YulExpressionStatement","src":"4984:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5025:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"5036:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5021:3:12"},"nodeType":"YulFunctionCall","src":"5021:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"5041:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5014:6:12"},"nodeType":"YulFunctionCall","src":"5014:30:12"},"nodeType":"YulExpressionStatement","src":"5014:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5064:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"5075:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5060:3:12"},"nodeType":"YulFunctionCall","src":"5060:18:12"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"5080:34:12","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5053:6:12"},"nodeType":"YulFunctionCall","src":"5053:62:12"},"nodeType":"YulExpressionStatement","src":"5053:62:12"},{"nodeType":"YulAssignment","src":"5124:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5136:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"5147:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5132:3:12"},"nodeType":"YulFunctionCall","src":"5132:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5124:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4951:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4965:4:12","type":""}],"src":"4800:356:12"}]},"contents":"{\n { }\n function validator_revert_contract_ITransparentUpgradeableProxy(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$_ITransparentUpgradeableProxy_$716(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := calldataload(headStart)\n validator_revert_contract_ITransparentUpgradeableProxy(value)\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_tuple_t_contract$_ITransparentUpgradeableProxy_$716t_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let value := calldataload(headStart)\n validator_revert_contract_ITransparentUpgradeableProxy(value)\n value0 := value\n let value_1 := calldataload(add(headStart, 32))\n validator_revert_contract_ITransparentUpgradeableProxy(value_1)\n value1 := value_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 abi_decode_tuple_t_contract$_ITransparentUpgradeableProxy_$716t_addresst_bytes_memory_ptr(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_ITransparentUpgradeableProxy(value)\n value0 := value\n let value_1 := calldataload(add(headStart, 32))\n validator_revert_contract_ITransparentUpgradeableProxy(value_1)\n value1 := value_1\n let offset := calldataload(add(headStart, 64))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := calldataload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n mstore(add(add(memPtr, _3), 32), 0)\n value2 := memPtr\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_contract_ITransparentUpgradeableProxy(value)\n value0 := value\n }\n function abi_encode_tuple_packed_t_stringliteral_96a4c6be7716f5be15d118c16bd1d464cb27f01187d0b9218993a5d488a47c29__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n {\n mstore(pos, shl(224, 0x5c60da1b))\n end := add(pos, 4)\n }\n function abi_decode_tuple_t_address_payable_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n validator_revert_contract_ITransparentUpgradeableProxy(value)\n value0 := value\n }\n function abi_encode_tuple_t_address_t_bytes_memory_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n {\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n let _1 := 32\n mstore(add(headStart, _1), 64)\n let length := mload(value1)\n mstore(add(headStart, 64), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 96), mload(add(add(value1, i), _1)))\n }\n mstore(add(add(headStart, length), 96), 0)\n tail := add(add(headStart, and(add(length, 31), not(31))), 96)\n }\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_packed_t_stringliteral_cb23cf6c353ccb16f0d92c8e6b5c5b425654e65dd07e2d295b394de4cf15afb7__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n {\n mstore(pos, shl(230, 0x03e14691))\n end := add(pos, 4)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n}","id":12,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x79 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x9623609D GT PUSH2 0x4C JUMPI DUP1 PUSH4 0x9623609D EQ PUSH2 0x109 JUMPI DUP1 PUSH4 0x99A88EC4 EQ PUSH2 0x11C JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xF3B7DEAD EQ PUSH2 0x15A JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x204E1C7A EQ PUSH2 0x7D JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0x7EFF275E EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xED JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x9C PUSH2 0x97 CALLDATASIZE PUSH1 0x4 PUSH2 0x479 JUMP JUMPDEST PUSH2 0x179 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 CALLVALUE DUP1 ISZERO PUSH2 0xC3 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0x204 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0xE8 CALLDATASIZE PUSH1 0x4 PUSH2 0x49B JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9C JUMP JUMPDEST PUSH2 0xCC PUSH2 0x117 CALLDATASIZE PUSH1 0x4 PUSH2 0x4E6 JUMP JUMPDEST PUSH2 0x27A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x127 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0x136 CALLDATASIZE PUSH1 0x4 PUSH2 0x49B JUMP JUMPDEST PUSH2 0x2E5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x146 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCC PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0x479 JUMP JUMPDEST PUSH2 0x31B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x165 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x9C PUSH2 0x174 CALLDATASIZE PUSH1 0x4 PUSH2 0x479 JUMP JUMPDEST PUSH2 0x399 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x40 MLOAD PUSH2 0x19D SWAP1 PUSH4 0x5C60DA1B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1D5 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 0x1DA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x5B5 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x20C PUSH2 0x3BD JUMP JUMPDEST PUSH2 0x215 PUSH0 PUSH2 0x416 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x21F PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8F28397 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x8F283970 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x260 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x272 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x282 PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x278F7943 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x4F1EF286 SWAP1 CALLVALUE SWAP1 PUSH2 0x2B2 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x5D0 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2C9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2DB JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2ED PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1B2CE7F3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x3659CFE6 SWAP1 PUSH1 0x24 ADD PUSH2 0x249 JUMP JUMPDEST PUSH2 0x323 PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x38D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x396 DUP2 PUSH2 0x416 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x40 MLOAD PUSH2 0x19D SWAP1 PUSH4 0x3E14691 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 ADD SWAP1 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x215 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x384 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x396 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x489 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x494 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4AC JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B7 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4C7 DUP2 PUSH2 0x465 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4F8 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x503 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x513 DUP2 PUSH2 0x465 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x52F JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x542 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x554 JUMPI PUSH2 0x554 PUSH2 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x57C JUMPI PUSH2 0x57C PUSH2 0x4D2 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP10 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x594 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5C5 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x494 DUP2 PUSH2 0x465 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH0 PUSH1 0x20 PUSH1 0x40 DUP2 DUP5 ADD MSTORE DUP4 MLOAD DUP1 PUSH1 0x40 DUP6 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x60A JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x60 ADD MSTORE DUP3 ADD PUSH2 0x5EE JUMP JUMPDEST POP PUSH0 PUSH1 0x60 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x60 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDMOD SAR CODECOPY PC 0xC5 0xD8 0xC1 BYTE PUSH9 0x5EDD579E3339C71D92 0xB6 PUSH22 0xDCFF63A671429EF1422BEE4064736F6C634300081400 CALLER ","sourceMap":"450:2409:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650:438;;;;;;;;;;-1:-1:-1;650:438:7;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;662:32:12;;;644:51;;632:2;617:18;650:438:7;;;;;;;1824:101:0;;;;;;;;;;;;;:::i;:::-;;1842:149:7;;;;;;;;;;-1:-1:-1;1842:149:7;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1247:7:0;1273:6;-1:-1:-1;;;;;1273:6:0;1201:85;;2612:245:7;;;;;;:::i;:::-;;:::i;2196:150::-;;;;;;;;;;-1:-1:-1;2196:150:7;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;1248:420:7:-;;;;;;;;;;-1:-1:-1;1248:420:7;;;;;:::i;:::-;;:::i;650:438::-;747:7;924:12;938:23;973:5;-1:-1:-1;;;;;965:25:7;:40;;;;-1:-1:-1;;;3108:33:12;;3166:1;3157:11;;2907:267;965:40:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923:82;;;;1023:7;1015:16;;;;;;1059:10;1048:33;;;;;;;;;;;;:::i;:::-;1041:40;650:438;-1:-1:-1;;;;650:438:7:o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1842:149:7:-;1094:13:0;:11;:13::i;:::-;1957:27:7::1;::::0;-1:-1:-1;;;1957:27:7;;-1:-1:-1;;;;;662:32:12;;;1957:27:7::1;::::0;::::1;644:51:12::0;1957:17:7;::::1;::::0;::::1;::::0;617:18:12;;1957:27:7::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;1842:149:::0;;:::o;2612:245::-;1094:13:0;:11;:13::i;:::-;2788:62:7::1;::::0;-1:-1:-1;;;2788:62:7;;-1:-1:-1;;;;;2788:22:7;::::1;::::0;::::1;::::0;2818:9:::1;::::0;2788:62:::1;::::0;2829:14;;2845:4;;2788:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;2612:245:::0;;;:::o;2196:150::-;1094:13:0;:11;:13::i;:::-;2308:31:7::1;::::0;-1:-1:-1;;;2308:31:7;;-1:-1:-1;;;;;662:32:12;;;2308:31:7::1;::::0;::::1;644:51:12::0;2308:15:7;::::1;::::0;::::1;::::0;617:18:12;;2308:31:7::1;498:203:12::0;2074:198:0;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;4323:2:12;2154:73:0::1;::::0;::::1;4305:21:12::0;4362:2;4342:18;;;4335:30;4401:34;4381:18;;;4374:62;-1:-1:-1;;;4452:18:12;;;4445:36;4498:19;;2154:73:0::1;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1248:420:7:-;1336:7;1504:12;1518:23;1553:5;-1:-1:-1;;;;;1545:25:7;:40;;;;-1:-1:-1;;;4729:33:12;;4787:1;4778:11;;4528:267;1359:130:0;1247:7;1273:6;-1:-1:-1;;;;;1273:6:0;734:10:10;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;5002:2:12;1414:68:0;;;4984:21:12;;;5021:18;;;5014:30;5080:34;5060:18;;;5053:62;5132:18;;1414:68:0;4800:356:12;2426:187:0;2499:16;2518:6;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;14:161:12:-;-1:-1:-1;;;;;119:31:12;;109:42;;99:70;;165:1;162;155:12;180:313;275:6;328:2;316:9;307:7;303:23;299:32;296:52;;;344:1;341;334:12;296:52;383:9;370:23;402:61;457:5;402:61;:::i;:::-;482:5;180:313;-1:-1:-1;;;180:313:12:o;706:484::-;810:6;818;871:2;859:9;850:7;846:23;842:32;839:52;;;887:1;884;877:12;839:52;926:9;913:23;945:61;1000:5;945:61;:::i;:::-;1025:5;-1:-1:-1;1082:2:12;1067:18;;1054:32;1095:63;1054:32;1095:63;:::i;:::-;1177:7;1167:17;;;706:484;;;;;:::o;1195:127::-;1256:10;1251:3;1247:20;1244:1;1237:31;1287:4;1284:1;1277:15;1311:4;1308:1;1301:15;1327:1293;1449:6;1457;1465;1518:2;1506:9;1497:7;1493:23;1489:32;1486:52;;;1534:1;1531;1524:12;1486:52;1573:9;1560:23;1592:61;1647:5;1592:61;:::i;:::-;1672:5;-1:-1:-1;1729:2:12;1714:18;;1701:32;1742:63;1701:32;1742:63;:::i;:::-;1824:7;-1:-1:-1;1882:2:12;1867:18;;1854:32;1905:18;1935:14;;;1932:34;;;1962:1;1959;1952:12;1932:34;2000:6;1989:9;1985:22;1975:32;;2045:7;2038:4;2034:2;2030:13;2026:27;2016:55;;2067:1;2064;2057:12;2016:55;2103:2;2090:16;2125:2;2121;2118:10;2115:36;;;2131:18;;:::i;:::-;2206:2;2200:9;2174:2;2260:13;;-1:-1:-1;;2256:22:12;;;2280:2;2252:31;2248:40;2236:53;;;2304:18;;;2324:22;;;2301:46;2298:72;;;2350:18;;:::i;:::-;2390:10;2386:2;2379:22;2425:2;2417:6;2410:18;2465:7;2460:2;2455;2451;2447:11;2443:20;2440:33;2437:53;;;2486:1;2483;2476:12;2437:53;2542:2;2537;2533;2529:11;2524:2;2516:6;2512:15;2499:46;2587:1;2582:2;2577;2569:6;2565:15;2561:24;2554:35;2608:6;2598:16;;;;;;;1327:1293;;;;;:::o;3179:289::-;3257:6;3310:2;3298:9;3289:7;3285:23;3281:32;3278:52;;;3326:1;3323;3316:12;3278:52;3358:9;3352:16;3377:61;3432:5;3377:61;:::i;3473:643::-;3677:1;3673;3668:3;3664:11;3660:19;3652:6;3648:32;3637:9;3630:51;3611:4;3700:2;3738;3733;3722:9;3718:18;3711:30;3770:6;3764:13;3813:6;3808:2;3797:9;3793:18;3786:34;3838:1;3848:140;3862:6;3859:1;3856:13;3848:140;;;3957:14;;;3953:23;;3947:30;3923:17;;;3942:2;3919:26;3912:66;3877:10;;3848:140;;;3852:3;4037:1;4032:2;4023:6;4012:9;4008:22;4004:31;3997:42;4107:2;4100;4096:7;4091:2;4083:6;4079:15;4075:29;4064:9;4060:45;4056:54;4048:62;;;;3473:643;;;;;:::o"},"methodIdentifiers":{"changeProxyAdmin(address,address)":"7eff275e","getProxyAdmin(address)":"f3b7dead","getProxyImplementation(address)":"204e1c7a","owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b","upgrade(address,address)":"99a88ec4","upgradeAndCall(address,address,bytes)":"9623609d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"contract ITransparentUpgradeableProxy\",\"name\":\"proxy\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"changeProxyAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITransparentUpgradeableProxy\",\"name\":\"proxy\",\"type\":\"address\"}],\"name\":\"getProxyAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITransparentUpgradeableProxy\",\"name\":\"proxy\",\"type\":\"address\"}],\"name\":\"getProxyImplementation\",\"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\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITransparentUpgradeableProxy\",\"name\":\"proxy\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"upgrade\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITransparentUpgradeableProxy\",\"name\":\"proxy\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.\",\"kind\":\"dev\",\"methods\":{\"changeProxyAdmin(address,address)\":{\"details\":\"Changes the admin of `proxy` to `newAdmin`. Requirements: - This contract must be the current admin of `proxy`.\"},\"getProxyAdmin(address)\":{\"details\":\"Returns the current admin of `proxy`. Requirements: - This contract must be the admin of `proxy`.\"},\"getProxyImplementation(address)\":{\"details\":\"Returns the current implementation of `proxy`. Requirements: - This contract must be the admin of `proxy`.\"},\"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.\"},\"upgrade(address,address)\":{\"details\":\"Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}. Requirements: - This contract must be the admin of `proxy`.\"},\"upgradeAndCall(address,address,bytes)\":{\"details\":\"Upgrades `proxy` to `implementation` and calls a function on the new implementation. See {TransparentUpgradeableProxy-upgradeToAndCall}. Requirements: - This contract must be the admin of `proxy`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol\":\"ProxyAdmin\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol\":{\"keccak256\":\"0x8e99882a991853dc446278576c8cb9b3a5ded84642e9bcc917b1677807c2f18c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310153c1a4c739002ffbc1351ed1dd7488a0d20f5dd816353332fc2c1d81e0a3\",\"dweb:/ipfs/QmcvwXQVUBRTEAoNcvwSVFmhpHUXQ21s2Hfj79hq2uQNVM\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":{\"keccak256\":\"0x168e36d7e616bd41f6abab4a83009da64513ae9e638aa6d5980066e2a92db689\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a45c64b97311fabbcbe8dad7e94fa89e06a7f96060d5565326ef706f5f239017\",\"dweb:/ipfs/QmeU2jiBGbHhz9DqRotjbpAx5s2xExDSRQtSD5ENjuHzDq\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol":{"ITransparentUpgradeableProxy":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"admin()":"f851a440","changeAdmin(address)":"8f283970","implementation()":"5c60da1b","upgradeTo(address)":"3659cfe6","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"admin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"changeAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"upgradeTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy} does not implement this interface directly, and some of its functions are implemented by an internal dispatch mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not include them in the ABI so this interface must be used to interact with it.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":\"ITransparentUpgradeableProxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":{\"keccak256\":\"0x168e36d7e616bd41f6abab4a83009da64513ae9e638aa6d5980066e2a92db689\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a45c64b97311fabbcbe8dad7e94fa89e06a7f96060d5565326ef706f5f239017\",\"dweb:/ipfs/QmeU2jiBGbHhz9DqRotjbpAx5s2xExDSRQtSD5ENjuHzDq\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"},"TransparentUpgradeableProxy":{"abi":[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_167":{"entryPoint":null,"id":167,"parameterSlots":2,"returnSlots":0},"@_738":{"entryPoint":null,"id":738,"parameterSlots":3,"returnSlots":0},"@_changeAdmin_392":{"entryPoint":125,"id":392,"parameterSlots":1,"returnSlots":0},"@_getAdmin_349":{"entryPoint":null,"id":349,"parameterSlots":0,"returnSlots":1},"@_revert_1334":{"entryPoint":916,"id":1334,"parameterSlots":2,"returnSlots":0},"@_setAdmin_375":{"entryPoint":350,"id":375,"parameterSlots":1,"returnSlots":0},"@_setImplementation_234":{"entryPoint":507,"id":234,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCall_279":{"entryPoint":76,"id":279,"parameterSlots":3,"returnSlots":0},"@_upgradeTo_249":{"entryPoint":238,"id":249,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_1222":{"entryPoint":303,"id":1222,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_1251":{"entryPoint":658,"id":1251,"parameterSlots":3,"returnSlots":1},"@getAddressSlot_1397":{"entryPoint":null,"id":1397,"parameterSlots":1,"returnSlots":1},"@isContract_1023":{"entryPoint":null,"id":1023,"parameterSlots":1,"returnSlots":1},"@verifyCallResultFromTarget_1290":{"entryPoint":781,"id":1290,"parameterSlots":4,"returnSlots":1},"abi_decode_address_fromMemory":{"entryPoint":961,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":1045,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":1263,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1292,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":1009,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":989,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:3832:12","statements":[{"nodeType":"YulBlock","src":"6:3:12","statements":[]},{"body":{"nodeType":"YulBlock","src":"74:117:12","statements":[{"nodeType":"YulAssignment","src":"84:22:12","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"99:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"93:5:12"},"nodeType":"YulFunctionCall","src":"93:13:12"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"84:5:12"}]},{"body":{"nodeType":"YulBlock","src":"169:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"178:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"181:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"171:6:12"},"nodeType":"YulFunctionCall","src":"171:12:12"},"nodeType":"YulExpressionStatement","src":"171:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"128:5:12"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"139:5:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"154:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"150:3:12"},"nodeType":"YulFunctionCall","src":"150:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"163:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"146:3:12"},"nodeType":"YulFunctionCall","src":"146:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"135:3:12"},"nodeType":"YulFunctionCall","src":"135:31:12"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"125:2:12"},"nodeType":"YulFunctionCall","src":"125:42:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"118:6:12"},"nodeType":"YulFunctionCall","src":"118:50:12"},"nodeType":"YulIf","src":"115:70:12"}]},"name":"abi_decode_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"53:6:12","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"64:5:12","type":""}],"src":"14:177:12"},{"body":{"nodeType":"YulBlock","src":"228:95:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"245:1:12","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"252:3:12","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"257:10:12","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"248:3:12"},"nodeType":"YulFunctionCall","src":"248:20:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"238:6:12"},"nodeType":"YulFunctionCall","src":"238:31:12"},"nodeType":"YulExpressionStatement","src":"238:31:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"285:1:12","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"288:4:12","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"278:6:12"},"nodeType":"YulFunctionCall","src":"278:15:12"},"nodeType":"YulExpressionStatement","src":"278:15:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"309:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"312:4:12","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"302:6:12"},"nodeType":"YulFunctionCall","src":"302:15:12"},"nodeType":"YulExpressionStatement","src":"302:15:12"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"196:127:12"},{"body":{"nodeType":"YulBlock","src":"394:184:12","statements":[{"nodeType":"YulVariableDeclaration","src":"404:10:12","value":{"kind":"number","nodeType":"YulLiteral","src":"413:1:12","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"408:1:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"473:63:12","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"498:3:12"},{"name":"i","nodeType":"YulIdentifier","src":"503:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"494:3:12"},"nodeType":"YulFunctionCall","src":"494:11:12"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"517:3:12"},{"name":"i","nodeType":"YulIdentifier","src":"522:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"513:3:12"},"nodeType":"YulFunctionCall","src":"513:11:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"507:5:12"},"nodeType":"YulFunctionCall","src":"507:18:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"487:6:12"},"nodeType":"YulFunctionCall","src":"487:39:12"},"nodeType":"YulExpressionStatement","src":"487:39:12"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"434:1:12"},{"name":"length","nodeType":"YulIdentifier","src":"437:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"431:2:12"},"nodeType":"YulFunctionCall","src":"431:13:12"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"445:19:12","statements":[{"nodeType":"YulAssignment","src":"447:15:12","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"456:1:12"},{"kind":"number","nodeType":"YulLiteral","src":"459:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"452:3:12"},"nodeType":"YulFunctionCall","src":"452:10:12"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"447:1:12"}]}]},"pre":{"nodeType":"YulBlock","src":"427:3:12","statements":[]},"src":"423:113:12"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"556:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"561:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"552:3:12"},"nodeType":"YulFunctionCall","src":"552:16:12"},{"kind":"number","nodeType":"YulLiteral","src":"570:1:12","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"545:6:12"},"nodeType":"YulFunctionCall","src":"545:27:12"},"nodeType":"YulExpressionStatement","src":"545:27:12"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"372:3:12","type":""},{"name":"dst","nodeType":"YulTypedName","src":"377:3:12","type":""},{"name":"length","nodeType":"YulTypedName","src":"382:6:12","type":""}],"src":"328:250:12"},{"body":{"nodeType":"YulBlock","src":"707:942:12","statements":[{"body":{"nodeType":"YulBlock","src":"753:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"762:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"765:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"755:6:12"},"nodeType":"YulFunctionCall","src":"755:12:12"},"nodeType":"YulExpressionStatement","src":"755:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"728:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"737:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"724:3:12"},"nodeType":"YulFunctionCall","src":"724:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"749:2:12","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"720:3:12"},"nodeType":"YulFunctionCall","src":"720:32:12"},"nodeType":"YulIf","src":"717:52:12"},{"nodeType":"YulAssignment","src":"778:50:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"818:9:12"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"788:29:12"},"nodeType":"YulFunctionCall","src":"788:40:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"778:6:12"}]},{"nodeType":"YulAssignment","src":"837:59:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"881:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"892:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:12"},"nodeType":"YulFunctionCall","src":"877:18:12"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"847:29:12"},"nodeType":"YulFunctionCall","src":"847:49:12"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"837:6:12"}]},{"nodeType":"YulVariableDeclaration","src":"905:39:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"929:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"940:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"925:3:12"},"nodeType":"YulFunctionCall","src":"925:18:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"919:5:12"},"nodeType":"YulFunctionCall","src":"919:25:12"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"909:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"953:28:12","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"971:2:12","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"975:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"967:3:12"},"nodeType":"YulFunctionCall","src":"967:10:12"},{"kind":"number","nodeType":"YulLiteral","src":"979:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"963:3:12"},"nodeType":"YulFunctionCall","src":"963:18:12"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"957:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1008:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1017:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1020:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1010:6:12"},"nodeType":"YulFunctionCall","src":"1010:12:12"},"nodeType":"YulExpressionStatement","src":"1010:12:12"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"996:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1004:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"993:2:12"},"nodeType":"YulFunctionCall","src":"993:14:12"},"nodeType":"YulIf","src":"990:34:12"},{"nodeType":"YulVariableDeclaration","src":"1033:32:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1047:9:12"},{"name":"offset","nodeType":"YulIdentifier","src":"1058:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1043:3:12"},"nodeType":"YulFunctionCall","src":"1043:22:12"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1037:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1113:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1122:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1125:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1115:6:12"},"nodeType":"YulFunctionCall","src":"1115:12:12"},"nodeType":"YulExpressionStatement","src":"1115:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1092:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"1096:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1088:3:12"},"nodeType":"YulFunctionCall","src":"1088:13:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1103:7:12"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1084:3:12"},"nodeType":"YulFunctionCall","src":"1084:27:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1077:6:12"},"nodeType":"YulFunctionCall","src":"1077:35:12"},"nodeType":"YulIf","src":"1074:55:12"},{"nodeType":"YulVariableDeclaration","src":"1138:19:12","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1154:2:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1148:5:12"},"nodeType":"YulFunctionCall","src":"1148:9:12"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"1142:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1180:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1182:16:12"},"nodeType":"YulFunctionCall","src":"1182:18:12"},"nodeType":"YulExpressionStatement","src":"1182:18:12"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1172:2:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1176:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1169:2:12"},"nodeType":"YulFunctionCall","src":"1169:10:12"},"nodeType":"YulIf","src":"1166:36:12"},{"nodeType":"YulVariableDeclaration","src":"1211:17:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1225:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1221:3:12"},"nodeType":"YulFunctionCall","src":"1221:7:12"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"1215:2:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1237:23:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1257:2:12","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1251:5:12"},"nodeType":"YulFunctionCall","src":"1251:9:12"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1241:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1269:71:12","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1291:6:12"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1315:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"1319:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1311:3:12"},"nodeType":"YulFunctionCall","src":"1311:13:12"},{"name":"_4","nodeType":"YulIdentifier","src":"1326:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1307:3:12"},"nodeType":"YulFunctionCall","src":"1307:22:12"},{"kind":"number","nodeType":"YulLiteral","src":"1331:2:12","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1303:3:12"},"nodeType":"YulFunctionCall","src":"1303:31:12"},{"name":"_4","nodeType":"YulIdentifier","src":"1336:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1299:3:12"},"nodeType":"YulFunctionCall","src":"1299:40:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1287:3:12"},"nodeType":"YulFunctionCall","src":"1287:53:12"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1273:10:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1399:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1401:16:12"},"nodeType":"YulFunctionCall","src":"1401:18:12"},"nodeType":"YulExpressionStatement","src":"1401:18:12"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1358:10:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1370:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1355:2:12"},"nodeType":"YulFunctionCall","src":"1355:18:12"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1378:10:12"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1390:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1375:2:12"},"nodeType":"YulFunctionCall","src":"1375:22:12"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1352:2:12"},"nodeType":"YulFunctionCall","src":"1352:46:12"},"nodeType":"YulIf","src":"1349:72:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1437:2:12","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1441:10:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1430:6:12"},"nodeType":"YulFunctionCall","src":"1430:22:12"},"nodeType":"YulExpressionStatement","src":"1430:22:12"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1468:6:12"},{"name":"_3","nodeType":"YulIdentifier","src":"1476:2:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1461:6:12"},"nodeType":"YulFunctionCall","src":"1461:18:12"},"nodeType":"YulExpressionStatement","src":"1461:18:12"},{"body":{"nodeType":"YulBlock","src":"1525:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1534:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1537:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1527:6:12"},"nodeType":"YulFunctionCall","src":"1527:12:12"},"nodeType":"YulExpressionStatement","src":"1527:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1502:2:12"},{"name":"_3","nodeType":"YulIdentifier","src":"1506:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1498:3:12"},"nodeType":"YulFunctionCall","src":"1498:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"1511:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:12"},"nodeType":"YulFunctionCall","src":"1494:20:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1516:7:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1491:2:12"},"nodeType":"YulFunctionCall","src":"1491:33:12"},"nodeType":"YulIf","src":"1488:53:12"},{"expression":{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1589:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"1593:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1585:3:12"},"nodeType":"YulFunctionCall","src":"1585:11:12"},{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1602:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"1610:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1598:3:12"},"nodeType":"YulFunctionCall","src":"1598:15:12"},{"name":"_3","nodeType":"YulIdentifier","src":"1615:2:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"1550:34:12"},"nodeType":"YulFunctionCall","src":"1550:68:12"},"nodeType":"YulExpressionStatement","src":"1550:68:12"},{"nodeType":"YulAssignment","src":"1627:16:12","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"1637:6:12"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1627:6:12"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"657:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"668:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"680:6:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"688:6:12","type":""},{"name":"value2","nodeType":"YulTypedName","src":"696:6:12","type":""}],"src":"583:1066:12"},{"body":{"nodeType":"YulBlock","src":"1783:175:12","statements":[{"nodeType":"YulAssignment","src":"1793:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1805:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1816:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1801:3:12"},"nodeType":"YulFunctionCall","src":"1801:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1793:4:12"}]},{"nodeType":"YulVariableDeclaration","src":"1828:29:12","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1846:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1851:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1842:3:12"},"nodeType":"YulFunctionCall","src":"1842:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"1855:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1838:3:12"},"nodeType":"YulFunctionCall","src":"1838:19:12"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1832:2:12","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1873:9:12"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1888:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1896:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1884:3:12"},"nodeType":"YulFunctionCall","src":"1884:15:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1866:6:12"},"nodeType":"YulFunctionCall","src":"1866:34:12"},"nodeType":"YulExpressionStatement","src":"1866:34:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1920:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1931:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1916:3:12"},"nodeType":"YulFunctionCall","src":"1916:18:12"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"1940:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1948:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1936:3:12"},"nodeType":"YulFunctionCall","src":"1936:15:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1909:6:12"},"nodeType":"YulFunctionCall","src":"1909:43:12"},"nodeType":"YulExpressionStatement","src":"1909:43:12"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1744:9:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1755:6:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1763:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1774:4:12","type":""}],"src":"1654:304:12"},{"body":{"nodeType":"YulBlock","src":"2137:228:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2154:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2165:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2147:6:12"},"nodeType":"YulFunctionCall","src":"2147:21:12"},"nodeType":"YulExpressionStatement","src":"2147:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2188:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2199:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2184:3:12"},"nodeType":"YulFunctionCall","src":"2184:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"2204:2:12","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2177:6:12"},"nodeType":"YulFunctionCall","src":"2177:30:12"},"nodeType":"YulExpressionStatement","src":"2177:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2227:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2238:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2223:3:12"},"nodeType":"YulFunctionCall","src":"2223:18:12"},{"hexValue":"455243313936373a206e65772061646d696e20697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"2243:34:12","type":"","value":"ERC1967: new admin is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2216:6:12"},"nodeType":"YulFunctionCall","src":"2216:62:12"},"nodeType":"YulExpressionStatement","src":"2216:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2298:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2309:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2294:3:12"},"nodeType":"YulFunctionCall","src":"2294:18:12"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"2314:8:12","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2287:6:12"},"nodeType":"YulFunctionCall","src":"2287:36:12"},"nodeType":"YulExpressionStatement","src":"2287:36:12"},{"nodeType":"YulAssignment","src":"2332:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2344:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2355:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2340:3:12"},"nodeType":"YulFunctionCall","src":"2340:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2332:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2114:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2128:4:12","type":""}],"src":"1963:402:12"},{"body":{"nodeType":"YulBlock","src":"2544:235:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2561:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2572:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2554:6:12"},"nodeType":"YulFunctionCall","src":"2554:21:12"},"nodeType":"YulExpressionStatement","src":"2554:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2595:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2606:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2591:3:12"},"nodeType":"YulFunctionCall","src":"2591:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"2611:2:12","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2584:6:12"},"nodeType":"YulFunctionCall","src":"2584:30:12"},"nodeType":"YulExpressionStatement","src":"2584:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2634:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2645:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2630:3:12"},"nodeType":"YulFunctionCall","src":"2630:18:12"},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e","kind":"string","nodeType":"YulLiteral","src":"2650:34:12","type":"","value":"ERC1967: new implementation is n"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2623:6:12"},"nodeType":"YulFunctionCall","src":"2623:62:12"},"nodeType":"YulExpressionStatement","src":"2623:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2705:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2716:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2701:3:12"},"nodeType":"YulFunctionCall","src":"2701:18:12"},{"hexValue":"6f74206120636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"2721:15:12","type":"","value":"ot a contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2694:6:12"},"nodeType":"YulFunctionCall","src":"2694:43:12"},"nodeType":"YulExpressionStatement","src":"2694:43:12"},{"nodeType":"YulAssignment","src":"2746:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2758:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2769:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2754:3:12"},"nodeType":"YulFunctionCall","src":"2754:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2746:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2521:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2535:4:12","type":""}],"src":"2370:409:12"},{"body":{"nodeType":"YulBlock","src":"2921:150:12","statements":[{"nodeType":"YulVariableDeclaration","src":"2931:27:12","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2951:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2945:5:12"},"nodeType":"YulFunctionCall","src":"2945:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2935:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3006:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"3014:4:12","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3002:3:12"},"nodeType":"YulFunctionCall","src":"3002:17:12"},{"name":"pos","nodeType":"YulIdentifier","src":"3021:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"3026:6:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2967:34:12"},"nodeType":"YulFunctionCall","src":"2967:66:12"},"nodeType":"YulExpressionStatement","src":"2967:66:12"},{"nodeType":"YulAssignment","src":"3042:23:12","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3053:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"3058:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3049:3:12"},"nodeType":"YulFunctionCall","src":"3049:16:12"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"3042:3:12"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"2897:3:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2902:6:12","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2913:3:12","type":""}],"src":"2784:287:12"},{"body":{"nodeType":"YulBlock","src":"3250:179:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3267:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3278:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3260:6:12"},"nodeType":"YulFunctionCall","src":"3260:21:12"},"nodeType":"YulExpressionStatement","src":"3260:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3301:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3312:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3297:3:12"},"nodeType":"YulFunctionCall","src":"3297:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"3317:2:12","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3290:6:12"},"nodeType":"YulFunctionCall","src":"3290:30:12"},"nodeType":"YulExpressionStatement","src":"3290:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3340:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3351:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3336:3:12"},"nodeType":"YulFunctionCall","src":"3336:18:12"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"3356:31:12","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3329:6:12"},"nodeType":"YulFunctionCall","src":"3329:59:12"},"nodeType":"YulExpressionStatement","src":"3329:59:12"},{"nodeType":"YulAssignment","src":"3397:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3409:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3420:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3405:3:12"},"nodeType":"YulFunctionCall","src":"3405:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3397:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3227:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3241:4:12","type":""}],"src":"3076:353:12"},{"body":{"nodeType":"YulBlock","src":"3555:275:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3572:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3583:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3565:6:12"},"nodeType":"YulFunctionCall","src":"3565:21:12"},"nodeType":"YulExpressionStatement","src":"3565:21:12"},{"nodeType":"YulVariableDeclaration","src":"3595:27:12","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3615:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3609:5:12"},"nodeType":"YulFunctionCall","src":"3609:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"3599:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3642:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3653:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3638:3:12"},"nodeType":"YulFunctionCall","src":"3638:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"3658:6:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3631:6:12"},"nodeType":"YulFunctionCall","src":"3631:34:12"},"nodeType":"YulExpressionStatement","src":"3631:34:12"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3713:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"3721:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3709:3:12"},"nodeType":"YulFunctionCall","src":"3709:15:12"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3730:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3741:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3726:3:12"},"nodeType":"YulFunctionCall","src":"3726:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"3746:6:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"3674:34:12"},"nodeType":"YulFunctionCall","src":"3674:79:12"},"nodeType":"YulExpressionStatement","src":"3674:79:12"},{"nodeType":"YulAssignment","src":"3762:62:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3778:9:12"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3797:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"3805:2:12","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3793:3:12"},"nodeType":"YulFunctionCall","src":"3793:15:12"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3814:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3810:3:12"},"nodeType":"YulFunctionCall","src":"3810:7:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3789:3:12"},"nodeType":"YulFunctionCall","src":"3789:29:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3774:3:12"},"nodeType":"YulFunctionCall","src":"3774:45:12"},{"kind":"number","nodeType":"YulLiteral","src":"3821:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3770:3:12"},"nodeType":"YulFunctionCall","src":"3770:54:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3762:4:12"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3524:9:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3535:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3546:4:12","type":""}],"src":"3434:396:12"}]},"contents":"{\n { }\n function abi_decode_address_fromMemory(offset) -> value\n {\n value := mload(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 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_addresst_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address_fromMemory(headStart)\n value1 := abi_decode_address_fromMemory(add(headStart, 32))\n let offset := mload(add(headStart, 64))\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := mload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n copy_memory_to_memory_with_cleanup(add(_2, 32), add(memPtr, 32), _3)\n value2 := memPtr\n }\n function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n }\n function abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC1967: new admin is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: call to non-contract\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory_with_cleanup(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}","id":12,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405260405162000df438038062000df4833981016040819052620000269162000415565b82816200003582825f6200004c565b50620000439050826200007d565b50505062000540565b6200005783620000ee565b5f82511180620000645750805b1562000078576200007683836200012f565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620000be5f8051602062000dad833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a1620000eb816200015e565b50565b620000f981620001fb565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b606062000157838360405180606001604052806027815260200162000dcd6027913962000292565b9392505050565b6001600160a01b038116620001c95760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b805f8051602062000dad8339815191525b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381163b6200026a5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401620001c0565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc620001da565b60605f80856001600160a01b031685604051620002b09190620004ef565b5f60405180830381855af49150503d805f8114620002ea576040519150601f19603f3d011682016040523d82523d5f602084013e620002ef565b606091505b50909250905062000303868383876200030d565b9695505050505050565b60608315620003805782515f0362000378576001600160a01b0385163b620003785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001c0565b50816200038c565b6200038c838362000394565b949350505050565b815115620003a55781518083602001fd5b8060405162461bcd60e51b8152600401620001c091906200050c565b80516001600160a01b0381168114620003d8575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156200040d578181015183820152602001620003f3565b50505f910152565b5f805f6060848603121562000428575f80fd5b6200043384620003c1565b92506200044360208501620003c1565b60408501519092506001600160401b038082111562000460575f80fd5b818601915086601f83011262000474575f80fd5b815181811115620004895762000489620003dd565b604051601f8201601f19908116603f01168101908382118183101715620004b457620004b4620003dd565b81604052828152896020848701011115620004cd575f80fd5b620004e0836020830160208801620003f1565b80955050505050509250925092565b5f825162000502818460208701620003f1565b9190910192915050565b602081525f82518060208401526200052c816040850160208701620003f1565b601f01601f19169190910160400192915050565b61085f806200054e5f395ff3fe60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH3 0xDF4 CODESIZE SUB DUP1 PUSH3 0xDF4 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x26 SWAP2 PUSH3 0x415 JUMP JUMPDEST DUP3 DUP2 PUSH3 0x35 DUP3 DUP3 PUSH0 PUSH3 0x4C JUMP JUMPDEST POP PUSH3 0x43 SWAP1 POP DUP3 PUSH3 0x7D JUMP JUMPDEST POP POP POP PUSH3 0x540 JUMP JUMPDEST PUSH3 0x57 DUP4 PUSH3 0xEE JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH3 0x64 JUMPI POP DUP1 JUMPDEST ISZERO PUSH3 0x78 JUMPI PUSH3 0x76 DUP4 DUP4 PUSH3 0x12F JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH3 0xBE PUSH0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xDAD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH3 0xEB DUP2 PUSH3 0x15E JUMP JUMPDEST POP JUMP JUMPDEST PUSH3 0xF9 DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH3 0x157 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0xDCD PUSH1 0x27 SWAP2 CODECOPY PUSH3 0x292 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xDAD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH3 0x26A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x1C0 JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH3 0x1DA JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH3 0x2B0 SWAP2 SWAP1 PUSH3 0x4EF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH3 0x2EA 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 PUSH3 0x2EF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH3 0x303 DUP7 DUP4 DUP4 DUP8 PUSH3 0x30D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH3 0x380 JUMPI DUP3 MLOAD PUSH0 SUB PUSH3 0x378 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH3 0x378 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x1C0 JUMP JUMPDEST POP DUP2 PUSH3 0x38C JUMP JUMPDEST PUSH3 0x38C DUP4 DUP4 PUSH3 0x394 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH3 0x3A5 JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1C0 SWAP2 SWAP1 PUSH3 0x50C JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x3D8 JUMPI PUSH0 DUP1 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x40D JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x3F3 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x428 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH3 0x433 DUP5 PUSH3 0x3C1 JUMP JUMPDEST SWAP3 POP PUSH3 0x443 PUSH1 0x20 DUP6 ADD PUSH3 0x3C1 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x460 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x474 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH3 0x489 JUMPI PUSH3 0x489 PUSH3 0x3DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x4B4 JUMPI PUSH3 0x4B4 PUSH3 0x3DD JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP10 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH3 0x4CD JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH3 0x4E0 DUP4 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP9 ADD PUSH3 0x3F1 JUMP JUMPDEST DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH3 0x502 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH3 0x3F1 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x52C DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH3 0x3F1 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x85F DUP1 PUSH3 0x54E PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH2 0x13 JUMPI PUSH2 0x11 PUSH2 0x17 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11 JUMPDEST PUSH2 0x1F PUSH2 0x168 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x15E JUMPI PUSH1 0x60 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH0 CALLDATALOAD AND PUSH4 0x64D3180D PUSH1 0xE1 SHL DUP2 ADD PUSH2 0x59 JUMPI PUSH2 0x52 PUSH2 0x19A JUMP JUMPDEST SWAP2 POP PUSH2 0x156 JUMP JUMPDEST PUSH4 0x587086BD PUSH1 0xE1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x79 JUMPI PUSH2 0x52 PUSH2 0x1ED JUMP JUMPDEST PUSH4 0x70D7C69 PUSH1 0xE4 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x99 JUMPI PUSH2 0x52 PUSH2 0x231 JUMP JUMPDEST PUSH3 0x1EB96F PUSH1 0xE6 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xB8 JUMPI PUSH2 0x52 PUSH2 0x261 JUMP JUMPDEST PUSH4 0xA39F25E5 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xD8 JUMPI PUSH2 0x52 PUSH2 0x2A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x42 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5472616E73706172656E745570677261646561626C6550726F78793A2061646D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x696E2063616E6E6F742066616C6C6261636B20746F2070726F78792074617267 PUSH1 0x64 DUP3 ADD MSTORE PUSH2 0x195D PUSH1 0xF2 SHL PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD RETURN JUMPDEST PUSH2 0x166 PUSH2 0x2B3 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A4 PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x1B2 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH0 PUSH2 0x2CD JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x6D7 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x21B DUP3 DUP3 PUSH1 0x1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x23B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x249 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH2 0x2F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x26B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP3 POP ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2AA PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x34F JUMP JUMPDEST PUSH2 0x166 PUSH2 0x2BE PUSH2 0x34F JUMP JUMPDEST PUSH2 0x35D JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x166 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D6 DUP4 PUSH2 0x37B JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH2 0x2E2 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x2F3 JUMPI PUSH2 0x2F1 DUP4 DUP4 PUSH2 0x3BA JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH2 0x321 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x34C DUP2 PUSH2 0x3E6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x358 PUSH2 0x48F JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x377 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH2 0x384 DUP2 PUSH2 0x4B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x3DF DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x803 PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x54A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x44B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 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 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x18B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH2 0x523 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x46E JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x566 SWAP2 SWAP1 PUSH2 0x7B5 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x59E 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 0x5A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x5B4 DUP7 DUP4 DUP4 DUP8 PUSH2 0x5BE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x62C JUMPI DUP3 MLOAD PUSH0 SUB PUSH2 0x625 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x625 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST POP DUP2 PUSH2 0x636 JUMP JUMPDEST PUSH2 0x636 DUP4 DUP4 PUSH2 0x63E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x64E JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x7D0 JUMP JUMPDEST PUSH0 DUP1 DUP6 DUP6 GT ISZERO PUSH2 0x676 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x682 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6A5 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6BA JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x3DF DUP3 PUSH2 0x68F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x6F1 DUP4 PUSH2 0x68F JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x70D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x720 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x732 JUMPI PUSH2 0x732 PUSH2 0x6C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x75A JUMPI PUSH2 0x75A PUSH2 0x6C3 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x772 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7AD JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x795 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x7C6 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7EE DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x7066735822122049D802 0xC6 SIGNEXTEND BLOCKHASH 0xCC 0xDE PUSH3 0x847701 PUSH15 0x4DE3AA79A5FEB5F60A45C43160AAD2 DUP6 CALLVALUE DIV 0xD0 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER 0xB5 BALANCE 0x27 PUSH9 0x4A568B3173AE13B9F8 0xA6 ADD PUSH15 0x243E63B6E8EE1178D6A717850B5D61 SUB COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C65640000 ","sourceMap":"3389:4951:8:-:0;;;3663:137;;;;;;;;;;;;;;;;;;:::i;:::-;3748:6;3756:5;1024:39:3;3748:6:8;3756:5;1057::3;1024:17;:39::i;:::-;-1:-1:-1;3773:20:8::1;::::0;-1:-1:-1;3786:6:8;3773:12:::1;:20::i;:::-;3663:137:::0;;;3389:4951;;2057:265:4;2165:29;2176:17;2165:10;:29::i;:::-;2222:1;2208:4;:11;:15;:28;;;;2227:9;2208:28;2204:112;;;2252:53;2281:17;2300:4;2252:28;:53::i;:::-;;2204:112;2057:265;;;:::o;4300:135::-;4364:35;4377:11;-1:-1:-1;;;;;;;;;;;3854:45:4;-1:-1:-1;;;;;3854:45:4;;3784:122;4377:11;4364:35;;;-1:-1:-1;;;;;1884:15:12;;;1866:34;;1936:15;;;1931:2;1916:18;;1909:43;1801:18;4364:35:4;;;;;;;4409:19;4419:8;4409:9;:19::i;:::-;4300:135;:::o;1771:152::-;1837:37;1856:17;1837:18;:37::i;:::-;1889:27;;-1:-1:-1;;;;;1889:27:4;;;;;;;;1771:152;:::o;6674:198:9:-;6757:12;6788:77;6809:6;6817:4;6788:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6781:84;6674:198;-1:-1:-1;;;6674:198:9:o;3988:201:4:-;-1:-1:-1;;;;;4051:22:4;;4043:73;;;;-1:-1:-1;;;4043:73:4;;2165:2:12;4043:73:4;;;2147:21:12;2204:2;2184:18;;;2177:30;2243:34;2223:18;;;2216:62;-1:-1:-1;;;2294:18:12;;;2287:36;2340:19;;4043:73:4;;;;;;;;;4174:8;-1:-1:-1;;;;;;;;;;;4126:39:4;:56;;-1:-1:-1;;;;;;4126:56:4;-1:-1:-1;;;;;4126:56:4;;;;;;;;;;-1:-1:-1;3988:201:4:o;1406:259::-;-1:-1:-1;;;;;1702:19:9;;;1479:95:4;;;;-1:-1:-1;;;1479:95:4;;2572:2:12;1479:95:4;;;2554:21:12;2611:2;2591:18;;;2584:30;2650:34;2630:18;;;2623:62;-1:-1:-1;;;2701:18:12;;;2694:43;2754:19;;1479:95:4;2370:409:12;1479:95:4;1641:17;1030:66;1584:48;1859:190:11;7058:325:9;7199:12;7224;7238:23;7265:6;-1:-1:-1;;;;;7265:19:9;7285:4;7265:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7223:67:9;;-1:-1:-1;7223:67:9;-1:-1:-1;7307:69:9;7334:6;7223:67;;7363:12;7307:26;:69::i;:::-;7300:76;7058:325;-1:-1:-1;;;;;;7058:325:9:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;-1:-1:-1;;;;;1702:19:9;;;8113:60;;;;-1:-1:-1;;;8113:60:9;;3278:2:12;8113:60:9;;;3260:21:12;3317:2;3297:18;;;3290:30;3356:31;3336:18;;;3329:59;3405:18;;8113:60:9;3076:353:12;8113:60:9;-1:-1:-1;8208:10:9;8201:17;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;:::o;8821:540::-;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;-1:-1:-1;;;9324:20:9;;;;;;;;:::i;14:177:12:-;93:13;;-1:-1:-1;;;;;135:31:12;;125:42;;115:70;;181:1;178;171:12;115:70;14:177;;;:::o;196:127::-;257:10;252:3;248:20;245:1;238:31;288:4;285:1;278:15;312:4;309:1;302:15;328:250;413:1;423:113;437:6;434:1;431:13;423:113;;;513:11;;;507:18;494:11;;;487:39;459:2;452:10;423:113;;;-1:-1:-1;;570:1:12;552:16;;545:27;328:250::o;583:1066::-;680:6;688;696;749:2;737:9;728:7;724:23;720:32;717:52;;;765:1;762;755:12;717:52;788:40;818:9;788:40;:::i;:::-;778:50;;847:49;892:2;881:9;877:18;847:49;:::i;:::-;940:2;925:18;;919:25;837:59;;-1:-1:-1;;;;;;993:14:12;;;990:34;;;1020:1;1017;1010:12;990:34;1058:6;1047:9;1043:22;1033:32;;1103:7;1096:4;1092:2;1088:13;1084:27;1074:55;;1125:1;1122;1115:12;1074:55;1154:2;1148:9;1176:2;1172;1169:10;1166:36;;;1182:18;;:::i;:::-;1257:2;1251:9;1225:2;1311:13;;-1:-1:-1;;1307:22:12;;;1331:2;1303:31;1299:40;1287:53;;;1355:18;;;1375:22;;;1352:46;1349:72;;;1401:18;;:::i;:::-;1441:10;1437:2;1430:22;1476:2;1468:6;1461:18;1516:7;1511:2;1506;1502;1498:11;1494:20;1491:33;1488:53;;;1537:1;1534;1527:12;1488:53;1550:68;1615:2;1610;1602:6;1598:15;1593:2;1589;1585:11;1550:68;:::i;:::-;1637:6;1627:16;;;;;;;583:1066;;;;;:::o;2784:287::-;2913:3;2951:6;2945:13;2967:66;3026:6;3021:3;3014:4;3006:6;3002:17;2967:66;:::i;:::-;3049:16;;;;;2784:287;-1:-1:-1;;2784:287:12:o;3434:396::-;3583:2;3572:9;3565:21;3546:4;3615:6;3609:13;3658:6;3653:2;3642:9;3638:18;3631:34;3674:79;3746:6;3741:2;3730:9;3726:18;3721:2;3713:6;3709:15;3674:79;:::i;:::-;3814:2;3793:15;-1:-1:-1;;3789:29:12;3774:45;;;;3821:2;3770:54;;3434:396;-1:-1:-1;;3434:396:12:o;:::-;3389:4951:8;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_522":{"entryPoint":null,"id":522,"parameterSlots":0,"returnSlots":0},"@_530":{"entryPoint":null,"id":530,"parameterSlots":0,"returnSlots":0},"@_beforeFallback_535":{"entryPoint":null,"id":535,"parameterSlots":0,"returnSlots":0},"@_changeAdmin_392":{"entryPoint":760,"id":392,"parameterSlots":1,"returnSlots":0},"@_delegate_495":{"entryPoint":861,"id":495,"parameterSlots":1,"returnSlots":0},"@_dispatchAdmin_867":{"entryPoint":609,"id":867,"parameterSlots":0,"returnSlots":1},"@_dispatchChangeAdmin_916":{"entryPoint":561,"id":916,"parameterSlots":0,"returnSlots":1},"@_dispatchImplementation_887":{"entryPoint":672,"id":887,"parameterSlots":0,"returnSlots":1},"@_dispatchUpgradeToAndCall_982":{"entryPoint":493,"id":982,"parameterSlots":0,"returnSlots":1},"@_dispatchUpgradeTo_950":{"entryPoint":410,"id":950,"parameterSlots":0,"returnSlots":1},"@_fallback_514":{"entryPoint":691,"id":514,"parameterSlots":0,"returnSlots":0},"@_fallback_847":{"entryPoint":23,"id":847,"parameterSlots":0,"returnSlots":0},"@_getAdmin_349":{"entryPoint":360,"id":349,"parameterSlots":0,"returnSlots":1},"@_getImplementation_210":{"entryPoint":1167,"id":210,"parameterSlots":0,"returnSlots":1},"@_implementation_179":{"entryPoint":847,"id":179,"parameterSlots":0,"returnSlots":1},"@_requireZeroValue_1004":{"entryPoint":707,"id":1004,"parameterSlots":0,"returnSlots":0},"@_revert_1334":{"entryPoint":1598,"id":1334,"parameterSlots":2,"returnSlots":0},"@_setAdmin_375":{"entryPoint":998,"id":375,"parameterSlots":1,"returnSlots":0},"@_setImplementation_234":{"entryPoint":1206,"id":234,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCall_279":{"entryPoint":717,"id":279,"parameterSlots":3,"returnSlots":0},"@_upgradeTo_249":{"entryPoint":891,"id":249,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_1222":{"entryPoint":954,"id":1222,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_1251":{"entryPoint":1354,"id":1251,"parameterSlots":3,"returnSlots":1},"@getAddressSlot_1397":{"entryPoint":null,"id":1397,"parameterSlots":1,"returnSlots":1},"@isContract_1023":{"entryPoint":null,"id":1023,"parameterSlots":1,"returnSlots":1},"@verifyCallResultFromTarget_1290":{"entryPoint":1470,"id":1290,"parameterSlots":4,"returnSlots":1},"abi_decode_address_payable":{"entryPoint":1679,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":1706,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_bytes_memory_ptr":{"entryPoint":1751,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":1973,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2000,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":1640,"id":null,"parameterSlots":4,"returnSlots":2},"copy_memory_to_memory_with_cleanup":{"entryPoint":1939,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":1731,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5007:12","statements":[{"nodeType":"YulBlock","src":"6:3:12","statements":[]},{"body":{"nodeType":"YulBlock","src":"188:296:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"205:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"216:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"198:6:12"},"nodeType":"YulFunctionCall","src":"198:21:12"},"nodeType":"YulExpressionStatement","src":"198:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"239:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"250:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"235:3:12"},"nodeType":"YulFunctionCall","src":"235:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"255:2:12","type":"","value":"66"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"228:6:12"},"nodeType":"YulFunctionCall","src":"228:30:12"},"nodeType":"YulExpressionStatement","src":"228:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"278:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"289:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"274:3:12"},"nodeType":"YulFunctionCall","src":"274:18:12"},{"hexValue":"5472616e73706172656e745570677261646561626c6550726f78793a2061646d","kind":"string","nodeType":"YulLiteral","src":"294:34:12","type":"","value":"TransparentUpgradeableProxy: adm"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"267:6:12"},"nodeType":"YulFunctionCall","src":"267:62:12"},"nodeType":"YulExpressionStatement","src":"267:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"349:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"360:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"345:3:12"},"nodeType":"YulFunctionCall","src":"345:18:12"},{"hexValue":"696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267","kind":"string","nodeType":"YulLiteral","src":"365:34:12","type":"","value":"in cannot fallback to proxy targ"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"338:6:12"},"nodeType":"YulFunctionCall","src":"338:62:12"},"nodeType":"YulExpressionStatement","src":"338:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"420:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"431:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"416:3:12"},"nodeType":"YulFunctionCall","src":"416:19:12"},{"hexValue":"6574","kind":"string","nodeType":"YulLiteral","src":"437:4:12","type":"","value":"et"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"409:6:12"},"nodeType":"YulFunctionCall","src":"409:33:12"},"nodeType":"YulExpressionStatement","src":"409:33:12"},{"nodeType":"YulAssignment","src":"451:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"463:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"474:3:12","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"459:3:12"},"nodeType":"YulFunctionCall","src":"459:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"451:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"165:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"179:4:12","type":""}],"src":"14:470:12"},{"body":{"nodeType":"YulBlock","src":"619:201:12","statements":[{"body":{"nodeType":"YulBlock","src":"657:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"666:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"669:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"659:6:12"},"nodeType":"YulFunctionCall","src":"659:12:12"},"nodeType":"YulExpressionStatement","src":"659:12:12"}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"635:10:12"},{"name":"endIndex","nodeType":"YulIdentifier","src":"647:8:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"632:2:12"},"nodeType":"YulFunctionCall","src":"632:24:12"},"nodeType":"YulIf","src":"629:44:12"},{"body":{"nodeType":"YulBlock","src":"706:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"715:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"718:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"708:6:12"},"nodeType":"YulFunctionCall","src":"708:12:12"},"nodeType":"YulExpressionStatement","src":"708:12:12"}]},"condition":{"arguments":[{"name":"endIndex","nodeType":"YulIdentifier","src":"688:8:12"},{"name":"length","nodeType":"YulIdentifier","src":"698:6:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"685:2:12"},"nodeType":"YulFunctionCall","src":"685:20:12"},"nodeType":"YulIf","src":"682:40:12"},{"nodeType":"YulAssignment","src":"731:36:12","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"748:6:12"},{"name":"startIndex","nodeType":"YulIdentifier","src":"756:10:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"744:3:12"},"nodeType":"YulFunctionCall","src":"744:23:12"},"variableNames":[{"name":"offsetOut","nodeType":"YulIdentifier","src":"731:9:12"}]},{"nodeType":"YulAssignment","src":"776:38:12","value":{"arguments":[{"name":"endIndex","nodeType":"YulIdentifier","src":"793:8:12"},{"name":"startIndex","nodeType":"YulIdentifier","src":"803:10:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"789:3:12"},"nodeType":"YulFunctionCall","src":"789:25:12"},"variableNames":[{"name":"lengthOut","nodeType":"YulIdentifier","src":"776:9:12"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"553:6:12","type":""},{"name":"length","nodeType":"YulTypedName","src":"561:6:12","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"569:10:12","type":""},{"name":"endIndex","nodeType":"YulTypedName","src":"581:8:12","type":""}],"returnVariables":[{"name":"offsetOut","nodeType":"YulTypedName","src":"594:9:12","type":""},{"name":"lengthOut","nodeType":"YulTypedName","src":"605:9:12","type":""}],"src":"489:331:12"},{"body":{"nodeType":"YulBlock","src":"882:124:12","statements":[{"nodeType":"YulAssignment","src":"892:29:12","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"914:6:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"901:12:12"},"nodeType":"YulFunctionCall","src":"901:20:12"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"892:5:12"}]},{"body":{"nodeType":"YulBlock","src":"984:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"993:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"996:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"986:6:12"},"nodeType":"YulFunctionCall","src":"986:12:12"},"nodeType":"YulExpressionStatement","src":"986:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"943:5:12"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"954:5:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"969:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"974:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"965:3:12"},"nodeType":"YulFunctionCall","src":"965:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"978:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"961:3:12"},"nodeType":"YulFunctionCall","src":"961:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"950:3:12"},"nodeType":"YulFunctionCall","src":"950:31:12"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"940:2:12"},"nodeType":"YulFunctionCall","src":"940:42:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"933:6:12"},"nodeType":"YulFunctionCall","src":"933:50:12"},"nodeType":"YulIf","src":"930:70:12"}]},"name":"abi_decode_address_payable","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"861:6:12","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"872:5:12","type":""}],"src":"825:181:12"},{"body":{"nodeType":"YulBlock","src":"1089:124:12","statements":[{"body":{"nodeType":"YulBlock","src":"1135:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1144:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1147:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1137:6:12"},"nodeType":"YulFunctionCall","src":"1137:12:12"},"nodeType":"YulExpressionStatement","src":"1137:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1110:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"1119:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1106:3:12"},"nodeType":"YulFunctionCall","src":"1106:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"1131:2:12","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1102:3:12"},"nodeType":"YulFunctionCall","src":"1102:32:12"},"nodeType":"YulIf","src":"1099:52:12"},{"nodeType":"YulAssignment","src":"1160:47:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1197:9:12"}],"functionName":{"name":"abi_decode_address_payable","nodeType":"YulIdentifier","src":"1170:26:12"},"nodeType":"YulFunctionCall","src":"1170:37:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1160:6:12"}]}]},"name":"abi_decode_tuple_t_address_payable","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1055:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1066:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1078:6:12","type":""}],"src":"1011:202:12"},{"body":{"nodeType":"YulBlock","src":"1250:95:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1267:1:12","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1274:3:12","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1279:10:12","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1270:3:12"},"nodeType":"YulFunctionCall","src":"1270:20:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1260:6:12"},"nodeType":"YulFunctionCall","src":"1260:31:12"},"nodeType":"YulExpressionStatement","src":"1260:31:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1307:1:12","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1310:4:12","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1300:6:12"},"nodeType":"YulFunctionCall","src":"1300:15:12"},"nodeType":"YulExpressionStatement","src":"1300:15:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1331:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1334:4:12","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1324:6:12"},"nodeType":"YulFunctionCall","src":"1324:15:12"},"nodeType":"YulExpressionStatement","src":"1324:15:12"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"1218:127:12"},{"body":{"nodeType":"YulBlock","src":"1454:907:12","statements":[{"body":{"nodeType":"YulBlock","src":"1500:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1509:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1512:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1502:6:12"},"nodeType":"YulFunctionCall","src":"1502:12:12"},"nodeType":"YulExpressionStatement","src":"1502:12:12"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1475:7:12"},{"name":"headStart","nodeType":"YulIdentifier","src":"1484:9:12"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1471:3:12"},"nodeType":"YulFunctionCall","src":"1471:23:12"},{"kind":"number","nodeType":"YulLiteral","src":"1496:2:12","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1467:3:12"},"nodeType":"YulFunctionCall","src":"1467:32:12"},"nodeType":"YulIf","src":"1464:52:12"},{"nodeType":"YulAssignment","src":"1525:47:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1562:9:12"}],"functionName":{"name":"abi_decode_address_payable","nodeType":"YulIdentifier","src":"1535:26:12"},"nodeType":"YulFunctionCall","src":"1535:37:12"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1525:6:12"}]},{"nodeType":"YulVariableDeclaration","src":"1581:46:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1612:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"1623:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1608:3:12"},"nodeType":"YulFunctionCall","src":"1608:18:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1595:12:12"},"nodeType":"YulFunctionCall","src":"1595:32:12"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1585:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1636:28:12","value":{"kind":"number","nodeType":"YulLiteral","src":"1646:18:12","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1640:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1691:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1700:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1703:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1693:6:12"},"nodeType":"YulFunctionCall","src":"1693:12:12"},"nodeType":"YulExpressionStatement","src":"1693:12:12"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1679:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1687:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1676:2:12"},"nodeType":"YulFunctionCall","src":"1676:14:12"},"nodeType":"YulIf","src":"1673:34:12"},{"nodeType":"YulVariableDeclaration","src":"1716:32:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1730:9:12"},{"name":"offset","nodeType":"YulIdentifier","src":"1741:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1726:3:12"},"nodeType":"YulFunctionCall","src":"1726:22:12"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1720:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1796:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1805:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1808:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1798:6:12"},"nodeType":"YulFunctionCall","src":"1798:12:12"},"nodeType":"YulExpressionStatement","src":"1798:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1775:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"1779:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1771:3:12"},"nodeType":"YulFunctionCall","src":"1771:13:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1786:7:12"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1767:3:12"},"nodeType":"YulFunctionCall","src":"1767:27:12"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1760:6:12"},"nodeType":"YulFunctionCall","src":"1760:35:12"},"nodeType":"YulIf","src":"1757:55:12"},{"nodeType":"YulVariableDeclaration","src":"1821:26:12","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1844:2:12"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1831:12:12"},"nodeType":"YulFunctionCall","src":"1831:16:12"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"1825:2:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"1870:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1872:16:12"},"nodeType":"YulFunctionCall","src":"1872:18:12"},"nodeType":"YulExpressionStatement","src":"1872:18:12"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1862:2:12"},{"name":"_1","nodeType":"YulIdentifier","src":"1866:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1859:2:12"},"nodeType":"YulFunctionCall","src":"1859:10:12"},"nodeType":"YulIf","src":"1856:36:12"},{"nodeType":"YulVariableDeclaration","src":"1901:17:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1915:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1911:3:12"},"nodeType":"YulFunctionCall","src":"1911:7:12"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"1905:2:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1927:23:12","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1947:2:12","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1941:5:12"},"nodeType":"YulFunctionCall","src":"1941:9:12"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1931:6:12","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1959:71:12","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1981:6:12"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"2005:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"2009:4:12","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2001:3:12"},"nodeType":"YulFunctionCall","src":"2001:13:12"},{"name":"_4","nodeType":"YulIdentifier","src":"2016:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1997:3:12"},"nodeType":"YulFunctionCall","src":"1997:22:12"},{"kind":"number","nodeType":"YulLiteral","src":"2021:2:12","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1993:3:12"},"nodeType":"YulFunctionCall","src":"1993:31:12"},{"name":"_4","nodeType":"YulIdentifier","src":"2026:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1989:3:12"},"nodeType":"YulFunctionCall","src":"1989:40:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1977:3:12"},"nodeType":"YulFunctionCall","src":"1977:53:12"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1963:10:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"2089:22:12","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2091:16:12"},"nodeType":"YulFunctionCall","src":"2091:18:12"},"nodeType":"YulExpressionStatement","src":"2091:18:12"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2048:10:12"},{"name":"_1","nodeType":"YulIdentifier","src":"2060:2:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2045:2:12"},"nodeType":"YulFunctionCall","src":"2045:18:12"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2068:10:12"},{"name":"memPtr","nodeType":"YulIdentifier","src":"2080:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2065:2:12"},"nodeType":"YulFunctionCall","src":"2065:22:12"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2042:2:12"},"nodeType":"YulFunctionCall","src":"2042:46:12"},"nodeType":"YulIf","src":"2039:72:12"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2127:2:12","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2131:10:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2120:6:12"},"nodeType":"YulFunctionCall","src":"2120:22:12"},"nodeType":"YulExpressionStatement","src":"2120:22:12"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2158:6:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2166:2:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2151:6:12"},"nodeType":"YulFunctionCall","src":"2151:18:12"},"nodeType":"YulExpressionStatement","src":"2151:18:12"},{"body":{"nodeType":"YulBlock","src":"2215:16:12","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2224:1:12","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2227:1:12","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2217:6:12"},"nodeType":"YulFunctionCall","src":"2217:12:12"},"nodeType":"YulExpressionStatement","src":"2217:12:12"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2192:2:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2196:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2188:3:12"},"nodeType":"YulFunctionCall","src":"2188:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"2201:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2184:3:12"},"nodeType":"YulFunctionCall","src":"2184:20:12"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2206:7:12"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2181:2:12"},"nodeType":"YulFunctionCall","src":"2181:33:12"},"nodeType":"YulIf","src":"2178:53:12"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2257:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"2265:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2253:3:12"},"nodeType":"YulFunctionCall","src":"2253:15:12"},{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2274:2:12"},{"kind":"number","nodeType":"YulLiteral","src":"2278:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2270:3:12"},"nodeType":"YulFunctionCall","src":"2270:11:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2283:2:12"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"2240:12:12"},"nodeType":"YulFunctionCall","src":"2240:46:12"},"nodeType":"YulExpressionStatement","src":"2240:46:12"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2310:6:12"},{"name":"_3","nodeType":"YulIdentifier","src":"2318:2:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2306:3:12"},"nodeType":"YulFunctionCall","src":"2306:15:12"},{"kind":"number","nodeType":"YulLiteral","src":"2323:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2302:3:12"},"nodeType":"YulFunctionCall","src":"2302:24:12"},{"kind":"number","nodeType":"YulLiteral","src":"2328:1:12","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2295:6:12"},"nodeType":"YulFunctionCall","src":"2295:35:12"},"nodeType":"YulExpressionStatement","src":"2295:35:12"},{"nodeType":"YulAssignment","src":"2339:16:12","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"2349:6:12"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2339:6:12"}]}]},"name":"abi_decode_tuple_t_address_payablet_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1412:9:12","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1423:7:12","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1435:6:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1443:6:12","type":""}],"src":"1350:1011:12"},{"body":{"nodeType":"YulBlock","src":"2467:102:12","statements":[{"nodeType":"YulAssignment","src":"2477:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2489:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2500:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2485:3:12"},"nodeType":"YulFunctionCall","src":"2485:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2477:4:12"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2519:9:12"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2534:6:12"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2550:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2555:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2546:3:12"},"nodeType":"YulFunctionCall","src":"2546:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"2559:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2542:3:12"},"nodeType":"YulFunctionCall","src":"2542:19:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2530:3:12"},"nodeType":"YulFunctionCall","src":"2530:32:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2512:6:12"},"nodeType":"YulFunctionCall","src":"2512:51:12"},"nodeType":"YulExpressionStatement","src":"2512:51:12"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2436:9:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2447:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2458:4:12","type":""}],"src":"2366:203:12"},{"body":{"nodeType":"YulBlock","src":"2703:175:12","statements":[{"nodeType":"YulAssignment","src":"2713:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2725:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2736:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2721:3:12"},"nodeType":"YulFunctionCall","src":"2721:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2713:4:12"}]},{"nodeType":"YulVariableDeclaration","src":"2748:29:12","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2766:3:12","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2771:1:12","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2762:3:12"},"nodeType":"YulFunctionCall","src":"2762:11:12"},{"kind":"number","nodeType":"YulLiteral","src":"2775:1:12","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2758:3:12"},"nodeType":"YulFunctionCall","src":"2758:19:12"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2752:2:12","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2793:9:12"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2808:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"2816:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2804:3:12"},"nodeType":"YulFunctionCall","src":"2804:15:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2786:6:12"},"nodeType":"YulFunctionCall","src":"2786:34:12"},"nodeType":"YulExpressionStatement","src":"2786:34:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2840:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"2851:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2836:3:12"},"nodeType":"YulFunctionCall","src":"2836:18:12"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"2860:6:12"},{"name":"_1","nodeType":"YulIdentifier","src":"2868:2:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2856:3:12"},"nodeType":"YulFunctionCall","src":"2856:15:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2829:6:12"},"nodeType":"YulFunctionCall","src":"2829:43:12"},"nodeType":"YulExpressionStatement","src":"2829:43:12"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2664:9:12","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2675:6:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2683:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2694:4:12","type":""}],"src":"2574:304:12"},{"body":{"nodeType":"YulBlock","src":"3057:228:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3074:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3085:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3067:6:12"},"nodeType":"YulFunctionCall","src":"3067:21:12"},"nodeType":"YulExpressionStatement","src":"3067:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3108:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3119:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3104:3:12"},"nodeType":"YulFunctionCall","src":"3104:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"3124:2:12","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3097:6:12"},"nodeType":"YulFunctionCall","src":"3097:30:12"},"nodeType":"YulExpressionStatement","src":"3097:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3147:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3158:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3143:3:12"},"nodeType":"YulFunctionCall","src":"3143:18:12"},{"hexValue":"455243313936373a206e65772061646d696e20697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"3163:34:12","type":"","value":"ERC1967: new admin is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3136:6:12"},"nodeType":"YulFunctionCall","src":"3136:62:12"},"nodeType":"YulExpressionStatement","src":"3136:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3218:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3229:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3214:3:12"},"nodeType":"YulFunctionCall","src":"3214:18:12"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"3234:8:12","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3207:6:12"},"nodeType":"YulFunctionCall","src":"3207:36:12"},"nodeType":"YulExpressionStatement","src":"3207:36:12"},{"nodeType":"YulAssignment","src":"3252:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3264:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3275:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3260:3:12"},"nodeType":"YulFunctionCall","src":"3260:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3252:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3034:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3048:4:12","type":""}],"src":"2883:402:12"},{"body":{"nodeType":"YulBlock","src":"3464:235:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3481:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3492:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3474:6:12"},"nodeType":"YulFunctionCall","src":"3474:21:12"},"nodeType":"YulExpressionStatement","src":"3474:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3515:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3526:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3511:3:12"},"nodeType":"YulFunctionCall","src":"3511:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"3531:2:12","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3504:6:12"},"nodeType":"YulFunctionCall","src":"3504:30:12"},"nodeType":"YulExpressionStatement","src":"3504:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3554:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3565:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3550:3:12"},"nodeType":"YulFunctionCall","src":"3550:18:12"},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e","kind":"string","nodeType":"YulLiteral","src":"3570:34:12","type":"","value":"ERC1967: new implementation is n"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3543:6:12"},"nodeType":"YulFunctionCall","src":"3543:62:12"},"nodeType":"YulExpressionStatement","src":"3543:62:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3625:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3636:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3621:3:12"},"nodeType":"YulFunctionCall","src":"3621:18:12"},{"hexValue":"6f74206120636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"3641:15:12","type":"","value":"ot a contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3614:6:12"},"nodeType":"YulFunctionCall","src":"3614:43:12"},"nodeType":"YulExpressionStatement","src":"3614:43:12"},{"nodeType":"YulAssignment","src":"3666:27:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3678:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"3689:3:12","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3674:3:12"},"nodeType":"YulFunctionCall","src":"3674:19:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3666:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3441:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3455:4:12","type":""}],"src":"3290:409:12"},{"body":{"nodeType":"YulBlock","src":"3770:184:12","statements":[{"nodeType":"YulVariableDeclaration","src":"3780:10:12","value":{"kind":"number","nodeType":"YulLiteral","src":"3789:1:12","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3784:1:12","type":""}]},{"body":{"nodeType":"YulBlock","src":"3849:63:12","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3874:3:12"},{"name":"i","nodeType":"YulIdentifier","src":"3879:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3870:3:12"},"nodeType":"YulFunctionCall","src":"3870:11:12"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3893:3:12"},{"name":"i","nodeType":"YulIdentifier","src":"3898:1:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3889:3:12"},"nodeType":"YulFunctionCall","src":"3889:11:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3883:5:12"},"nodeType":"YulFunctionCall","src":"3883:18:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3863:6:12"},"nodeType":"YulFunctionCall","src":"3863:39:12"},"nodeType":"YulExpressionStatement","src":"3863:39:12"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3810:1:12"},{"name":"length","nodeType":"YulIdentifier","src":"3813:6:12"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3807:2:12"},"nodeType":"YulFunctionCall","src":"3807:13:12"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3821:19:12","statements":[{"nodeType":"YulAssignment","src":"3823:15:12","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3832:1:12"},{"kind":"number","nodeType":"YulLiteral","src":"3835:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3828:3:12"},"nodeType":"YulFunctionCall","src":"3828:10:12"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3823:1:12"}]}]},"pre":{"nodeType":"YulBlock","src":"3803:3:12","statements":[]},"src":"3799:113:12"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3932:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"3937:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3928:3:12"},"nodeType":"YulFunctionCall","src":"3928:16:12"},{"kind":"number","nodeType":"YulLiteral","src":"3946:1:12","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3921:6:12"},"nodeType":"YulFunctionCall","src":"3921:27:12"},"nodeType":"YulExpressionStatement","src":"3921:27:12"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"3748:3:12","type":""},{"name":"dst","nodeType":"YulTypedName","src":"3753:3:12","type":""},{"name":"length","nodeType":"YulTypedName","src":"3758:6:12","type":""}],"src":"3704:250:12"},{"body":{"nodeType":"YulBlock","src":"4096:150:12","statements":[{"nodeType":"YulVariableDeclaration","src":"4106:27:12","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4126:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4120:5:12"},"nodeType":"YulFunctionCall","src":"4120:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4110:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4181:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"4189:4:12","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4177:3:12"},"nodeType":"YulFunctionCall","src":"4177:17:12"},{"name":"pos","nodeType":"YulIdentifier","src":"4196:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"4201:6:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"4142:34:12"},"nodeType":"YulFunctionCall","src":"4142:66:12"},"nodeType":"YulExpressionStatement","src":"4142:66:12"},{"nodeType":"YulAssignment","src":"4217:23:12","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4228:3:12"},{"name":"length","nodeType":"YulIdentifier","src":"4233:6:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4224:3:12"},"nodeType":"YulFunctionCall","src":"4224:16:12"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"4217:3:12"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"4072:3:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4077:6:12","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"4088:3:12","type":""}],"src":"3959:287:12"},{"body":{"nodeType":"YulBlock","src":"4425:179:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4442:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4453:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4435:6:12"},"nodeType":"YulFunctionCall","src":"4435:21:12"},"nodeType":"YulExpressionStatement","src":"4435:21:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4476:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4487:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4472:3:12"},"nodeType":"YulFunctionCall","src":"4472:18:12"},{"kind":"number","nodeType":"YulLiteral","src":"4492:2:12","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4465:6:12"},"nodeType":"YulFunctionCall","src":"4465:30:12"},"nodeType":"YulExpressionStatement","src":"4465:30:12"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4515:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4526:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4511:3:12"},"nodeType":"YulFunctionCall","src":"4511:18:12"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"4531:31:12","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4504:6:12"},"nodeType":"YulFunctionCall","src":"4504:59:12"},"nodeType":"YulExpressionStatement","src":"4504:59:12"},{"nodeType":"YulAssignment","src":"4572:26:12","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4584:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4595:2:12","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4580:3:12"},"nodeType":"YulFunctionCall","src":"4580:18:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4572:4:12"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4402:9:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4416:4:12","type":""}],"src":"4251:353:12"},{"body":{"nodeType":"YulBlock","src":"4730:275:12","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4747:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4758:2:12","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4740:6:12"},"nodeType":"YulFunctionCall","src":"4740:21:12"},"nodeType":"YulExpressionStatement","src":"4740:21:12"},{"nodeType":"YulVariableDeclaration","src":"4770:27:12","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4790:6:12"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4784:5:12"},"nodeType":"YulFunctionCall","src":"4784:13:12"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4774:6:12","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4817:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4828:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4813:3:12"},"nodeType":"YulFunctionCall","src":"4813:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"4833:6:12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4806:6:12"},"nodeType":"YulFunctionCall","src":"4806:34:12"},"nodeType":"YulExpressionStatement","src":"4806:34:12"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4888:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"4896:2:12","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4884:3:12"},"nodeType":"YulFunctionCall","src":"4884:15:12"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4905:9:12"},{"kind":"number","nodeType":"YulLiteral","src":"4916:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4901:3:12"},"nodeType":"YulFunctionCall","src":"4901:18:12"},{"name":"length","nodeType":"YulIdentifier","src":"4921:6:12"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"4849:34:12"},"nodeType":"YulFunctionCall","src":"4849:79:12"},"nodeType":"YulExpressionStatement","src":"4849:79:12"},{"nodeType":"YulAssignment","src":"4937:62:12","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4953:9:12"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4972:6:12"},{"kind":"number","nodeType":"YulLiteral","src":"4980:2:12","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4968:3:12"},"nodeType":"YulFunctionCall","src":"4968:15:12"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4989:2:12","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4985:3:12"},"nodeType":"YulFunctionCall","src":"4985:7:12"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4964:3:12"},"nodeType":"YulFunctionCall","src":"4964:29:12"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4949:3:12"},"nodeType":"YulFunctionCall","src":"4949:45:12"},{"kind":"number","nodeType":"YulLiteral","src":"4996:2:12","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4945:3:12"},"nodeType":"YulFunctionCall","src":"4945:54:12"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4937:4:12"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4699:9:12","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4710:6:12","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4721:4:12","type":""}],"src":"4609:396:12"}]},"contents":"{\n { }\n function abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 66)\n mstore(add(headStart, 64), \"TransparentUpgradeableProxy: adm\")\n mstore(add(headStart, 96), \"in cannot fallback to proxy targ\")\n mstore(add(headStart, 128), \"et\")\n tail := add(headStart, 160)\n }\n function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n {\n if gt(startIndex, endIndex) { revert(0, 0) }\n if gt(endIndex, length) { revert(0, 0) }\n offsetOut := add(offset, startIndex)\n lengthOut := sub(endIndex, startIndex)\n }\n function abi_decode_address_payable(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_address_payable(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address_payable(headStart)\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_tuple_t_address_payablet_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address_payable(headStart)\n let offset := calldataload(add(headStart, 32))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := calldataload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n mstore(add(add(memPtr, _3), 32), 0)\n value1 := memPtr\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_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n }\n function abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC1967: new admin is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\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_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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: call to non-contract\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory_with_cleanup(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}","id":12,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH2 0x13 JUMPI PUSH2 0x11 PUSH2 0x17 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11 JUMPDEST PUSH2 0x1F PUSH2 0x168 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x15E JUMPI PUSH1 0x60 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH0 CALLDATALOAD AND PUSH4 0x64D3180D PUSH1 0xE1 SHL DUP2 ADD PUSH2 0x59 JUMPI PUSH2 0x52 PUSH2 0x19A JUMP JUMPDEST SWAP2 POP PUSH2 0x156 JUMP JUMPDEST PUSH4 0x587086BD PUSH1 0xE1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x79 JUMPI PUSH2 0x52 PUSH2 0x1ED JUMP JUMPDEST PUSH4 0x70D7C69 PUSH1 0xE4 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x99 JUMPI PUSH2 0x52 PUSH2 0x231 JUMP JUMPDEST PUSH3 0x1EB96F PUSH1 0xE6 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xB8 JUMPI PUSH2 0x52 PUSH2 0x261 JUMP JUMPDEST PUSH4 0xA39F25E5 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xD8 JUMPI PUSH2 0x52 PUSH2 0x2A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x42 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5472616E73706172656E745570677261646561626C6550726F78793A2061646D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x696E2063616E6E6F742066616C6C6261636B20746F2070726F78792074617267 PUSH1 0x64 DUP3 ADD MSTORE PUSH2 0x195D PUSH1 0xF2 SHL PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD RETURN JUMPDEST PUSH2 0x166 PUSH2 0x2B3 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A4 PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x1B2 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH0 PUSH2 0x2CD JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x6D7 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x21B DUP3 DUP3 PUSH1 0x1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x23B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x249 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH2 0x2F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x26B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP3 POP ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2AA PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x34F JUMP JUMPDEST PUSH2 0x166 PUSH2 0x2BE PUSH2 0x34F JUMP JUMPDEST PUSH2 0x35D JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x166 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D6 DUP4 PUSH2 0x37B JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH2 0x2E2 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x2F3 JUMPI PUSH2 0x2F1 DUP4 DUP4 PUSH2 0x3BA JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH2 0x321 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x34C DUP2 PUSH2 0x3E6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x358 PUSH2 0x48F JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x377 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH2 0x384 DUP2 PUSH2 0x4B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x3DF DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x803 PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x54A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x44B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 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 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x18B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH2 0x523 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x46E JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x566 SWAP2 SWAP1 PUSH2 0x7B5 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x59E 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 0x5A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x5B4 DUP7 DUP4 DUP4 DUP8 PUSH2 0x5BE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x62C JUMPI DUP3 MLOAD PUSH0 SUB PUSH2 0x625 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x625 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST POP DUP2 PUSH2 0x636 JUMP JUMPDEST PUSH2 0x636 DUP4 DUP4 PUSH2 0x63E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x64E JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x7D0 JUMP JUMPDEST PUSH0 DUP1 DUP6 DUP6 GT ISZERO PUSH2 0x676 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x682 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6A5 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6BA JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x3DF DUP3 PUSH2 0x68F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x6F1 DUP4 PUSH2 0x68F JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x70D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x720 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x732 JUMPI PUSH2 0x732 PUSH2 0x6C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x75A JUMPI PUSH2 0x75A PUSH2 0x6C3 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x772 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7AD JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x795 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x7C6 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7EE DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x7066735822122049D802 0xC6 SIGNEXTEND BLOCKHASH 0xCC 0xDE PUSH3 0x847701 PUSH15 0x4DE3AA79A5FEB5F60A45C43160AAD2 DUP6 CALLVALUE DIV 0xD0 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"3389:4951:8:-:0;;;;;;2898:11:5;:9;:11::i;:::-;3389:4951:8;;2675:11:5;4407:1102:8;4482:11;:9;:11::i;:::-;-1:-1:-1;;;;;4468:25:8;:10;:25;4464:1039;;4509:16;-1:-1:-1;;;;;;4539:15:8;4557:7;;-1:-1:-1;;;4582:59:8;;4578:779;;4667:20;:18;:20::i;:::-;4661:26;;4578:779;;;-1:-1:-1;;;;;;;;;4712:66:8;;;4708:649;;4804:27;:25;:27::i;4708:649::-;-1:-1:-1;;;;;;;;;4856:61:8;;;4852:505;;4943:22;:20;:22::i;4852:505::-;-1:-1:-1;;;;;;;;;4990:55:8;;;4986:371;;5071:16;:14;:16::i;4986:371::-;-1:-1:-1;;;;;;;;;5112:64:8;;;5108:249;;5202:25;:23;:25::i;5108:249::-;5266:76;;-1:-1:-1;;;5266:76:8;;216:2:12;5266:76:8;;;198:21:12;255:2;235:18;;;228:30;294:34;274:18;;;267:62;365:34;345:18;;;338:62;-1:-1:-1;;;416:19:12;;;409:33;459:19;;5266:76:8;;;;;;;;5108:249;5426:3;5420:10;5413:4;5408:3;5404:14;5397:34;4464:1039;5475:17;:15;:17::i;:::-;4407:1102::o;3784:122:4:-;3828:7;3656:66;3854:39;:45;-1:-1:-1;;;;;3854:45:4;;3784:122;-1:-1:-1;3784:122:4:o;6985:255:8:-;7032:12;7056:19;:17;:19::i;:::-;7086:25;7125:12;:8;7134:1;7125:8;7086:25;7125:12;:::i;:::-;7114:35;;;;;;;:::i;:::-;7086:63;;7159:54;7177:17;7196:9;;;;;;;;;;;;7207:5;7159:17;:54::i;:::-;-1:-1:-1;;7224:9:8;;;;;;;;;-1:-1:-1;7224:9:8;;;6985:255::o;7524:254::-;7578:12;7603:25;;7662:12;:8;7671:1;7662:8;7603:25;7662:12;:::i;:::-;7651:42;;;;;;;:::i;:::-;7602:91;;;;7703:48;7721:17;7740:4;7746;7703:17;:48::i;:::-;7762:9;;;;;;;;;;;;;;;;7524:254;:::o;6694:216::-;6743:12;6767:19;:17;:19::i;:::-;6797:16;6827:12;:8;6836:1;6827:8;6797:16;6827:12;:::i;:::-;6816:35;;;;;;;:::i;:::-;6797:54;;6861:22;6874:8;6861:12;:22::i;5860:165::-;5903:12;5927:19;:17;:19::i;:::-;5957:13;5973:11;:9;:11::i;:::-;6001:17;;;-1:-1:-1;;;;;2530:32:12;;6001:17:8;;;2512:51:12;5957:27:8;;-1:-1:-1;2485:18:12;6001:17:8;;;;;;;;;;;;5994:24;;;5860:165;:::o;6385:198::-;6437:12;6461:19;:17;:19::i;:::-;6491:22;6516:17;:15;:17::i;2322:110:5:-;2397:28;2407:17;:15;:17::i;:::-;2397:9;:28::i;8261:77:8:-;8316:9;:14;8308:23;;;;;2057:265:4;2165:29;2176:17;2165:10;:29::i;:::-;2222:1;2208:4;:11;:15;:28;;;;2227:9;2208:28;2204:112;;;2252:53;2281:17;2300:4;2252:28;:53::i;:::-;;2204:112;2057:265;;;:::o;4300:135::-;4364:35;4377:11;:9;:11::i;:::-;4364:35;;;-1:-1:-1;;;;;2804:15:12;;;2786:34;;2856:15;;;2851:2;2836:18;;2829:43;2721:18;4364:35:4;;;;;;;4409:19;4419:8;4409:9;:19::i;:::-;4300:135;:::o;1148:140:3:-;1215:12;1246:35;:33;:35::i;:::-;1239:42;;1148:140;:::o;948:895:5:-;1286:14;1283:1;1280;1267:34;1500:1;1497;1481:14;1478:1;1462:14;1455:5;1442:60;1576:16;1573:1;1570;1555:38;1614:6;1681:66;;;;1796:16;1793:1;1786:27;1681:66;1716:16;1713:1;1706:27;1771:152:4;1837:37;1856:17;1837:18;:37::i;:::-;1889:27;;-1:-1:-1;;;;;1889:27:4;;;;;;;;1771:152;:::o;6674:198:9:-;6757:12;6788:77;6809:6;6817:4;6788:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6781:84;6674:198;-1:-1:-1;;;6674:198:9:o;3988:201:4:-;-1:-1:-1;;;;;4051:22:4;;4043:73;;;;-1:-1:-1;;;4043:73:4;;3085:2:12;4043:73:4;;;3067:21:12;3124:2;3104:18;;;3097:30;3163:34;3143:18;;;3136:62;-1:-1:-1;;;3214:18:12;;;3207:36;3260:19;;4043:73:4;2883:402:12;4043:73:4;4174:8;3656:66;4126:39;:56;;-1:-1:-1;;;;;;4126:56:4;-1:-1:-1;;;;;4126:56:4;;;;;;;;;;-1:-1:-1;3988:201:4:o;1175:140::-;1228:7;1030:66;1254:48;1859:190:11;1406:259:4;-1:-1:-1;;;;;1702:19:9;;;1479:95:4;;;;-1:-1:-1;;;1479:95:4;;3492:2:12;1479:95:4;;;3474:21:12;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:12;;;3614:43;3674:19;;1479:95:4;3290:409:12;1479:95:4;1641:17;1030:66;1584:48;1859:190:11;7058:325:9;7199:12;7224;7238:23;7265:6;-1:-1:-1;;;;;7265:19:9;7285:4;7265:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7223:67;;;;7307:69;7334:6;7342:7;7351:10;7363:12;7307:26;:69::i;:::-;7300:76;7058:325;-1:-1:-1;;;;;;7058:325:9:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;-1:-1:-1;;;;;1702:19:9;;;8113:60;;;;-1:-1:-1;;;8113:60:9;;4453:2:12;8113:60:9;;;4435:21:12;4492:2;4472:18;;;4465:30;4531:31;4511:18;;;4504:59;4580:18;;8113:60:9;4251:353:12;8113:60:9;-1:-1:-1;8208:10:9;8201:17;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;:::o;8821:540::-;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;-1:-1:-1;;;9324:20:9;;;;;;;;:::i;489:331:12:-;594:9;605;647:8;635:10;632:24;629:44;;;669:1;666;659:12;629:44;698:6;688:8;685:20;682:40;;;718:1;715;708:12;682:40;-1:-1:-1;;744:23:12;;;789:25;;;;;-1:-1:-1;489:331:12:o;825:181::-;901:20;;-1:-1:-1;;;;;950:31:12;;940:42;;930:70;;996:1;993;986:12;930:70;825:181;;;:::o;1011:202::-;1078:6;1131:2;1119:9;1110:7;1106:23;1102:32;1099:52;;;1147:1;1144;1137:12;1099:52;1170:37;1197:9;1170:37;:::i;1218:127::-;1279:10;1274:3;1270:20;1267:1;1260:31;1310:4;1307:1;1300:15;1334:4;1331:1;1324:15;1350:1011;1435:6;1443;1496:2;1484:9;1475:7;1471:23;1467:32;1464:52;;;1512:1;1509;1502:12;1464:52;1535:37;1562:9;1535:37;:::i;:::-;1525:47;;1623:2;1612:9;1608:18;1595:32;1646:18;1687:2;1679:6;1676:14;1673:34;;;1703:1;1700;1693:12;1673:34;1741:6;1730:9;1726:22;1716:32;;1786:7;1779:4;1775:2;1771:13;1767:27;1757:55;;1808:1;1805;1798:12;1757:55;1844:2;1831:16;1866:2;1862;1859:10;1856:36;;;1872:18;;:::i;:::-;1947:2;1941:9;1915:2;2001:13;;-1:-1:-1;;1997:22:12;;;2021:2;1993:31;1989:40;1977:53;;;2045:18;;;2065:22;;;2042:46;2039:72;;;2091:18;;:::i;:::-;2131:10;2127:2;2120:22;2166:2;2158:6;2151:18;2206:7;2201:2;2196;2192;2188:11;2184:20;2181:33;2178:53;;;2227:1;2224;2217:12;2178:53;2283:2;2278;2274;2270:11;2265:2;2257:6;2253:15;2240:46;2328:1;2323:2;2318;2310:6;2306:15;2302:24;2295:35;2349:6;2339:16;;;;;;;1350:1011;;;;;:::o;3704:250::-;3789:1;3799:113;3813:6;3810:1;3807:13;3799:113;;;3889:11;;;3883:18;3870:11;;;3863:39;3835:2;3828:10;3799:113;;;-1:-1:-1;;3946:1:12;3928:16;;3921:27;3704:250::o;3959:287::-;4088:3;4126:6;4120:13;4142:66;4201:6;4196:3;4189:4;4181:6;4177:17;4142:66;:::i;:::-;4224:16;;;;;3959:287;-1:-1:-1;;3959:287:12:o;4609:396::-;4758:2;4747:9;4740:21;4721:4;4790:6;4784:13;4833:6;4828:2;4817:9;4813:18;4806:34;4849:79;4921:6;4916:2;4905:9;4901:18;4896:2;4888:6;4884:15;4849:79;:::i;:::-;4989:2;4968:15;-1:-1:-1;;4964:29:12;4949:45;;;;4996:2;4945:54;;4609:396;-1:-1:-1;;4609:396:12:o"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin_\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \\\"admin cannot fallback to proxy target\\\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to fully implement transparency without decoding reverts caused by selector clashes between the proxy and the implementation. WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler will not check that there are no selector conflicts, due to the note above. A selector clash between any new function and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":\"TransparentUpgradeableProxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":{\"keccak256\":\"0x168e36d7e616bd41f6abab4a83009da64513ae9e638aa6d5980066e2a92db689\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a45c64b97311fabbcbe8dad7e94fa89e06a7f96060d5565326ef706f5f239017\",\"dweb:/ipfs/QmeU2jiBGbHhz9DqRotjbpAx5s2xExDSRQtSD5ENjuHzDq\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol":{"Address":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122050adb19848b2f2f2ee58dad553c36580470f830a5e395162f7120690e808fcab64736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0xAD 0xB1 SWAP9 BASEFEE 0xB2 CALLCODE CALLCODE 0xEE PC 0xDA 0xD5 MSTORE8 0xC3 PUSH6 0x80470F830A5E CODECOPY MLOAD PUSH3 0xF71206 SWAP1 0xE8 ADDMOD 0xFC 0xAB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"194:9169:9:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;194:9169:9;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122050adb19848b2f2f2ee58dad553c36580470f830a5e395162f7120690e808fcab64736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0xAD 0xB1 SWAP9 BASEFEE 0xB2 CALLCODE CALLCODE 0xEE PC 0xDA 0xD5 MSTORE8 0xC3 PUSH6 0x80470F830A5E CODECOPY MLOAD PUSH3 0xF71206 SWAP1 0xE8 ADDMOD 0xFC 0xAB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"194:9169:9:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":\"Address\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/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.20+commit.a1b79de6\"},\"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\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":\"Context\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220d45f4770ad4a102f2de03822a9ef77306e5cc2ed28748f0df2663a5272c431b264736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD4 PUSH0 SELFBALANCE PUSH17 0xAD4A102F2DE03822A9EF77306E5CC2ED28 PUSH21 0x8F0DF2663A5272C431B264736F6C63430008140033 ","sourceMap":"1420:2685:11:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1420:2685:11;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220d45f4770ad4a102f2de03822a9ef77306e5cc2ed28748f0df2663a5272c431b264736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD4 PUSH0 SELFBALANCE PUSH17 0xAD4A102F2DE03822A9EF77306E5CC2ED28 PUSH21 0x8F0DF2663A5272C431B264736F6C63430008140033 ","sourceMap":"1420:2685:11:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"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 ERC1967 implementation slot: ```solidity contract ERC1967 { bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(Address.isContract(newImplementation), \\\"ERC1967: new implementation is not a contract\\\"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ _Available since v4.9 for `string`, `bytes`._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}}},"sources":{"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol","exportedSymbols":{"Context":[1365],"Ownable":[112]},"id":113,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:0"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol","file":"../utils/Context.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":113,"sourceUnit":1366,"src":"127:30:0","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4,"name":"Context","nameLocations":["683:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":1365,"src":"683:7:0"},"id":5,"nodeType":"InheritanceSpecifier","src":"683:7:0"}],"canonicalName":"Ownable","contractDependencies":[],"contractKind":"contract","documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"159:494:0","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 By default, the owner account will be the one that deploys the contract. This\n can 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":112,"linearizedBaseContracts":[112,1365],"name":"Ownable","nameLocation":"672:7:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":7,"mutability":"mutable","name":"_owner","nameLocation":"713:6:0","nodeType":"VariableDeclaration","scope":112,"src":"697:22:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6,"name":"address","nodeType":"ElementaryTypeName","src":"697:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":13,"name":"OwnershipTransferred","nameLocation":"732:20:0","nodeType":"EventDefinition","parameters":{"id":12,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"769:13:0","nodeType":"VariableDeclaration","scope":13,"src":"753:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8,"name":"address","nodeType":"ElementaryTypeName","src":"753:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"800:8:0","nodeType":"VariableDeclaration","scope":13,"src":"784:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"784:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"752:57:0"},"src":"726:84:0"},{"body":{"id":22,"nodeType":"Block","src":"926:49:0","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1347,"src":"955:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"955:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"936:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":20,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"936:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21,"nodeType":"ExpressionStatement","src":"936:32:0"}]},"documentation":{"id":14,"nodeType":"StructuredDocumentation","src":"816:91:0","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":23,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15,"nodeType":"ParameterList","parameters":[],"src":"923:2:0"},"returnParameters":{"id":16,"nodeType":"ParameterList","parameters":[],"src":"926:0:0"},"scope":112,"src":"912:63:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":30,"nodeType":"Block","src":"1084:41:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":26,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":54,"src":"1094:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":27,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1094:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":28,"nodeType":"ExpressionStatement","src":"1094:13:0"},{"id":29,"nodeType":"PlaceholderStatement","src":"1117:1:0"}]},"documentation":{"id":24,"nodeType":"StructuredDocumentation","src":"981:77:0","text":" @dev Throws if called by any account other than the owner."},"id":31,"name":"onlyOwner","nameLocation":"1072:9:0","nodeType":"ModifierDefinition","parameters":{"id":25,"nodeType":"ParameterList","parameters":[],"src":"1081:2:0"},"src":"1063:62:0","virtual":false,"visibility":"internal"},{"body":{"id":39,"nodeType":"Block","src":"1256:30:0","statements":[{"expression":{"id":37,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"1273:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":36,"id":38,"nodeType":"Return","src":"1266:13:0"}]},"documentation":{"id":32,"nodeType":"StructuredDocumentation","src":"1131:65:0","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":40,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1210:5:0","nodeType":"FunctionDefinition","parameters":{"id":33,"nodeType":"ParameterList","parameters":[],"src":"1215:2:0"},"returnParameters":{"id":36,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40,"src":"1247:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":34,"name":"address","nodeType":"ElementaryTypeName","src":"1247:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1246:9:0"},"scope":112,"src":"1201:85:0","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":53,"nodeType":"Block","src":"1404:85:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":49,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":45,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"1422:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":46,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1422:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":47,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1347,"src":"1433:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":48,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1433:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1422:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":50,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1447:34:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":44,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1414:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":51,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1414:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":52,"nodeType":"ExpressionStatement","src":"1414:68:0"}]},"documentation":{"id":41,"nodeType":"StructuredDocumentation","src":"1292:62:0","text":" @dev Throws if the sender is not the owner."},"id":54,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1368:11:0","nodeType":"FunctionDefinition","parameters":{"id":42,"nodeType":"ParameterList","parameters":[],"src":"1379:2:0"},"returnParameters":{"id":43,"nodeType":"ParameterList","parameters":[],"src":"1404:0:0"},"scope":112,"src":"1359:130:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":67,"nodeType":"Block","src":"1878:47:0","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":63,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1915:1:0","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":62,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1907:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":61,"name":"address","nodeType":"ElementaryTypeName","src":"1907:7:0","typeDescriptions":{}}},"id":64,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1907:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":60,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"1888:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":65,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1888:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":66,"nodeType":"ExpressionStatement","src":"1888:30:0"}]},"documentation":{"id":55,"nodeType":"StructuredDocumentation","src":"1495:324:0","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":68,"implemented":true,"kind":"function","modifiers":[{"id":58,"kind":"modifierInvocation","modifierName":{"id":57,"name":"onlyOwner","nameLocations":["1868:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"1868:9:0"},"nodeType":"ModifierInvocation","src":"1868:9:0"}],"name":"renounceOwnership","nameLocation":"1833:17:0","nodeType":"FunctionDefinition","parameters":{"id":56,"nodeType":"ParameterList","parameters":[],"src":"1850:2:0"},"returnParameters":{"id":59,"nodeType":"ParameterList","parameters":[],"src":"1878:0:0"},"scope":112,"src":"1824:101:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":90,"nodeType":"Block","src":"2144:128:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":82,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":77,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":71,"src":"2162:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":80,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2182:1:0","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":79,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2174:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":78,"name":"address","nodeType":"ElementaryTypeName","src":"2174:7:0","typeDescriptions":{}}},"id":81,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2174:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2162:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":83,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2186:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":76,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2154:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":84,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2154:73:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":85,"nodeType":"ExpressionStatement","src":"2154:73:0"},{"expression":{"arguments":[{"id":87,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":71,"src":"2256:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":86,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"2237:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":88,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2237:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":89,"nodeType":"ExpressionStatement","src":"2237:28:0"}]},"documentation":{"id":69,"nodeType":"StructuredDocumentation","src":"1931:138:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":91,"implemented":true,"kind":"function","modifiers":[{"id":74,"kind":"modifierInvocation","modifierName":{"id":73,"name":"onlyOwner","nameLocations":["2134:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"2134:9:0"},"nodeType":"ModifierInvocation","src":"2134:9:0"}],"name":"transferOwnership","nameLocation":"2083:17:0","nodeType":"FunctionDefinition","parameters":{"id":72,"nodeType":"ParameterList","parameters":[{"constant":false,"id":71,"mutability":"mutable","name":"newOwner","nameLocation":"2109:8:0","nodeType":"VariableDeclaration","scope":91,"src":"2101:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":70,"name":"address","nodeType":"ElementaryTypeName","src":"2101:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2100:18:0"},"returnParameters":{"id":75,"nodeType":"ParameterList","parameters":[],"src":"2144:0:0"},"scope":112,"src":"2074:198:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":110,"nodeType":"Block","src":"2489:124:0","statements":[{"assignments":[98],"declarations":[{"constant":false,"id":98,"mutability":"mutable","name":"oldOwner","nameLocation":"2507:8:0","nodeType":"VariableDeclaration","scope":110,"src":"2499:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":97,"name":"address","nodeType":"ElementaryTypeName","src":"2499:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":100,"initialValue":{"id":99,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"2518:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2499:25:0"},{"expression":{"id":103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":101,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"2534:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":102,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":94,"src":"2543:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2534:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":104,"nodeType":"ExpressionStatement","src":"2534:17:0"},{"eventCall":{"arguments":[{"id":106,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"2587:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":107,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":94,"src":"2597:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":105,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13,"src":"2566:20:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2566:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":109,"nodeType":"EmitStatement","src":"2561:45:0"}]},"documentation":{"id":92,"nodeType":"StructuredDocumentation","src":"2278:143:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":111,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2435:18:0","nodeType":"FunctionDefinition","parameters":{"id":95,"nodeType":"ParameterList","parameters":[{"constant":false,"id":94,"mutability":"mutable","name":"newOwner","nameLocation":"2462:8:0","nodeType":"VariableDeclaration","scope":111,"src":"2454:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":93,"name":"address","nodeType":"ElementaryTypeName","src":"2454:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2453:18:0"},"returnParameters":{"id":96,"nodeType":"ParameterList","parameters":[],"src":"2489:0:0"},"scope":112,"src":"2426:187:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":113,"src":"654:1961:0","usedErrors":[],"usedEvents":[13]}],"src":"102:2514:0"},"id":0},"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol","exportedSymbols":{"IERC1967":[133]},"id":134,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":114,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:1"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1967","contractDependencies":[],"contractKind":"interface","documentation":{"id":115,"nodeType":"StructuredDocumentation","src":"132:133:1","text":" @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n _Available since v4.8.3._"},"fullyImplemented":true,"id":133,"linearizedBaseContracts":[133],"name":"IERC1967","nameLocation":"276:8:1","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":116,"nodeType":"StructuredDocumentation","src":"291:68:1","text":" @dev Emitted when the implementation is upgraded."},"eventSelector":"bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b","id":120,"name":"Upgraded","nameLocation":"370:8:1","nodeType":"EventDefinition","parameters":{"id":119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":118,"indexed":true,"mutability":"mutable","name":"implementation","nameLocation":"395:14:1","nodeType":"VariableDeclaration","scope":120,"src":"379:30:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"379:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"378:32:1"},"src":"364:47:1"},{"anonymous":false,"documentation":{"id":121,"nodeType":"StructuredDocumentation","src":"417:67:1","text":" @dev Emitted when the admin account has changed."},"eventSelector":"7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f","id":127,"name":"AdminChanged","nameLocation":"495:12:1","nodeType":"EventDefinition","parameters":{"id":126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":123,"indexed":false,"mutability":"mutable","name":"previousAdmin","nameLocation":"516:13:1","nodeType":"VariableDeclaration","scope":127,"src":"508:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":122,"name":"address","nodeType":"ElementaryTypeName","src":"508:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":125,"indexed":false,"mutability":"mutable","name":"newAdmin","nameLocation":"539:8:1","nodeType":"VariableDeclaration","scope":127,"src":"531:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":124,"name":"address","nodeType":"ElementaryTypeName","src":"531:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"507:41:1"},"src":"489:60:1"},{"anonymous":false,"documentation":{"id":128,"nodeType":"StructuredDocumentation","src":"555:59:1","text":" @dev Emitted when the beacon is changed."},"eventSelector":"1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e","id":132,"name":"BeaconUpgraded","nameLocation":"625:14:1","nodeType":"EventDefinition","parameters":{"id":131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":130,"indexed":true,"mutability":"mutable","name":"beacon","nameLocation":"656:6:1","nodeType":"VariableDeclaration","scope":132,"src":"640:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":129,"name":"address","nodeType":"ElementaryTypeName","src":"640:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"639:24:1"},"src":"619:45:1"}],"scope":134,"src":"266:400:1","usedErrors":[],"usedEvents":[120,127,132]}],"src":"107:560:1"},"id":1},"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol","exportedSymbols":{"IERC1822Proxiable":[143]},"id":144,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":135,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"113:23:2"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1822Proxiable","contractDependencies":[],"contractKind":"interface","documentation":{"id":136,"nodeType":"StructuredDocumentation","src":"138:203:2","text":" @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n proxy whose upgrades are fully controlled by the current implementation."},"fullyImplemented":false,"id":143,"linearizedBaseContracts":[143],"name":"IERC1822Proxiable","nameLocation":"352:17:2","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":137,"nodeType":"StructuredDocumentation","src":"376:438:2","text":" @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n address.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy."},"functionSelector":"52d1902d","id":142,"implemented":false,"kind":"function","modifiers":[],"name":"proxiableUUID","nameLocation":"828:13:2","nodeType":"FunctionDefinition","parameters":{"id":138,"nodeType":"ParameterList","parameters":[],"src":"841:2:2"},"returnParameters":{"id":141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":140,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":142,"src":"867:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":139,"name":"bytes32","nodeType":"ElementaryTypeName","src":"867:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"866:9:2"},"scope":143,"src":"819:57:2","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":144,"src":"342:536:2","usedErrors":[],"usedEvents":[]}],"src":"113:766:2"},"id":2},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol","exportedSymbols":{"Address":[1335],"ERC1967Proxy":[180],"ERC1967Upgrade":[484],"IBeacon":[546],"IERC1822Proxiable":[143],"IERC1967":[133],"Proxy":[536],"StorageSlot":[1475]},"id":181,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":145,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"114:23:3"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol","file":"../Proxy.sol","id":146,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":181,"sourceUnit":537,"src":"139:22:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol","file":"./ERC1967Upgrade.sol","id":147,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":181,"sourceUnit":485,"src":"162:30:3","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":149,"name":"Proxy","nameLocations":["592:5:3"],"nodeType":"IdentifierPath","referencedDeclaration":536,"src":"592:5:3"},"id":150,"nodeType":"InheritanceSpecifier","src":"592:5:3"},{"baseName":{"id":151,"name":"ERC1967Upgrade","nameLocations":["599:14:3"],"nodeType":"IdentifierPath","referencedDeclaration":484,"src":"599:14:3"},"id":152,"nodeType":"InheritanceSpecifier","src":"599:14:3"}],"canonicalName":"ERC1967Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":148,"nodeType":"StructuredDocumentation","src":"194:372:3","text":" @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n implementation address that can be changed. This address is stored in storage in the location specified by\n https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the\n implementation behind the proxy."},"fullyImplemented":true,"id":180,"linearizedBaseContracts":[180,484,133,536],"name":"ERC1967Proxy","nameLocation":"576:12:3","nodeType":"ContractDefinition","nodes":[{"body":{"id":166,"nodeType":"Block","src":"1014:56:3","statements":[{"expression":{"arguments":[{"id":161,"name":"_logic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":155,"src":"1042:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":162,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":157,"src":"1050:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"66616c7365","id":163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1057:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":160,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":279,"src":"1024:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1024:39:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":165,"nodeType":"ExpressionStatement","src":"1024:39:3"}]},"documentation":{"id":153,"nodeType":"StructuredDocumentation","src":"620:333:3","text":" @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.\n If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded\n function call, and allows initializing the storage of the proxy like a Solidity constructor."},"id":167,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":155,"mutability":"mutable","name":"_logic","nameLocation":"978:6:3","nodeType":"VariableDeclaration","scope":167,"src":"970:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":154,"name":"address","nodeType":"ElementaryTypeName","src":"970:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":157,"mutability":"mutable","name":"_data","nameLocation":"999:5:3","nodeType":"VariableDeclaration","scope":167,"src":"986:18:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":156,"name":"bytes","nodeType":"ElementaryTypeName","src":"986:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"969:36:3"},"returnParameters":{"id":159,"nodeType":"ParameterList","parameters":[],"src":"1014:0:3"},"scope":180,"src":"958:112:3","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[501],"body":{"id":178,"nodeType":"Block","src":"1229:59:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":174,"name":"ERC1967Upgrade","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":484,"src":"1246:14:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Upgrade_$484_$","typeString":"type(contract ERC1967Upgrade)"}},"id":175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1261:18:3","memberName":"_getImplementation","nodeType":"MemberAccess","referencedDeclaration":210,"src":"1246:33:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1246:35:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":173,"id":177,"nodeType":"Return","src":"1239:42:3"}]},"documentation":{"id":168,"nodeType":"StructuredDocumentation","src":"1076:67:3","text":" @dev Returns the current implementation address."},"id":179,"implemented":true,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"1157:15:3","nodeType":"FunctionDefinition","overrides":{"id":170,"nodeType":"OverrideSpecifier","overrides":[],"src":"1197:8:3"},"parameters":{"id":169,"nodeType":"ParameterList","parameters":[],"src":"1172:2:3"},"returnParameters":{"id":173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":172,"mutability":"mutable","name":"impl","nameLocation":"1223:4:3","nodeType":"VariableDeclaration","scope":179,"src":"1215:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":171,"name":"address","nodeType":"ElementaryTypeName","src":"1215:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1214:14:3"},"scope":180,"src":"1148:140:3","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":181,"src":"567:723:3","usedErrors":[],"usedEvents":[120,127,132]}],"src":"114:1177:3"},"id":3},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol","exportedSymbols":{"Address":[1335],"ERC1967Upgrade":[484],"IBeacon":[546],"IERC1822Proxiable":[143],"IERC1967":[133],"StorageSlot":[1475]},"id":485,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":182,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"116:23:4"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol","file":"../beacon/IBeacon.sol","id":183,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":485,"sourceUnit":547,"src":"141:31:4","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol","file":"../../interfaces/IERC1967.sol","id":184,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":485,"sourceUnit":134,"src":"173:39:4","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol","file":"../../interfaces/draft-IERC1822.sol","id":185,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":485,"sourceUnit":144,"src":"213:45:4","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol","file":"../../utils/Address.sol","id":186,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":485,"sourceUnit":1336,"src":"259:33:4","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol","file":"../../utils/StorageSlot.sol","id":187,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":485,"sourceUnit":1476,"src":"293:37:4","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":189,"name":"IERC1967","nameLocations":["553:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":133,"src":"553:8:4"},"id":190,"nodeType":"InheritanceSpecifier","src":"553:8:4"}],"canonicalName":"ERC1967Upgrade","contractDependencies":[],"contractKind":"contract","documentation":{"id":188,"nodeType":"StructuredDocumentation","src":"332:184:4","text":" @dev This abstract contract provides getters and event emitting update functions for\n https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n _Available since v4.1._"},"fullyImplemented":true,"id":484,"linearizedBaseContracts":[484,133],"name":"ERC1967Upgrade","nameLocation":"535:14:4","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":193,"mutability":"constant","name":"_ROLLBACK_SLOT","nameLocation":"672:14:4","nodeType":"VariableDeclaration","scope":484,"src":"647:108:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"647:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307834393130666466613136666564333236306564306537313437663763633664613131613630323038623562393430366431326136333536313466666439313433","id":192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"689:66:4","typeDescriptions":{"typeIdentifier":"t_rational_33048860383849004559742813297059419343339852917517107368639918720169455489347_by_1","typeString":"int_const 3304...(69 digits omitted)...9347"},"value":"0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143"},"visibility":"private"},{"constant":true,"documentation":{"id":194,"nodeType":"StructuredDocumentation","src":"762:214:4","text":" @dev Storage slot with the address of the current implementation.\n This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n validated in the constructor."},"id":197,"mutability":"constant","name":"_IMPLEMENTATION_SLOT","nameLocation":"1007:20:4","nodeType":"VariableDeclaration","scope":484,"src":"981:115:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":195,"name":"bytes32","nodeType":"ElementaryTypeName","src":"981:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307833363038393461313362613161333231303636376338323834393264623938646361336532303736636333373335613932306133636135303564333832626263","id":196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1030:66:4","typeDescriptions":{"typeIdentifier":"t_rational_24440054405305269366569402256811496959409073762505157381672968839269610695612_by_1","typeString":"int_const 2444...(69 digits omitted)...5612"},"value":"0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc"},"visibility":"internal"},{"body":{"id":209,"nodeType":"Block","src":"1237:78:4","statements":[{"expression":{"expression":{"arguments":[{"id":205,"name":"_IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":197,"src":"1281:20:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":203,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"1254:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1266:14:4","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1397,"src":"1254:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1371_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1254:48:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":207,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1303:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1370,"src":"1254:54:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":202,"id":208,"nodeType":"Return","src":"1247:61:4"}]},"documentation":{"id":198,"nodeType":"StructuredDocumentation","src":"1103:67:4","text":" @dev Returns the current implementation address."},"id":210,"implemented":true,"kind":"function","modifiers":[],"name":"_getImplementation","nameLocation":"1184:18:4","nodeType":"FunctionDefinition","parameters":{"id":199,"nodeType":"ParameterList","parameters":[],"src":"1202:2:4"},"returnParameters":{"id":202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":210,"src":"1228:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":200,"name":"address","nodeType":"ElementaryTypeName","src":"1228:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1227:9:4"},"scope":484,"src":"1175:140:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":233,"nodeType":"Block","src":"1469:196:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":219,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":213,"src":"1506:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":217,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"1487:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1335_$","typeString":"type(library Address)"}},"id":218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1495:10:4","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":1023,"src":"1487:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1487:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e6f74206120636f6e7472616374","id":221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1526:47:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65","typeString":"literal_string \"ERC1967: new implementation is not a contract\""},"value":"ERC1967: new implementation is not a contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65","typeString":"literal_string \"ERC1967: new implementation is not a contract\""}],"id":216,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1479:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1479:95:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":223,"nodeType":"ExpressionStatement","src":"1479:95:4"},{"expression":{"id":231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":227,"name":"_IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":197,"src":"1611:20:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":224,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"1584:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1596:14:4","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1397,"src":"1584:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1371_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1584:48:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":229,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1633:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1370,"src":"1584:54:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":230,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":213,"src":"1641:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1584:74:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":232,"nodeType":"ExpressionStatement","src":"1584:74:4"}]},"documentation":{"id":211,"nodeType":"StructuredDocumentation","src":"1321:80:4","text":" @dev Stores a new address in the EIP1967 implementation slot."},"id":234,"implemented":true,"kind":"function","modifiers":[],"name":"_setImplementation","nameLocation":"1415:18:4","nodeType":"FunctionDefinition","parameters":{"id":214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":213,"mutability":"mutable","name":"newImplementation","nameLocation":"1442:17:4","nodeType":"VariableDeclaration","scope":234,"src":"1434:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":212,"name":"address","nodeType":"ElementaryTypeName","src":"1434:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1433:27:4"},"returnParameters":{"id":215,"nodeType":"ParameterList","parameters":[],"src":"1469:0:4"},"scope":484,"src":"1406:259:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":248,"nodeType":"Block","src":"1827:96:4","statements":[{"expression":{"arguments":[{"id":241,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"1856:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":240,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":234,"src":"1837:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1837:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":243,"nodeType":"ExpressionStatement","src":"1837:37:4"},{"eventCall":{"arguments":[{"id":245,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":237,"src":"1898:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":244,"name":"Upgraded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":120,"src":"1889:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1889:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":247,"nodeType":"EmitStatement","src":"1884:32:4"}]},"documentation":{"id":235,"nodeType":"StructuredDocumentation","src":"1671:95:4","text":" @dev Perform implementation upgrade\n Emits an {Upgraded} event."},"id":249,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeTo","nameLocation":"1780:10:4","nodeType":"FunctionDefinition","parameters":{"id":238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":237,"mutability":"mutable","name":"newImplementation","nameLocation":"1799:17:4","nodeType":"VariableDeclaration","scope":249,"src":"1791:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":236,"name":"address","nodeType":"ElementaryTypeName","src":"1791:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1790:27:4"},"returnParameters":{"id":239,"nodeType":"ParameterList","parameters":[],"src":"1827:0:4"},"scope":484,"src":"1771:152:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":278,"nodeType":"Block","src":"2155:167:4","statements":[{"expression":{"arguments":[{"id":260,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":252,"src":"2176:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":259,"name":"_upgradeTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"2165:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2165:29:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":262,"nodeType":"ExpressionStatement","src":"2165:29:4"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":263,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"2208:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2213:6:4","memberName":"length","nodeType":"MemberAccess","src":"2208:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2222:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2208:15:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":267,"name":"forceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"2227:9:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2208:28:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":277,"nodeType":"IfStatement","src":"2204:112:4","trueBody":{"id":276,"nodeType":"Block","src":"2238:78:4","statements":[{"expression":{"arguments":[{"id":272,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":252,"src":"2281:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":273,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"2300:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":269,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"2252:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1335_$","typeString":"type(library Address)"}},"id":271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2260:20:4","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":1222,"src":"2252:28:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2252:53:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":275,"nodeType":"ExpressionStatement","src":"2252:53:4"}]}}]},"documentation":{"id":250,"nodeType":"StructuredDocumentation","src":"1929:123:4","text":" @dev Perform implementation upgrade with additional setup call.\n Emits an {Upgraded} event."},"id":279,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCall","nameLocation":"2066:17:4","nodeType":"FunctionDefinition","parameters":{"id":257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"mutability":"mutable","name":"newImplementation","nameLocation":"2092:17:4","nodeType":"VariableDeclaration","scope":279,"src":"2084:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":251,"name":"address","nodeType":"ElementaryTypeName","src":"2084:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":254,"mutability":"mutable","name":"data","nameLocation":"2124:4:4","nodeType":"VariableDeclaration","scope":279,"src":"2111:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":253,"name":"bytes","nodeType":"ElementaryTypeName","src":"2111:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":256,"mutability":"mutable","name":"forceCall","nameLocation":"2135:9:4","nodeType":"VariableDeclaration","scope":279,"src":"2130:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":255,"name":"bool","nodeType":"ElementaryTypeName","src":"2130:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2083:62:4"},"returnParameters":{"id":258,"nodeType":"ParameterList","parameters":[],"src":"2155:0:4"},"scope":484,"src":"2057:265:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":331,"nodeType":"Block","src":"2596:820:4","statements":[{"condition":{"expression":{"arguments":[{"id":291,"name":"_ROLLBACK_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2937:14:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":289,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"2910:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2922:14:4","memberName":"getBooleanSlot","nodeType":"MemberAccess","referencedDeclaration":1408,"src":"2910:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_BooleanSlot_$1374_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.BooleanSlot storage pointer)"}},"id":292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2910:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1374_storage_ptr","typeString":"struct StorageSlot.BooleanSlot storage pointer"}},"id":293,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2953:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1373,"src":"2910:48:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":329,"nodeType":"Block","src":"3028:382:4","statements":[{"clauses":[{"block":{"id":314,"nodeType":"Block","src":"3122:115:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":308,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"3148:4:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":309,"name":"_IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":197,"src":"3156:20:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3148:28:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524331393637557067726164653a20756e737570706f727465642070726f786961626c6555554944","id":311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3178:43:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_76b6b6debfc5febf101145a79ecf0b0d2e89e397dfdab2bca99888370411152c","typeString":"literal_string \"ERC1967Upgrade: unsupported proxiableUUID\""},"value":"ERC1967Upgrade: unsupported proxiableUUID"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_76b6b6debfc5febf101145a79ecf0b0d2e89e397dfdab2bca99888370411152c","typeString":"literal_string \"ERC1967Upgrade: unsupported proxiableUUID\""}],"id":307,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3140:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3140:82:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":313,"nodeType":"ExpressionStatement","src":"3140:82:4"}]},"errorName":"","id":315,"nodeType":"TryCatchClause","parameters":{"id":306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":305,"mutability":"mutable","name":"slot","nameLocation":"3116:4:4","nodeType":"VariableDeclaration","scope":315,"src":"3108:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":304,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3108:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3107:14:4"},"src":"3099:138:4"},{"block":{"id":320,"nodeType":"Block","src":"3244:89:4","statements":[{"expression":{"arguments":[{"hexValue":"45524331393637557067726164653a206e657720696d706c656d656e746174696f6e206973206e6f742055555053","id":317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3269:48:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e8e2fbcb586f700b5b14e2c4a650c8d83b9773c31c5fe8962070ea544e11f24","typeString":"literal_string \"ERC1967Upgrade: new implementation is not UUPS\""},"value":"ERC1967Upgrade: new implementation is not UUPS"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8e8e2fbcb586f700b5b14e2c4a650c8d83b9773c31c5fe8962070ea544e11f24","typeString":"literal_string \"ERC1967Upgrade: new implementation is not UUPS\""}],"id":316,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3262:6:4","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3262:56:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":319,"nodeType":"ExpressionStatement","src":"3262:56:4"}]},"errorName":"","id":321,"nodeType":"TryCatchClause","src":"3238:95:4"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":300,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":282,"src":"3064:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":299,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"3046:17:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1822Proxiable_$143_$","typeString":"type(contract IERC1822Proxiable)"}},"id":301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:36:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1822Proxiable_$143","typeString":"contract IERC1822Proxiable"}},"id":302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3083:13:4","memberName":"proxiableUUID","nodeType":"MemberAccess","referencedDeclaration":142,"src":"3046:50:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes32_$","typeString":"function () view external returns (bytes32)"}},"id":303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:52:4","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":322,"nodeType":"TryStatement","src":"3042:291:4"},{"expression":{"arguments":[{"id":324,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":282,"src":"3364:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":325,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":284,"src":"3383:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":326,"name":"forceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":286,"src":"3389:9:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":323,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":279,"src":"3346:17:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3346:53:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":328,"nodeType":"ExpressionStatement","src":"3346:53:4"}]},"id":330,"nodeType":"IfStatement","src":"2906:504:4","trueBody":{"id":298,"nodeType":"Block","src":"2960:62:4","statements":[{"expression":{"arguments":[{"id":295,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":282,"src":"2993:17:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":294,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":234,"src":"2974:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2974:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":297,"nodeType":"ExpressionStatement","src":"2974:37:4"}]}}]},"documentation":{"id":280,"nodeType":"StructuredDocumentation","src":"2328:161:4","text":" @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n Emits an {Upgraded} event."},"id":332,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCallUUPS","nameLocation":"2503:21:4","nodeType":"FunctionDefinition","parameters":{"id":287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":282,"mutability":"mutable","name":"newImplementation","nameLocation":"2533:17:4","nodeType":"VariableDeclaration","scope":332,"src":"2525:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":281,"name":"address","nodeType":"ElementaryTypeName","src":"2525:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":284,"mutability":"mutable","name":"data","nameLocation":"2565:4:4","nodeType":"VariableDeclaration","scope":332,"src":"2552:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":283,"name":"bytes","nodeType":"ElementaryTypeName","src":"2552:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":286,"mutability":"mutable","name":"forceCall","nameLocation":"2576:9:4","nodeType":"VariableDeclaration","scope":332,"src":"2571:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":285,"name":"bool","nodeType":"ElementaryTypeName","src":"2571:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2524:62:4"},"returnParameters":{"id":288,"nodeType":"ParameterList","parameters":[],"src":"2596:0:4"},"scope":484,"src":"2494:922:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":333,"nodeType":"StructuredDocumentation","src":"3422:189:4","text":" @dev Storage slot with the admin of the contract.\n This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n validated in the constructor."},"id":336,"mutability":"constant","name":"_ADMIN_SLOT","nameLocation":"3642:11:4","nodeType":"VariableDeclaration","scope":484,"src":"3616:106:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":334,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3616:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307862353331323736383461353638623331373361653133623966386136303136653234336536336236653865653131373864366137313738353062356436313033","id":335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3656:66:4","typeDescriptions":{"typeIdentifier":"t_rational_81955473079516046949633743016697847541294818689821282749996681496272635257091_by_1","typeString":"int_const 8195...(69 digits omitted)...7091"},"value":"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103"},"visibility":"internal"},{"body":{"id":348,"nodeType":"Block","src":"3837:69:4","statements":[{"expression":{"expression":{"arguments":[{"id":344,"name":"_ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":336,"src":"3881:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":342,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"3854:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3866:14:4","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1397,"src":"3854:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1371_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3854:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":346,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3894:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1370,"src":"3854:45:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":341,"id":347,"nodeType":"Return","src":"3847:52:4"}]},"documentation":{"id":337,"nodeType":"StructuredDocumentation","src":"3729:50:4","text":" @dev Returns the current admin."},"id":349,"implemented":true,"kind":"function","modifiers":[],"name":"_getAdmin","nameLocation":"3793:9:4","nodeType":"FunctionDefinition","parameters":{"id":338,"nodeType":"ParameterList","parameters":[],"src":"3802:2:4"},"returnParameters":{"id":341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":349,"src":"3828:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":339,"name":"address","nodeType":"ElementaryTypeName","src":"3828:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3827:9:4"},"scope":484,"src":"3784:122:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":374,"nodeType":"Block","src":"4033:156:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":356,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":352,"src":"4051:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4071:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4063:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":357,"name":"address","nodeType":"ElementaryTypeName","src":"4063:7:4","typeDescriptions":{}}},"id":360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4063:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4051:22:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a206e65772061646d696e20697320746865207a65726f2061646472657373","id":362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4075:40:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5","typeString":"literal_string \"ERC1967: new admin is the zero address\""},"value":"ERC1967: new admin is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5","typeString":"literal_string \"ERC1967: new admin is the zero address\""}],"id":355,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4043:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4043:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":364,"nodeType":"ExpressionStatement","src":"4043:73:4"},{"expression":{"id":372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":368,"name":"_ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":336,"src":"4153:11:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":365,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"4126:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4138:14:4","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1397,"src":"4126:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1371_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4126:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4166:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1370,"src":"4126:45:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":371,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":352,"src":"4174:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4126:56:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":373,"nodeType":"ExpressionStatement","src":"4126:56:4"}]},"documentation":{"id":350,"nodeType":"StructuredDocumentation","src":"3912:71:4","text":" @dev Stores a new address in the EIP1967 admin slot."},"id":375,"implemented":true,"kind":"function","modifiers":[],"name":"_setAdmin","nameLocation":"3997:9:4","nodeType":"FunctionDefinition","parameters":{"id":353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":352,"mutability":"mutable","name":"newAdmin","nameLocation":"4015:8:4","nodeType":"VariableDeclaration","scope":375,"src":"4007:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":351,"name":"address","nodeType":"ElementaryTypeName","src":"4007:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4006:18:4"},"returnParameters":{"id":354,"nodeType":"ParameterList","parameters":[],"src":"4033:0:4"},"scope":484,"src":"3988:201:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":391,"nodeType":"Block","src":"4349:86:4","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":382,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"4377:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4377:11:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":384,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":378,"src":"4390:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":381,"name":"AdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":127,"src":"4364:12:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4364:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":386,"nodeType":"EmitStatement","src":"4359:40:4"},{"expression":{"arguments":[{"id":388,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":378,"src":"4419:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":387,"name":"_setAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":375,"src":"4409:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4409:19:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":390,"nodeType":"ExpressionStatement","src":"4409:19:4"}]},"documentation":{"id":376,"nodeType":"StructuredDocumentation","src":"4195:100:4","text":" @dev Changes the admin of the proxy.\n Emits an {AdminChanged} event."},"id":392,"implemented":true,"kind":"function","modifiers":[],"name":"_changeAdmin","nameLocation":"4309:12:4","nodeType":"FunctionDefinition","parameters":{"id":379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":378,"mutability":"mutable","name":"newAdmin","nameLocation":"4330:8:4","nodeType":"VariableDeclaration","scope":392,"src":"4322:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":377,"name":"address","nodeType":"ElementaryTypeName","src":"4322:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4321:18:4"},"returnParameters":{"id":380,"nodeType":"ParameterList","parameters":[],"src":"4349:0:4"},"scope":484,"src":"4300:135:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":393,"nodeType":"StructuredDocumentation","src":"4441:232:4","text":" @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor."},"id":396,"mutability":"constant","name":"_BEACON_SLOT","nameLocation":"4704:12:4","nodeType":"VariableDeclaration","scope":484,"src":"4678:107:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":394,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4678:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861336630616437346535343233616562666438306433656634333436353738333335613961373261656165653539666636636233353832623335313333643530","id":395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4719:66:4","typeDescriptions":{"typeIdentifier":"t_rational_74152234768234802001998023604048924213078445070507226371336425913862612794704_by_1","typeString":"int_const 7415...(69 digits omitted)...4704"},"value":"0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50"},"visibility":"internal"},{"body":{"id":408,"nodeType":"Block","src":"4902:70:4","statements":[{"expression":{"expression":{"arguments":[{"id":404,"name":"_BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":396,"src":"4946:12:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":402,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"4919:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4931:14:4","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1397,"src":"4919:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1371_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":406,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4960:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1370,"src":"4919:46:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":401,"id":407,"nodeType":"Return","src":"4912:53:4"}]},"documentation":{"id":397,"nodeType":"StructuredDocumentation","src":"4792:51:4","text":" @dev Returns the current beacon."},"id":409,"implemented":true,"kind":"function","modifiers":[],"name":"_getBeacon","nameLocation":"4857:10:4","nodeType":"FunctionDefinition","parameters":{"id":398,"nodeType":"ParameterList","parameters":[],"src":"4867:2:4"},"returnParameters":{"id":401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":409,"src":"4893:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":399,"name":"address","nodeType":"ElementaryTypeName","src":"4893:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4892:9:4"},"scope":484,"src":"4848:124:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":444,"nodeType":"Block","src":"5101:324:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":418,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":412,"src":"5138:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":416,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"5119:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1335_$","typeString":"type(library Address)"}},"id":417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5127:10:4","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":1023,"src":"5119:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5119:29:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a206e657720626561636f6e206973206e6f74206120636f6e7472616374","id":420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5150:39:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_9589b7809634e4928033de18bb696e9af4ef71b703652af5245f2dbebf2f4470","typeString":"literal_string \"ERC1967: new beacon is not a contract\""},"value":"ERC1967: new beacon is not a contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9589b7809634e4928033de18bb696e9af4ef71b703652af5245f2dbebf2f4470","typeString":"literal_string \"ERC1967: new beacon is not a contract\""}],"id":415,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5111:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5111:79:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":422,"nodeType":"ExpressionStatement","src":"5111:79:4"},{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":427,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":412,"src":"5248:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":426,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":546,"src":"5240:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$546_$","typeString":"type(contract IBeacon)"}},"id":428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5240:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$546","typeString":"contract IBeacon"}},"id":429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5259:14:4","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":545,"src":"5240:33:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5240:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":424,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"5221:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1335_$","typeString":"type(library Address)"}},"id":425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5229:10:4","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":1023,"src":"5221:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5221:55:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a20626561636f6e20696d706c656d656e746174696f6e206973206e6f74206120636f6e7472616374","id":432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5290:50:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_f95fd1f5b5578816eb23f6ca0f2439b4b5e4094dc16e99c3b8e91603a83f93c8","typeString":"literal_string \"ERC1967: beacon implementation is not a contract\""},"value":"ERC1967: beacon implementation is not a contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f95fd1f5b5578816eb23f6ca0f2439b4b5e4094dc16e99c3b8e91603a83f93c8","typeString":"literal_string \"ERC1967: beacon implementation is not a contract\""}],"id":423,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5200:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5200:150:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":434,"nodeType":"ExpressionStatement","src":"5200:150:4"},{"expression":{"id":442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":438,"name":"_BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":396,"src":"5387:12:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":435,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"5360:11:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1475_$","typeString":"type(library StorageSlot)"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5372:14:4","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1397,"src":"5360:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1371_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5360:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":440,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5401:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1370,"src":"5360:46:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":441,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":412,"src":"5409:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5360:58:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":443,"nodeType":"ExpressionStatement","src":"5360:58:4"}]},"documentation":{"id":410,"nodeType":"StructuredDocumentation","src":"4978:71:4","text":" @dev Stores a new beacon in the EIP1967 beacon slot."},"id":445,"implemented":true,"kind":"function","modifiers":[],"name":"_setBeacon","nameLocation":"5063:10:4","nodeType":"FunctionDefinition","parameters":{"id":413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":412,"mutability":"mutable","name":"newBeacon","nameLocation":"5082:9:4","nodeType":"VariableDeclaration","scope":445,"src":"5074:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":411,"name":"address","nodeType":"ElementaryTypeName","src":"5074:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5073:19:4"},"returnParameters":{"id":414,"nodeType":"ParameterList","parameters":[],"src":"5101:0:4"},"scope":484,"src":"5054:371:4","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":482,"nodeType":"Block","src":"5824:217:4","statements":[{"expression":{"arguments":[{"id":456,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":448,"src":"5845:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":455,"name":"_setBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":445,"src":"5834:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5834:21:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":458,"nodeType":"ExpressionStatement","src":"5834:21:4"},{"eventCall":{"arguments":[{"id":460,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":448,"src":"5885:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":459,"name":"BeaconUpgraded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":132,"src":"5870:14:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5870:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":462,"nodeType":"EmitStatement","src":"5865:30:4"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":463,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":450,"src":"5909:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5914:6:4","memberName":"length","nodeType":"MemberAccess","src":"5909:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5923:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5909:15:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":467,"name":"forceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":452,"src":"5928:9:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5909:28:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":481,"nodeType":"IfStatement","src":"5905:130:4","trueBody":{"id":480,"nodeType":"Block","src":"5939:96:4","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":473,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":448,"src":"5990:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":472,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":546,"src":"5982:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$546_$","typeString":"type(contract IBeacon)"}},"id":474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5982:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$546","typeString":"contract IBeacon"}},"id":475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6001:14:4","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":545,"src":"5982:33:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5982:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":477,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":450,"src":"6019:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":469,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1335,"src":"5953:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1335_$","typeString":"type(library Address)"}},"id":471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5961:20:4","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":1222,"src":"5953:28:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5953:71:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":479,"nodeType":"ExpressionStatement","src":"5953:71:4"}]}}]},"documentation":{"id":446,"nodeType":"StructuredDocumentation","src":"5431:292:4","text":" @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n Emits a {BeaconUpgraded} event."},"id":483,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeBeaconToAndCall","nameLocation":"5737:23:4","nodeType":"FunctionDefinition","parameters":{"id":453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":448,"mutability":"mutable","name":"newBeacon","nameLocation":"5769:9:4","nodeType":"VariableDeclaration","scope":483,"src":"5761:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":447,"name":"address","nodeType":"ElementaryTypeName","src":"5761:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":450,"mutability":"mutable","name":"data","nameLocation":"5793:4:4","nodeType":"VariableDeclaration","scope":483,"src":"5780:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":449,"name":"bytes","nodeType":"ElementaryTypeName","src":"5780:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":452,"mutability":"mutable","name":"forceCall","nameLocation":"5804:9:4","nodeType":"VariableDeclaration","scope":483,"src":"5799:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":451,"name":"bool","nodeType":"ElementaryTypeName","src":"5799:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5760:54:4"},"returnParameters":{"id":454,"nodeType":"ParameterList","parameters":[],"src":"5824:0:4"},"scope":484,"src":"5728:313:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":485,"src":"517:5526:4","usedErrors":[],"usedEvents":[120,127,132]}],"src":"116:5928:4"},"id":4},"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol","exportedSymbols":{"Proxy":[536]},"id":537,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":486,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"99:23:5"},{"abstract":true,"baseContracts":[],"canonicalName":"Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":487,"nodeType":"StructuredDocumentation","src":"124:598:5","text":" @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n be specified by overriding the virtual {_implementation} function.\n Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n different contract through the {_delegate} function.\n The success and return data of the delegated call will be returned back to the caller of the proxy."},"fullyImplemented":false,"id":536,"linearizedBaseContracts":[536],"name":"Proxy","nameLocation":"741:5:5","nodeType":"ContractDefinition","nodes":[{"body":{"id":494,"nodeType":"Block","src":"1008:835:5","statements":[{"AST":{"nodeType":"YulBlock","src":"1027:810:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1280:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1283:1:5","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"1286:12:5"},"nodeType":"YulFunctionCall","src":"1286:14:5"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"1267:12:5"},"nodeType":"YulFunctionCall","src":"1267:34:5"},"nodeType":"YulExpressionStatement","src":"1267:34:5"},{"nodeType":"YulVariableDeclaration","src":"1428:74:5","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"1455:3:5"},"nodeType":"YulFunctionCall","src":"1455:5:5"},{"name":"implementation","nodeType":"YulIdentifier","src":"1462:14:5"},{"kind":"number","nodeType":"YulLiteral","src":"1478:1:5","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"1481:12:5"},"nodeType":"YulFunctionCall","src":"1481:14:5"},{"kind":"number","nodeType":"YulLiteral","src":"1497:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1500:1:5","type":"","value":"0"}],"functionName":{"name":"delegatecall","nodeType":"YulIdentifier","src":"1442:12:5"},"nodeType":"YulFunctionCall","src":"1442:60:5"},"variables":[{"name":"result","nodeType":"YulTypedName","src":"1432:6:5","type":""}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1570:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1573:1:5","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"1576:14:5"},"nodeType":"YulFunctionCall","src":"1576:16:5"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"1555:14:5"},"nodeType":"YulFunctionCall","src":"1555:38:5"},"nodeType":"YulExpressionStatement","src":"1555:38:5"},{"cases":[{"body":{"nodeType":"YulBlock","src":"1688:59:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1713:1:5","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"1716:14:5"},"nodeType":"YulFunctionCall","src":"1716:16:5"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1706:6:5"},"nodeType":"YulFunctionCall","src":"1706:27:5"},"nodeType":"YulExpressionStatement","src":"1706:27:5"}]},"nodeType":"YulCase","src":"1681:66:5","value":{"kind":"number","nodeType":"YulLiteral","src":"1686:1:5","type":"","value":"0"}},{"body":{"nodeType":"YulBlock","src":"1768:59:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1793:1:5","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"1796:14:5"},"nodeType":"YulFunctionCall","src":"1796:16:5"}],"functionName":{"name":"return","nodeType":"YulIdentifier","src":"1786:6:5"},"nodeType":"YulFunctionCall","src":"1786:27:5"},"nodeType":"YulExpressionStatement","src":"1786:27:5"}]},"nodeType":"YulCase","src":"1760:67:5","value":"default"}],"expression":{"name":"result","nodeType":"YulIdentifier","src":"1614:6:5"},"nodeType":"YulSwitch","src":"1607:220:5"}]},"evmVersion":"shanghai","externalReferences":[{"declaration":490,"isOffset":false,"isSlot":false,"src":"1462:14:5","valueSize":1}],"id":493,"nodeType":"InlineAssembly","src":"1018:819:5"}]},"documentation":{"id":488,"nodeType":"StructuredDocumentation","src":"753:190:5","text":" @dev Delegates the current call to `implementation`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":495,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"957:9:5","nodeType":"FunctionDefinition","parameters":{"id":491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":490,"mutability":"mutable","name":"implementation","nameLocation":"975:14:5","nodeType":"VariableDeclaration","scope":495,"src":"967:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":489,"name":"address","nodeType":"ElementaryTypeName","src":"967:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"966:24:5"},"returnParameters":{"id":492,"nodeType":"ParameterList","parameters":[],"src":"1008:0:5"},"scope":536,"src":"948:895:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":496,"nodeType":"StructuredDocumentation","src":"1849:173:5","text":" @dev This is a virtual function that should be overridden so it returns the address to which the fallback function\n and {_fallback} should delegate."},"id":501,"implemented":false,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"2036:15:5","nodeType":"FunctionDefinition","parameters":{"id":497,"nodeType":"ParameterList","parameters":[],"src":"2051:2:5"},"returnParameters":{"id":500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":499,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":501,"src":"2085:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":498,"name":"address","nodeType":"ElementaryTypeName","src":"2085:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2084:9:5"},"scope":536,"src":"2027:67:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":513,"nodeType":"Block","src":"2360:72:5","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":505,"name":"_beforeFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":535,"src":"2370:15:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2370:17:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":507,"nodeType":"ExpressionStatement","src":"2370:17:5"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":509,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"2407:15:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2407:17:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":508,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":495,"src":"2397:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2397:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":512,"nodeType":"ExpressionStatement","src":"2397:28:5"}]},"documentation":{"id":502,"nodeType":"StructuredDocumentation","src":"2100:217:5","text":" @dev Delegates the current call to the address returned by `_implementation()`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":514,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"2331:9:5","nodeType":"FunctionDefinition","parameters":{"id":503,"nodeType":"ParameterList","parameters":[],"src":"2340:2:5"},"returnParameters":{"id":504,"nodeType":"ParameterList","parameters":[],"src":"2360:0:5"},"scope":536,"src":"2322:110:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":521,"nodeType":"Block","src":"2665:28:5","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":518,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"2675:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2675:11:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":520,"nodeType":"ExpressionStatement","src":"2675:11:5"}]},"documentation":{"id":515,"nodeType":"StructuredDocumentation","src":"2438:186:5","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n function in the contract matches the call data."},"id":522,"implemented":true,"kind":"fallback","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":516,"nodeType":"ParameterList","parameters":[],"src":"2637:2:5"},"returnParameters":{"id":517,"nodeType":"ParameterList","parameters":[],"src":"2665:0:5"},"scope":536,"src":"2629:64:5","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":529,"nodeType":"Block","src":"2888:28:5","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":526,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"2898:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2898:11:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":528,"nodeType":"ExpressionStatement","src":"2898:11:5"}]},"documentation":{"id":523,"nodeType":"StructuredDocumentation","src":"2699:149:5","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data\n is empty."},"id":530,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":524,"nodeType":"ParameterList","parameters":[],"src":"2860:2:5"},"returnParameters":{"id":525,"nodeType":"ParameterList","parameters":[],"src":"2888:0:5"},"scope":536,"src":"2853:63:5","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":534,"nodeType":"Block","src":"3242:2:5","statements":[]},"documentation":{"id":531,"nodeType":"StructuredDocumentation","src":"2922:271:5","text":" @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`\n call, or as part of the Solidity `fallback` or `receive` functions.\n If overridden should call `super._beforeFallback()`."},"id":535,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeFallback","nameLocation":"3207:15:5","nodeType":"FunctionDefinition","parameters":{"id":532,"nodeType":"ParameterList","parameters":[],"src":"3222:2:5"},"returnParameters":{"id":533,"nodeType":"ParameterList","parameters":[],"src":"3242:0:5"},"scope":536,"src":"3198:46:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":537,"src":"723:2523:5","usedErrors":[],"usedEvents":[]}],"src":"99:3148:5"},"id":5},"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol","exportedSymbols":{"IBeacon":[546]},"id":547,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":538,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"93:23:6"},{"abstract":false,"baseContracts":[],"canonicalName":"IBeacon","contractDependencies":[],"contractKind":"interface","documentation":{"id":539,"nodeType":"StructuredDocumentation","src":"118:79:6","text":" @dev This is the interface that {BeaconProxy} expects of its beacon."},"fullyImplemented":false,"id":546,"linearizedBaseContracts":[546],"name":"IBeacon","nameLocation":"208:7:6","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"222:162:6","text":" @dev Must return an address that can be used as a delegate call target.\n {BeaconProxy} will check that this address is a contract."},"functionSelector":"5c60da1b","id":545,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"398:14:6","nodeType":"FunctionDefinition","parameters":{"id":541,"nodeType":"ParameterList","parameters":[],"src":"412:2:6"},"returnParameters":{"id":544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":543,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":545,"src":"438:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":542,"name":"address","nodeType":"ElementaryTypeName","src":"438:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"437:9:6"},"scope":546,"src":"389:58:6","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":547,"src":"198:251:6","usedErrors":[],"usedEvents":[]}],"src":"93:357:6"},"id":6},"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol","exportedSymbols":{"Address":[1335],"Context":[1365],"ERC1967Proxy":[180],"ERC1967Upgrade":[484],"IBeacon":[546],"IERC1822Proxiable":[143],"IERC1967":[133],"ITransparentUpgradeableProxy":[716],"Ownable":[112],"Proxy":[536],"ProxyAdmin":[682],"StorageSlot":[1475],"TransparentUpgradeableProxy":[1005]},"id":683,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":548,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"116:23:7"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol","file":"./TransparentUpgradeableProxy.sol","id":549,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":683,"sourceUnit":1006,"src":"141:43:7","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol","file":"../../access/Ownable.sol","id":550,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":683,"sourceUnit":113,"src":"185:34:7","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":552,"name":"Ownable","nameLocations":["473:7:7"],"nodeType":"IdentifierPath","referencedDeclaration":112,"src":"473:7:7"},"id":553,"nodeType":"InheritanceSpecifier","src":"473:7:7"}],"canonicalName":"ProxyAdmin","contractDependencies":[],"contractKind":"contract","documentation":{"id":551,"nodeType":"StructuredDocumentation","src":"221:228:7","text":" @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an\n explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}."},"fullyImplemented":true,"id":682,"linearizedBaseContracts":[682,112,1365],"name":"ProxyAdmin","nameLocation":"459:10:7","nodeType":"ContractDefinition","nodes":[{"body":{"id":586,"nodeType":"Block","src":"756:332:7","statements":[{"assignments":[563,565],"declarations":[{"constant":false,"id":563,"mutability":"mutable","name":"success","nameLocation":"929:7:7","nodeType":"VariableDeclaration","scope":586,"src":"924:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":562,"name":"bool","nodeType":"ElementaryTypeName","src":"924:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":565,"mutability":"mutable","name":"returndata","nameLocation":"951:10:7","nodeType":"VariableDeclaration","scope":586,"src":"938:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":564,"name":"bytes","nodeType":"ElementaryTypeName","src":"938:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":573,"initialValue":{"arguments":[{"hexValue":"5c60da1b","id":571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"991:13:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_96a4c6be7716f5be15d118c16bd1d464cb27f01187d0b9218993a5d488a47c29","typeString":"literal_string hex\"5c60da1b\""}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_96a4c6be7716f5be15d118c16bd1d464cb27f01187d0b9218993a5d488a47c29","typeString":"literal_string hex\"5c60da1b\""}],"expression":{"arguments":[{"id":568,"name":"proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":557,"src":"973:5:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}],"id":567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"965:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":566,"name":"address","nodeType":"ElementaryTypeName","src":"965:7:7","typeDescriptions":{}}},"id":569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"965:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"980:10:7","memberName":"staticcall","nodeType":"MemberAccess","src":"965:25:7","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"965:40:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"923:82:7"},{"expression":{"arguments":[{"id":575,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":563,"src":"1023:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":574,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1015:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1015:16:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":577,"nodeType":"ExpressionStatement","src":"1015:16:7"},{"expression":{"arguments":[{"id":580,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":565,"src":"1059:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":582,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1072:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":581,"name":"address","nodeType":"ElementaryTypeName","src":"1072:7:7","typeDescriptions":{}}}],"id":583,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1071:9:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":578,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1048:3:7","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":579,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1052:6:7","memberName":"decode","nodeType":"MemberAccess","src":"1048:10:7","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1048:33:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"functionReturnParameters":561,"id":585,"nodeType":"Return","src":"1041:40:7"}]},"documentation":{"id":554,"nodeType":"StructuredDocumentation","src":"487:158:7","text":" @dev Returns the current implementation of `proxy`.\n Requirements:\n - This contract must be the admin of `proxy`."},"functionSelector":"204e1c7a","id":587,"implemented":true,"kind":"function","modifiers":[],"name":"getProxyImplementation","nameLocation":"659:22:7","nodeType":"FunctionDefinition","parameters":{"id":558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"proxy","nameLocation":"711:5:7","nodeType":"VariableDeclaration","scope":587,"src":"682:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"},"typeName":{"id":556,"nodeType":"UserDefinedTypeName","pathNode":{"id":555,"name":"ITransparentUpgradeableProxy","nameLocations":["682:28:7"],"nodeType":"IdentifierPath","referencedDeclaration":716,"src":"682:28:7"},"referencedDeclaration":716,"src":"682:28:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"visibility":"internal"}],"src":"681:36:7"},"returnParameters":{"id":561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":560,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":587,"src":"747:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":559,"name":"address","nodeType":"ElementaryTypeName","src":"747:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"746:9:7"},"scope":682,"src":"650:438:7","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":620,"nodeType":"Block","src":"1345:323:7","statements":[{"assignments":[597,599],"declarations":[{"constant":false,"id":597,"mutability":"mutable","name":"success","nameLocation":"1509:7:7","nodeType":"VariableDeclaration","scope":620,"src":"1504:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":596,"name":"bool","nodeType":"ElementaryTypeName","src":"1504:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":599,"mutability":"mutable","name":"returndata","nameLocation":"1531:10:7","nodeType":"VariableDeclaration","scope":620,"src":"1518:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":598,"name":"bytes","nodeType":"ElementaryTypeName","src":"1518:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":607,"initialValue":{"arguments":[{"hexValue":"f851a440","id":605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"1571:13:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb23cf6c353ccb16f0d92c8e6b5c5b425654e65dd07e2d295b394de4cf15afb7","typeString":"literal_string hex\"f851a440\""}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_cb23cf6c353ccb16f0d92c8e6b5c5b425654e65dd07e2d295b394de4cf15afb7","typeString":"literal_string hex\"f851a440\""}],"expression":{"arguments":[{"id":602,"name":"proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":591,"src":"1553:5:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}],"id":601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1545:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":600,"name":"address","nodeType":"ElementaryTypeName","src":"1545:7:7","typeDescriptions":{}}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1545:14:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1560:10:7","memberName":"staticcall","nodeType":"MemberAccess","src":"1545:25:7","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1545:40:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1503:82:7"},{"expression":{"arguments":[{"id":609,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":597,"src":"1603:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":608,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1595:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1595:16:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":611,"nodeType":"ExpressionStatement","src":"1595:16:7"},{"expression":{"arguments":[{"id":614,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"1639:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":616,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1652:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":615,"name":"address","nodeType":"ElementaryTypeName","src":"1652:7:7","typeDescriptions":{}}}],"id":617,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1651:9:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":612,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1628:3:7","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1632:6:7","memberName":"decode","nodeType":"MemberAccess","src":"1628:10:7","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1628:33:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"functionReturnParameters":595,"id":619,"nodeType":"Return","src":"1621:40:7"}]},"documentation":{"id":588,"nodeType":"StructuredDocumentation","src":"1094:149:7","text":" @dev Returns the current admin of `proxy`.\n Requirements:\n - This contract must be the admin of `proxy`."},"functionSelector":"f3b7dead","id":621,"implemented":true,"kind":"function","modifiers":[],"name":"getProxyAdmin","nameLocation":"1257:13:7","nodeType":"FunctionDefinition","parameters":{"id":592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":591,"mutability":"mutable","name":"proxy","nameLocation":"1300:5:7","nodeType":"VariableDeclaration","scope":621,"src":"1271:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"},"typeName":{"id":590,"nodeType":"UserDefinedTypeName","pathNode":{"id":589,"name":"ITransparentUpgradeableProxy","nameLocations":["1271:28:7"],"nodeType":"IdentifierPath","referencedDeclaration":716,"src":"1271:28:7"},"referencedDeclaration":716,"src":"1271:28:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"visibility":"internal"}],"src":"1270:36:7"},"returnParameters":{"id":595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":621,"src":"1336:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":593,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1335:9:7"},"scope":682,"src":"1248:420:7","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":638,"nodeType":"Block","src":"1947:44:7","statements":[{"expression":{"arguments":[{"id":635,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":627,"src":"1975:8:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":632,"name":"proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":625,"src":"1957:5:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"id":634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1963:11:7","memberName":"changeAdmin","nodeType":"MemberAccess","referencedDeclaration":703,"src":"1957:17:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1957:27:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":637,"nodeType":"ExpressionStatement","src":"1957:27:7"}]},"documentation":{"id":622,"nodeType":"StructuredDocumentation","src":"1674:163:7","text":" @dev Changes the admin of `proxy` to `newAdmin`.\n Requirements:\n - This contract must be the current admin of `proxy`."},"functionSelector":"7eff275e","id":639,"implemented":true,"kind":"function","modifiers":[{"id":630,"kind":"modifierInvocation","modifierName":{"id":629,"name":"onlyOwner","nameLocations":["1937:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"1937:9:7"},"nodeType":"ModifierInvocation","src":"1937:9:7"}],"name":"changeProxyAdmin","nameLocation":"1851:16:7","nodeType":"FunctionDefinition","parameters":{"id":628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":625,"mutability":"mutable","name":"proxy","nameLocation":"1897:5:7","nodeType":"VariableDeclaration","scope":639,"src":"1868:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"},"typeName":{"id":624,"nodeType":"UserDefinedTypeName","pathNode":{"id":623,"name":"ITransparentUpgradeableProxy","nameLocations":["1868:28:7"],"nodeType":"IdentifierPath","referencedDeclaration":716,"src":"1868:28:7"},"referencedDeclaration":716,"src":"1868:28:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"visibility":"internal"},{"constant":false,"id":627,"mutability":"mutable","name":"newAdmin","nameLocation":"1912:8:7","nodeType":"VariableDeclaration","scope":639,"src":"1904:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":626,"name":"address","nodeType":"ElementaryTypeName","src":"1904:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1867:54:7"},"returnParameters":{"id":631,"nodeType":"ParameterList","parameters":[],"src":"1947:0:7"},"scope":682,"src":"1842:149:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":656,"nodeType":"Block","src":"2298:48:7","statements":[{"expression":{"arguments":[{"id":653,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"2324:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":650,"name":"proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":643,"src":"2308:5:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"id":652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2314:9:7","memberName":"upgradeTo","nodeType":"MemberAccess","referencedDeclaration":708,"src":"2308:15:7","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2308:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":655,"nodeType":"ExpressionStatement","src":"2308:31:7"}]},"documentation":{"id":640,"nodeType":"StructuredDocumentation","src":"1997:194:7","text":" @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}.\n Requirements:\n - This contract must be the admin of `proxy`."},"functionSelector":"99a88ec4","id":657,"implemented":true,"kind":"function","modifiers":[{"id":648,"kind":"modifierInvocation","modifierName":{"id":647,"name":"onlyOwner","nameLocations":["2288:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"2288:9:7"},"nodeType":"ModifierInvocation","src":"2288:9:7"}],"name":"upgrade","nameLocation":"2205:7:7","nodeType":"FunctionDefinition","parameters":{"id":646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":643,"mutability":"mutable","name":"proxy","nameLocation":"2242:5:7","nodeType":"VariableDeclaration","scope":657,"src":"2213:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"},"typeName":{"id":642,"nodeType":"UserDefinedTypeName","pathNode":{"id":641,"name":"ITransparentUpgradeableProxy","nameLocations":["2213:28:7"],"nodeType":"IdentifierPath","referencedDeclaration":716,"src":"2213:28:7"},"referencedDeclaration":716,"src":"2213:28:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"visibility":"internal"},{"constant":false,"id":645,"mutability":"mutable","name":"implementation","nameLocation":"2257:14:7","nodeType":"VariableDeclaration","scope":657,"src":"2249:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":644,"name":"address","nodeType":"ElementaryTypeName","src":"2249:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2212:60:7"},"returnParameters":{"id":649,"nodeType":"ParameterList","parameters":[],"src":"2298:0:7"},"scope":682,"src":"2196:150:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":680,"nodeType":"Block","src":"2778:79:7","statements":[{"expression":{"arguments":[{"id":676,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"2829:14:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":677,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"2845:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":670,"name":"proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":661,"src":"2788:5:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"id":672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2794:16:7","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":715,"src":"2788:22:7","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory) payable external"}},"id":675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":673,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2818:3:7","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2822:5:7","memberName":"value","nodeType":"MemberAccess","src":"2818:9:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2788:40:7","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$_t_bytes_memory_ptr_$returns$__$value","typeString":"function (address,bytes memory) payable external"}},"id":678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2788:62:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":679,"nodeType":"ExpressionStatement","src":"2788:62:7"}]},"documentation":{"id":658,"nodeType":"StructuredDocumentation","src":"2352:255:7","text":" @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See\n {TransparentUpgradeableProxy-upgradeToAndCall}.\n Requirements:\n - This contract must be the admin of `proxy`."},"functionSelector":"9623609d","id":681,"implemented":true,"kind":"function","modifiers":[{"id":668,"kind":"modifierInvocation","modifierName":{"id":667,"name":"onlyOwner","nameLocations":["2768:9:7"],"nodeType":"IdentifierPath","referencedDeclaration":31,"src":"2768:9:7"},"nodeType":"ModifierInvocation","src":"2768:9:7"}],"name":"upgradeAndCall","nameLocation":"2621:14:7","nodeType":"FunctionDefinition","parameters":{"id":666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":661,"mutability":"mutable","name":"proxy","nameLocation":"2674:5:7","nodeType":"VariableDeclaration","scope":681,"src":"2645:34:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"},"typeName":{"id":660,"nodeType":"UserDefinedTypeName","pathNode":{"id":659,"name":"ITransparentUpgradeableProxy","nameLocations":["2645:28:7"],"nodeType":"IdentifierPath","referencedDeclaration":716,"src":"2645:28:7"},"referencedDeclaration":716,"src":"2645:28:7","typeDescriptions":{"typeIdentifier":"t_contract$_ITransparentUpgradeableProxy_$716","typeString":"contract ITransparentUpgradeableProxy"}},"visibility":"internal"},{"constant":false,"id":663,"mutability":"mutable","name":"implementation","nameLocation":"2697:14:7","nodeType":"VariableDeclaration","scope":681,"src":"2689:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":662,"name":"address","nodeType":"ElementaryTypeName","src":"2689:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":665,"mutability":"mutable","name":"data","nameLocation":"2734:4:7","nodeType":"VariableDeclaration","scope":681,"src":"2721:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":664,"name":"bytes","nodeType":"ElementaryTypeName","src":"2721:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2635:109:7"},"returnParameters":{"id":669,"nodeType":"ParameterList","parameters":[],"src":"2778:0:7"},"scope":682,"src":"2612:245:7","stateMutability":"payable","virtual":true,"visibility":"public"}],"scope":683,"src":"450:2409:7","usedErrors":[],"usedEvents":[13]}],"src":"116:2744:7"},"id":7},"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol","exportedSymbols":{"Address":[1335],"ERC1967Proxy":[180],"ERC1967Upgrade":[484],"IBeacon":[546],"IERC1822Proxiable":[143],"IERC1967":[133],"ITransparentUpgradeableProxy":[716],"Proxy":[536],"StorageSlot":[1475],"TransparentUpgradeableProxy":[1005]},"id":1006,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":684,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"133:23:8"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol","file":"../ERC1967/ERC1967Proxy.sol","id":685,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1006,"sourceUnit":181,"src":"158:37:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":687,"name":"IERC1967","nameLocations":["679:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":133,"src":"679:8:8"},"id":688,"nodeType":"InheritanceSpecifier","src":"679:8:8"}],"canonicalName":"ITransparentUpgradeableProxy","contractDependencies":[],"contractKind":"interface","documentation":{"id":686,"nodeType":"StructuredDocumentation","src":"197:439:8","text":" @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}\n does not implement this interface directly, and some of its functions are implemented by an internal dispatch\n mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not\n include them in the ABI so this interface must be used to interact with it."},"fullyImplemented":false,"id":716,"linearizedBaseContracts":[716,133],"name":"ITransparentUpgradeableProxy","nameLocation":"647:28:8","nodeType":"ContractDefinition","nodes":[{"functionSelector":"f851a440","id":693,"implemented":false,"kind":"function","modifiers":[],"name":"admin","nameLocation":"703:5:8","nodeType":"FunctionDefinition","parameters":{"id":689,"nodeType":"ParameterList","parameters":[],"src":"708:2:8"},"returnParameters":{"id":692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":691,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":693,"src":"734:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":690,"name":"address","nodeType":"ElementaryTypeName","src":"734:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"733:9:8"},"scope":716,"src":"694:49:8","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"5c60da1b","id":698,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"758:14:8","nodeType":"FunctionDefinition","parameters":{"id":694,"nodeType":"ParameterList","parameters":[],"src":"772:2:8"},"returnParameters":{"id":697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":696,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":698,"src":"798:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":695,"name":"address","nodeType":"ElementaryTypeName","src":"798:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"797:9:8"},"scope":716,"src":"749:58:8","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8f283970","id":703,"implemented":false,"kind":"function","modifiers":[],"name":"changeAdmin","nameLocation":"822:11:8","nodeType":"FunctionDefinition","parameters":{"id":701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":700,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":703,"src":"834:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":699,"name":"address","nodeType":"ElementaryTypeName","src":"834:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"833:9:8"},"returnParameters":{"id":702,"nodeType":"ParameterList","parameters":[],"src":"851:0:8"},"scope":716,"src":"813:39:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"3659cfe6","id":708,"implemented":false,"kind":"function","modifiers":[],"name":"upgradeTo","nameLocation":"867:9:8","nodeType":"FunctionDefinition","parameters":{"id":706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":705,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":708,"src":"877:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":704,"name":"address","nodeType":"ElementaryTypeName","src":"877:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"876:9:8"},"returnParameters":{"id":707,"nodeType":"ParameterList","parameters":[],"src":"894:0:8"},"scope":716,"src":"858:37:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"4f1ef286","id":715,"implemented":false,"kind":"function","modifiers":[],"name":"upgradeToAndCall","nameLocation":"910:16:8","nodeType":"FunctionDefinition","parameters":{"id":713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":710,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":715,"src":"927:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":709,"name":"address","nodeType":"ElementaryTypeName","src":"927:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":715,"src":"936:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":711,"name":"bytes","nodeType":"ElementaryTypeName","src":"936:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"926:23:8"},"returnParameters":{"id":714,"nodeType":"ParameterList","parameters":[],"src":"966:0:8"},"scope":716,"src":"901:66:8","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":1006,"src":"637:332:8","usedErrors":[],"usedEvents":[120,127,132]},{"abstract":false,"baseContracts":[{"baseName":{"id":718,"name":"ERC1967Proxy","nameLocations":["3429:12:8"],"nodeType":"IdentifierPath","referencedDeclaration":180,"src":"3429:12:8"},"id":719,"nodeType":"InheritanceSpecifier","src":"3429:12:8"}],"canonicalName":"TransparentUpgradeableProxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":717,"nodeType":"StructuredDocumentation","src":"971:2417:8","text":" @dev This contract implements a proxy that is upgradeable by an admin.\n To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n clashing], which can potentially be used in an attack, this contract uses the\n https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n things that go hand in hand:\n 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n that call matches one of the admin functions exposed by the proxy itself.\n 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the\n implementation. If the admin tries to call a function on the implementation it will fail with an error that says\n \"admin cannot fallback to proxy target\".\n These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing\n the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due\n to sudden errors when trying to call a function from the proxy implementation.\n Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,\n you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\n NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not\n inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch\n mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to\n fully implement transparency without decoding reverts caused by selector clashes between the proxy and the\n implementation.\n WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler\n will not check that there are no selector conflicts, due to the note above. A selector clash between any new function\n and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could\n render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised."},"fullyImplemented":true,"id":1005,"linearizedBaseContracts":[1005,180,484,133,536],"name":"TransparentUpgradeableProxy","nameLocation":"3398:27:8","nodeType":"ContractDefinition","nodes":[{"body":{"id":737,"nodeType":"Block","src":"3763:37:8","statements":[{"expression":{"arguments":[{"id":734,"name":"admin_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":724,"src":"3786:6:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":733,"name":"_changeAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":392,"src":"3773:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3773:20:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":736,"nodeType":"ExpressionStatement","src":"3773:20:8"}]},"documentation":{"id":720,"nodeType":"StructuredDocumentation","src":"3448:210:8","text":" @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and\n optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}."},"id":738,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":729,"name":"_logic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":722,"src":"3748:6:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":730,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":726,"src":"3756:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":731,"kind":"baseConstructorSpecifier","modifierName":{"id":728,"name":"ERC1967Proxy","nameLocations":["3735:12:8"],"nodeType":"IdentifierPath","referencedDeclaration":180,"src":"3735:12:8"},"nodeType":"ModifierInvocation","src":"3735:27:8"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":722,"mutability":"mutable","name":"_logic","nameLocation":"3683:6:8","nodeType":"VariableDeclaration","scope":738,"src":"3675:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":721,"name":"address","nodeType":"ElementaryTypeName","src":"3675:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":724,"mutability":"mutable","name":"admin_","nameLocation":"3699:6:8","nodeType":"VariableDeclaration","scope":738,"src":"3691:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":723,"name":"address","nodeType":"ElementaryTypeName","src":"3691:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":726,"mutability":"mutable","name":"_data","nameLocation":"3720:5:8","nodeType":"VariableDeclaration","scope":738,"src":"3707:18:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":725,"name":"bytes","nodeType":"ElementaryTypeName","src":"3707:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3674:52:8"},"returnParameters":{"id":732,"nodeType":"ParameterList","parameters":[],"src":"3763:0:8"},"scope":1005,"src":"3663:137:8","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":753,"nodeType":"Block","src":"4151:115:8","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":741,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4165:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4169:6:8","memberName":"sender","nodeType":"MemberAccess","src":"4165:10:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":743,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"4179:9:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4179:11:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4165:25:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":751,"nodeType":"Block","src":"4224:36:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":748,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[847],"referencedDeclaration":847,"src":"4238:9:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4238:11:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":750,"nodeType":"ExpressionStatement","src":"4238:11:8"}]},"id":752,"nodeType":"IfStatement","src":"4161:99:8","trueBody":{"id":747,"nodeType":"Block","src":"4192:26:8","statements":[{"id":746,"nodeType":"PlaceholderStatement","src":"4206:1:8"}]}}]},"documentation":{"id":739,"nodeType":"StructuredDocumentation","src":"3806:321:8","text":" @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.\n CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the\n implementation provides a function with the same selector."},"id":754,"name":"ifAdmin","nameLocation":"4141:7:8","nodeType":"ModifierDefinition","parameters":{"id":740,"nodeType":"ParameterList","parameters":[],"src":"4148:2:8"},"src":"4132:134:8","virtual":false,"visibility":"internal"},{"baseFunctions":[514],"body":{"id":846,"nodeType":"Block","src":"4454:1055:8","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":759,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4468:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4472:6:8","memberName":"sender","nodeType":"MemberAccess","src":"4468:10:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":761,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"4482:9:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4482:11:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4468:25:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":844,"nodeType":"Block","src":"5461:42:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":839,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5475:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TransparentUpgradeableProxy_$1005_$","typeString":"type(contract super TransparentUpgradeableProxy)"}},"id":841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5481:9:8","memberName":"_fallback","nodeType":"MemberAccess","referencedDeclaration":514,"src":"5475:15:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5475:17:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":843,"nodeType":"ExpressionStatement","src":"5475:17:8"}]},"id":845,"nodeType":"IfStatement","src":"4464:1039:8","trueBody":{"id":838,"nodeType":"Block","src":"4495:960:8","statements":[{"assignments":[765],"declarations":[{"constant":false,"id":765,"mutability":"mutable","name":"ret","nameLocation":"4522:3:8","nodeType":"VariableDeclaration","scope":838,"src":"4509:16:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":764,"name":"bytes","nodeType":"ElementaryTypeName","src":"4509:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":766,"nodeType":"VariableDeclarationStatement","src":"4509:16:8"},{"assignments":[768],"declarations":[{"constant":false,"id":768,"mutability":"mutable","name":"selector","nameLocation":"4546:8:8","nodeType":"VariableDeclaration","scope":838,"src":"4539:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":767,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4539:6:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":771,"initialValue":{"expression":{"id":769,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4557:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4561:3:8","memberName":"sig","nodeType":"MemberAccess","src":"4557:7:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"4539:25:8"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":772,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"4582:8:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":773,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":716,"src":"4594:28:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$716_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":774,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4623:9:8","memberName":"upgradeTo","nodeType":"MemberAccess","referencedDeclaration":708,"src":"4594:38:8","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$returns$__$","typeString":"function ITransparentUpgradeableProxy.upgradeTo(address)"}},"id":775,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4633:8:8","memberName":"selector","nodeType":"MemberAccess","src":"4594:47:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4582:59:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":783,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"4712:8:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":784,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":716,"src":"4724:28:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$716_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4753:16:8","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":715,"src":"4724:45:8","typeDescriptions":{"typeIdentifier":"t_function_declaration_payable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function ITransparentUpgradeableProxy.upgradeToAndCall(address,bytes memory) payable"}},"id":786,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4770:8:8","memberName":"selector","nodeType":"MemberAccess","src":"4724:54:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4712:66:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":794,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"4856:8:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":795,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":716,"src":"4868:28:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$716_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":796,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4897:11:8","memberName":"changeAdmin","nodeType":"MemberAccess","referencedDeclaration":703,"src":"4868:40:8","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$returns$__$","typeString":"function ITransparentUpgradeableProxy.changeAdmin(address)"}},"id":797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4909:8:8","memberName":"selector","nodeType":"MemberAccess","src":"4868:49:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4856:61:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":805,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"4990:8:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":806,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":716,"src":"5002:28:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$716_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":807,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5031:5:8","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":693,"src":"5002:34:8","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_address_$","typeString":"function ITransparentUpgradeableProxy.admin() view returns (address)"}},"id":808,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5037:8:8","memberName":"selector","nodeType":"MemberAccess","src":"5002:43:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4990:55:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":816,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"5112:8:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":817,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":716,"src":"5124:28:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$716_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":818,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5153:14:8","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":698,"src":"5124:43:8","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_address_$","typeString":"function ITransparentUpgradeableProxy.implementation() view returns (address)"}},"id":819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5168:8:8","memberName":"selector","nodeType":"MemberAccess","src":"5124:52:8","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"5112:64:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":831,"nodeType":"Block","src":"5248:109:8","statements":[{"expression":{"arguments":[{"hexValue":"5472616e73706172656e745570677261646561626c6550726f78793a2061646d696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172676574","id":828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5273:68:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d","typeString":"literal_string \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\""},"value":"TransparentUpgradeableProxy: admin cannot fallback to proxy target"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d","typeString":"literal_string \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\""}],"id":827,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"5266:6:8","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5266:76:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":830,"nodeType":"ExpressionStatement","src":"5266:76:8"}]},"id":832,"nodeType":"IfStatement","src":"5108:249:8","trueBody":{"id":826,"nodeType":"Block","src":"5178:64:8","statements":[{"expression":{"id":824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":821,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"5196:3:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":822,"name":"_dispatchImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":887,"src":"5202:23:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5202:25:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"5196:31:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":825,"nodeType":"ExpressionStatement","src":"5196:31:8"}]}},"id":833,"nodeType":"IfStatement","src":"4986:371:8","trueBody":{"id":815,"nodeType":"Block","src":"5047:55:8","statements":[{"expression":{"id":813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":810,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"5065:3:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":811,"name":"_dispatchAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":867,"src":"5071:14:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5071:16:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"5065:22:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":814,"nodeType":"ExpressionStatement","src":"5065:22:8"}]}},"id":834,"nodeType":"IfStatement","src":"4852:505:8","trueBody":{"id":804,"nodeType":"Block","src":"4919:61:8","statements":[{"expression":{"id":802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":799,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"4937:3:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":800,"name":"_dispatchChangeAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":916,"src":"4943:20:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4943:22:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4937:28:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":803,"nodeType":"ExpressionStatement","src":"4937:28:8"}]}},"id":835,"nodeType":"IfStatement","src":"4708:649:8","trueBody":{"id":793,"nodeType":"Block","src":"4780:66:8","statements":[{"expression":{"id":791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":788,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"4798:3:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":789,"name":"_dispatchUpgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":982,"src":"4804:25:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4804:27:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4798:33:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":792,"nodeType":"ExpressionStatement","src":"4798:33:8"}]}},"id":836,"nodeType":"IfStatement","src":"4578:779:8","trueBody":{"id":782,"nodeType":"Block","src":"4643:59:8","statements":[{"expression":{"id":780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":777,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"4661:3:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":778,"name":"_dispatchUpgradeTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"4667:18:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4667:20:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4661:26:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":781,"nodeType":"ExpressionStatement","src":"4661:26:8"}]}},{"AST":{"nodeType":"YulBlock","src":"5379:66:8","statements":[{"expression":{"arguments":[{"arguments":[{"name":"ret","nodeType":"YulIdentifier","src":"5408:3:8"},{"kind":"number","nodeType":"YulLiteral","src":"5413:4:8","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5404:3:8"},"nodeType":"YulFunctionCall","src":"5404:14:8"},{"arguments":[{"name":"ret","nodeType":"YulIdentifier","src":"5426:3:8"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5420:5:8"},"nodeType":"YulFunctionCall","src":"5420:10:8"}],"functionName":{"name":"return","nodeType":"YulIdentifier","src":"5397:6:8"},"nodeType":"YulFunctionCall","src":"5397:34:8"},"nodeType":"YulExpressionStatement","src":"5397:34:8"}]},"evmVersion":"shanghai","externalReferences":[{"declaration":765,"isOffset":false,"isSlot":false,"src":"5408:3:8","valueSize":1},{"declaration":765,"isOffset":false,"isSlot":false,"src":"5426:3:8","valueSize":1}],"id":837,"nodeType":"InlineAssembly","src":"5370:75:8"}]}}]},"documentation":{"id":755,"nodeType":"StructuredDocumentation","src":"4272:130:8","text":" @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior"},"id":847,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"4416:9:8","nodeType":"FunctionDefinition","overrides":{"id":757,"nodeType":"OverrideSpecifier","overrides":[],"src":"4445:8:8"},"parameters":{"id":756,"nodeType":"ParameterList","parameters":[],"src":"4425:2:8"},"returnParameters":{"id":758,"nodeType":"ParameterList","parameters":[],"src":"4454:0:8"},"scope":1005,"src":"4407:1102:8","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":866,"nodeType":"Block","src":"5917:108:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":853,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1004,"src":"5927:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5927:19:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":855,"nodeType":"ExpressionStatement","src":"5927:19:8"},{"assignments":[857],"declarations":[{"constant":false,"id":857,"mutability":"mutable","name":"admin","nameLocation":"5965:5:8","nodeType":"VariableDeclaration","scope":866,"src":"5957:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":856,"name":"address","nodeType":"ElementaryTypeName","src":"5957:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":860,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":858,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"5973:9:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5973:11:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5957:27:8"},{"expression":{"arguments":[{"id":863,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":857,"src":"6012:5:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":861,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6001:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":862,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6005:6:8","memberName":"encode","nodeType":"MemberAccess","src":"6001:10:8","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6001:17:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":852,"id":865,"nodeType":"Return","src":"5994:24:8"}]},"documentation":{"id":848,"nodeType":"StructuredDocumentation","src":"5515:340:8","text":" @dev Returns the current admin.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"},"id":867,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchAdmin","nameLocation":"5869:14:8","nodeType":"FunctionDefinition","parameters":{"id":849,"nodeType":"ParameterList","parameters":[],"src":"5883:2:8"},"returnParameters":{"id":852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":851,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":867,"src":"5903:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":850,"name":"bytes","nodeType":"ElementaryTypeName","src":"5903:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5902:14:8"},"scope":1005,"src":"5860:165:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":886,"nodeType":"Block","src":"6451:132:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":873,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1004,"src":"6461:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6461:19:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":875,"nodeType":"ExpressionStatement","src":"6461:19:8"},{"assignments":[877],"declarations":[{"constant":false,"id":877,"mutability":"mutable","name":"implementation","nameLocation":"6499:14:8","nodeType":"VariableDeclaration","scope":886,"src":"6491:22:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":876,"name":"address","nodeType":"ElementaryTypeName","src":"6491:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":880,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":878,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[179],"referencedDeclaration":179,"src":"6516:15:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6516:17:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6491:42:8"},{"expression":{"arguments":[{"id":883,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":877,"src":"6561:14:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":881,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6550:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":882,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6554:6:8","memberName":"encode","nodeType":"MemberAccess","src":"6550:10:8","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6550:26:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":872,"id":885,"nodeType":"Return","src":"6543:33:8"}]},"documentation":{"id":868,"nodeType":"StructuredDocumentation","src":"6031:349:8","text":" @dev Returns the current implementation.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"},"id":887,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchImplementation","nameLocation":"6394:23:8","nodeType":"FunctionDefinition","parameters":{"id":869,"nodeType":"ParameterList","parameters":[],"src":"6417:2:8"},"returnParameters":{"id":872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":871,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":887,"src":"6437:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":870,"name":"bytes","nodeType":"ElementaryTypeName","src":"6437:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6436:14:8"},"scope":1005,"src":"6385:198:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":915,"nodeType":"Block","src":"6757:153:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":893,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1004,"src":"6767:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6767:19:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":895,"nodeType":"ExpressionStatement","src":"6767:19:8"},{"assignments":[897],"declarations":[{"constant":false,"id":897,"mutability":"mutable","name":"newAdmin","nameLocation":"6805:8:8","nodeType":"VariableDeclaration","scope":915,"src":"6797:16:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":896,"name":"address","nodeType":"ElementaryTypeName","src":"6797:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":908,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":900,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6827:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6831:4:8","memberName":"data","nodeType":"MemberAccess","src":"6827:8:8","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"6827:12:8","startExpression":{"hexValue":"34","id":902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6836:1:8","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":905,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6842:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":904,"name":"address","nodeType":"ElementaryTypeName","src":"6842:7:8","typeDescriptions":{}}}],"id":906,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6841:9:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":898,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6816:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6820:6:8","memberName":"decode","nodeType":"MemberAccess","src":"6816:10:8","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6816:35:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"6797:54:8"},{"expression":{"arguments":[{"id":910,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":897,"src":"6874:8:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":909,"name":"_changeAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":392,"src":"6861:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6861:22:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":912,"nodeType":"ExpressionStatement","src":"6861:22:8"},{"expression":{"hexValue":"","id":913,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6901:2:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":892,"id":914,"nodeType":"Return","src":"6894:9:8"}]},"documentation":{"id":888,"nodeType":"StructuredDocumentation","src":"6589:100:8","text":" @dev Changes the admin of the proxy.\n Emits an {AdminChanged} event."},"id":916,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchChangeAdmin","nameLocation":"6703:20:8","nodeType":"FunctionDefinition","parameters":{"id":889,"nodeType":"ParameterList","parameters":[],"src":"6723:2:8"},"returnParameters":{"id":892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":891,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":916,"src":"6743:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":890,"name":"bytes","nodeType":"ElementaryTypeName","src":"6743:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6742:14:8"},"scope":1005,"src":"6694:216:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":949,"nodeType":"Block","src":"7046:194:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":922,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1004,"src":"7056:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7056:19:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":924,"nodeType":"ExpressionStatement","src":"7056:19:8"},{"assignments":[926],"declarations":[{"constant":false,"id":926,"mutability":"mutable","name":"newImplementation","nameLocation":"7094:17:8","nodeType":"VariableDeclaration","scope":949,"src":"7086:25:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":925,"name":"address","nodeType":"ElementaryTypeName","src":"7086:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":937,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":929,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7125:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7129:4:8","memberName":"data","nodeType":"MemberAccess","src":"7125:8:8","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"7125:12:8","startExpression":{"hexValue":"34","id":931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7134:1:8","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":934,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7140:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":933,"name":"address","nodeType":"ElementaryTypeName","src":"7140:7:8","typeDescriptions":{}}}],"id":935,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7139:9:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":927,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7114:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":928,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7118:6:8","memberName":"decode","nodeType":"MemberAccess","src":"7114:10:8","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7114:35:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"7086:63:8"},{"expression":{"arguments":[{"id":939,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":926,"src":"7177:17:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"","id":942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7202:2:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":941,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7196:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":940,"name":"bytes","nodeType":"ElementaryTypeName","src":"7196:5:8","typeDescriptions":{}}},"id":943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7196:9:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"66616c7365","id":944,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7207:5:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":938,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":279,"src":"7159:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7159:54:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":946,"nodeType":"ExpressionStatement","src":"7159:54:8"},{"expression":{"hexValue":"","id":947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7231:2:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":921,"id":948,"nodeType":"Return","src":"7224:9:8"}]},"documentation":{"id":917,"nodeType":"StructuredDocumentation","src":"6916:64:8","text":" @dev Upgrade the implementation of the proxy."},"id":950,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchUpgradeTo","nameLocation":"6994:18:8","nodeType":"FunctionDefinition","parameters":{"id":918,"nodeType":"ParameterList","parameters":[],"src":"7012:2:8"},"returnParameters":{"id":921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":950,"src":"7032:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":919,"name":"bytes","nodeType":"ElementaryTypeName","src":"7032:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7031:14:8"},"scope":1005,"src":"6985:255:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":981,"nodeType":"Block","src":"7592:186:8","statements":[{"assignments":[957,959],"declarations":[{"constant":false,"id":957,"mutability":"mutable","name":"newImplementation","nameLocation":"7611:17:8","nodeType":"VariableDeclaration","scope":981,"src":"7603:25:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":956,"name":"address","nodeType":"ElementaryTypeName","src":"7603:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":959,"mutability":"mutable","name":"data","nameLocation":"7643:4:8","nodeType":"VariableDeclaration","scope":981,"src":"7630:17:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":958,"name":"bytes","nodeType":"ElementaryTypeName","src":"7630:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":972,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":962,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7662:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7666:4:8","memberName":"data","nodeType":"MemberAccess","src":"7662:8:8","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"7662:12:8","startExpression":{"hexValue":"34","id":964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7671:1:8","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":967,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7677:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":966,"name":"address","nodeType":"ElementaryTypeName","src":"7677:7:8","typeDescriptions":{}}},{"id":969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7686:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":968,"name":"bytes","nodeType":"ElementaryTypeName","src":"7686:5:8","typeDescriptions":{}}}],"id":970,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7676:16:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(address),type(bytes storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(address),type(bytes storage pointer))"}],"expression":{"id":960,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7651:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":961,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7655:6:8","memberName":"decode","nodeType":"MemberAccess","src":"7651:10:8","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7651:42:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_bytes_memory_ptr_$","typeString":"tuple(address payable,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7602:91:8"},{"expression":{"arguments":[{"id":974,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"7721:17:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":975,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":959,"src":"7740:4:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"74727565","id":976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7746:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":973,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":279,"src":"7703:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7703:48:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":978,"nodeType":"ExpressionStatement","src":"7703:48:8"},{"expression":{"hexValue":"","id":979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7769:2:8","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":955,"id":980,"nodeType":"Return","src":"7762:9:8"}]},"documentation":{"id":951,"nodeType":"StructuredDocumentation","src":"7246:273:8","text":" @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified\n by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the\n proxied contract."},"id":982,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchUpgradeToAndCall","nameLocation":"7533:25:8","nodeType":"FunctionDefinition","parameters":{"id":952,"nodeType":"ParameterList","parameters":[],"src":"7558:2:8"},"returnParameters":{"id":955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":954,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":982,"src":"7578:12:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":953,"name":"bytes","nodeType":"ElementaryTypeName","src":"7578:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7577:14:8"},"scope":1005,"src":"7524:254:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":991,"nodeType":"Block","src":"7989:35:8","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":988,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":349,"src":"8006:9:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8006:11:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":987,"id":990,"nodeType":"Return","src":"7999:18:8"}]},"documentation":{"id":983,"nodeType":"StructuredDocumentation","src":"7784:142:8","text":" @dev Returns the current admin.\n CAUTION: This function is deprecated. Use {ERC1967Upgrade-_getAdmin} instead."},"id":992,"implemented":true,"kind":"function","modifiers":[],"name":"_admin","nameLocation":"7940:6:8","nodeType":"FunctionDefinition","parameters":{"id":984,"nodeType":"ParameterList","parameters":[],"src":"7946:2:8"},"returnParameters":{"id":987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":992,"src":"7980:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":985,"name":"address","nodeType":"ElementaryTypeName","src":"7980:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7979:9:8"},"scope":1005,"src":"7931:93:8","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1003,"nodeType":"Block","src":"8298:40:8","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":997,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8316:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8320:5:8","memberName":"value","nodeType":"MemberAccess","src":"8316:9:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8329:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8316:14:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":996,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8308:7:8","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":1001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8308:23:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1002,"nodeType":"ExpressionStatement","src":"8308:23:8"}]},"documentation":{"id":993,"nodeType":"StructuredDocumentation","src":"8030:226:8","text":" @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to\n emulate some proxy functions being non-payable while still allowing value to pass through."},"id":1004,"implemented":true,"kind":"function","modifiers":[],"name":"_requireZeroValue","nameLocation":"8270:17:8","nodeType":"FunctionDefinition","parameters":{"id":994,"nodeType":"ParameterList","parameters":[],"src":"8287:2:8"},"returnParameters":{"id":995,"nodeType":"ParameterList","parameters":[],"src":"8298:0:8"},"scope":1005,"src":"8261:77:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":1006,"src":"3389:4951:8","usedErrors":[],"usedEvents":[120,127,132]}],"src":"133:8208:8"},"id":8},"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol","exportedSymbols":{"Address":[1335]},"id":1336,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1007,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:9"},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":1008,"nodeType":"StructuredDocumentation","src":"126:67:9","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":1335,"linearizedBaseContracts":[1335],"name":"Address","nameLocation":"202:7:9","nodeType":"ContractDefinition","nodes":[{"body":{"id":1022,"nodeType":"Block","src":"1478:254:9","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1016,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"1702:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1710:4:9","memberName":"code","nodeType":"MemberAccess","src":"1702:12:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1715:6:9","memberName":"length","nodeType":"MemberAccess","src":"1702:19:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1724:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1702:23:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1015,"id":1021,"nodeType":"Return","src":"1695:30:9"}]},"documentation":{"id":1009,"nodeType":"StructuredDocumentation","src":"216:1191:9","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":1023,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1421:10:9","nodeType":"FunctionDefinition","parameters":{"id":1012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1011,"mutability":"mutable","name":"account","nameLocation":"1440:7:9","nodeType":"VariableDeclaration","scope":1023,"src":"1432:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1010,"name":"address","nodeType":"ElementaryTypeName","src":"1432:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1431:17:9"},"returnParameters":{"id":1015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1014,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1023,"src":"1472:4:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1013,"name":"bool","nodeType":"ElementaryTypeName","src":"1472:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1471:6:9"},"scope":1335,"src":"1412:320:9","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1056,"nodeType":"Block","src":"2718:241:9","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1034,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2744:4:9","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$1335","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$1335","typeString":"library Address"}],"id":1033,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2736:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1032,"name":"address","nodeType":"ElementaryTypeName","src":"2736:7:9","typeDescriptions":{}}},"id":1035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2736:13:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2750:7:9","memberName":"balance","nodeType":"MemberAccess","src":"2736:21:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1037,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1028,"src":"2761:6:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2736:31:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":1039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2769:31:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":1031,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2728:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2728:73:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1041,"nodeType":"ExpressionStatement","src":"2728:73:9"},{"assignments":[1043,null],"declarations":[{"constant":false,"id":1043,"mutability":"mutable","name":"success","nameLocation":"2818:7:9","nodeType":"VariableDeclaration","scope":1056,"src":"2813:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1042,"name":"bool","nodeType":"ElementaryTypeName","src":"2813:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":1050,"initialValue":{"arguments":[{"hexValue":"","id":1048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2861:2:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":1044,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1026,"src":"2831:9:9","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":1045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2841:4:9","memberName":"call","nodeType":"MemberAccess","src":"2831:14:9","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":1046,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1028,"src":"2853:6:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2831:29:9","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2812:52:9"},{"expression":{"arguments":[{"id":1052,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1043,"src":"2882:7:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":1053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2891:60:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":1051,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2874:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2874:78:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1055,"nodeType":"ExpressionStatement","src":"2874:78:9"}]},"documentation":{"id":1024,"nodeType":"StructuredDocumentation","src":"1738:904:9","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":1057,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2656:9:9","nodeType":"FunctionDefinition","parameters":{"id":1029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1026,"mutability":"mutable","name":"recipient","nameLocation":"2682:9:9","nodeType":"VariableDeclaration","scope":1057,"src":"2666:25:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":1025,"name":"address","nodeType":"ElementaryTypeName","src":"2666:15:9","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":1028,"mutability":"mutable","name":"amount","nameLocation":"2701:6:9","nodeType":"VariableDeclaration","scope":1057,"src":"2693:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1027,"name":"uint256","nodeType":"ElementaryTypeName","src":"2693:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:43:9"},"returnParameters":{"id":1030,"nodeType":"ParameterList","parameters":[],"src":"2718:0:9"},"scope":1335,"src":"2647:312:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1074,"nodeType":"Block","src":"3790:96:9","statements":[{"expression":{"arguments":[{"id":1068,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1060,"src":"3829:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1069,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"3837:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":1070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3843:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":1071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3846:32:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":1067,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[1115,1159],"referencedDeclaration":1159,"src":"3807:21:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":1072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3807:72:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1066,"id":1073,"nodeType":"Return","src":"3800:79:9"}]},"documentation":{"id":1058,"nodeType":"StructuredDocumentation","src":"2965:731:9","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":1075,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3710:12:9","nodeType":"FunctionDefinition","parameters":{"id":1063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1060,"mutability":"mutable","name":"target","nameLocation":"3731:6:9","nodeType":"VariableDeclaration","scope":1075,"src":"3723:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1059,"name":"address","nodeType":"ElementaryTypeName","src":"3723:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1062,"mutability":"mutable","name":"data","nameLocation":"3752:4:9","nodeType":"VariableDeclaration","scope":1075,"src":"3739:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1061,"name":"bytes","nodeType":"ElementaryTypeName","src":"3739:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3722:35:9"},"returnParameters":{"id":1066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1065,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1075,"src":"3776:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1064,"name":"bytes","nodeType":"ElementaryTypeName","src":"3776:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3775:14:9"},"scope":1335,"src":"3701:185:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1094,"nodeType":"Block","src":"4255:76:9","statements":[{"expression":{"arguments":[{"id":1088,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1078,"src":"4294:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1089,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1080,"src":"4302:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":1090,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4308:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":1091,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1082,"src":"4311:12:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1087,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[1115,1159],"referencedDeclaration":1159,"src":"4272:21:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":1092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4272:52:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1086,"id":1093,"nodeType":"Return","src":"4265:59:9"}]},"documentation":{"id":1076,"nodeType":"StructuredDocumentation","src":"3892:211:9","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":1095,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4117:12:9","nodeType":"FunctionDefinition","parameters":{"id":1083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1078,"mutability":"mutable","name":"target","nameLocation":"4147:6:9","nodeType":"VariableDeclaration","scope":1095,"src":"4139:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1077,"name":"address","nodeType":"ElementaryTypeName","src":"4139:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1080,"mutability":"mutable","name":"data","nameLocation":"4176:4:9","nodeType":"VariableDeclaration","scope":1095,"src":"4163:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1079,"name":"bytes","nodeType":"ElementaryTypeName","src":"4163:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1082,"mutability":"mutable","name":"errorMessage","nameLocation":"4204:12:9","nodeType":"VariableDeclaration","scope":1095,"src":"4190:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1081,"name":"string","nodeType":"ElementaryTypeName","src":"4190:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4129:93:9"},"returnParameters":{"id":1086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1095,"src":"4241:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1084,"name":"bytes","nodeType":"ElementaryTypeName","src":"4241:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4240:14:9"},"scope":1335,"src":"4108:223:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1114,"nodeType":"Block","src":"4806:111:9","statements":[{"expression":{"arguments":[{"id":1108,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"4845:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1109,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1100,"src":"4853:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1110,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1102,"src":"4859:5:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":1111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4866:43:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":1107,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[1115,1159],"referencedDeclaration":1159,"src":"4823:21:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":1112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:87:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1106,"id":1113,"nodeType":"Return","src":"4816:94:9"}]},"documentation":{"id":1096,"nodeType":"StructuredDocumentation","src":"4337:351:9","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":1115,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4702:21:9","nodeType":"FunctionDefinition","parameters":{"id":1103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1098,"mutability":"mutable","name":"target","nameLocation":"4732:6:9","nodeType":"VariableDeclaration","scope":1115,"src":"4724:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1097,"name":"address","nodeType":"ElementaryTypeName","src":"4724:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1100,"mutability":"mutable","name":"data","nameLocation":"4753:4:9","nodeType":"VariableDeclaration","scope":1115,"src":"4740:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1099,"name":"bytes","nodeType":"ElementaryTypeName","src":"4740:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1102,"mutability":"mutable","name":"value","nameLocation":"4767:5:9","nodeType":"VariableDeclaration","scope":1115,"src":"4759:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1101,"name":"uint256","nodeType":"ElementaryTypeName","src":"4759:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4723:50:9"},"returnParameters":{"id":1106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1115,"src":"4792:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1104,"name":"bytes","nodeType":"ElementaryTypeName","src":"4792:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4791:14:9"},"scope":1335,"src":"4693:224:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1158,"nodeType":"Block","src":"5344:267:9","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1132,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5370:4:9","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$1335","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$1335","typeString":"library Address"}],"id":1131,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5362:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1130,"name":"address","nodeType":"ElementaryTypeName","src":"5362:7:9","typeDescriptions":{}}},"id":1133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5362:13:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5376:7:9","memberName":"balance","nodeType":"MemberAccess","src":"5362:21:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1135,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1122,"src":"5387:5:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5362:30:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":1137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5394:40:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":1129,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5354:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5354:81:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1139,"nodeType":"ExpressionStatement","src":"5354:81:9"},{"assignments":[1141,1143],"declarations":[{"constant":false,"id":1141,"mutability":"mutable","name":"success","nameLocation":"5451:7:9","nodeType":"VariableDeclaration","scope":1158,"src":"5446:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1140,"name":"bool","nodeType":"ElementaryTypeName","src":"5446:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1143,"mutability":"mutable","name":"returndata","nameLocation":"5473:10:9","nodeType":"VariableDeclaration","scope":1158,"src":"5460:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1142,"name":"bytes","nodeType":"ElementaryTypeName","src":"5460:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1150,"initialValue":{"arguments":[{"id":1148,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"5513:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1144,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5487:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5494:4:9","memberName":"call","nodeType":"MemberAccess","src":"5487:11:9","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":1146,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1122,"src":"5506:5:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5487:25:9","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5487:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5445:73:9"},{"expression":{"arguments":[{"id":1152,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1118,"src":"5562:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1153,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1141,"src":"5570:7:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1154,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1143,"src":"5579:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1155,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1124,"src":"5591:12:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1151,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"5535:26:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":1156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:69:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1128,"id":1157,"nodeType":"Return","src":"5528:76:9"}]},"documentation":{"id":1116,"nodeType":"StructuredDocumentation","src":"4923:237:9","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":1159,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5174:21:9","nodeType":"FunctionDefinition","parameters":{"id":1125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1118,"mutability":"mutable","name":"target","nameLocation":"5213:6:9","nodeType":"VariableDeclaration","scope":1159,"src":"5205:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1117,"name":"address","nodeType":"ElementaryTypeName","src":"5205:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1120,"mutability":"mutable","name":"data","nameLocation":"5242:4:9","nodeType":"VariableDeclaration","scope":1159,"src":"5229:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1119,"name":"bytes","nodeType":"ElementaryTypeName","src":"5229:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1122,"mutability":"mutable","name":"value","nameLocation":"5264:5:9","nodeType":"VariableDeclaration","scope":1159,"src":"5256:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1121,"name":"uint256","nodeType":"ElementaryTypeName","src":"5256:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1124,"mutability":"mutable","name":"errorMessage","nameLocation":"5293:12:9","nodeType":"VariableDeclaration","scope":1159,"src":"5279:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1123,"name":"string","nodeType":"ElementaryTypeName","src":"5279:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5195:116:9"},"returnParameters":{"id":1128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1159,"src":"5330:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1126,"name":"bytes","nodeType":"ElementaryTypeName","src":"5330:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5329:14:9"},"scope":1335,"src":"5165:446:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1175,"nodeType":"Block","src":"5888:97:9","statements":[{"expression":{"arguments":[{"id":1170,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1162,"src":"5924:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1171,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1164,"src":"5932:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":1172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5938:39:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":1169,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[1176,1205],"referencedDeclaration":1205,"src":"5905:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":1173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5905:73:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1168,"id":1174,"nodeType":"Return","src":"5898:80:9"}]},"documentation":{"id":1160,"nodeType":"StructuredDocumentation","src":"5617:166:9","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":1176,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5797:18:9","nodeType":"FunctionDefinition","parameters":{"id":1165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1162,"mutability":"mutable","name":"target","nameLocation":"5824:6:9","nodeType":"VariableDeclaration","scope":1176,"src":"5816:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1161,"name":"address","nodeType":"ElementaryTypeName","src":"5816:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1164,"mutability":"mutable","name":"data","nameLocation":"5845:4:9","nodeType":"VariableDeclaration","scope":1176,"src":"5832:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1163,"name":"bytes","nodeType":"ElementaryTypeName","src":"5832:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5815:35:9"},"returnParameters":{"id":1168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1176,"src":"5874:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1166,"name":"bytes","nodeType":"ElementaryTypeName","src":"5874:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5873:14:9"},"scope":1335,"src":"5788:197:9","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1204,"nodeType":"Block","src":"6327:168:9","statements":[{"assignments":[1189,1191],"declarations":[{"constant":false,"id":1189,"mutability":"mutable","name":"success","nameLocation":"6343:7:9","nodeType":"VariableDeclaration","scope":1204,"src":"6338:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1188,"name":"bool","nodeType":"ElementaryTypeName","src":"6338:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1191,"mutability":"mutable","name":"returndata","nameLocation":"6365:10:9","nodeType":"VariableDeclaration","scope":1204,"src":"6352:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1190,"name":"bytes","nodeType":"ElementaryTypeName","src":"6352:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1196,"initialValue":{"arguments":[{"id":1194,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1181,"src":"6397:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1192,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1179,"src":"6379:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6386:10:9","memberName":"staticcall","nodeType":"MemberAccess","src":"6379:17:9","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":1195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6379:23:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6337:65:9"},{"expression":{"arguments":[{"id":1198,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1179,"src":"6446:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1199,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1189,"src":"6454:7:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1200,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1191,"src":"6463:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1201,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1183,"src":"6475:12:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1197,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"6419:26:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":1202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6419:69:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1187,"id":1203,"nodeType":"Return","src":"6412:76:9"}]},"documentation":{"id":1177,"nodeType":"StructuredDocumentation","src":"5991:173:9","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":1205,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6178:18:9","nodeType":"FunctionDefinition","parameters":{"id":1184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1179,"mutability":"mutable","name":"target","nameLocation":"6214:6:9","nodeType":"VariableDeclaration","scope":1205,"src":"6206:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1178,"name":"address","nodeType":"ElementaryTypeName","src":"6206:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1181,"mutability":"mutable","name":"data","nameLocation":"6243:4:9","nodeType":"VariableDeclaration","scope":1205,"src":"6230:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1180,"name":"bytes","nodeType":"ElementaryTypeName","src":"6230:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1183,"mutability":"mutable","name":"errorMessage","nameLocation":"6271:12:9","nodeType":"VariableDeclaration","scope":1205,"src":"6257:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1182,"name":"string","nodeType":"ElementaryTypeName","src":"6257:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6196:93:9"},"returnParameters":{"id":1187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1205,"src":"6313:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1185,"name":"bytes","nodeType":"ElementaryTypeName","src":"6313:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6312:14:9"},"scope":1335,"src":"6169:326:9","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1221,"nodeType":"Block","src":"6771:101:9","statements":[{"expression":{"arguments":[{"id":1216,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1208,"src":"6809:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1217,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1210,"src":"6817:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":1218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6823:41:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":1215,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[1222,1251],"referencedDeclaration":1251,"src":"6788:20:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":1219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6788:77:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1214,"id":1220,"nodeType":"Return","src":"6781:84:9"}]},"documentation":{"id":1206,"nodeType":"StructuredDocumentation","src":"6501:168:9","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":1222,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6683:20:9","nodeType":"FunctionDefinition","parameters":{"id":1211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1208,"mutability":"mutable","name":"target","nameLocation":"6712:6:9","nodeType":"VariableDeclaration","scope":1222,"src":"6704:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1207,"name":"address","nodeType":"ElementaryTypeName","src":"6704:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1210,"mutability":"mutable","name":"data","nameLocation":"6733:4:9","nodeType":"VariableDeclaration","scope":1222,"src":"6720:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1209,"name":"bytes","nodeType":"ElementaryTypeName","src":"6720:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6703:35:9"},"returnParameters":{"id":1214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1213,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1222,"src":"6757:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1212,"name":"bytes","nodeType":"ElementaryTypeName","src":"6757:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6756:14:9"},"scope":1335,"src":"6674:198:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1250,"nodeType":"Block","src":"7213:170:9","statements":[{"assignments":[1235,1237],"declarations":[{"constant":false,"id":1235,"mutability":"mutable","name":"success","nameLocation":"7229:7:9","nodeType":"VariableDeclaration","scope":1250,"src":"7224:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1234,"name":"bool","nodeType":"ElementaryTypeName","src":"7224:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1237,"mutability":"mutable","name":"returndata","nameLocation":"7251:10:9","nodeType":"VariableDeclaration","scope":1250,"src":"7238:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1236,"name":"bytes","nodeType":"ElementaryTypeName","src":"7238:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1242,"initialValue":{"arguments":[{"id":1240,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1227,"src":"7285:4:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1238,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"7265:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7272:12:9","memberName":"delegatecall","nodeType":"MemberAccess","src":"7265:19:9","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7265:25:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7223:67:9"},{"expression":{"arguments":[{"id":1244,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"7334:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1245,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1235,"src":"7342:7:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1246,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1237,"src":"7351:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1247,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1229,"src":"7363:12:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1243,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"7307:26:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":1248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7307:69:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1233,"id":1249,"nodeType":"Return","src":"7300:76:9"}]},"documentation":{"id":1223,"nodeType":"StructuredDocumentation","src":"6878:175:9","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":1251,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7067:20:9","nodeType":"FunctionDefinition","parameters":{"id":1230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1225,"mutability":"mutable","name":"target","nameLocation":"7105:6:9","nodeType":"VariableDeclaration","scope":1251,"src":"7097:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1224,"name":"address","nodeType":"ElementaryTypeName","src":"7097:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1227,"mutability":"mutable","name":"data","nameLocation":"7134:4:9","nodeType":"VariableDeclaration","scope":1251,"src":"7121:17:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1226,"name":"bytes","nodeType":"ElementaryTypeName","src":"7121:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1229,"mutability":"mutable","name":"errorMessage","nameLocation":"7162:12:9","nodeType":"VariableDeclaration","scope":1251,"src":"7148:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1228,"name":"string","nodeType":"ElementaryTypeName","src":"7148:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7087:93:9"},"returnParameters":{"id":1233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1232,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1251,"src":"7199:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1231,"name":"bytes","nodeType":"ElementaryTypeName","src":"7199:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7198:14:9"},"scope":1335,"src":"7058:325:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1289,"nodeType":"Block","src":"7865:434:9","statements":[{"condition":{"id":1265,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1256,"src":"7879:7:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1287,"nodeType":"Block","src":"8235:58:9","statements":[{"expression":{"arguments":[{"id":1283,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1258,"src":"8257:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1284,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1260,"src":"8269:12:9","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":1282,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"8249:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8249:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1286,"nodeType":"ExpressionStatement","src":"8249:33:9"}]},"id":1288,"nodeType":"IfStatement","src":"7875:418:9","trueBody":{"id":1281,"nodeType":"Block","src":"7888:341:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1266,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1258,"src":"7906:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7917:6:9","memberName":"length","nodeType":"MemberAccess","src":"7906:17:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7927:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7906:22:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1278,"nodeType":"IfStatement","src":"7902:286:9","trueBody":{"id":1277,"nodeType":"Block","src":"7930:258:9","statements":[{"expression":{"arguments":[{"arguments":[{"id":1272,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1254,"src":"8132:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1271,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1023,"src":"8121:10:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":1273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8121:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":1274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8141:31:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":1270,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8113:7:9","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8113:60:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1276,"nodeType":"ExpressionStatement","src":"8113:60:9"}]}},{"expression":{"id":1279,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1258,"src":"8208:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1264,"id":1280,"nodeType":"Return","src":"8201:17:9"}]}}]},"documentation":{"id":1252,"nodeType":"StructuredDocumentation","src":"7389:277:9","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":1290,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7680:26:9","nodeType":"FunctionDefinition","parameters":{"id":1261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1254,"mutability":"mutable","name":"target","nameLocation":"7724:6:9","nodeType":"VariableDeclaration","scope":1290,"src":"7716:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1253,"name":"address","nodeType":"ElementaryTypeName","src":"7716:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1256,"mutability":"mutable","name":"success","nameLocation":"7745:7:9","nodeType":"VariableDeclaration","scope":1290,"src":"7740:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1255,"name":"bool","nodeType":"ElementaryTypeName","src":"7740:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1258,"mutability":"mutable","name":"returndata","nameLocation":"7775:10:9","nodeType":"VariableDeclaration","scope":1290,"src":"7762:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1257,"name":"bytes","nodeType":"ElementaryTypeName","src":"7762:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1260,"mutability":"mutable","name":"errorMessage","nameLocation":"7809:12:9","nodeType":"VariableDeclaration","scope":1290,"src":"7795:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1259,"name":"string","nodeType":"ElementaryTypeName","src":"7795:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7706:121:9"},"returnParameters":{"id":1264,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1263,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1290,"src":"7851:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1262,"name":"bytes","nodeType":"ElementaryTypeName","src":"7851:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7850:14:9"},"scope":1335,"src":"7671:628:9","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1313,"nodeType":"Block","src":"8680:135:9","statements":[{"condition":{"id":1302,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1293,"src":"8694:7:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1311,"nodeType":"Block","src":"8751:58:9","statements":[{"expression":{"arguments":[{"id":1307,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1295,"src":"8773:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1308,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1297,"src":"8785:12:9","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":1306,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1334,"src":"8765:7:9","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":1309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8765:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1310,"nodeType":"ExpressionStatement","src":"8765:33:9"}]},"id":1312,"nodeType":"IfStatement","src":"8690:119:9","trueBody":{"id":1305,"nodeType":"Block","src":"8703:42:9","statements":[{"expression":{"id":1303,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1295,"src":"8724:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1301,"id":1304,"nodeType":"Return","src":"8717:17:9"}]}}]},"documentation":{"id":1291,"nodeType":"StructuredDocumentation","src":"8305:210:9","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":1314,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8529:16:9","nodeType":"FunctionDefinition","parameters":{"id":1298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1293,"mutability":"mutable","name":"success","nameLocation":"8560:7:9","nodeType":"VariableDeclaration","scope":1314,"src":"8555:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1292,"name":"bool","nodeType":"ElementaryTypeName","src":"8555:4:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1295,"mutability":"mutable","name":"returndata","nameLocation":"8590:10:9","nodeType":"VariableDeclaration","scope":1314,"src":"8577:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1294,"name":"bytes","nodeType":"ElementaryTypeName","src":"8577:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1297,"mutability":"mutable","name":"errorMessage","nameLocation":"8624:12:9","nodeType":"VariableDeclaration","scope":1314,"src":"8610:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1296,"name":"string","nodeType":"ElementaryTypeName","src":"8610:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8545:97:9"},"returnParameters":{"id":1301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1314,"src":"8666:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1299,"name":"bytes","nodeType":"ElementaryTypeName","src":"8666:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8665:14:9"},"scope":1335,"src":"8520:295:9","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1333,"nodeType":"Block","src":"8904:457:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1321,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1316,"src":"8980:10:9","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8991:6:9","memberName":"length","nodeType":"MemberAccess","src":"8980:17:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9000:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8980:21:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1331,"nodeType":"Block","src":"9310:45:9","statements":[{"expression":{"arguments":[{"id":1328,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"9331:12:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1327,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9324:6:9","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9324:20:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1330,"nodeType":"ExpressionStatement","src":"9324:20:9"}]},"id":1332,"nodeType":"IfStatement","src":"8976:379:9","trueBody":{"id":1326,"nodeType":"Block","src":"9003:301:9","statements":[{"AST":{"nodeType":"YulBlock","src":"9161:133:9","statements":[{"nodeType":"YulVariableDeclaration","src":"9179:40:9","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9208:10:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9202:5:9"},"nodeType":"YulFunctionCall","src":"9202:17:9"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9183:15:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9247:2:9","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9251:10:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9243:3:9"},"nodeType":"YulFunctionCall","src":"9243:19:9"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9264:15:9"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9236:6:9"},"nodeType":"YulFunctionCall","src":"9236:44:9"},"nodeType":"YulExpressionStatement","src":"9236:44:9"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1316,"isOffset":false,"isSlot":false,"src":"9208:10:9","valueSize":1},{"declaration":1316,"isOffset":false,"isSlot":false,"src":"9251:10:9","valueSize":1}],"id":1325,"nodeType":"InlineAssembly","src":"9152:142:9"}]}}]},"id":1334,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8830:7:9","nodeType":"FunctionDefinition","parameters":{"id":1319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1316,"mutability":"mutable","name":"returndata","nameLocation":"8851:10:9","nodeType":"VariableDeclaration","scope":1334,"src":"8838:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1315,"name":"bytes","nodeType":"ElementaryTypeName","src":"8838:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1318,"mutability":"mutable","name":"errorMessage","nameLocation":"8877:12:9","nodeType":"VariableDeclaration","scope":1334,"src":"8863:26:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1317,"name":"string","nodeType":"ElementaryTypeName","src":"8863:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8837:53:9"},"returnParameters":{"id":1320,"nodeType":"ParameterList","parameters":[],"src":"8904:0:9"},"scope":1335,"src":"8821:540:9","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":1336,"src":"194:9169:9","usedErrors":[],"usedEvents":[]}],"src":"101:9263:9"},"id":9},"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Context.sol","exportedSymbols":{"Context":[1365]},"id":1366,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1337,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:10"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":1338,"nodeType":"StructuredDocumentation","src":"126:496:10","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":1365,"linearizedBaseContracts":[1365],"name":"Context","nameLocation":"641:7:10","nodeType":"ContractDefinition","nodes":[{"body":{"id":1346,"nodeType":"Block","src":"717:34:10","statements":[{"expression":{"expression":{"id":1343,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"734:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"738:6:10","memberName":"sender","nodeType":"MemberAccess","src":"734:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1342,"id":1345,"nodeType":"Return","src":"727:17:10"}]},"id":1347,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"664:10:10","nodeType":"FunctionDefinition","parameters":{"id":1339,"nodeType":"ParameterList","parameters":[],"src":"674:2:10"},"returnParameters":{"id":1342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1341,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1347,"src":"708:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1340,"name":"address","nodeType":"ElementaryTypeName","src":"708:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"707:9:10"},"scope":1365,"src":"655:96:10","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1355,"nodeType":"Block","src":"824:32:10","statements":[{"expression":{"expression":{"id":1352,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"841:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"845:4:10","memberName":"data","nodeType":"MemberAccess","src":"841:8:10","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":1351,"id":1354,"nodeType":"Return","src":"834:15:10"}]},"id":1356,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"766:8:10","nodeType":"FunctionDefinition","parameters":{"id":1348,"nodeType":"ParameterList","parameters":[],"src":"774:2:10"},"returnParameters":{"id":1351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1350,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1356,"src":"808:14:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1349,"name":"bytes","nodeType":"ElementaryTypeName","src":"808:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"807:16:10"},"scope":1365,"src":"757:99:10","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1363,"nodeType":"Block","src":"934:25:10","statements":[{"expression":{"hexValue":"30","id":1361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"951:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1360,"id":1362,"nodeType":"Return","src":"944:8:10"}]},"id":1364,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"871:20:10","nodeType":"FunctionDefinition","parameters":{"id":1357,"nodeType":"ParameterList","parameters":[],"src":"891:2:10"},"returnParameters":{"id":1360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1364,"src":"925:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1358,"name":"uint256","nodeType":"ElementaryTypeName","src":"925:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"924:9:10"},"scope":1365,"src":"862:97:10","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":1366,"src":"623:338:10","usedErrors":[],"usedEvents":[]}],"src":"101:861:10"},"id":10},"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[1475]},"id":1476,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1367,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"193:23:11"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":1368,"nodeType":"StructuredDocumentation","src":"218:1201:11","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 ERC1967 implementation slot:\n ```solidity\n contract ERC1967 {\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(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n }\n ```\n _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n _Available since v4.9 for `string`, `bytes`._"},"fullyImplemented":true,"id":1475,"linearizedBaseContracts":[1475],"name":"StorageSlot","nameLocation":"1428:11:11","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":1371,"members":[{"constant":false,"id":1370,"mutability":"mutable","name":"value","nameLocation":"1483:5:11","nodeType":"VariableDeclaration","scope":1371,"src":"1475:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1369,"name":"address","nodeType":"ElementaryTypeName","src":"1475:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1453:11:11","nodeType":"StructDefinition","scope":1475,"src":"1446:49:11","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":1374,"members":[{"constant":false,"id":1373,"mutability":"mutable","name":"value","nameLocation":"1535:5:11","nodeType":"VariableDeclaration","scope":1374,"src":"1530:10:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1372,"name":"bool","nodeType":"ElementaryTypeName","src":"1530:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1508:11:11","nodeType":"StructDefinition","scope":1475,"src":"1501:46:11","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":1377,"members":[{"constant":false,"id":1376,"mutability":"mutable","name":"value","nameLocation":"1590:5:11","nodeType":"VariableDeclaration","scope":1377,"src":"1582:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1375,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1582:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1560:11:11","nodeType":"StructDefinition","scope":1475,"src":"1553:49:11","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":1380,"members":[{"constant":false,"id":1379,"mutability":"mutable","name":"value","nameLocation":"1645:5:11","nodeType":"VariableDeclaration","scope":1380,"src":"1637:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1378,"name":"uint256","nodeType":"ElementaryTypeName","src":"1637:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1615:11:11","nodeType":"StructDefinition","scope":1475,"src":"1608:49:11","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":1383,"members":[{"constant":false,"id":1382,"mutability":"mutable","name":"value","nameLocation":"1698:5:11","nodeType":"VariableDeclaration","scope":1383,"src":"1691:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1381,"name":"string","nodeType":"ElementaryTypeName","src":"1691:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1670:10:11","nodeType":"StructDefinition","scope":1475,"src":"1663:47:11","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":1386,"members":[{"constant":false,"id":1385,"mutability":"mutable","name":"value","nameLocation":"1749:5:11","nodeType":"VariableDeclaration","scope":1386,"src":"1743:11:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1384,"name":"bytes","nodeType":"ElementaryTypeName","src":"1743:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1723:9:11","nodeType":"StructDefinition","scope":1475,"src":"1716:45:11","visibility":"public"},{"body":{"id":1396,"nodeType":"Block","src":"1943:106:11","statements":[{"AST":{"nodeType":"YulBlock","src":"2005:38:11","statements":[{"nodeType":"YulAssignment","src":"2019:14:11","value":{"name":"slot","nodeType":"YulIdentifier","src":"2029:4:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2019:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1393,"isOffset":false,"isSlot":true,"src":"2019:6:11","suffix":"slot","valueSize":1},{"declaration":1389,"isOffset":false,"isSlot":false,"src":"2029:4:11","valueSize":1}],"id":1395,"nodeType":"InlineAssembly","src":"1996:47:11"}]},"documentation":{"id":1387,"nodeType":"StructuredDocumentation","src":"1767:87:11","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":1397,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1868:14:11","nodeType":"FunctionDefinition","parameters":{"id":1390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1389,"mutability":"mutable","name":"slot","nameLocation":"1891:4:11","nodeType":"VariableDeclaration","scope":1397,"src":"1883:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1388,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1883:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1882:14:11"},"returnParameters":{"id":1394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1393,"mutability":"mutable","name":"r","nameLocation":"1940:1:11","nodeType":"VariableDeclaration","scope":1397,"src":"1920:21:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":1392,"nodeType":"UserDefinedTypeName","pathNode":{"id":1391,"name":"AddressSlot","nameLocations":["1920:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":1371,"src":"1920:11:11"},"referencedDeclaration":1371,"src":"1920:11:11","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1371_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1919:23:11"},"scope":1475,"src":"1859:190:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1407,"nodeType":"Block","src":"2231:106:11","statements":[{"AST":{"nodeType":"YulBlock","src":"2293:38:11","statements":[{"nodeType":"YulAssignment","src":"2307:14:11","value":{"name":"slot","nodeType":"YulIdentifier","src":"2317:4:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2307:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1404,"isOffset":false,"isSlot":true,"src":"2307:6:11","suffix":"slot","valueSize":1},{"declaration":1400,"isOffset":false,"isSlot":false,"src":"2317:4:11","valueSize":1}],"id":1406,"nodeType":"InlineAssembly","src":"2284:47:11"}]},"documentation":{"id":1398,"nodeType":"StructuredDocumentation","src":"2055:87:11","text":" @dev Returns an `BooleanSlot` with member `value` located at `slot`."},"id":1408,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2156:14:11","nodeType":"FunctionDefinition","parameters":{"id":1401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1400,"mutability":"mutable","name":"slot","nameLocation":"2179:4:11","nodeType":"VariableDeclaration","scope":1408,"src":"2171:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1399,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2171:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2170:14:11"},"returnParameters":{"id":1405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1404,"mutability":"mutable","name":"r","nameLocation":"2228:1:11","nodeType":"VariableDeclaration","scope":1408,"src":"2208:21:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1374_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":1403,"nodeType":"UserDefinedTypeName","pathNode":{"id":1402,"name":"BooleanSlot","nameLocations":["2208:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":1374,"src":"2208:11:11"},"referencedDeclaration":1374,"src":"2208:11:11","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1374_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2207:23:11"},"scope":1475,"src":"2147:190:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1418,"nodeType":"Block","src":"2519:106:11","statements":[{"AST":{"nodeType":"YulBlock","src":"2581:38:11","statements":[{"nodeType":"YulAssignment","src":"2595:14:11","value":{"name":"slot","nodeType":"YulIdentifier","src":"2605:4:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2595:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1415,"isOffset":false,"isSlot":true,"src":"2595:6:11","suffix":"slot","valueSize":1},{"declaration":1411,"isOffset":false,"isSlot":false,"src":"2605:4:11","valueSize":1}],"id":1417,"nodeType":"InlineAssembly","src":"2572:47:11"}]},"documentation":{"id":1409,"nodeType":"StructuredDocumentation","src":"2343:87:11","text":" @dev Returns an `Bytes32Slot` with member `value` located at `slot`."},"id":1419,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2444:14:11","nodeType":"FunctionDefinition","parameters":{"id":1412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1411,"mutability":"mutable","name":"slot","nameLocation":"2467:4:11","nodeType":"VariableDeclaration","scope":1419,"src":"2459:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2459:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2458:14:11"},"returnParameters":{"id":1416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1415,"mutability":"mutable","name":"r","nameLocation":"2516:1:11","nodeType":"VariableDeclaration","scope":1419,"src":"2496:21:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$1377_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":1414,"nodeType":"UserDefinedTypeName","pathNode":{"id":1413,"name":"Bytes32Slot","nameLocations":["2496:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":1377,"src":"2496:11:11"},"referencedDeclaration":1377,"src":"2496:11:11","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$1377_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2495:23:11"},"scope":1475,"src":"2435:190:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1429,"nodeType":"Block","src":"2807:106:11","statements":[{"AST":{"nodeType":"YulBlock","src":"2869:38:11","statements":[{"nodeType":"YulAssignment","src":"2883:14:11","value":{"name":"slot","nodeType":"YulIdentifier","src":"2893:4:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2883:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1426,"isOffset":false,"isSlot":true,"src":"2883:6:11","suffix":"slot","valueSize":1},{"declaration":1422,"isOffset":false,"isSlot":false,"src":"2893:4:11","valueSize":1}],"id":1428,"nodeType":"InlineAssembly","src":"2860:47:11"}]},"documentation":{"id":1420,"nodeType":"StructuredDocumentation","src":"2631:87:11","text":" @dev Returns an `Uint256Slot` with member `value` located at `slot`."},"id":1430,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2732:14:11","nodeType":"FunctionDefinition","parameters":{"id":1423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1422,"mutability":"mutable","name":"slot","nameLocation":"2755:4:11","nodeType":"VariableDeclaration","scope":1430,"src":"2747:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1421,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2747:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2746:14:11"},"returnParameters":{"id":1427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1426,"mutability":"mutable","name":"r","nameLocation":"2804:1:11","nodeType":"VariableDeclaration","scope":1430,"src":"2784:21:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$1380_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":1425,"nodeType":"UserDefinedTypeName","pathNode":{"id":1424,"name":"Uint256Slot","nameLocations":["2784:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":1380,"src":"2784:11:11"},"referencedDeclaration":1380,"src":"2784:11:11","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$1380_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2783:23:11"},"scope":1475,"src":"2723:190:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1440,"nodeType":"Block","src":"3092:106:11","statements":[{"AST":{"nodeType":"YulBlock","src":"3154:38:11","statements":[{"nodeType":"YulAssignment","src":"3168:14:11","value":{"name":"slot","nodeType":"YulIdentifier","src":"3178:4:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3168:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1437,"isOffset":false,"isSlot":true,"src":"3168:6:11","suffix":"slot","valueSize":1},{"declaration":1433,"isOffset":false,"isSlot":false,"src":"3178:4:11","valueSize":1}],"id":1439,"nodeType":"InlineAssembly","src":"3145:47:11"}]},"documentation":{"id":1431,"nodeType":"StructuredDocumentation","src":"2919:86:11","text":" @dev Returns an `StringSlot` with member `value` located at `slot`."},"id":1441,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3019:13:11","nodeType":"FunctionDefinition","parameters":{"id":1434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1433,"mutability":"mutable","name":"slot","nameLocation":"3041:4:11","nodeType":"VariableDeclaration","scope":1441,"src":"3033:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1432,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3033:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3032:14:11"},"returnParameters":{"id":1438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1437,"mutability":"mutable","name":"r","nameLocation":"3089:1:11","nodeType":"VariableDeclaration","scope":1441,"src":"3070:20:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1383_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":1436,"nodeType":"UserDefinedTypeName","pathNode":{"id":1435,"name":"StringSlot","nameLocations":["3070:10:11"],"nodeType":"IdentifierPath","referencedDeclaration":1383,"src":"3070:10:11"},"referencedDeclaration":1383,"src":"3070:10:11","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1383_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3069:22:11"},"scope":1475,"src":"3010:188:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1451,"nodeType":"Block","src":"3400:112:11","statements":[{"AST":{"nodeType":"YulBlock","src":"3462:44:11","statements":[{"nodeType":"YulAssignment","src":"3476:20:11","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"3486:10:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3476:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1448,"isOffset":false,"isSlot":true,"src":"3476:6:11","suffix":"slot","valueSize":1},{"declaration":1444,"isOffset":false,"isSlot":true,"src":"3486:10:11","suffix":"slot","valueSize":1}],"id":1450,"nodeType":"InlineAssembly","src":"3453:53:11"}]},"documentation":{"id":1442,"nodeType":"StructuredDocumentation","src":"3204:101:11","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":1452,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3319:13:11","nodeType":"FunctionDefinition","parameters":{"id":1445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1444,"mutability":"mutable","name":"store","nameLocation":"3348:5:11","nodeType":"VariableDeclaration","scope":1452,"src":"3333:20:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1443,"name":"string","nodeType":"ElementaryTypeName","src":"3333:6:11","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3332:22:11"},"returnParameters":{"id":1449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1448,"mutability":"mutable","name":"r","nameLocation":"3397:1:11","nodeType":"VariableDeclaration","scope":1452,"src":"3378:20:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1383_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":1447,"nodeType":"UserDefinedTypeName","pathNode":{"id":1446,"name":"StringSlot","nameLocations":["3378:10:11"],"nodeType":"IdentifierPath","referencedDeclaration":1383,"src":"3378:10:11"},"referencedDeclaration":1383,"src":"3378:10:11","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1383_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3377:22:11"},"scope":1475,"src":"3310:202:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1462,"nodeType":"Block","src":"3688:106:11","statements":[{"AST":{"nodeType":"YulBlock","src":"3750:38:11","statements":[{"nodeType":"YulAssignment","src":"3764:14:11","value":{"name":"slot","nodeType":"YulIdentifier","src":"3774:4:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3764:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1459,"isOffset":false,"isSlot":true,"src":"3764:6:11","suffix":"slot","valueSize":1},{"declaration":1455,"isOffset":false,"isSlot":false,"src":"3774:4:11","valueSize":1}],"id":1461,"nodeType":"InlineAssembly","src":"3741:47:11"}]},"documentation":{"id":1453,"nodeType":"StructuredDocumentation","src":"3518:85:11","text":" @dev Returns an `BytesSlot` with member `value` located at `slot`."},"id":1463,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3617:12:11","nodeType":"FunctionDefinition","parameters":{"id":1456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1455,"mutability":"mutable","name":"slot","nameLocation":"3638:4:11","nodeType":"VariableDeclaration","scope":1463,"src":"3630:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1454,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3630:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3629:14:11"},"returnParameters":{"id":1460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1459,"mutability":"mutable","name":"r","nameLocation":"3685:1:11","nodeType":"VariableDeclaration","scope":1463,"src":"3667:19:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1386_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":1458,"nodeType":"UserDefinedTypeName","pathNode":{"id":1457,"name":"BytesSlot","nameLocations":["3667:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":1386,"src":"3667:9:11"},"referencedDeclaration":1386,"src":"3667:9:11","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1386_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3666:21:11"},"scope":1475,"src":"3608:186:11","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1473,"nodeType":"Block","src":"3991:112:11","statements":[{"AST":{"nodeType":"YulBlock","src":"4053:44:11","statements":[{"nodeType":"YulAssignment","src":"4067:20:11","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"4077:10:11"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"4067:6:11"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1470,"isOffset":false,"isSlot":true,"src":"4067:6:11","suffix":"slot","valueSize":1},{"declaration":1466,"isOffset":false,"isSlot":true,"src":"4077:10:11","suffix":"slot","valueSize":1}],"id":1472,"nodeType":"InlineAssembly","src":"4044:53:11"}]},"documentation":{"id":1464,"nodeType":"StructuredDocumentation","src":"3800:99:11","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":1474,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3913:12:11","nodeType":"FunctionDefinition","parameters":{"id":1467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1466,"mutability":"mutable","name":"store","nameLocation":"3940:5:11","nodeType":"VariableDeclaration","scope":1474,"src":"3926:19:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1465,"name":"bytes","nodeType":"ElementaryTypeName","src":"3926:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3925:21:11"},"returnParameters":{"id":1471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1470,"mutability":"mutable","name":"r","nameLocation":"3988:1:11","nodeType":"VariableDeclaration","scope":1474,"src":"3970:19:11","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1386_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":1469,"nodeType":"UserDefinedTypeName","pathNode":{"id":1468,"name":"BytesSlot","nameLocations":["3970:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":1386,"src":"3970:9:11"},"referencedDeclaration":1386,"src":"3970:9:11","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1386_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3969:21:11"},"scope":1475,"src":"3904:199:11","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1476,"src":"1420:2685:11","usedErrors":[],"usedEvents":[]}],"src":"193:3913:11"},"id":11}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c.json b/artifacts/build-info/solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c.json new file mode 100644 index 0000000..c83cc6b --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c.json @@ -0,0 +1,63 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol": "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [] + }, + "sources": { + "npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822Proxiable {\n /**\n * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n * address.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy.\n */\n function proxiableUUID() external view returns (bytes32);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n *\n * _Available since v4.8.3._\n */\ninterface IERC1967 {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {BeaconProxy} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Proxy.sol\";\nimport \"./ERC1967Upgrade.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy, ERC1967Upgrade {\n /**\n * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.\n *\n * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded\n * function call, and allows initializing the storage of the proxy like a Solidity constructor.\n */\n constructor(address _logic, bytes memory _data) payable {\n _upgradeToAndCall(_logic, _data, false);\n }\n\n /**\n * @dev Returns the current implementation address.\n */\n function _implementation() internal view virtual override returns (address impl) {\n return ERC1967Upgrade._getImplementation();\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../beacon/IBeacon.sol\";\nimport \"../../interfaces/IERC1967.sol\";\nimport \"../../interfaces/draft-IERC1822.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This abstract contract provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n *\n * _Available since v4.1._\n */\nabstract contract ERC1967Upgrade is IERC1967 {\n // This is the keccak-256 hash of \"eip1967.proxy.rollback\" subtracted by 1\n bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;\n\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n /**\n * @dev Returns the current implementation address.\n */\n function _getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Perform implementation upgrade\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeTo(address newImplementation) internal {\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n }\n\n /**\n * @dev Perform implementation upgrade with additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {\n _upgradeTo(newImplementation);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(newImplementation, data);\n }\n }\n\n /**\n * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {\n // Upgrades from old implementations will perform a rollback test. This test requires the new\n // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing\n // this special case will break upgrade paths from old UUPS implementation to new ones.\n if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) {\n _setImplementation(newImplementation);\n } else {\n try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n require(slot == _IMPLEMENTATION_SLOT, \"ERC1967Upgrade: unsupported proxiableUUID\");\n } catch {\n revert(\"ERC1967Upgrade: new implementation is not UUPS\");\n }\n _upgradeToAndCall(newImplementation, data, forceCall);\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n */\n function _getAdmin() internal view returns (address) {\n return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n require(newAdmin != address(0), \"ERC1967: new admin is the zero address\");\n StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _changeAdmin(address newAdmin) internal {\n emit AdminChanged(_getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\n */\n bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function _getBeacon() internal view returns (address) {\n return StorageSlot.getAddressSlot(_BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the EIP1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n require(Address.isContract(newBeacon), \"ERC1967: new beacon is not a contract\");\n require(\n Address.isContract(IBeacon(newBeacon).implementation()),\n \"ERC1967: beacon implementation is not a contract\"\n );\n StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;\n }\n\n /**\n * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n *\n * Emits a {BeaconUpgraded} event.\n */\n function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {\n _setBeacon(newBeacon);\n emit BeaconUpgraded(newBeacon);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n /**\n * @dev Delegates the current call to `implementation`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _delegate(address implementation) internal virtual {\n assembly {\n // Copy msg.data. We take full control of memory in this inline assembly\n // block because it will not return to Solidity code. We overwrite the\n // Solidity scratch pad at memory position 0.\n calldatacopy(0, 0, calldatasize())\n\n // Call the implementation.\n // out and outsize are 0 because we don't know the size yet.\n let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)\n\n // Copy the returned data.\n returndatacopy(0, 0, returndatasize())\n\n switch result\n // delegatecall returns 0 on error.\n case 0 {\n revert(0, returndatasize())\n }\n default {\n return(0, returndatasize())\n }\n }\n }\n\n /**\n * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function\n * and {_fallback} should delegate.\n */\n function _implementation() internal view virtual returns (address);\n\n /**\n * @dev Delegates the current call to the address returned by `_implementation()`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _fallback() internal virtual {\n _beforeFallback();\n _delegate(_implementation());\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n * function in the contract matches the call data.\n */\n fallback() external payable virtual {\n _fallback();\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data\n * is empty.\n */\n receive() external payable virtual {\n _fallback();\n }\n\n /**\n * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`\n * call, or as part of the Solidity `fallback` or `receive` functions.\n *\n * If overridden should call `super._beforeFallback()`.\n */\n function _beforeFallback() internal virtual {}\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/transparent/TransparentUpgradeableProxy.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC1967/ERC1967Proxy.sol\";\n\n/**\n * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}\n * does not implement this interface directly, and some of its functions are implemented by an internal dispatch\n * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not\n * include them in the ABI so this interface must be used to interact with it.\n */\ninterface ITransparentUpgradeableProxy is IERC1967 {\n function admin() external view returns (address);\n\n function implementation() external view returns (address);\n\n function changeAdmin(address) external;\n\n function upgradeTo(address) external;\n\n function upgradeToAndCall(address, bytes memory) external payable;\n}\n\n/**\n * @dev This contract implements a proxy that is upgradeable by an admin.\n *\n * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n * clashing], which can potentially be used in an attack, this contract uses the\n * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n * things that go hand in hand:\n *\n * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n * that call matches one of the admin functions exposed by the proxy itself.\n * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the\n * implementation. If the admin tries to call a function on the implementation it will fail with an error that says\n * \"admin cannot fallback to proxy target\".\n *\n * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing\n * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due\n * to sudden errors when trying to call a function from the proxy implementation.\n *\n * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,\n * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\n *\n * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not\n * inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch\n * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to\n * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the\n * implementation.\n *\n * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler\n * will not check that there are no selector conflicts, due to the note above. A selector clash between any new function\n * and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could\n * render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised.\n */\ncontract TransparentUpgradeableProxy is ERC1967Proxy {\n /**\n * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and\n * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\n */\n constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {\n _changeAdmin(admin_);\n }\n\n /**\n * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.\n *\n * CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the\n * implementation provides a function with the same selector.\n */\n modifier ifAdmin() {\n if (msg.sender == _getAdmin()) {\n _;\n } else {\n _fallback();\n }\n }\n\n /**\n * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior\n */\n function _fallback() internal virtual override {\n if (msg.sender == _getAdmin()) {\n bytes memory ret;\n bytes4 selector = msg.sig;\n if (selector == ITransparentUpgradeableProxy.upgradeTo.selector) {\n ret = _dispatchUpgradeTo();\n } else if (selector == ITransparentUpgradeableProxy.upgradeToAndCall.selector) {\n ret = _dispatchUpgradeToAndCall();\n } else if (selector == ITransparentUpgradeableProxy.changeAdmin.selector) {\n ret = _dispatchChangeAdmin();\n } else if (selector == ITransparentUpgradeableProxy.admin.selector) {\n ret = _dispatchAdmin();\n } else if (selector == ITransparentUpgradeableProxy.implementation.selector) {\n ret = _dispatchImplementation();\n } else {\n revert(\"TransparentUpgradeableProxy: admin cannot fallback to proxy target\");\n }\n assembly {\n return(add(ret, 0x20), mload(ret))\n }\n } else {\n super._fallback();\n }\n }\n\n /**\n * @dev Returns the current admin.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n */\n function _dispatchAdmin() private returns (bytes memory) {\n _requireZeroValue();\n\n address admin = _getAdmin();\n return abi.encode(admin);\n }\n\n /**\n * @dev Returns the current implementation.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n */\n function _dispatchImplementation() private returns (bytes memory) {\n _requireZeroValue();\n\n address implementation = _implementation();\n return abi.encode(implementation);\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _dispatchChangeAdmin() private returns (bytes memory) {\n _requireZeroValue();\n\n address newAdmin = abi.decode(msg.data[4:], (address));\n _changeAdmin(newAdmin);\n\n return \"\";\n }\n\n /**\n * @dev Upgrade the implementation of the proxy.\n */\n function _dispatchUpgradeTo() private returns (bytes memory) {\n _requireZeroValue();\n\n address newImplementation = abi.decode(msg.data[4:], (address));\n _upgradeToAndCall(newImplementation, bytes(\"\"), false);\n\n return \"\";\n }\n\n /**\n * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified\n * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the\n * proxied contract.\n */\n function _dispatchUpgradeToAndCall() private returns (bytes memory) {\n (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes));\n _upgradeToAndCall(newImplementation, data, true);\n\n return \"\";\n }\n\n /**\n * @dev Returns the current admin.\n *\n * CAUTION: This function is deprecated. Use {ERC1967Upgrade-_getAdmin} instead.\n */\n function _admin() internal view virtual returns (address) {\n return _getAdmin();\n }\n\n /**\n * @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to\n * emulate some proxy functions being non-payable while still allowing value to pass through.\n */\n function _requireZeroValue() private {\n require(msg.value == 0);\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/Address.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n}\n" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c.output.json b/artifacts/build-info/solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c.output.json new file mode 100644 index 0000000..8cefda1 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-a2adafe51e708b314e64c2333f3c548df7aec09c","output":{"contracts":{"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol":{"IERC1967":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. _Available since v4.8.3._\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":\"IERC1967\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol":{"IERC1822Proxiable":{"abi":[{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"proxiableUUID()":"52d1902d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.\",\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":\"IERC1822Proxiable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol":{"ERC1967Proxy":{"abi":[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_54":{"entryPoint":null,"id":54,"parameterSlots":2,"returnSlots":0},"@_revert_1085":{"entryPoint":626,"id":1085,"parameterSlots":2,"returnSlots":0},"@_setImplementation_121":{"entryPoint":202,"id":121,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCall_166":{"entryPoint":52,"id":166,"parameterSlots":3,"returnSlots":0},"@_upgradeTo_136":{"entryPoint":95,"id":136,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_1002":{"entryPoint":381,"id":1002,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_973":{"entryPoint":158,"id":973,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_1118":{"entryPoint":null,"id":1118,"parameterSlots":1,"returnSlots":1},"@isContract_774":{"entryPoint":null,"id":774,"parameterSlots":1,"returnSlots":1},"@verifyCallResultFromTarget_1041":{"entryPoint":498,"id":1041,"parameterSlots":4,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":722,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":922,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":949,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":688,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":668,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:2931:9","statements":[{"nodeType":"YulBlock","src":"6:3:9","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:9","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:9","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:9","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:9"},"nodeType":"YulFunctionCall","src":"66:20:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:9"},"nodeType":"YulFunctionCall","src":"56:31:9"},"nodeType":"YulExpressionStatement","src":"56:31:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:9","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:9","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:9"},"nodeType":"YulFunctionCall","src":"96:15:9"},"nodeType":"YulExpressionStatement","src":"96:15:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:9","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:9"},"nodeType":"YulFunctionCall","src":"120:15:9"},"nodeType":"YulExpressionStatement","src":"120:15:9"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:9"},{"body":{"nodeType":"YulBlock","src":"212:184:9","statements":[{"nodeType":"YulVariableDeclaration","src":"222:10:9","value":{"kind":"number","nodeType":"YulLiteral","src":"231:1:9","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"226:1:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"291:63:9","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"316:3:9"},{"name":"i","nodeType":"YulIdentifier","src":"321:1:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"312:3:9"},"nodeType":"YulFunctionCall","src":"312:11:9"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"335:3:9"},{"name":"i","nodeType":"YulIdentifier","src":"340:1:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"331:3:9"},"nodeType":"YulFunctionCall","src":"331:11:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"325:5:9"},"nodeType":"YulFunctionCall","src":"325:18:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"305:6:9"},"nodeType":"YulFunctionCall","src":"305:39:9"},"nodeType":"YulExpressionStatement","src":"305:39:9"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"252:1:9"},{"name":"length","nodeType":"YulIdentifier","src":"255:6:9"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"249:2:9"},"nodeType":"YulFunctionCall","src":"249:13:9"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"263:19:9","statements":[{"nodeType":"YulAssignment","src":"265:15:9","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"274:1:9"},{"kind":"number","nodeType":"YulLiteral","src":"277:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"270:3:9"},"nodeType":"YulFunctionCall","src":"270:10:9"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"265:1:9"}]}]},"pre":{"nodeType":"YulBlock","src":"245:3:9","statements":[]},"src":"241:113:9"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"374:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"379:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"370:3:9"},"nodeType":"YulFunctionCall","src":"370:16:9"},{"kind":"number","nodeType":"YulLiteral","src":"388:1:9","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"363:6:9"},"nodeType":"YulFunctionCall","src":"363:27:9"},"nodeType":"YulExpressionStatement","src":"363:27:9"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"190:3:9","type":""},{"name":"dst","nodeType":"YulTypedName","src":"195:3:9","type":""},{"name":"length","nodeType":"YulTypedName","src":"200:6:9","type":""}],"src":"146:250:9"},{"body":{"nodeType":"YulBlock","src":"508:956:9","statements":[{"body":{"nodeType":"YulBlock","src":"554:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"563:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"566:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"556:6:9"},"nodeType":"YulFunctionCall","src":"556:12:9"},"nodeType":"YulExpressionStatement","src":"556:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"529:7:9"},{"name":"headStart","nodeType":"YulIdentifier","src":"538:9:9"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"525:3:9"},"nodeType":"YulFunctionCall","src":"525:23:9"},{"kind":"number","nodeType":"YulLiteral","src":"550:2:9","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"521:3:9"},"nodeType":"YulFunctionCall","src":"521:32:9"},"nodeType":"YulIf","src":"518:52:9"},{"nodeType":"YulVariableDeclaration","src":"579:29:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"598:9:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"592:5:9"},"nodeType":"YulFunctionCall","src":"592:16:9"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"583:5:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"671:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"680:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"683:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"673:6:9"},"nodeType":"YulFunctionCall","src":"673:12:9"},"nodeType":"YulExpressionStatement","src":"673:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"630:5:9"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"641:5:9"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"656:3:9","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"661:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"652:3:9"},"nodeType":"YulFunctionCall","src":"652:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"665:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"648:3:9"},"nodeType":"YulFunctionCall","src":"648:19:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"637:3:9"},"nodeType":"YulFunctionCall","src":"637:31:9"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"627:2:9"},"nodeType":"YulFunctionCall","src":"627:42:9"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"620:6:9"},"nodeType":"YulFunctionCall","src":"620:50:9"},"nodeType":"YulIf","src":"617:70:9"},{"nodeType":"YulAssignment","src":"696:15:9","value":{"name":"value","nodeType":"YulIdentifier","src":"706:5:9"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"696:6:9"}]},{"nodeType":"YulVariableDeclaration","src":"720:39:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"744:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"755:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"740:3:9"},"nodeType":"YulFunctionCall","src":"740:18:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"734:5:9"},"nodeType":"YulFunctionCall","src":"734:25:9"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"724:6:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"768:28:9","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"786:2:9","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"790:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"782:3:9"},"nodeType":"YulFunctionCall","src":"782:10:9"},{"kind":"number","nodeType":"YulLiteral","src":"794:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"778:3:9"},"nodeType":"YulFunctionCall","src":"778:18:9"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"772:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"823:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"832:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"835:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"825:6:9"},"nodeType":"YulFunctionCall","src":"825:12:9"},"nodeType":"YulExpressionStatement","src":"825:12:9"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"811:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"819:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"808:2:9"},"nodeType":"YulFunctionCall","src":"808:14:9"},"nodeType":"YulIf","src":"805:34:9"},{"nodeType":"YulVariableDeclaration","src":"848:32:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"862:9:9"},{"name":"offset","nodeType":"YulIdentifier","src":"873:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"858:3:9"},"nodeType":"YulFunctionCall","src":"858:22:9"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"852:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"928:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"937:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"940:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"930:6:9"},"nodeType":"YulFunctionCall","src":"930:12:9"},"nodeType":"YulExpressionStatement","src":"930:12:9"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"907:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"911:4:9","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"903:3:9"},"nodeType":"YulFunctionCall","src":"903:13:9"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"918:7:9"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"899:3:9"},"nodeType":"YulFunctionCall","src":"899:27:9"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"892:6:9"},"nodeType":"YulFunctionCall","src":"892:35:9"},"nodeType":"YulIf","src":"889:55:9"},{"nodeType":"YulVariableDeclaration","src":"953:19:9","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"969:2:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"963:5:9"},"nodeType":"YulFunctionCall","src":"963:9:9"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"957:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"995:22:9","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"997:16:9"},"nodeType":"YulFunctionCall","src":"997:18:9"},"nodeType":"YulExpressionStatement","src":"997:18:9"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"987:2:9"},{"name":"_1","nodeType":"YulIdentifier","src":"991:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"984:2:9"},"nodeType":"YulFunctionCall","src":"984:10:9"},"nodeType":"YulIf","src":"981:36:9"},{"nodeType":"YulVariableDeclaration","src":"1026:17:9","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1040:2:9","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1036:3:9"},"nodeType":"YulFunctionCall","src":"1036:7:9"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"1030:2:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1052:23:9","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1072:2:9","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1066:5:9"},"nodeType":"YulFunctionCall","src":"1066:9:9"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1056:6:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1084:71:9","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1106:6:9"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1130:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"1134:4:9","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1126:3:9"},"nodeType":"YulFunctionCall","src":"1126:13:9"},{"name":"_4","nodeType":"YulIdentifier","src":"1141:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1122:3:9"},"nodeType":"YulFunctionCall","src":"1122:22:9"},{"kind":"number","nodeType":"YulLiteral","src":"1146:2:9","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1118:3:9"},"nodeType":"YulFunctionCall","src":"1118:31:9"},{"name":"_4","nodeType":"YulIdentifier","src":"1151:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1114:3:9"},"nodeType":"YulFunctionCall","src":"1114:40:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1102:3:9"},"nodeType":"YulFunctionCall","src":"1102:53:9"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1088:10:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1214:22:9","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1216:16:9"},"nodeType":"YulFunctionCall","src":"1216:18:9"},"nodeType":"YulExpressionStatement","src":"1216:18:9"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1173:10:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1185:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1170:2:9"},"nodeType":"YulFunctionCall","src":"1170:18:9"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1193:10:9"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1205:6:9"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1190:2:9"},"nodeType":"YulFunctionCall","src":"1190:22:9"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1167:2:9"},"nodeType":"YulFunctionCall","src":"1167:46:9"},"nodeType":"YulIf","src":"1164:72:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1252:2:9","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1256:10:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1245:6:9"},"nodeType":"YulFunctionCall","src":"1245:22:9"},"nodeType":"YulExpressionStatement","src":"1245:22:9"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1283:6:9"},{"name":"_3","nodeType":"YulIdentifier","src":"1291:2:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1276:6:9"},"nodeType":"YulFunctionCall","src":"1276:18:9"},"nodeType":"YulExpressionStatement","src":"1276:18:9"},{"body":{"nodeType":"YulBlock","src":"1340:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1349:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1352:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1342:6:9"},"nodeType":"YulFunctionCall","src":"1342:12:9"},"nodeType":"YulExpressionStatement","src":"1342:12:9"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1317:2:9"},{"name":"_3","nodeType":"YulIdentifier","src":"1321:2:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1313:3:9"},"nodeType":"YulFunctionCall","src":"1313:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"1326:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1309:3:9"},"nodeType":"YulFunctionCall","src":"1309:20:9"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1331:7:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1306:2:9"},"nodeType":"YulFunctionCall","src":"1306:33:9"},"nodeType":"YulIf","src":"1303:53:9"},{"expression":{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1404:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"1408:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1400:3:9"},"nodeType":"YulFunctionCall","src":"1400:11:9"},{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1417:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"1425:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1413:3:9"},"nodeType":"YulFunctionCall","src":"1413:15:9"},{"name":"_3","nodeType":"YulIdentifier","src":"1430:2:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"1365:34:9"},"nodeType":"YulFunctionCall","src":"1365:68:9"},"nodeType":"YulExpressionStatement","src":"1365:68:9"},{"nodeType":"YulAssignment","src":"1442:16:9","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"1452:6:9"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1442:6:9"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"466:9:9","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"477:7:9","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"489:6:9","type":""},{"name":"value1","nodeType":"YulTypedName","src":"497:6:9","type":""}],"src":"401:1063:9"},{"body":{"nodeType":"YulBlock","src":"1643:235:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1660:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1671:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1653:6:9"},"nodeType":"YulFunctionCall","src":"1653:21:9"},"nodeType":"YulExpressionStatement","src":"1653:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1694:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1705:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1690:3:9"},"nodeType":"YulFunctionCall","src":"1690:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"1710:2:9","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1683:6:9"},"nodeType":"YulFunctionCall","src":"1683:30:9"},"nodeType":"YulExpressionStatement","src":"1683:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1733:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1744:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1729:3:9"},"nodeType":"YulFunctionCall","src":"1729:18:9"},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e","kind":"string","nodeType":"YulLiteral","src":"1749:34:9","type":"","value":"ERC1967: new implementation is n"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1722:6:9"},"nodeType":"YulFunctionCall","src":"1722:62:9"},"nodeType":"YulExpressionStatement","src":"1722:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1804:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1815:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1800:3:9"},"nodeType":"YulFunctionCall","src":"1800:18:9"},{"hexValue":"6f74206120636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"1820:15:9","type":"","value":"ot a contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1793:6:9"},"nodeType":"YulFunctionCall","src":"1793:43:9"},"nodeType":"YulExpressionStatement","src":"1793:43:9"},{"nodeType":"YulAssignment","src":"1845:27:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1857:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1868:3:9","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1853:3:9"},"nodeType":"YulFunctionCall","src":"1853:19:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1845:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1620:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1634:4:9","type":""}],"src":"1469:409:9"},{"body":{"nodeType":"YulBlock","src":"2020:150:9","statements":[{"nodeType":"YulVariableDeclaration","src":"2030:27:9","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2050:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2044:5:9"},"nodeType":"YulFunctionCall","src":"2044:13:9"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2034:6:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2105:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"2113:4:9","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2101:3:9"},"nodeType":"YulFunctionCall","src":"2101:17:9"},{"name":"pos","nodeType":"YulIdentifier","src":"2120:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"2125:6:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2066:34:9"},"nodeType":"YulFunctionCall","src":"2066:66:9"},"nodeType":"YulExpressionStatement","src":"2066:66:9"},{"nodeType":"YulAssignment","src":"2141:23:9","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2152:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"2157:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2148:3:9"},"nodeType":"YulFunctionCall","src":"2148:16:9"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"2141:3:9"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"1996:3:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2001:6:9","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2012:3:9","type":""}],"src":"1883:287:9"},{"body":{"nodeType":"YulBlock","src":"2349:179:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2366:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2377:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2359:6:9"},"nodeType":"YulFunctionCall","src":"2359:21:9"},"nodeType":"YulExpressionStatement","src":"2359:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2400:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2411:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2396:3:9"},"nodeType":"YulFunctionCall","src":"2396:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"2416:2:9","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2389:6:9"},"nodeType":"YulFunctionCall","src":"2389:30:9"},"nodeType":"YulExpressionStatement","src":"2389:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2439:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2450:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2435:3:9"},"nodeType":"YulFunctionCall","src":"2435:18:9"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"2455:31:9","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2428:6:9"},"nodeType":"YulFunctionCall","src":"2428:59:9"},"nodeType":"YulExpressionStatement","src":"2428:59:9"},{"nodeType":"YulAssignment","src":"2496:26:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2508:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2519:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2504:3:9"},"nodeType":"YulFunctionCall","src":"2504:18:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2496:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2326:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2340:4:9","type":""}],"src":"2175:353:9"},{"body":{"nodeType":"YulBlock","src":"2654:275:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2671:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2682:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2664:6:9"},"nodeType":"YulFunctionCall","src":"2664:21:9"},"nodeType":"YulExpressionStatement","src":"2664:21:9"},{"nodeType":"YulVariableDeclaration","src":"2694:27:9","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2714:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2708:5:9"},"nodeType":"YulFunctionCall","src":"2708:13:9"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2698:6:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2741:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2752:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2737:3:9"},"nodeType":"YulFunctionCall","src":"2737:18:9"},{"name":"length","nodeType":"YulIdentifier","src":"2757:6:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2730:6:9"},"nodeType":"YulFunctionCall","src":"2730:34:9"},"nodeType":"YulExpressionStatement","src":"2730:34:9"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2812:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"2820:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2808:3:9"},"nodeType":"YulFunctionCall","src":"2808:15:9"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2829:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2840:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2825:3:9"},"nodeType":"YulFunctionCall","src":"2825:18:9"},{"name":"length","nodeType":"YulIdentifier","src":"2845:6:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2773:34:9"},"nodeType":"YulFunctionCall","src":"2773:79:9"},"nodeType":"YulExpressionStatement","src":"2773:79:9"},{"nodeType":"YulAssignment","src":"2861:62:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2877:9:9"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2896:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"2904:2:9","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2892:3:9"},"nodeType":"YulFunctionCall","src":"2892:15:9"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2913:2:9","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2909:3:9"},"nodeType":"YulFunctionCall","src":"2909:7:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2888:3:9"},"nodeType":"YulFunctionCall","src":"2888:29:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2873:3:9"},"nodeType":"YulFunctionCall","src":"2873:45:9"},{"kind":"number","nodeType":"YulLiteral","src":"2920:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2869:3:9"},"nodeType":"YulFunctionCall","src":"2869:54:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2861:4:9"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2623:9:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2634:6:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2645:4:9","type":""}],"src":"2533:396:9"}]},"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 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_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let value := mload(headStart)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n value0 := value\n let offset := mload(add(headStart, 32))\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := mload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n copy_memory_to_memory_with_cleanup(add(_2, 32), add(memPtr, 32), _3)\n value1 := memPtr\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: call to non-contract\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory_with_cleanup(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}","id":9,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040526040516104c43803806104c4833981016040819052610022916102d2565b61002d82825f610034565b50506103e7565b61003d8361005f565b5f825111806100495750805b1561005a57610058838361009e565b505b505050565b610068816100ca565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606100c3838360405180606001604052806027815260200161049d6027913961017d565b9392505050565b6001600160a01b0381163b61013c5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80856001600160a01b031685604051610199919061039a565b5f60405180830381855af49150503d805f81146101d1576040519150601f19603f3d011682016040523d82523d5f602084013e6101d6565b606091505b5090925090506101e8868383876101f2565b9695505050505050565b606083156102605782515f03610259576001600160a01b0385163b6102595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610133565b508161026a565b61026a8383610272565b949350505050565b8151156102825781518083602001fd5b8060405162461bcd60e51b815260040161013391906103b5565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156102ca5781810151838201526020016102b2565b50505f910152565b5f80604083850312156102e3575f80fd5b82516001600160a01b03811681146102f9575f80fd5b60208401519092506001600160401b0380821115610315575f80fd5b818501915085601f830112610328575f80fd5b81518181111561033a5761033a61029c565b604051601f8201601f19908116603f011681019083821181831017156103625761036261029c565b8160405282815288602084870101111561037a575f80fd5b61038b8360208301602088016102b0565b80955050505050509250929050565b5f82516103ab8184602087016102b0565b9190910192915050565b602081525f82518060208401526103d38160408501602087016102b0565b601f01601f19169190910160400192915050565b60aa806103f35f395ff3fe608060405236601057600e6013565b005b600e5b601f601b6021565b6057565b565b5f60527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f80375f80365f845af43d5f803e8080156070573d5ff35b3d5ffdfea26469706673582212200f656825a696a173689ce29ed8758f7e01e5a49baca5aeea7f01dba2331dcbf164736f6c63430008140033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x4C4 CODESIZE SUB DUP1 PUSH2 0x4C4 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x2D2 JUMP JUMPDEST PUSH2 0x2D DUP3 DUP3 PUSH0 PUSH2 0x34 JUMP JUMPDEST POP POP PUSH2 0x3E7 JUMP JUMPDEST PUSH2 0x3D DUP4 PUSH2 0x5F JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH2 0x49 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x5A JUMPI PUSH2 0x58 DUP4 DUP4 PUSH2 0x9E JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x68 DUP2 PUSH2 0xCA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xC3 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x49D PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x17D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH2 0x13C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x199 SWAP2 SWAP1 PUSH2 0x39A JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1D1 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 0x1D6 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x1E8 DUP7 DUP4 DUP4 DUP8 PUSH2 0x1F2 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x260 JUMPI DUP3 MLOAD PUSH0 SUB PUSH2 0x259 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x259 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x133 JUMP JUMPDEST POP DUP2 PUSH2 0x26A JUMP JUMPDEST PUSH2 0x26A DUP4 DUP4 PUSH2 0x272 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x282 JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x133 SWAP2 SWAP1 PUSH2 0x3B5 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 0x2CA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2B2 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2E3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2F9 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x315 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x328 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x33A JUMPI PUSH2 0x33A PUSH2 0x29C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x362 JUMPI PUSH2 0x362 PUSH2 0x29C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x37A JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x38B DUP4 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x2B0 JUMP JUMPDEST DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x3AB DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2B0 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x3D3 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x2B0 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xAA DUP1 PUSH2 0x3F3 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH1 0x10 JUMPI PUSH1 0xE PUSH1 0x13 JUMP JUMPDEST STOP JUMPDEST PUSH1 0xE JUMPDEST PUSH1 0x1F PUSH1 0x1B PUSH1 0x21 JUMP JUMPDEST PUSH1 0x57 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x52 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x70 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF PUSH6 0x6825A696A173 PUSH9 0x9CE29ED8758F7E01E5 LOG4 SWAP12 0xAC 0xA5 0xAE 0xEA PUSH32 0x1DBA2331DCBF164736F6C63430008140033416464726573733A206C6F772D6C PUSH6 0x76656C206465 PUSH13 0x65676174652063616C6C206661 PUSH10 0x6C656400000000000000 ","sourceMap":"567:723:2:-:0;;;958:112;;;;;;;;;;;;;;;;;;:::i;:::-;1024:39;1042:6;1050:5;1057;1024:17;:39::i;:::-;958:112;;567:723;;2057:265:3;2165:29;2176:17;2165:10;:29::i;:::-;2222:1;2208:4;:11;:15;:28;;;;2227:9;2208:28;2204:112;;;2252:53;2281:17;2300:4;2252:28;:53::i;:::-;;2204:112;2057:265;;;:::o;1771:152::-;1837:37;1856:17;1837:18;:37::i;:::-;1889:27;;-1:-1:-1;;;;;1889:27:3;;;;;;;;1771:152;:::o;6674:198:7:-;6757:12;6788:77;6809:6;6817:4;6788:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6781:84;6674:198;-1:-1:-1;;;6674:198:7:o;1406:259:3:-;-1:-1:-1;;;;;1702:19:7;;;1479:95:3;;;;-1:-1:-1;;;1479:95:3;;1671:2:9;1479:95:3;;;1653:21:9;1710:2;1690:18;;;1683:30;1749:34;1729:18;;;1722:62;-1:-1:-1;;;1800:18:9;;;1793:43;1853:19;;1479:95:3;;;;;;;;;1030:66;1584:74;;-1:-1:-1;;;;;;1584:74:3;-1:-1:-1;;;;;1584:74:3;;;;;;;;;;1406:259::o;7058:325:7:-;7199:12;7224;7238:23;7265:6;-1:-1:-1;;;;;7265:19:7;7285:4;7265:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7223:67:7;;-1:-1:-1;7223:67:7;-1:-1:-1;7307:69:7;7334:6;7223:67;;7363:12;7307:26;:69::i;:::-;7300:76;7058:325;-1:-1:-1;;;;;;7058:325:7:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;-1:-1:-1;;;;;1702:19:7;;;8113:60;;;;-1:-1:-1;;;8113:60:7;;2377:2:9;8113:60:7;;;2359:21:9;2416:2;2396:18;;;2389:30;2455:31;2435:18;;;2428:59;2504:18;;8113:60:7;2175:353:9;8113:60:7;-1:-1:-1;8208:10:7;8201:17;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;:::o;8821:540::-;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;-1:-1:-1;;;9324:20:7;;;;;;;;:::i;14:127:9:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:250;231:1;241:113;255:6;252:1;249:13;241:113;;;331:11;;;325:18;312:11;;;305:39;277:2;270:10;241:113;;;-1:-1:-1;;388:1:9;370:16;;363:27;146:250::o;401:1063::-;489:6;497;550:2;538:9;529:7;525:23;521:32;518:52;;;566:1;563;556:12;518:52;592:16;;-1:-1:-1;;;;;637:31:9;;627:42;;617:70;;683:1;680;673:12;617:70;755:2;740:18;;734:25;706:5;;-1:-1:-1;;;;;;808:14:9;;;805:34;;;835:1;832;825:12;805:34;873:6;862:9;858:22;848:32;;918:7;911:4;907:2;903:13;899:27;889:55;;940:1;937;930:12;889:55;969:2;963:9;991:2;987;984:10;981:36;;;997:18;;:::i;:::-;1072:2;1066:9;1040:2;1126:13;;-1:-1:-1;;1122:22:9;;;1146:2;1118:31;1114:40;1102:53;;;1170:18;;;1190:22;;;1167:46;1164:72;;;1216:18;;:::i;:::-;1256:10;1252:2;1245:22;1291:2;1283:6;1276:18;1331:7;1326:2;1321;1317;1313:11;1309:20;1306:33;1303:53;;;1352:1;1349;1342:12;1303:53;1365:68;1430:2;1425;1417:6;1413:15;1408:2;1404;1400:11;1365:68;:::i;:::-;1452:6;1442:16;;;;;;;401:1063;;;;;:::o;1883:287::-;2012:3;2050:6;2044:13;2066:66;2125:6;2120:3;2113:4;2105:6;2101:17;2066:66;:::i;:::-;2148:16;;;;;1883:287;-1:-1:-1;;1883:287:9:o;2533:396::-;2682:2;2671:9;2664:21;2645:4;2714:6;2708:13;2757:6;2752:2;2741:9;2737:18;2730:34;2773:79;2845:6;2840:2;2829:9;2825:18;2820:2;2812:6;2808:15;2773:79;:::i;:::-;2913:2;2892:15;-1:-1:-1;;2888:29:9;2873:45;;;;2920:2;2869:54;;2533:396;-1:-1:-1;;2533:396:9:o;:::-;567:723:2;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_409":{"entryPoint":null,"id":409,"parameterSlots":0,"returnSlots":0},"@_417":{"entryPoint":null,"id":417,"parameterSlots":0,"returnSlots":0},"@_beforeFallback_422":{"entryPoint":null,"id":422,"parameterSlots":0,"returnSlots":0},"@_delegate_382":{"entryPoint":87,"id":382,"parameterSlots":1,"returnSlots":0},"@_fallback_401":{"entryPoint":19,"id":401,"parameterSlots":0,"returnSlots":0},"@_getImplementation_97":{"entryPoint":null,"id":97,"parameterSlots":0,"returnSlots":1},"@_implementation_66":{"entryPoint":33,"id":66,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_1118":{"entryPoint":null,"id":1118,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"608060405236601057600e6013565b005b600e5b601f601b6021565b6057565b565b5f60527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f80375f80365f845af43d5f803e8080156070573d5ff35b3d5ffdfea26469706673582212200f656825a696a173689ce29ed8758f7e01e5a49baca5aeea7f01dba2331dcbf164736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH1 0x10 JUMPI PUSH1 0xE PUSH1 0x13 JUMP JUMPDEST STOP JUMPDEST PUSH1 0xE JUMPDEST PUSH1 0x1F PUSH1 0x1B PUSH1 0x21 JUMP JUMPDEST PUSH1 0x57 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x52 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x70 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF PUSH6 0x6825A696A173 PUSH9 0x9CE29ED8758F7E01E5 LOG4 SWAP12 0xAC 0xA5 0xAE 0xEA PUSH32 0x1DBA2331DCBF164736F6C634300081400330000000000000000000000000000 ","sourceMap":"567:723:2:-:0;;;;;;2898:11:4;:9;:11::i;:::-;567:723:2;;2675:11:4;2322:110;2397:28;2407:17;:15;:17::i;:::-;2397:9;:28::i;:::-;2322:110::o;1148:140:2:-;1215:12;1246:35;1030:66:3;1254:54;-1:-1:-1;;;;;1254:54:3;;1175:140;1246:35:2;1239:42;;1148:140;:::o;948:895:4:-;1286:14;1283:1;1280;1267:34;1500:1;1497;1481:14;1478:1;1462:14;1455:5;1442:60;1576:16;1573:1;1570;1555:38;1614:6;1681:66;;;;1796:16;1793:1;1786:27;1681:66;1716:16;1713:1;1706:27"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `_logic`. If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":\"ERC1967Proxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol":{"ERC1967Upgrade":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"This abstract contract provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. _Available since v4.1._\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_ADMIN_SLOT\":{\"details\":\"Storage slot with the admin of the contract. This is the keccak-256 hash of \\\"eip1967.proxy.admin\\\" subtracted by 1, and is validated in the constructor.\"},\"_BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\"},\"_IMPLEMENTATION_SLOT\":{\"details\":\"Storage slot with the address of the current implementation. This is the keccak-256 hash of \\\"eip1967.proxy.implementation\\\" subtracted by 1, and is validated in the constructor.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":\"ERC1967Upgrade\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol":{"Proxy":{"abi":[{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":\"Proxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol":{"IBeacon":{"abi":[{"inputs":[],"name":"implementation","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":{"implementation()":"5c60da1b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is the interface that {BeaconProxy} expects of its beacon.\",\"kind\":\"dev\",\"methods\":{\"implementation()\":{\"details\":\"Must return an address that can be used as a delegate call target. {BeaconProxy} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":\"IBeacon\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol":{"ITransparentUpgradeableProxy":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"admin()":"f851a440","changeAdmin(address)":"8f283970","implementation()":"5c60da1b","upgradeTo(address)":"3659cfe6","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"admin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"changeAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"upgradeTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy} does not implement this interface directly, and some of its functions are implemented by an internal dispatch mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not include them in the ABI so this interface must be used to interact with it.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":\"ITransparentUpgradeableProxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":{\"keccak256\":\"0x168e36d7e616bd41f6abab4a83009da64513ae9e638aa6d5980066e2a92db689\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a45c64b97311fabbcbe8dad7e94fa89e06a7f96060d5565326ef706f5f239017\",\"dweb:/ipfs/QmeU2jiBGbHhz9DqRotjbpAx5s2xExDSRQtSD5ENjuHzDq\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"},"TransparentUpgradeableProxy":{"abi":[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_489":{"entryPoint":null,"id":489,"parameterSlots":3,"returnSlots":0},"@_54":{"entryPoint":null,"id":54,"parameterSlots":2,"returnSlots":0},"@_changeAdmin_279":{"entryPoint":125,"id":279,"parameterSlots":1,"returnSlots":0},"@_getAdmin_236":{"entryPoint":null,"id":236,"parameterSlots":0,"returnSlots":1},"@_revert_1085":{"entryPoint":916,"id":1085,"parameterSlots":2,"returnSlots":0},"@_setAdmin_262":{"entryPoint":350,"id":262,"parameterSlots":1,"returnSlots":0},"@_setImplementation_121":{"entryPoint":507,"id":121,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCall_166":{"entryPoint":76,"id":166,"parameterSlots":3,"returnSlots":0},"@_upgradeTo_136":{"entryPoint":238,"id":136,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_1002":{"entryPoint":658,"id":1002,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_973":{"entryPoint":303,"id":973,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_1118":{"entryPoint":null,"id":1118,"parameterSlots":1,"returnSlots":1},"@isContract_774":{"entryPoint":null,"id":774,"parameterSlots":1,"returnSlots":1},"@verifyCallResultFromTarget_1041":{"entryPoint":781,"id":1041,"parameterSlots":4,"returnSlots":1},"abi_decode_address_fromMemory":{"entryPoint":961,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":1045,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":1263,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1292,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":1009,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":989,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:3832:9","statements":[{"nodeType":"YulBlock","src":"6:3:9","statements":[]},{"body":{"nodeType":"YulBlock","src":"74:117:9","statements":[{"nodeType":"YulAssignment","src":"84:22:9","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"99:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"93:5:9"},"nodeType":"YulFunctionCall","src":"93:13:9"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"84:5:9"}]},{"body":{"nodeType":"YulBlock","src":"169:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"178:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"181:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"171:6:9"},"nodeType":"YulFunctionCall","src":"171:12:9"},"nodeType":"YulExpressionStatement","src":"171:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"128:5:9"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"139:5:9"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"154:3:9","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"150:3:9"},"nodeType":"YulFunctionCall","src":"150:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"163:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"146:3:9"},"nodeType":"YulFunctionCall","src":"146:19:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"135:3:9"},"nodeType":"YulFunctionCall","src":"135:31:9"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"125:2:9"},"nodeType":"YulFunctionCall","src":"125:42:9"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"118:6:9"},"nodeType":"YulFunctionCall","src":"118:50:9"},"nodeType":"YulIf","src":"115:70:9"}]},"name":"abi_decode_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"53:6:9","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"64:5:9","type":""}],"src":"14:177:9"},{"body":{"nodeType":"YulBlock","src":"228:95:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"245:1:9","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"252:3:9","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"257:10:9","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"248:3:9"},"nodeType":"YulFunctionCall","src":"248:20:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"238:6:9"},"nodeType":"YulFunctionCall","src":"238:31:9"},"nodeType":"YulExpressionStatement","src":"238:31:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"285:1:9","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"288:4:9","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"278:6:9"},"nodeType":"YulFunctionCall","src":"278:15:9"},"nodeType":"YulExpressionStatement","src":"278:15:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"309:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"312:4:9","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"302:6:9"},"nodeType":"YulFunctionCall","src":"302:15:9"},"nodeType":"YulExpressionStatement","src":"302:15:9"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"196:127:9"},{"body":{"nodeType":"YulBlock","src":"394:184:9","statements":[{"nodeType":"YulVariableDeclaration","src":"404:10:9","value":{"kind":"number","nodeType":"YulLiteral","src":"413:1:9","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"408:1:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"473:63:9","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"498:3:9"},{"name":"i","nodeType":"YulIdentifier","src":"503:1:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"494:3:9"},"nodeType":"YulFunctionCall","src":"494:11:9"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"517:3:9"},{"name":"i","nodeType":"YulIdentifier","src":"522:1:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"513:3:9"},"nodeType":"YulFunctionCall","src":"513:11:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"507:5:9"},"nodeType":"YulFunctionCall","src":"507:18:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"487:6:9"},"nodeType":"YulFunctionCall","src":"487:39:9"},"nodeType":"YulExpressionStatement","src":"487:39:9"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"434:1:9"},{"name":"length","nodeType":"YulIdentifier","src":"437:6:9"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"431:2:9"},"nodeType":"YulFunctionCall","src":"431:13:9"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"445:19:9","statements":[{"nodeType":"YulAssignment","src":"447:15:9","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"456:1:9"},{"kind":"number","nodeType":"YulLiteral","src":"459:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"452:3:9"},"nodeType":"YulFunctionCall","src":"452:10:9"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"447:1:9"}]}]},"pre":{"nodeType":"YulBlock","src":"427:3:9","statements":[]},"src":"423:113:9"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"556:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"561:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"552:3:9"},"nodeType":"YulFunctionCall","src":"552:16:9"},{"kind":"number","nodeType":"YulLiteral","src":"570:1:9","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"545:6:9"},"nodeType":"YulFunctionCall","src":"545:27:9"},"nodeType":"YulExpressionStatement","src":"545:27:9"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"372:3:9","type":""},{"name":"dst","nodeType":"YulTypedName","src":"377:3:9","type":""},{"name":"length","nodeType":"YulTypedName","src":"382:6:9","type":""}],"src":"328:250:9"},{"body":{"nodeType":"YulBlock","src":"707:942:9","statements":[{"body":{"nodeType":"YulBlock","src":"753:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"762:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"765:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"755:6:9"},"nodeType":"YulFunctionCall","src":"755:12:9"},"nodeType":"YulExpressionStatement","src":"755:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"728:7:9"},{"name":"headStart","nodeType":"YulIdentifier","src":"737:9:9"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"724:3:9"},"nodeType":"YulFunctionCall","src":"724:23:9"},{"kind":"number","nodeType":"YulLiteral","src":"749:2:9","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"720:3:9"},"nodeType":"YulFunctionCall","src":"720:32:9"},"nodeType":"YulIf","src":"717:52:9"},{"nodeType":"YulAssignment","src":"778:50:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"818:9:9"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"788:29:9"},"nodeType":"YulFunctionCall","src":"788:40:9"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"778:6:9"}]},{"nodeType":"YulAssignment","src":"837:59:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"881:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"892:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:9"},"nodeType":"YulFunctionCall","src":"877:18:9"}],"functionName":{"name":"abi_decode_address_fromMemory","nodeType":"YulIdentifier","src":"847:29:9"},"nodeType":"YulFunctionCall","src":"847:49:9"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"837:6:9"}]},{"nodeType":"YulVariableDeclaration","src":"905:39:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"929:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"940:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"925:3:9"},"nodeType":"YulFunctionCall","src":"925:18:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"919:5:9"},"nodeType":"YulFunctionCall","src":"919:25:9"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"909:6:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"953:28:9","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"971:2:9","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"975:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"967:3:9"},"nodeType":"YulFunctionCall","src":"967:10:9"},{"kind":"number","nodeType":"YulLiteral","src":"979:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"963:3:9"},"nodeType":"YulFunctionCall","src":"963:18:9"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"957:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1008:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1017:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1020:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1010:6:9"},"nodeType":"YulFunctionCall","src":"1010:12:9"},"nodeType":"YulExpressionStatement","src":"1010:12:9"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"996:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1004:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"993:2:9"},"nodeType":"YulFunctionCall","src":"993:14:9"},"nodeType":"YulIf","src":"990:34:9"},{"nodeType":"YulVariableDeclaration","src":"1033:32:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1047:9:9"},{"name":"offset","nodeType":"YulIdentifier","src":"1058:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1043:3:9"},"nodeType":"YulFunctionCall","src":"1043:22:9"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1037:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1113:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1122:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1125:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1115:6:9"},"nodeType":"YulFunctionCall","src":"1115:12:9"},"nodeType":"YulExpressionStatement","src":"1115:12:9"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1092:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"1096:4:9","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1088:3:9"},"nodeType":"YulFunctionCall","src":"1088:13:9"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1103:7:9"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1084:3:9"},"nodeType":"YulFunctionCall","src":"1084:27:9"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1077:6:9"},"nodeType":"YulFunctionCall","src":"1077:35:9"},"nodeType":"YulIf","src":"1074:55:9"},{"nodeType":"YulVariableDeclaration","src":"1138:19:9","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1154:2:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1148:5:9"},"nodeType":"YulFunctionCall","src":"1148:9:9"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"1142:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1180:22:9","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1182:16:9"},"nodeType":"YulFunctionCall","src":"1182:18:9"},"nodeType":"YulExpressionStatement","src":"1182:18:9"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1172:2:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1176:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1169:2:9"},"nodeType":"YulFunctionCall","src":"1169:10:9"},"nodeType":"YulIf","src":"1166:36:9"},{"nodeType":"YulVariableDeclaration","src":"1211:17:9","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1225:2:9","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1221:3:9"},"nodeType":"YulFunctionCall","src":"1221:7:9"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"1215:2:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1237:23:9","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1257:2:9","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1251:5:9"},"nodeType":"YulFunctionCall","src":"1251:9:9"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1241:6:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1269:71:9","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1291:6:9"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1315:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"1319:4:9","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1311:3:9"},"nodeType":"YulFunctionCall","src":"1311:13:9"},{"name":"_4","nodeType":"YulIdentifier","src":"1326:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1307:3:9"},"nodeType":"YulFunctionCall","src":"1307:22:9"},{"kind":"number","nodeType":"YulLiteral","src":"1331:2:9","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1303:3:9"},"nodeType":"YulFunctionCall","src":"1303:31:9"},{"name":"_4","nodeType":"YulIdentifier","src":"1336:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1299:3:9"},"nodeType":"YulFunctionCall","src":"1299:40:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1287:3:9"},"nodeType":"YulFunctionCall","src":"1287:53:9"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1273:10:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1399:22:9","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1401:16:9"},"nodeType":"YulFunctionCall","src":"1401:18:9"},"nodeType":"YulExpressionStatement","src":"1401:18:9"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1358:10:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1370:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1355:2:9"},"nodeType":"YulFunctionCall","src":"1355:18:9"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1378:10:9"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1390:6:9"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1375:2:9"},"nodeType":"YulFunctionCall","src":"1375:22:9"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1352:2:9"},"nodeType":"YulFunctionCall","src":"1352:46:9"},"nodeType":"YulIf","src":"1349:72:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1437:2:9","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1441:10:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1430:6:9"},"nodeType":"YulFunctionCall","src":"1430:22:9"},"nodeType":"YulExpressionStatement","src":"1430:22:9"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1468:6:9"},{"name":"_3","nodeType":"YulIdentifier","src":"1476:2:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1461:6:9"},"nodeType":"YulFunctionCall","src":"1461:18:9"},"nodeType":"YulExpressionStatement","src":"1461:18:9"},{"body":{"nodeType":"YulBlock","src":"1525:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1534:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1537:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1527:6:9"},"nodeType":"YulFunctionCall","src":"1527:12:9"},"nodeType":"YulExpressionStatement","src":"1527:12:9"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1502:2:9"},{"name":"_3","nodeType":"YulIdentifier","src":"1506:2:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1498:3:9"},"nodeType":"YulFunctionCall","src":"1498:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"1511:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1494:3:9"},"nodeType":"YulFunctionCall","src":"1494:20:9"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1516:7:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1491:2:9"},"nodeType":"YulFunctionCall","src":"1491:33:9"},"nodeType":"YulIf","src":"1488:53:9"},{"expression":{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1589:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"1593:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1585:3:9"},"nodeType":"YulFunctionCall","src":"1585:11:9"},{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1602:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"1610:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1598:3:9"},"nodeType":"YulFunctionCall","src":"1598:15:9"},{"name":"_3","nodeType":"YulIdentifier","src":"1615:2:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"1550:34:9"},"nodeType":"YulFunctionCall","src":"1550:68:9"},"nodeType":"YulExpressionStatement","src":"1550:68:9"},{"nodeType":"YulAssignment","src":"1627:16:9","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"1637:6:9"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1627:6:9"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"657:9:9","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"668:7:9","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"680:6:9","type":""},{"name":"value1","nodeType":"YulTypedName","src":"688:6:9","type":""},{"name":"value2","nodeType":"YulTypedName","src":"696:6:9","type":""}],"src":"583:1066:9"},{"body":{"nodeType":"YulBlock","src":"1783:175:9","statements":[{"nodeType":"YulAssignment","src":"1793:26:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1805:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1816:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1801:3:9"},"nodeType":"YulFunctionCall","src":"1801:18:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1793:4:9"}]},{"nodeType":"YulVariableDeclaration","src":"1828:29:9","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1846:3:9","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"1851:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1842:3:9"},"nodeType":"YulFunctionCall","src":"1842:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"1855:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1838:3:9"},"nodeType":"YulFunctionCall","src":"1838:19:9"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1832:2:9","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1873:9:9"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1888:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1896:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1884:3:9"},"nodeType":"YulFunctionCall","src":"1884:15:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1866:6:9"},"nodeType":"YulFunctionCall","src":"1866:34:9"},"nodeType":"YulExpressionStatement","src":"1866:34:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1920:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1931:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1916:3:9"},"nodeType":"YulFunctionCall","src":"1916:18:9"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"1940:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1948:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1936:3:9"},"nodeType":"YulFunctionCall","src":"1936:15:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1909:6:9"},"nodeType":"YulFunctionCall","src":"1909:43:9"},"nodeType":"YulExpressionStatement","src":"1909:43:9"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1744:9:9","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1755:6:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1763:6:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1774:4:9","type":""}],"src":"1654:304:9"},{"body":{"nodeType":"YulBlock","src":"2137:228:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2154:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2165:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2147:6:9"},"nodeType":"YulFunctionCall","src":"2147:21:9"},"nodeType":"YulExpressionStatement","src":"2147:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2188:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2199:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2184:3:9"},"nodeType":"YulFunctionCall","src":"2184:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"2204:2:9","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2177:6:9"},"nodeType":"YulFunctionCall","src":"2177:30:9"},"nodeType":"YulExpressionStatement","src":"2177:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2227:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2238:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2223:3:9"},"nodeType":"YulFunctionCall","src":"2223:18:9"},{"hexValue":"455243313936373a206e65772061646d696e20697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"2243:34:9","type":"","value":"ERC1967: new admin is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2216:6:9"},"nodeType":"YulFunctionCall","src":"2216:62:9"},"nodeType":"YulExpressionStatement","src":"2216:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2298:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2309:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2294:3:9"},"nodeType":"YulFunctionCall","src":"2294:18:9"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"2314:8:9","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2287:6:9"},"nodeType":"YulFunctionCall","src":"2287:36:9"},"nodeType":"YulExpressionStatement","src":"2287:36:9"},{"nodeType":"YulAssignment","src":"2332:27:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2344:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2355:3:9","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2340:3:9"},"nodeType":"YulFunctionCall","src":"2340:19:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2332:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2114:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2128:4:9","type":""}],"src":"1963:402:9"},{"body":{"nodeType":"YulBlock","src":"2544:235:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2561:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2572:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2554:6:9"},"nodeType":"YulFunctionCall","src":"2554:21:9"},"nodeType":"YulExpressionStatement","src":"2554:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2595:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2606:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2591:3:9"},"nodeType":"YulFunctionCall","src":"2591:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"2611:2:9","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2584:6:9"},"nodeType":"YulFunctionCall","src":"2584:30:9"},"nodeType":"YulExpressionStatement","src":"2584:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2634:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2645:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2630:3:9"},"nodeType":"YulFunctionCall","src":"2630:18:9"},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e","kind":"string","nodeType":"YulLiteral","src":"2650:34:9","type":"","value":"ERC1967: new implementation is n"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2623:6:9"},"nodeType":"YulFunctionCall","src":"2623:62:9"},"nodeType":"YulExpressionStatement","src":"2623:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2705:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2716:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2701:3:9"},"nodeType":"YulFunctionCall","src":"2701:18:9"},{"hexValue":"6f74206120636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"2721:15:9","type":"","value":"ot a contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2694:6:9"},"nodeType":"YulFunctionCall","src":"2694:43:9"},"nodeType":"YulExpressionStatement","src":"2694:43:9"},{"nodeType":"YulAssignment","src":"2746:27:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2758:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2769:3:9","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2754:3:9"},"nodeType":"YulFunctionCall","src":"2754:19:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2746:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2521:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2535:4:9","type":""}],"src":"2370:409:9"},{"body":{"nodeType":"YulBlock","src":"2921:150:9","statements":[{"nodeType":"YulVariableDeclaration","src":"2931:27:9","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2951:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2945:5:9"},"nodeType":"YulFunctionCall","src":"2945:13:9"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2935:6:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3006:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"3014:4:9","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3002:3:9"},"nodeType":"YulFunctionCall","src":"3002:17:9"},{"name":"pos","nodeType":"YulIdentifier","src":"3021:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"3026:6:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2967:34:9"},"nodeType":"YulFunctionCall","src":"2967:66:9"},"nodeType":"YulExpressionStatement","src":"2967:66:9"},{"nodeType":"YulAssignment","src":"3042:23:9","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3053:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"3058:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3049:3:9"},"nodeType":"YulFunctionCall","src":"3049:16:9"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"3042:3:9"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"2897:3:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2902:6:9","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2913:3:9","type":""}],"src":"2784:287:9"},{"body":{"nodeType":"YulBlock","src":"3250:179:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3267:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3278:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3260:6:9"},"nodeType":"YulFunctionCall","src":"3260:21:9"},"nodeType":"YulExpressionStatement","src":"3260:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3301:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3312:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3297:3:9"},"nodeType":"YulFunctionCall","src":"3297:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"3317:2:9","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3290:6:9"},"nodeType":"YulFunctionCall","src":"3290:30:9"},"nodeType":"YulExpressionStatement","src":"3290:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3340:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3351:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3336:3:9"},"nodeType":"YulFunctionCall","src":"3336:18:9"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"3356:31:9","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3329:6:9"},"nodeType":"YulFunctionCall","src":"3329:59:9"},"nodeType":"YulExpressionStatement","src":"3329:59:9"},{"nodeType":"YulAssignment","src":"3397:26:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3409:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3420:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3405:3:9"},"nodeType":"YulFunctionCall","src":"3405:18:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3397:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3227:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3241:4:9","type":""}],"src":"3076:353:9"},{"body":{"nodeType":"YulBlock","src":"3555:275:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3572:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3583:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3565:6:9"},"nodeType":"YulFunctionCall","src":"3565:21:9"},"nodeType":"YulExpressionStatement","src":"3565:21:9"},{"nodeType":"YulVariableDeclaration","src":"3595:27:9","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3615:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3609:5:9"},"nodeType":"YulFunctionCall","src":"3609:13:9"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"3599:6:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3642:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3653:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3638:3:9"},"nodeType":"YulFunctionCall","src":"3638:18:9"},{"name":"length","nodeType":"YulIdentifier","src":"3658:6:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3631:6:9"},"nodeType":"YulFunctionCall","src":"3631:34:9"},"nodeType":"YulExpressionStatement","src":"3631:34:9"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3713:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"3721:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3709:3:9"},"nodeType":"YulFunctionCall","src":"3709:15:9"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3730:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3741:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3726:3:9"},"nodeType":"YulFunctionCall","src":"3726:18:9"},{"name":"length","nodeType":"YulIdentifier","src":"3746:6:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"3674:34:9"},"nodeType":"YulFunctionCall","src":"3674:79:9"},"nodeType":"YulExpressionStatement","src":"3674:79:9"},{"nodeType":"YulAssignment","src":"3762:62:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3778:9:9"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3797:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"3805:2:9","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3793:3:9"},"nodeType":"YulFunctionCall","src":"3793:15:9"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3814:2:9","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3810:3:9"},"nodeType":"YulFunctionCall","src":"3810:7:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3789:3:9"},"nodeType":"YulFunctionCall","src":"3789:29:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3774:3:9"},"nodeType":"YulFunctionCall","src":"3774:45:9"},{"kind":"number","nodeType":"YulLiteral","src":"3821:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3770:3:9"},"nodeType":"YulFunctionCall","src":"3770:54:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3762:4:9"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3524:9:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3535:6:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3546:4:9","type":""}],"src":"3434:396:9"}]},"contents":"{\n { }\n function abi_decode_address_fromMemory(offset) -> value\n {\n value := mload(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 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_addresst_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address_fromMemory(headStart)\n value1 := abi_decode_address_fromMemory(add(headStart, 32))\n let offset := mload(add(headStart, 64))\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := mload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n copy_memory_to_memory_with_cleanup(add(_2, 32), add(memPtr, 32), _3)\n value2 := memPtr\n }\n function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n }\n function abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC1967: new admin is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: call to non-contract\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory_with_cleanup(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}","id":9,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405260405162000df438038062000df4833981016040819052620000269162000415565b82816200003582825f6200004c565b50620000439050826200007d565b50505062000540565b6200005783620000ee565b5f82511180620000645750805b1562000078576200007683836200012f565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620000be5f8051602062000dad833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a1620000eb816200015e565b50565b620000f981620001fb565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b606062000157838360405180606001604052806027815260200162000dcd6027913962000292565b9392505050565b6001600160a01b038116620001c95760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b805f8051602062000dad8339815191525b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381163b6200026a5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401620001c0565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc620001da565b60605f80856001600160a01b031685604051620002b09190620004ef565b5f60405180830381855af49150503d805f8114620002ea576040519150601f19603f3d011682016040523d82523d5f602084013e620002ef565b606091505b50909250905062000303868383876200030d565b9695505050505050565b60608315620003805782515f0362000378576001600160a01b0385163b620003785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001c0565b50816200038c565b6200038c838362000394565b949350505050565b815115620003a55781518083602001fd5b8060405162461bcd60e51b8152600401620001c091906200050c565b80516001600160a01b0381168114620003d8575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156200040d578181015183820152602001620003f3565b50505f910152565b5f805f6060848603121562000428575f80fd5b6200043384620003c1565b92506200044360208501620003c1565b60408501519092506001600160401b038082111562000460575f80fd5b818601915086601f83011262000474575f80fd5b815181811115620004895762000489620003dd565b604051601f8201601f19908116603f01168101908382118183101715620004b457620004b4620003dd565b81604052828152896020848701011115620004cd575f80fd5b620004e0836020830160208801620003f1565b80955050505050509250925092565b5f825162000502818460208701620003f1565b9190910192915050565b602081525f82518060208401526200052c816040850160208701620003f1565b601f01601f19169190910160400192915050565b61085f806200054e5f395ff3fe60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH3 0xDF4 CODESIZE SUB DUP1 PUSH3 0xDF4 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x26 SWAP2 PUSH3 0x415 JUMP JUMPDEST DUP3 DUP2 PUSH3 0x35 DUP3 DUP3 PUSH0 PUSH3 0x4C JUMP JUMPDEST POP PUSH3 0x43 SWAP1 POP DUP3 PUSH3 0x7D JUMP JUMPDEST POP POP POP PUSH3 0x540 JUMP JUMPDEST PUSH3 0x57 DUP4 PUSH3 0xEE JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH3 0x64 JUMPI POP DUP1 JUMPDEST ISZERO PUSH3 0x78 JUMPI PUSH3 0x76 DUP4 DUP4 PUSH3 0x12F JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH3 0xBE PUSH0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xDAD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH3 0xEB DUP2 PUSH3 0x15E JUMP JUMPDEST POP JUMP JUMPDEST PUSH3 0xF9 DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH3 0x157 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0xDCD PUSH1 0x27 SWAP2 CODECOPY PUSH3 0x292 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xDAD DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH3 0x26A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x1C0 JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH3 0x1DA JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH3 0x2B0 SWAP2 SWAP1 PUSH3 0x4EF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH3 0x2EA 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 PUSH3 0x2EF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH3 0x303 DUP7 DUP4 DUP4 DUP8 PUSH3 0x30D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH3 0x380 JUMPI DUP3 MLOAD PUSH0 SUB PUSH3 0x378 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH3 0x378 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x1C0 JUMP JUMPDEST POP DUP2 PUSH3 0x38C JUMP JUMPDEST PUSH3 0x38C DUP4 DUP4 PUSH3 0x394 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH3 0x3A5 JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1C0 SWAP2 SWAP1 PUSH3 0x50C JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x3D8 JUMPI PUSH0 DUP1 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x40D JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x3F3 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x428 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH3 0x433 DUP5 PUSH3 0x3C1 JUMP JUMPDEST SWAP3 POP PUSH3 0x443 PUSH1 0x20 DUP6 ADD PUSH3 0x3C1 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x460 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x474 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH3 0x489 JUMPI PUSH3 0x489 PUSH3 0x3DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x4B4 JUMPI PUSH3 0x4B4 PUSH3 0x3DD JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP10 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH3 0x4CD JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH3 0x4E0 DUP4 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP9 ADD PUSH3 0x3F1 JUMP JUMPDEST DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH3 0x502 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH3 0x3F1 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x52C DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH3 0x3F1 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x85F DUP1 PUSH3 0x54E PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH2 0x13 JUMPI PUSH2 0x11 PUSH2 0x17 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11 JUMPDEST PUSH2 0x1F PUSH2 0x168 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x15E JUMPI PUSH1 0x60 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH0 CALLDATALOAD AND PUSH4 0x64D3180D PUSH1 0xE1 SHL DUP2 ADD PUSH2 0x59 JUMPI PUSH2 0x52 PUSH2 0x19A JUMP JUMPDEST SWAP2 POP PUSH2 0x156 JUMP JUMPDEST PUSH4 0x587086BD PUSH1 0xE1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x79 JUMPI PUSH2 0x52 PUSH2 0x1ED JUMP JUMPDEST PUSH4 0x70D7C69 PUSH1 0xE4 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x99 JUMPI PUSH2 0x52 PUSH2 0x231 JUMP JUMPDEST PUSH3 0x1EB96F PUSH1 0xE6 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xB8 JUMPI PUSH2 0x52 PUSH2 0x261 JUMP JUMPDEST PUSH4 0xA39F25E5 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xD8 JUMPI PUSH2 0x52 PUSH2 0x2A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x42 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5472616E73706172656E745570677261646561626C6550726F78793A2061646D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x696E2063616E6E6F742066616C6C6261636B20746F2070726F78792074617267 PUSH1 0x64 DUP3 ADD MSTORE PUSH2 0x195D PUSH1 0xF2 SHL PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD RETURN JUMPDEST PUSH2 0x166 PUSH2 0x2B3 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A4 PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x1B2 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH0 PUSH2 0x2CD JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x6D7 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x21B DUP3 DUP3 PUSH1 0x1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x23B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x249 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH2 0x2F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x26B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP3 POP ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2AA PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x34F JUMP JUMPDEST PUSH2 0x166 PUSH2 0x2BE PUSH2 0x34F JUMP JUMPDEST PUSH2 0x35D JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x166 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D6 DUP4 PUSH2 0x37B JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH2 0x2E2 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x2F3 JUMPI PUSH2 0x2F1 DUP4 DUP4 PUSH2 0x3BA JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH2 0x321 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x34C DUP2 PUSH2 0x3E6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x358 PUSH2 0x48F JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x377 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH2 0x384 DUP2 PUSH2 0x4B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x3DF DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x803 PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x54A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x44B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 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 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x18B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH2 0x523 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x46E JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x566 SWAP2 SWAP1 PUSH2 0x7B5 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x59E 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 0x5A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x5B4 DUP7 DUP4 DUP4 DUP8 PUSH2 0x5BE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x62C JUMPI DUP3 MLOAD PUSH0 SUB PUSH2 0x625 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x625 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST POP DUP2 PUSH2 0x636 JUMP JUMPDEST PUSH2 0x636 DUP4 DUP4 PUSH2 0x63E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x64E JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x7D0 JUMP JUMPDEST PUSH0 DUP1 DUP6 DUP6 GT ISZERO PUSH2 0x676 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x682 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6A5 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6BA JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x3DF DUP3 PUSH2 0x68F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x6F1 DUP4 PUSH2 0x68F JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x70D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x720 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x732 JUMPI PUSH2 0x732 PUSH2 0x6C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x75A JUMPI PUSH2 0x75A PUSH2 0x6C3 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x772 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7AD JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x795 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x7C6 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7EE DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x7066735822122049D802 0xC6 SIGNEXTEND BLOCKHASH 0xCC 0xDE PUSH3 0x847701 PUSH15 0x4DE3AA79A5FEB5F60A45C43160AAD2 DUP6 CALLVALUE DIV 0xD0 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER 0xB5 BALANCE 0x27 PUSH9 0x4A568B3173AE13B9F8 0xA6 ADD PUSH15 0x243E63B6E8EE1178D6A717850B5D61 SUB COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C65640000 ","sourceMap":"3389:4951:6:-:0;;;3663:137;;;;;;;;;;;;;;;;;;:::i;:::-;3748:6;3756:5;1024:39:2;3748:6:6;3756:5;1057::2;1024:17;:39::i;:::-;-1:-1:-1;3773:20:6::1;::::0;-1:-1:-1;3786:6:6;3773:12:::1;:20::i;:::-;3663:137:::0;;;3389:4951;;2057:265:3;2165:29;2176:17;2165:10;:29::i;:::-;2222:1;2208:4;:11;:15;:28;;;;2227:9;2208:28;2204:112;;;2252:53;2281:17;2300:4;2252:28;:53::i;:::-;;2204:112;2057:265;;;:::o;4300:135::-;4364:35;4377:11;-1:-1:-1;;;;;;;;;;;3854:45:3;-1:-1:-1;;;;;3854:45:3;;3784:122;4377:11;4364:35;;;-1:-1:-1;;;;;1884:15:9;;;1866:34;;1936:15;;;1931:2;1916:18;;1909:43;1801:18;4364:35:3;;;;;;;4409:19;4419:8;4409:9;:19::i;:::-;4300:135;:::o;1771:152::-;1837:37;1856:17;1837:18;:37::i;:::-;1889:27;;-1:-1:-1;;;;;1889:27:3;;;;;;;;1771:152;:::o;6674:198:7:-;6757:12;6788:77;6809:6;6817:4;6788:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6781:84;6674:198;-1:-1:-1;;;6674:198:7:o;3988:201:3:-;-1:-1:-1;;;;;4051:22:3;;4043:73;;;;-1:-1:-1;;;4043:73:3;;2165:2:9;4043:73:3;;;2147:21:9;2204:2;2184:18;;;2177:30;2243:34;2223:18;;;2216:62;-1:-1:-1;;;2294:18:9;;;2287:36;2340:19;;4043:73:3;;;;;;;;;4174:8;-1:-1:-1;;;;;;;;;;;4126:39:3;:56;;-1:-1:-1;;;;;;4126:56:3;-1:-1:-1;;;;;4126:56:3;;;;;;;;;;-1:-1:-1;3988:201:3:o;1406:259::-;-1:-1:-1;;;;;1702:19:7;;;1479:95:3;;;;-1:-1:-1;;;1479:95:3;;2572:2:9;1479:95:3;;;2554:21:9;2611:2;2591:18;;;2584:30;2650:34;2630:18;;;2623:62;-1:-1:-1;;;2701:18:9;;;2694:43;2754:19;;1479:95:3;2370:409:9;1479:95:3;1641:17;1030:66;1584:48;1859:190:8;7058:325:7;7199:12;7224;7238:23;7265:6;-1:-1:-1;;;;;7265:19:7;7285:4;7265:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7223:67:7;;-1:-1:-1;7223:67:7;-1:-1:-1;7307:69:7;7334:6;7223:67;;7363:12;7307:26;:69::i;:::-;7300:76;7058:325;-1:-1:-1;;;;;;7058:325:7:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;-1:-1:-1;;;;;1702:19:7;;;8113:60;;;;-1:-1:-1;;;8113:60:7;;3278:2:9;8113:60:7;;;3260:21:9;3317:2;3297:18;;;3290:30;3356:31;3336:18;;;3329:59;3405:18;;8113:60:7;3076:353:9;8113:60:7;-1:-1:-1;8208:10:7;8201:17;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;:::o;8821:540::-;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;-1:-1:-1;;;9324:20:7;;;;;;;;:::i;14:177:9:-;93:13;;-1:-1:-1;;;;;135:31:9;;125:42;;115:70;;181:1;178;171:12;115:70;14:177;;;:::o;196:127::-;257:10;252:3;248:20;245:1;238:31;288:4;285:1;278:15;312:4;309:1;302:15;328:250;413:1;423:113;437:6;434:1;431:13;423:113;;;513:11;;;507:18;494:11;;;487:39;459:2;452:10;423:113;;;-1:-1:-1;;570:1:9;552:16;;545:27;328:250::o;583:1066::-;680:6;688;696;749:2;737:9;728:7;724:23;720:32;717:52;;;765:1;762;755:12;717:52;788:40;818:9;788:40;:::i;:::-;778:50;;847:49;892:2;881:9;877:18;847:49;:::i;:::-;940:2;925:18;;919:25;837:59;;-1:-1:-1;;;;;;993:14:9;;;990:34;;;1020:1;1017;1010:12;990:34;1058:6;1047:9;1043:22;1033:32;;1103:7;1096:4;1092:2;1088:13;1084:27;1074:55;;1125:1;1122;1115:12;1074:55;1154:2;1148:9;1176:2;1172;1169:10;1166:36;;;1182:18;;:::i;:::-;1257:2;1251:9;1225:2;1311:13;;-1:-1:-1;;1307:22:9;;;1331:2;1303:31;1299:40;1287:53;;;1355:18;;;1375:22;;;1352:46;1349:72;;;1401:18;;:::i;:::-;1441:10;1437:2;1430:22;1476:2;1468:6;1461:18;1516:7;1511:2;1506;1502;1498:11;1494:20;1491:33;1488:53;;;1537:1;1534;1527:12;1488:53;1550:68;1615:2;1610;1602:6;1598:15;1593:2;1589;1585:11;1550:68;:::i;:::-;1637:6;1627:16;;;;;;;583:1066;;;;;:::o;2784:287::-;2913:3;2951:6;2945:13;2967:66;3026:6;3021:3;3014:4;3006:6;3002:17;2967:66;:::i;:::-;3049:16;;;;;2784:287;-1:-1:-1;;2784:287:9:o;3434:396::-;3583:2;3572:9;3565:21;3546:4;3615:6;3609:13;3658:6;3653:2;3642:9;3638:18;3631:34;3674:79;3746:6;3741:2;3730:9;3726:18;3721:2;3713:6;3709:15;3674:79;:::i;:::-;3814:2;3793:15;-1:-1:-1;;3789:29:9;3774:45;;;;3821:2;3770:54;;3434:396;-1:-1:-1;;3434:396:9:o;:::-;3389:4951:6;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_409":{"entryPoint":null,"id":409,"parameterSlots":0,"returnSlots":0},"@_417":{"entryPoint":null,"id":417,"parameterSlots":0,"returnSlots":0},"@_beforeFallback_422":{"entryPoint":null,"id":422,"parameterSlots":0,"returnSlots":0},"@_changeAdmin_279":{"entryPoint":760,"id":279,"parameterSlots":1,"returnSlots":0},"@_delegate_382":{"entryPoint":861,"id":382,"parameterSlots":1,"returnSlots":0},"@_dispatchAdmin_618":{"entryPoint":609,"id":618,"parameterSlots":0,"returnSlots":1},"@_dispatchChangeAdmin_667":{"entryPoint":561,"id":667,"parameterSlots":0,"returnSlots":1},"@_dispatchImplementation_638":{"entryPoint":672,"id":638,"parameterSlots":0,"returnSlots":1},"@_dispatchUpgradeToAndCall_733":{"entryPoint":493,"id":733,"parameterSlots":0,"returnSlots":1},"@_dispatchUpgradeTo_701":{"entryPoint":410,"id":701,"parameterSlots":0,"returnSlots":1},"@_fallback_401":{"entryPoint":691,"id":401,"parameterSlots":0,"returnSlots":0},"@_fallback_598":{"entryPoint":23,"id":598,"parameterSlots":0,"returnSlots":0},"@_getAdmin_236":{"entryPoint":360,"id":236,"parameterSlots":0,"returnSlots":1},"@_getImplementation_97":{"entryPoint":1167,"id":97,"parameterSlots":0,"returnSlots":1},"@_implementation_66":{"entryPoint":847,"id":66,"parameterSlots":0,"returnSlots":1},"@_requireZeroValue_755":{"entryPoint":707,"id":755,"parameterSlots":0,"returnSlots":0},"@_revert_1085":{"entryPoint":1598,"id":1085,"parameterSlots":2,"returnSlots":0},"@_setAdmin_262":{"entryPoint":998,"id":262,"parameterSlots":1,"returnSlots":0},"@_setImplementation_121":{"entryPoint":1206,"id":121,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCall_166":{"entryPoint":717,"id":166,"parameterSlots":3,"returnSlots":0},"@_upgradeTo_136":{"entryPoint":891,"id":136,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_1002":{"entryPoint":1354,"id":1002,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_973":{"entryPoint":954,"id":973,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_1118":{"entryPoint":null,"id":1118,"parameterSlots":1,"returnSlots":1},"@isContract_774":{"entryPoint":null,"id":774,"parameterSlots":1,"returnSlots":1},"@verifyCallResultFromTarget_1041":{"entryPoint":1470,"id":1041,"parameterSlots":4,"returnSlots":1},"abi_decode_address_payable":{"entryPoint":1679,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":1706,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_bytes_memory_ptr":{"entryPoint":1751,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":1973,"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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2000,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":1640,"id":null,"parameterSlots":4,"returnSlots":2},"copy_memory_to_memory_with_cleanup":{"entryPoint":1939,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":1731,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5007:9","statements":[{"nodeType":"YulBlock","src":"6:3:9","statements":[]},{"body":{"nodeType":"YulBlock","src":"188:296:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"205:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"216:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"198:6:9"},"nodeType":"YulFunctionCall","src":"198:21:9"},"nodeType":"YulExpressionStatement","src":"198:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"239:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"250:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"235:3:9"},"nodeType":"YulFunctionCall","src":"235:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"255:2:9","type":"","value":"66"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"228:6:9"},"nodeType":"YulFunctionCall","src":"228:30:9"},"nodeType":"YulExpressionStatement","src":"228:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"278:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"289:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"274:3:9"},"nodeType":"YulFunctionCall","src":"274:18:9"},{"hexValue":"5472616e73706172656e745570677261646561626c6550726f78793a2061646d","kind":"string","nodeType":"YulLiteral","src":"294:34:9","type":"","value":"TransparentUpgradeableProxy: adm"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"267:6:9"},"nodeType":"YulFunctionCall","src":"267:62:9"},"nodeType":"YulExpressionStatement","src":"267:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"349:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"360:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"345:3:9"},"nodeType":"YulFunctionCall","src":"345:18:9"},{"hexValue":"696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267","kind":"string","nodeType":"YulLiteral","src":"365:34:9","type":"","value":"in cannot fallback to proxy targ"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"338:6:9"},"nodeType":"YulFunctionCall","src":"338:62:9"},"nodeType":"YulExpressionStatement","src":"338:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"420:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"431:3:9","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"416:3:9"},"nodeType":"YulFunctionCall","src":"416:19:9"},{"hexValue":"6574","kind":"string","nodeType":"YulLiteral","src":"437:4:9","type":"","value":"et"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"409:6:9"},"nodeType":"YulFunctionCall","src":"409:33:9"},"nodeType":"YulExpressionStatement","src":"409:33:9"},{"nodeType":"YulAssignment","src":"451:27:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"463:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"474:3:9","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"459:3:9"},"nodeType":"YulFunctionCall","src":"459:19:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"451:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"165:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"179:4:9","type":""}],"src":"14:470:9"},{"body":{"nodeType":"YulBlock","src":"619:201:9","statements":[{"body":{"nodeType":"YulBlock","src":"657:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"666:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"669:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"659:6:9"},"nodeType":"YulFunctionCall","src":"659:12:9"},"nodeType":"YulExpressionStatement","src":"659:12:9"}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"635:10:9"},{"name":"endIndex","nodeType":"YulIdentifier","src":"647:8:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"632:2:9"},"nodeType":"YulFunctionCall","src":"632:24:9"},"nodeType":"YulIf","src":"629:44:9"},{"body":{"nodeType":"YulBlock","src":"706:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"715:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"718:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"708:6:9"},"nodeType":"YulFunctionCall","src":"708:12:9"},"nodeType":"YulExpressionStatement","src":"708:12:9"}]},"condition":{"arguments":[{"name":"endIndex","nodeType":"YulIdentifier","src":"688:8:9"},{"name":"length","nodeType":"YulIdentifier","src":"698:6:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"685:2:9"},"nodeType":"YulFunctionCall","src":"685:20:9"},"nodeType":"YulIf","src":"682:40:9"},{"nodeType":"YulAssignment","src":"731:36:9","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"748:6:9"},{"name":"startIndex","nodeType":"YulIdentifier","src":"756:10:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"744:3:9"},"nodeType":"YulFunctionCall","src":"744:23:9"},"variableNames":[{"name":"offsetOut","nodeType":"YulIdentifier","src":"731:9:9"}]},{"nodeType":"YulAssignment","src":"776:38:9","value":{"arguments":[{"name":"endIndex","nodeType":"YulIdentifier","src":"793:8:9"},{"name":"startIndex","nodeType":"YulIdentifier","src":"803:10:9"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"789:3:9"},"nodeType":"YulFunctionCall","src":"789:25:9"},"variableNames":[{"name":"lengthOut","nodeType":"YulIdentifier","src":"776:9:9"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"553:6:9","type":""},{"name":"length","nodeType":"YulTypedName","src":"561:6:9","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"569:10:9","type":""},{"name":"endIndex","nodeType":"YulTypedName","src":"581:8:9","type":""}],"returnVariables":[{"name":"offsetOut","nodeType":"YulTypedName","src":"594:9:9","type":""},{"name":"lengthOut","nodeType":"YulTypedName","src":"605:9:9","type":""}],"src":"489:331:9"},{"body":{"nodeType":"YulBlock","src":"882:124:9","statements":[{"nodeType":"YulAssignment","src":"892:29:9","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"914:6:9"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"901:12:9"},"nodeType":"YulFunctionCall","src":"901:20:9"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"892:5:9"}]},{"body":{"nodeType":"YulBlock","src":"984:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"993:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"996:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"986:6:9"},"nodeType":"YulFunctionCall","src":"986:12:9"},"nodeType":"YulExpressionStatement","src":"986:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"943:5:9"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"954:5:9"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"969:3:9","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"974:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"965:3:9"},"nodeType":"YulFunctionCall","src":"965:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"978:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"961:3:9"},"nodeType":"YulFunctionCall","src":"961:19:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"950:3:9"},"nodeType":"YulFunctionCall","src":"950:31:9"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"940:2:9"},"nodeType":"YulFunctionCall","src":"940:42:9"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"933:6:9"},"nodeType":"YulFunctionCall","src":"933:50:9"},"nodeType":"YulIf","src":"930:70:9"}]},"name":"abi_decode_address_payable","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"861:6:9","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"872:5:9","type":""}],"src":"825:181:9"},{"body":{"nodeType":"YulBlock","src":"1089:124:9","statements":[{"body":{"nodeType":"YulBlock","src":"1135:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1144:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1147:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1137:6:9"},"nodeType":"YulFunctionCall","src":"1137:12:9"},"nodeType":"YulExpressionStatement","src":"1137:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1110:7:9"},{"name":"headStart","nodeType":"YulIdentifier","src":"1119:9:9"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1106:3:9"},"nodeType":"YulFunctionCall","src":"1106:23:9"},{"kind":"number","nodeType":"YulLiteral","src":"1131:2:9","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1102:3:9"},"nodeType":"YulFunctionCall","src":"1102:32:9"},"nodeType":"YulIf","src":"1099:52:9"},{"nodeType":"YulAssignment","src":"1160:47:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1197:9:9"}],"functionName":{"name":"abi_decode_address_payable","nodeType":"YulIdentifier","src":"1170:26:9"},"nodeType":"YulFunctionCall","src":"1170:37:9"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1160:6:9"}]}]},"name":"abi_decode_tuple_t_address_payable","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1055:9:9","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1066:7:9","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1078:6:9","type":""}],"src":"1011:202:9"},{"body":{"nodeType":"YulBlock","src":"1250:95:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1267:1:9","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1274:3:9","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1279:10:9","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1270:3:9"},"nodeType":"YulFunctionCall","src":"1270:20:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1260:6:9"},"nodeType":"YulFunctionCall","src":"1260:31:9"},"nodeType":"YulExpressionStatement","src":"1260:31:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1307:1:9","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1310:4:9","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1300:6:9"},"nodeType":"YulFunctionCall","src":"1300:15:9"},"nodeType":"YulExpressionStatement","src":"1300:15:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1331:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1334:4:9","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1324:6:9"},"nodeType":"YulFunctionCall","src":"1324:15:9"},"nodeType":"YulExpressionStatement","src":"1324:15:9"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"1218:127:9"},{"body":{"nodeType":"YulBlock","src":"1454:907:9","statements":[{"body":{"nodeType":"YulBlock","src":"1500:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1509:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1512:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1502:6:9"},"nodeType":"YulFunctionCall","src":"1502:12:9"},"nodeType":"YulExpressionStatement","src":"1502:12:9"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1475:7:9"},{"name":"headStart","nodeType":"YulIdentifier","src":"1484:9:9"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1471:3:9"},"nodeType":"YulFunctionCall","src":"1471:23:9"},{"kind":"number","nodeType":"YulLiteral","src":"1496:2:9","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1467:3:9"},"nodeType":"YulFunctionCall","src":"1467:32:9"},"nodeType":"YulIf","src":"1464:52:9"},{"nodeType":"YulAssignment","src":"1525:47:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1562:9:9"}],"functionName":{"name":"abi_decode_address_payable","nodeType":"YulIdentifier","src":"1535:26:9"},"nodeType":"YulFunctionCall","src":"1535:37:9"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1525:6:9"}]},{"nodeType":"YulVariableDeclaration","src":"1581:46:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1612:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"1623:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1608:3:9"},"nodeType":"YulFunctionCall","src":"1608:18:9"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1595:12:9"},"nodeType":"YulFunctionCall","src":"1595:32:9"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1585:6:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1636:28:9","value":{"kind":"number","nodeType":"YulLiteral","src":"1646:18:9","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1640:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1691:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1700:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1703:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1693:6:9"},"nodeType":"YulFunctionCall","src":"1693:12:9"},"nodeType":"YulExpressionStatement","src":"1693:12:9"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1679:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1687:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1676:2:9"},"nodeType":"YulFunctionCall","src":"1676:14:9"},"nodeType":"YulIf","src":"1673:34:9"},{"nodeType":"YulVariableDeclaration","src":"1716:32:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1730:9:9"},{"name":"offset","nodeType":"YulIdentifier","src":"1741:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1726:3:9"},"nodeType":"YulFunctionCall","src":"1726:22:9"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1720:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1796:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1805:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1808:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1798:6:9"},"nodeType":"YulFunctionCall","src":"1798:12:9"},"nodeType":"YulExpressionStatement","src":"1798:12:9"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1775:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"1779:4:9","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1771:3:9"},"nodeType":"YulFunctionCall","src":"1771:13:9"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1786:7:9"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1767:3:9"},"nodeType":"YulFunctionCall","src":"1767:27:9"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1760:6:9"},"nodeType":"YulFunctionCall","src":"1760:35:9"},"nodeType":"YulIf","src":"1757:55:9"},{"nodeType":"YulVariableDeclaration","src":"1821:26:9","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1844:2:9"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1831:12:9"},"nodeType":"YulFunctionCall","src":"1831:16:9"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"1825:2:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"1870:22:9","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1872:16:9"},"nodeType":"YulFunctionCall","src":"1872:18:9"},"nodeType":"YulExpressionStatement","src":"1872:18:9"}]},"condition":{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"1862:2:9"},{"name":"_1","nodeType":"YulIdentifier","src":"1866:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1859:2:9"},"nodeType":"YulFunctionCall","src":"1859:10:9"},"nodeType":"YulIf","src":"1856:36:9"},{"nodeType":"YulVariableDeclaration","src":"1901:17:9","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1915:2:9","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1911:3:9"},"nodeType":"YulFunctionCall","src":"1911:7:9"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"1905:2:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1927:23:9","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1947:2:9","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1941:5:9"},"nodeType":"YulFunctionCall","src":"1941:9:9"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1931:6:9","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1959:71:9","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1981:6:9"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"2005:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"2009:4:9","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2001:3:9"},"nodeType":"YulFunctionCall","src":"2001:13:9"},{"name":"_4","nodeType":"YulIdentifier","src":"2016:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1997:3:9"},"nodeType":"YulFunctionCall","src":"1997:22:9"},{"kind":"number","nodeType":"YulLiteral","src":"2021:2:9","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1993:3:9"},"nodeType":"YulFunctionCall","src":"1993:31:9"},{"name":"_4","nodeType":"YulIdentifier","src":"2026:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1989:3:9"},"nodeType":"YulFunctionCall","src":"1989:40:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1977:3:9"},"nodeType":"YulFunctionCall","src":"1977:53:9"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1963:10:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"2089:22:9","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"2091:16:9"},"nodeType":"YulFunctionCall","src":"2091:18:9"},"nodeType":"YulExpressionStatement","src":"2091:18:9"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2048:10:9"},{"name":"_1","nodeType":"YulIdentifier","src":"2060:2:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2045:2:9"},"nodeType":"YulFunctionCall","src":"2045:18:9"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2068:10:9"},{"name":"memPtr","nodeType":"YulIdentifier","src":"2080:6:9"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2065:2:9"},"nodeType":"YulFunctionCall","src":"2065:22:9"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2042:2:9"},"nodeType":"YulFunctionCall","src":"2042:46:9"},"nodeType":"YulIf","src":"2039:72:9"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2127:2:9","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"2131:10:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2120:6:9"},"nodeType":"YulFunctionCall","src":"2120:22:9"},"nodeType":"YulExpressionStatement","src":"2120:22:9"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2158:6:9"},{"name":"_3","nodeType":"YulIdentifier","src":"2166:2:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2151:6:9"},"nodeType":"YulFunctionCall","src":"2151:18:9"},"nodeType":"YulExpressionStatement","src":"2151:18:9"},{"body":{"nodeType":"YulBlock","src":"2215:16:9","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2224:1:9","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2227:1:9","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2217:6:9"},"nodeType":"YulFunctionCall","src":"2217:12:9"},"nodeType":"YulExpressionStatement","src":"2217:12:9"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2192:2:9"},{"name":"_3","nodeType":"YulIdentifier","src":"2196:2:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2188:3:9"},"nodeType":"YulFunctionCall","src":"2188:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"2201:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2184:3:9"},"nodeType":"YulFunctionCall","src":"2184:20:9"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2206:7:9"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2181:2:9"},"nodeType":"YulFunctionCall","src":"2181:33:9"},"nodeType":"YulIf","src":"2178:53:9"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2257:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"2265:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2253:3:9"},"nodeType":"YulFunctionCall","src":"2253:15:9"},{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"2274:2:9"},{"kind":"number","nodeType":"YulLiteral","src":"2278:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2270:3:9"},"nodeType":"YulFunctionCall","src":"2270:11:9"},{"name":"_3","nodeType":"YulIdentifier","src":"2283:2:9"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"2240:12:9"},"nodeType":"YulFunctionCall","src":"2240:46:9"},"nodeType":"YulExpressionStatement","src":"2240:46:9"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"2310:6:9"},{"name":"_3","nodeType":"YulIdentifier","src":"2318:2:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2306:3:9"},"nodeType":"YulFunctionCall","src":"2306:15:9"},{"kind":"number","nodeType":"YulLiteral","src":"2323:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2302:3:9"},"nodeType":"YulFunctionCall","src":"2302:24:9"},{"kind":"number","nodeType":"YulLiteral","src":"2328:1:9","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2295:6:9"},"nodeType":"YulFunctionCall","src":"2295:35:9"},"nodeType":"YulExpressionStatement","src":"2295:35:9"},{"nodeType":"YulAssignment","src":"2339:16:9","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"2349:6:9"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2339:6:9"}]}]},"name":"abi_decode_tuple_t_address_payablet_bytes_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1412:9:9","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1423:7:9","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1435:6:9","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1443:6:9","type":""}],"src":"1350:1011:9"},{"body":{"nodeType":"YulBlock","src":"2467:102:9","statements":[{"nodeType":"YulAssignment","src":"2477:26:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2489:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2500:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2485:3:9"},"nodeType":"YulFunctionCall","src":"2485:18:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2477:4:9"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2519:9:9"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2534:6:9"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2550:3:9","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2555:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2546:3:9"},"nodeType":"YulFunctionCall","src":"2546:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"2559:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2542:3:9"},"nodeType":"YulFunctionCall","src":"2542:19:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2530:3:9"},"nodeType":"YulFunctionCall","src":"2530:32:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2512:6:9"},"nodeType":"YulFunctionCall","src":"2512:51:9"},"nodeType":"YulExpressionStatement","src":"2512:51:9"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2436:9:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2447:6:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2458:4:9","type":""}],"src":"2366:203:9"},{"body":{"nodeType":"YulBlock","src":"2703:175:9","statements":[{"nodeType":"YulAssignment","src":"2713:26:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2725:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2736:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2721:3:9"},"nodeType":"YulFunctionCall","src":"2721:18:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2713:4:9"}]},{"nodeType":"YulVariableDeclaration","src":"2748:29:9","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2766:3:9","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2771:1:9","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2762:3:9"},"nodeType":"YulFunctionCall","src":"2762:11:9"},{"kind":"number","nodeType":"YulLiteral","src":"2775:1:9","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2758:3:9"},"nodeType":"YulFunctionCall","src":"2758:19:9"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2752:2:9","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2793:9:9"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2808:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"2816:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2804:3:9"},"nodeType":"YulFunctionCall","src":"2804:15:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2786:6:9"},"nodeType":"YulFunctionCall","src":"2786:34:9"},"nodeType":"YulExpressionStatement","src":"2786:34:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2840:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"2851:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2836:3:9"},"nodeType":"YulFunctionCall","src":"2836:18:9"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"2860:6:9"},{"name":"_1","nodeType":"YulIdentifier","src":"2868:2:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2856:3:9"},"nodeType":"YulFunctionCall","src":"2856:15:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2829:6:9"},"nodeType":"YulFunctionCall","src":"2829:43:9"},"nodeType":"YulExpressionStatement","src":"2829:43:9"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2664:9:9","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2675:6:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2683:6:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2694:4:9","type":""}],"src":"2574:304:9"},{"body":{"nodeType":"YulBlock","src":"3057:228:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3074:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3085:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3067:6:9"},"nodeType":"YulFunctionCall","src":"3067:21:9"},"nodeType":"YulExpressionStatement","src":"3067:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3108:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3119:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3104:3:9"},"nodeType":"YulFunctionCall","src":"3104:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"3124:2:9","type":"","value":"38"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3097:6:9"},"nodeType":"YulFunctionCall","src":"3097:30:9"},"nodeType":"YulExpressionStatement","src":"3097:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3147:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3158:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3143:3:9"},"nodeType":"YulFunctionCall","src":"3143:18:9"},{"hexValue":"455243313936373a206e65772061646d696e20697320746865207a65726f2061","kind":"string","nodeType":"YulLiteral","src":"3163:34:9","type":"","value":"ERC1967: new admin is the zero a"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3136:6:9"},"nodeType":"YulFunctionCall","src":"3136:62:9"},"nodeType":"YulExpressionStatement","src":"3136:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3218:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3229:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3214:3:9"},"nodeType":"YulFunctionCall","src":"3214:18:9"},{"hexValue":"646472657373","kind":"string","nodeType":"YulLiteral","src":"3234:8:9","type":"","value":"ddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3207:6:9"},"nodeType":"YulFunctionCall","src":"3207:36:9"},"nodeType":"YulExpressionStatement","src":"3207:36:9"},{"nodeType":"YulAssignment","src":"3252:27:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3264:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3275:3:9","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3260:3:9"},"nodeType":"YulFunctionCall","src":"3260:19:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3252:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3034:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3048:4:9","type":""}],"src":"2883:402:9"},{"body":{"nodeType":"YulBlock","src":"3464:235:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3481:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3492:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3474:6:9"},"nodeType":"YulFunctionCall","src":"3474:21:9"},"nodeType":"YulExpressionStatement","src":"3474:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3515:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3526:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3511:3:9"},"nodeType":"YulFunctionCall","src":"3511:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"3531:2:9","type":"","value":"45"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3504:6:9"},"nodeType":"YulFunctionCall","src":"3504:30:9"},"nodeType":"YulExpressionStatement","src":"3504:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3554:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3565:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3550:3:9"},"nodeType":"YulFunctionCall","src":"3550:18:9"},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e","kind":"string","nodeType":"YulLiteral","src":"3570:34:9","type":"","value":"ERC1967: new implementation is n"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3543:6:9"},"nodeType":"YulFunctionCall","src":"3543:62:9"},"nodeType":"YulExpressionStatement","src":"3543:62:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3625:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3636:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3621:3:9"},"nodeType":"YulFunctionCall","src":"3621:18:9"},{"hexValue":"6f74206120636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"3641:15:9","type":"","value":"ot a contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3614:6:9"},"nodeType":"YulFunctionCall","src":"3614:43:9"},"nodeType":"YulExpressionStatement","src":"3614:43:9"},{"nodeType":"YulAssignment","src":"3666:27:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3678:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"3689:3:9","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3674:3:9"},"nodeType":"YulFunctionCall","src":"3674:19:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3666:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3441:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3455:4:9","type":""}],"src":"3290:409:9"},{"body":{"nodeType":"YulBlock","src":"3770:184:9","statements":[{"nodeType":"YulVariableDeclaration","src":"3780:10:9","value":{"kind":"number","nodeType":"YulLiteral","src":"3789:1:9","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3784:1:9","type":""}]},{"body":{"nodeType":"YulBlock","src":"3849:63:9","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3874:3:9"},{"name":"i","nodeType":"YulIdentifier","src":"3879:1:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3870:3:9"},"nodeType":"YulFunctionCall","src":"3870:11:9"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3893:3:9"},{"name":"i","nodeType":"YulIdentifier","src":"3898:1:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3889:3:9"},"nodeType":"YulFunctionCall","src":"3889:11:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3883:5:9"},"nodeType":"YulFunctionCall","src":"3883:18:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3863:6:9"},"nodeType":"YulFunctionCall","src":"3863:39:9"},"nodeType":"YulExpressionStatement","src":"3863:39:9"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3810:1:9"},{"name":"length","nodeType":"YulIdentifier","src":"3813:6:9"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3807:2:9"},"nodeType":"YulFunctionCall","src":"3807:13:9"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3821:19:9","statements":[{"nodeType":"YulAssignment","src":"3823:15:9","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3832:1:9"},{"kind":"number","nodeType":"YulLiteral","src":"3835:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3828:3:9"},"nodeType":"YulFunctionCall","src":"3828:10:9"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3823:1:9"}]}]},"pre":{"nodeType":"YulBlock","src":"3803:3:9","statements":[]},"src":"3799:113:9"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3932:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"3937:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3928:3:9"},"nodeType":"YulFunctionCall","src":"3928:16:9"},{"kind":"number","nodeType":"YulLiteral","src":"3946:1:9","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3921:6:9"},"nodeType":"YulFunctionCall","src":"3921:27:9"},"nodeType":"YulExpressionStatement","src":"3921:27:9"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"3748:3:9","type":""},{"name":"dst","nodeType":"YulTypedName","src":"3753:3:9","type":""},{"name":"length","nodeType":"YulTypedName","src":"3758:6:9","type":""}],"src":"3704:250:9"},{"body":{"nodeType":"YulBlock","src":"4096:150:9","statements":[{"nodeType":"YulVariableDeclaration","src":"4106:27:9","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4126:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4120:5:9"},"nodeType":"YulFunctionCall","src":"4120:13:9"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4110:6:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4181:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"4189:4:9","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4177:3:9"},"nodeType":"YulFunctionCall","src":"4177:17:9"},{"name":"pos","nodeType":"YulIdentifier","src":"4196:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"4201:6:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"4142:34:9"},"nodeType":"YulFunctionCall","src":"4142:66:9"},"nodeType":"YulExpressionStatement","src":"4142:66:9"},{"nodeType":"YulAssignment","src":"4217:23:9","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4228:3:9"},{"name":"length","nodeType":"YulIdentifier","src":"4233:6:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4224:3:9"},"nodeType":"YulFunctionCall","src":"4224:16:9"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"4217:3:9"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"4072:3:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4077:6:9","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"4088:3:9","type":""}],"src":"3959:287:9"},{"body":{"nodeType":"YulBlock","src":"4425:179:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4442:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4453:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4435:6:9"},"nodeType":"YulFunctionCall","src":"4435:21:9"},"nodeType":"YulExpressionStatement","src":"4435:21:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4476:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4487:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4472:3:9"},"nodeType":"YulFunctionCall","src":"4472:18:9"},{"kind":"number","nodeType":"YulLiteral","src":"4492:2:9","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4465:6:9"},"nodeType":"YulFunctionCall","src":"4465:30:9"},"nodeType":"YulExpressionStatement","src":"4465:30:9"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4515:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4526:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4511:3:9"},"nodeType":"YulFunctionCall","src":"4511:18:9"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nodeType":"YulLiteral","src":"4531:31:9","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4504:6:9"},"nodeType":"YulFunctionCall","src":"4504:59:9"},"nodeType":"YulExpressionStatement","src":"4504:59:9"},{"nodeType":"YulAssignment","src":"4572:26:9","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4584:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4595:2:9","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4580:3:9"},"nodeType":"YulFunctionCall","src":"4580:18:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4572:4:9"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4402:9:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4416:4:9","type":""}],"src":"4251:353:9"},{"body":{"nodeType":"YulBlock","src":"4730:275:9","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4747:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4758:2:9","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4740:6:9"},"nodeType":"YulFunctionCall","src":"4740:21:9"},"nodeType":"YulExpressionStatement","src":"4740:21:9"},{"nodeType":"YulVariableDeclaration","src":"4770:27:9","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4790:6:9"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4784:5:9"},"nodeType":"YulFunctionCall","src":"4784:13:9"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4774:6:9","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4817:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4828:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4813:3:9"},"nodeType":"YulFunctionCall","src":"4813:18:9"},{"name":"length","nodeType":"YulIdentifier","src":"4833:6:9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4806:6:9"},"nodeType":"YulFunctionCall","src":"4806:34:9"},"nodeType":"YulExpressionStatement","src":"4806:34:9"},{"expression":{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4888:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"4896:2:9","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4884:3:9"},"nodeType":"YulFunctionCall","src":"4884:15:9"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4905:9:9"},{"kind":"number","nodeType":"YulLiteral","src":"4916:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4901:3:9"},"nodeType":"YulFunctionCall","src":"4901:18:9"},{"name":"length","nodeType":"YulIdentifier","src":"4921:6:9"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"4849:34:9"},"nodeType":"YulFunctionCall","src":"4849:79:9"},"nodeType":"YulExpressionStatement","src":"4849:79:9"},{"nodeType":"YulAssignment","src":"4937:62:9","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4953:9:9"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4972:6:9"},{"kind":"number","nodeType":"YulLiteral","src":"4980:2:9","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4968:3:9"},"nodeType":"YulFunctionCall","src":"4968:15:9"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4989:2:9","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4985:3:9"},"nodeType":"YulFunctionCall","src":"4985:7:9"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4964:3:9"},"nodeType":"YulFunctionCall","src":"4964:29:9"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4949:3:9"},"nodeType":"YulFunctionCall","src":"4949:45:9"},{"kind":"number","nodeType":"YulLiteral","src":"4996:2:9","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4945:3:9"},"nodeType":"YulFunctionCall","src":"4945:54:9"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4937:4:9"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4699:9:9","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4710:6:9","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4721:4:9","type":""}],"src":"4609:396:9"}]},"contents":"{\n { }\n function abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 66)\n mstore(add(headStart, 64), \"TransparentUpgradeableProxy: adm\")\n mstore(add(headStart, 96), \"in cannot fallback to proxy targ\")\n mstore(add(headStart, 128), \"et\")\n tail := add(headStart, 160)\n }\n function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n {\n if gt(startIndex, endIndex) { revert(0, 0) }\n if gt(endIndex, length) { revert(0, 0) }\n offsetOut := add(offset, startIndex)\n lengthOut := sub(endIndex, startIndex)\n }\n function abi_decode_address_payable(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_address_payable(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address_payable(headStart)\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_tuple_t_address_payablet_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address_payable(headStart)\n let offset := calldataload(add(headStart, 32))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := calldataload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n mstore(add(add(memPtr, _3), 32), 0)\n value1 := memPtr\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_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n }\n function abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC1967: new admin is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\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_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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: call to non-contract\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory_with_cleanup(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}","id":9,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH2 0x13 JUMPI PUSH2 0x11 PUSH2 0x17 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11 JUMPDEST PUSH2 0x1F PUSH2 0x168 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x15E JUMPI PUSH1 0x60 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH0 CALLDATALOAD AND PUSH4 0x64D3180D PUSH1 0xE1 SHL DUP2 ADD PUSH2 0x59 JUMPI PUSH2 0x52 PUSH2 0x19A JUMP JUMPDEST SWAP2 POP PUSH2 0x156 JUMP JUMPDEST PUSH4 0x587086BD PUSH1 0xE1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x79 JUMPI PUSH2 0x52 PUSH2 0x1ED JUMP JUMPDEST PUSH4 0x70D7C69 PUSH1 0xE4 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x99 JUMPI PUSH2 0x52 PUSH2 0x231 JUMP JUMPDEST PUSH3 0x1EB96F PUSH1 0xE6 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xB8 JUMPI PUSH2 0x52 PUSH2 0x261 JUMP JUMPDEST PUSH4 0xA39F25E5 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0xD8 JUMPI PUSH2 0x52 PUSH2 0x2A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x42 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5472616E73706172656E745570677261646561626C6550726F78793A2061646D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x696E2063616E6E6F742066616C6C6261636B20746F2070726F78792074617267 PUSH1 0x64 DUP3 ADD MSTORE PUSH2 0x195D PUSH1 0xF2 SHL PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD RETURN JUMPDEST PUSH2 0x166 PUSH2 0x2B3 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A4 PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x1B2 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH0 PUSH2 0x2CD JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x6D7 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x21B DUP3 DUP3 PUSH1 0x1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x23B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x249 CALLDATASIZE PUSH1 0x4 DUP2 DUP5 PUSH2 0x668 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x6AA JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA DUP2 PUSH2 0x2F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x26B PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP3 POP ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2AA PUSH2 0x2C3 JUMP JUMPDEST PUSH0 PUSH2 0x274 PUSH2 0x34F JUMP JUMPDEST PUSH2 0x166 PUSH2 0x2BE PUSH2 0x34F JUMP JUMPDEST PUSH2 0x35D JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x166 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D6 DUP4 PUSH2 0x37B JUMP JUMPDEST PUSH0 DUP3 MLOAD GT DUP1 PUSH2 0x2E2 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x2F3 JUMPI PUSH2 0x2F1 DUP4 DUP4 PUSH2 0x3BA JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH2 0x321 PUSH2 0x168 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x34C DUP2 PUSH2 0x3E6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x358 PUSH2 0x48F JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP1 CALLDATACOPY PUSH0 DUP1 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x377 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH2 0x384 DUP2 PUSH2 0x4B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x3DF DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x803 PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x54A JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x44B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 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 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x18B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE PUSH2 0x523 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x14D JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x46E JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x566 SWAP2 SWAP1 PUSH2 0x7B5 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x59E 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 0x5A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x5B4 DUP7 DUP4 DUP4 DUP8 PUSH2 0x5BE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x62C JUMPI DUP3 MLOAD PUSH0 SUB PUSH2 0x625 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x625 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST POP DUP2 PUSH2 0x636 JUMP JUMPDEST PUSH2 0x636 DUP4 DUP4 PUSH2 0x63E JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x64E JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x7D0 JUMP JUMPDEST PUSH0 DUP1 DUP6 DUP6 GT ISZERO PUSH2 0x676 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x682 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x6A5 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6BA JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x3DF DUP3 PUSH2 0x68F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x6F1 DUP4 PUSH2 0x68F JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x70D JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x720 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x732 JUMPI PUSH2 0x732 PUSH2 0x6C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x75A JUMPI PUSH2 0x75A PUSH2 0x6C3 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x772 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7AD JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x795 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x7C6 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x7EE DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x793 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x7066735822122049D802 0xC6 SIGNEXTEND BLOCKHASH 0xCC 0xDE PUSH3 0x847701 PUSH15 0x4DE3AA79A5FEB5F60A45C43160AAD2 DUP6 CALLVALUE DIV 0xD0 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"3389:4951:6:-:0;;;;;;2898:11:4;:9;:11::i;:::-;3389:4951:6;;2675:11:4;4407:1102:6;4482:11;:9;:11::i;:::-;-1:-1:-1;;;;;4468:25:6;:10;:25;4464:1039;;4509:16;-1:-1:-1;;;;;;4539:15:6;4557:7;;-1:-1:-1;;;4582:59:6;;4578:779;;4667:20;:18;:20::i;:::-;4661:26;;4578:779;;;-1:-1:-1;;;;;;;;;4712:66:6;;;4708:649;;4804:27;:25;:27::i;4708:649::-;-1:-1:-1;;;;;;;;;4856:61:6;;;4852:505;;4943:22;:20;:22::i;4852:505::-;-1:-1:-1;;;;;;;;;4990:55:6;;;4986:371;;5071:16;:14;:16::i;4986:371::-;-1:-1:-1;;;;;;;;;5112:64:6;;;5108:249;;5202:25;:23;:25::i;5108:249::-;5266:76;;-1:-1:-1;;;5266:76:6;;216:2:9;5266:76:6;;;198:21:9;255:2;235:18;;;228:30;294:34;274:18;;;267:62;365:34;345:18;;;338:62;-1:-1:-1;;;416:19:9;;;409:33;459:19;;5266:76:6;;;;;;;;5108:249;5426:3;5420:10;5413:4;5408:3;5404:14;5397:34;4464:1039;5475:17;:15;:17::i;:::-;4407:1102::o;3784:122:3:-;3828:7;3656:66;3854:39;:45;-1:-1:-1;;;;;3854:45:3;;3784:122;-1:-1:-1;3784:122:3:o;6985:255:6:-;7032:12;7056:19;:17;:19::i;:::-;7086:25;7125:12;:8;7134:1;7125:8;7086:25;7125:12;:::i;:::-;7114:35;;;;;;;:::i;:::-;7086:63;;7159:54;7177:17;7196:9;;;;;;;;;;;;7207:5;7159:17;:54::i;:::-;-1:-1:-1;;7224:9:6;;;;;;;;;-1:-1:-1;7224:9:6;;;6985:255::o;7524:254::-;7578:12;7603:25;;7662:12;:8;7671:1;7662:8;7603:25;7662:12;:::i;:::-;7651:42;;;;;;;:::i;:::-;7602:91;;;;7703:48;7721:17;7740:4;7746;7703:17;:48::i;:::-;7762:9;;;;;;;;;;;;;;;;7524:254;:::o;6694:216::-;6743:12;6767:19;:17;:19::i;:::-;6797:16;6827:12;:8;6836:1;6827:8;6797:16;6827:12;:::i;:::-;6816:35;;;;;;;:::i;:::-;6797:54;;6861:22;6874:8;6861:12;:22::i;5860:165::-;5903:12;5927:19;:17;:19::i;:::-;5957:13;5973:11;:9;:11::i;:::-;6001:17;;;-1:-1:-1;;;;;2530:32:9;;6001:17:6;;;2512:51:9;5957:27:6;;-1:-1:-1;2485:18:9;6001:17:6;;;;;;;;;;;;5994:24;;;5860:165;:::o;6385:198::-;6437:12;6461:19;:17;:19::i;:::-;6491:22;6516:17;:15;:17::i;2322:110:4:-;2397:28;2407:17;:15;:17::i;:::-;2397:9;:28::i;8261:77:6:-;8316:9;:14;8308:23;;;;;2057:265:3;2165:29;2176:17;2165:10;:29::i;:::-;2222:1;2208:4;:11;:15;:28;;;;2227:9;2208:28;2204:112;;;2252:53;2281:17;2300:4;2252:28;:53::i;:::-;;2204:112;2057:265;;;:::o;4300:135::-;4364:35;4377:11;:9;:11::i;:::-;4364:35;;;-1:-1:-1;;;;;2804:15:9;;;2786:34;;2856:15;;;2851:2;2836:18;;2829:43;2721:18;4364:35:3;;;;;;;4409:19;4419:8;4409:9;:19::i;:::-;4300:135;:::o;1148:140:2:-;1215:12;1246:35;:33;:35::i;:::-;1239:42;;1148:140;:::o;948:895:4:-;1286:14;1283:1;1280;1267:34;1500:1;1497;1481:14;1478:1;1462:14;1455:5;1442:60;1576:16;1573:1;1570;1555:38;1614:6;1681:66;;;;1796:16;1793:1;1786:27;1681:66;1716:16;1713:1;1706:27;1771:152:3;1837:37;1856:17;1837:18;:37::i;:::-;1889:27;;-1:-1:-1;;;;;1889:27:3;;;;;;;;1771:152;:::o;6674:198:7:-;6757:12;6788:77;6809:6;6817:4;6788:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;6781:84;6674:198;-1:-1:-1;;;6674:198:7:o;3988:201:3:-;-1:-1:-1;;;;;4051:22:3;;4043:73;;;;-1:-1:-1;;;4043:73:3;;3085:2:9;4043:73:3;;;3067:21:9;3124:2;3104:18;;;3097:30;3163:34;3143:18;;;3136:62;-1:-1:-1;;;3214:18:9;;;3207:36;3260:19;;4043:73:3;2883:402:9;4043:73:3;4174:8;3656:66;4126:39;:56;;-1:-1:-1;;;;;;4126:56:3;-1:-1:-1;;;;;4126:56:3;;;;;;;;;;-1:-1:-1;3988:201:3:o;1175:140::-;1228:7;1030:66;1254:48;1859:190:8;1406:259:3;-1:-1:-1;;;;;1702:19:7;;;1479:95:3;;;;-1:-1:-1;;;1479:95:3;;3492:2:9;1479:95:3;;;3474:21:9;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:9;;;3614:43;3674:19;;1479:95:3;3290:409:9;1479:95:3;1641:17;1030:66;1584:48;1859:190:8;7058:325:7;7199:12;7224;7238:23;7265:6;-1:-1:-1;;;;;7265:19:7;7285:4;7265:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7223:67;;;;7307:69;7334:6;7342:7;7351:10;7363:12;7307:26;:69::i;:::-;7300:76;7058:325;-1:-1:-1;;;;;;7058:325:7:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;-1:-1:-1;;;;;1702:19:7;;;8113:60;;;;-1:-1:-1;;;8113:60:7;;4453:2:9;8113:60:7;;;4435:21:9;4492:2;4472:18;;;4465:30;4531:31;4511:18;;;4504:59;4580:18;;8113:60:7;4251:353:9;8113:60:7;-1:-1:-1;8208:10:7;8201:17;;7875:418;8249:33;8257:10;8269:12;8249:7;:33::i;:::-;7671:628;;;;;;:::o;8821:540::-;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;-1:-1:-1;;;9324:20:7;;;;;;;;:::i;489:331:9:-;594:9;605;647:8;635:10;632:24;629:44;;;669:1;666;659:12;629:44;698:6;688:8;685:20;682:40;;;718:1;715;708:12;682:40;-1:-1:-1;;744:23:9;;;789:25;;;;;-1:-1:-1;489:331:9:o;825:181::-;901:20;;-1:-1:-1;;;;;950:31:9;;940:42;;930:70;;996:1;993;986:12;930:70;825:181;;;:::o;1011:202::-;1078:6;1131:2;1119:9;1110:7;1106:23;1102:32;1099:52;;;1147:1;1144;1137:12;1099:52;1170:37;1197:9;1170:37;:::i;1218:127::-;1279:10;1274:3;1270:20;1267:1;1260:31;1310:4;1307:1;1300:15;1334:4;1331:1;1324:15;1350:1011;1435:6;1443;1496:2;1484:9;1475:7;1471:23;1467:32;1464:52;;;1512:1;1509;1502:12;1464:52;1535:37;1562:9;1535:37;:::i;:::-;1525:47;;1623:2;1612:9;1608:18;1595:32;1646:18;1687:2;1679:6;1676:14;1673:34;;;1703:1;1700;1693:12;1673:34;1741:6;1730:9;1726:22;1716:32;;1786:7;1779:4;1775:2;1771:13;1767:27;1757:55;;1808:1;1805;1798:12;1757:55;1844:2;1831:16;1866:2;1862;1859:10;1856:36;;;1872:18;;:::i;:::-;1947:2;1941:9;1915:2;2001:13;;-1:-1:-1;;1997:22:9;;;2021:2;1993:31;1989:40;1977:53;;;2045:18;;;2065:22;;;2042:46;2039:72;;;2091:18;;:::i;:::-;2131:10;2127:2;2120:22;2166:2;2158:6;2151:18;2206:7;2201:2;2196;2192;2188:11;2184:20;2181:33;2178:53;;;2227:1;2224;2217:12;2178:53;2283:2;2278;2274;2270:11;2265:2;2257:6;2253:15;2240:46;2328:1;2323:2;2318;2310:6;2306:15;2302:24;2295:35;2349:6;2339:16;;;;;;;1350:1011;;;;;:::o;3704:250::-;3789:1;3799:113;3813:6;3810:1;3807:13;3799:113;;;3889:11;;;3883:18;3870:11;;;3863:39;3835:2;3828:10;3799:113;;;-1:-1:-1;;3946:1:9;3928:16;;3921:27;3704:250::o;3959:287::-;4088:3;4126:6;4120:13;4142:66;4201:6;4196:3;4189:4;4181:6;4177:17;4142:66;:::i;:::-;4224:16;;;;;3959:287;-1:-1:-1;;3959:287:9:o;4609:396::-;4758:2;4747:9;4740:21;4721:4;4790:6;4784:13;4833:6;4828:2;4817:9;4813:18;4806:34;4849:79;4921:6;4916:2;4905:9;4901:18;4896:2;4888:6;4884:15;4849:79;:::i;:::-;4989:2;4968:15;-1:-1:-1;;4964:29:9;4949:45;;;;4996:2;4945:54;;4609:396;-1:-1:-1;;4609:396:9:o"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin_\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \\\"admin cannot fallback to proxy target\\\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to fully implement transparency without decoding reverts caused by selector clashes between the proxy and the implementation. WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler will not check that there are no selector conflicts, due to the note above. A selector clash between any new function and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":\"TransparentUpgradeableProxy\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol\":{\"keccak256\":\"0x3cbef5ebc24b415252e2f8c0c9254555d30d9f085603b4b80d9b5ed20ab87e90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e8fa670c3bdce78e642cc6ae11c4cb38b133499cdce5e1990a9979d424703263\",\"dweb:/ipfs/QmVxeCUk4jL2pXQyhsoNJwyU874wRufS2WvGe8TgPKPqhE\"]},\"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x1d4afe6cb24200cc4545eed814ecf5847277dfe5d613a1707aad5fceecebcfff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://383fb7b8181016ac5ccf07bc9cdb7c1b5045ea36e2cc4df52bcbf20396fc7688\",\"dweb:/ipfs/QmYJ7Cg4WmE3rR8KGQxjUCXFfTH6TcwZ2Z1f6tPrq7jHFr\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa2b22da3032e50b55f95ec1d13336102d675f341167aa76db571ef7f8bb7975d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96b6d77a20bebd4eb06b801d3d020c7e82be13bd535cb0d0a6b7181c51dab5d5\",\"dweb:/ipfs/QmPUR9Cv9jNFdQX6PtBfaBW1ZCnKwiu65R2VD5kbdanDyn\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x3b21ae06bf5957f73fa16754b0669c77b7abd8ba6c072d35c3281d446fdb86c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2db8e18505e86e02526847005d7287a33e397ed7fb9eaba3fd4a4a197add16e2\",\"dweb:/ipfs/QmW9BSuKTzHWHBNSHF4L8XfVuU1uJrP2vLg84YtBd8mL82\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol\":{\"keccak256\":\"0xc130fe33f1b2132158531a87734153293f6d07bc263ff4ac90e85da9c82c0e27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8831721b6f4cc26534d190f9f1631c3f59c9ff38efdd911f85e0882b8e360472\",\"dweb:/ipfs/QmQZnLErZNStirSQ13ZNWQgvEYUtGE5tXYwn4QUPaVUfPN\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol\":{\"keccak256\":\"0x168e36d7e616bd41f6abab4a83009da64513ae9e638aa6d5980066e2a92db689\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a45c64b97311fabbcbe8dad7e94fa89e06a7f96060d5565326ef706f5f239017\",\"dweb:/ipfs/QmeU2jiBGbHhz9DqRotjbpAx5s2xExDSRQtSD5ENjuHzDq\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol":{"Address":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122050adb19848b2f2f2ee58dad553c36580470f830a5e395162f7120690e808fcab64736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0xAD 0xB1 SWAP9 BASEFEE 0xB2 CALLCODE CALLCODE 0xEE PC 0xDA 0xD5 MSTORE8 0xC3 PUSH6 0x80470F830A5E CODECOPY MLOAD PUSH3 0xF71206 SWAP1 0xE8 ADDMOD 0xFC 0xAB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"194:9169:7:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;194:9169:7;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122050adb19848b2f2f2ee58dad553c36580470f830a5e395162f7120690e808fcab64736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP 0xAD 0xB1 SWAP9 BASEFEE 0xB2 CALLCODE CALLCODE 0xEE PC 0xDA 0xD5 MSTORE8 0xC3 PUSH6 0x80470F830A5E CODECOPY MLOAD PUSH3 0xF71206 SWAP1 0xE8 ADDMOD 0xFC 0xAB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"194:9169:7:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":\"Address\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol\":{\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931\",\"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220d45f4770ad4a102f2de03822a9ef77306e5cc2ed28748f0df2663a5272c431b264736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD4 PUSH0 SELFBALANCE PUSH17 0xAD4A102F2DE03822A9EF77306E5CC2ED28 PUSH21 0x8F0DF2663A5272C431B264736F6C63430008140033 ","sourceMap":"1420:2685:8:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1420:2685:8;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220d45f4770ad4a102f2de03822a9ef77306e5cc2ed28748f0df2663a5272c431b264736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD4 PUSH0 SELFBALANCE PUSH17 0xAD4A102F2DE03822A9EF77306E5CC2ED28 PUSH21 0x8F0DF2663A5272C431B264736F6C63430008140033 ","sourceMap":"1420:2685:8:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"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 ERC1967 implementation slot: ```solidity contract ERC1967 { bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(Address.isContract(newImplementation), \\\"ERC1967: new implementation is not a contract\\\"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ _Available since v4.9 for `string`, `bytes`._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol\":{\"keccak256\":\"0xf09e68aa0dc6722a25bc46490e8d48ed864466d17313b8a0b254c36b54e49899\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e26daf81e2252dc1fe1ce0e4b55c2eb7c6d1ee84ae6558d1a9554432ea1d32da\",\"dweb:/ipfs/Qmb1UANWiWq5pCKbmHSu772hd4nt374dVaghGmwSVNuk8Q\"]}},\"version\":1}"}}},"sources":{"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol","exportedSymbols":{"IERC1967":[20]},"id":21,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1967","contractDependencies":[],"contractKind":"interface","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"132:133:0","text":" @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n _Available since v4.8.3._"},"fullyImplemented":true,"id":20,"linearizedBaseContracts":[20],"name":"IERC1967","nameLocation":"276:8:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"291:68:0","text":" @dev Emitted when the implementation is upgraded."},"eventSelector":"bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b","id":7,"name":"Upgraded","nameLocation":"370:8:0","nodeType":"EventDefinition","parameters":{"id":6,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"indexed":true,"mutability":"mutable","name":"implementation","nameLocation":"395:14:0","nodeType":"VariableDeclaration","scope":7,"src":"379:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4,"name":"address","nodeType":"ElementaryTypeName","src":"379:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"378:32:0"},"src":"364:47:0"},{"anonymous":false,"documentation":{"id":8,"nodeType":"StructuredDocumentation","src":"417:67:0","text":" @dev Emitted when the admin account has changed."},"eventSelector":"7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f","id":14,"name":"AdminChanged","nameLocation":"495:12:0","nodeType":"EventDefinition","parameters":{"id":13,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10,"indexed":false,"mutability":"mutable","name":"previousAdmin","nameLocation":"516:13:0","nodeType":"VariableDeclaration","scope":14,"src":"508:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9,"name":"address","nodeType":"ElementaryTypeName","src":"508:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12,"indexed":false,"mutability":"mutable","name":"newAdmin","nameLocation":"539:8:0","nodeType":"VariableDeclaration","scope":14,"src":"531:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11,"name":"address","nodeType":"ElementaryTypeName","src":"531:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"507:41:0"},"src":"489:60:0"},{"anonymous":false,"documentation":{"id":15,"nodeType":"StructuredDocumentation","src":"555:59:0","text":" @dev Emitted when the beacon is changed."},"eventSelector":"1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e","id":19,"name":"BeaconUpgraded","nameLocation":"625:14:0","nodeType":"EventDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17,"indexed":true,"mutability":"mutable","name":"beacon","nameLocation":"656:6:0","nodeType":"VariableDeclaration","scope":19,"src":"640:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16,"name":"address","nodeType":"ElementaryTypeName","src":"640:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"639:24:0"},"src":"619:45:0"}],"scope":21,"src":"266:400:0","usedErrors":[],"usedEvents":[7,14,19]}],"src":"107:560:0"},"id":0},"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol","exportedSymbols":{"IERC1822Proxiable":[30]},"id":31,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"113:23:1"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1822Proxiable","contractDependencies":[],"contractKind":"interface","documentation":{"id":23,"nodeType":"StructuredDocumentation","src":"138:203:1","text":" @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n proxy whose upgrades are fully controlled by the current implementation."},"fullyImplemented":false,"id":30,"linearizedBaseContracts":[30],"name":"IERC1822Proxiable","nameLocation":"352:17:1","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":24,"nodeType":"StructuredDocumentation","src":"376:438:1","text":" @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n address.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy."},"functionSelector":"52d1902d","id":29,"implemented":false,"kind":"function","modifiers":[],"name":"proxiableUUID","nameLocation":"828:13:1","nodeType":"FunctionDefinition","parameters":{"id":25,"nodeType":"ParameterList","parameters":[],"src":"841:2:1"},"returnParameters":{"id":28,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":29,"src":"867:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26,"name":"bytes32","nodeType":"ElementaryTypeName","src":"867:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"866:9:1"},"scope":30,"src":"819:57:1","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":31,"src":"342:536:1","usedErrors":[],"usedEvents":[]}],"src":"113:766:1"},"id":1},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol","exportedSymbols":{"Address":[1086],"ERC1967Proxy":[67],"ERC1967Upgrade":[371],"IBeacon":[433],"IERC1822Proxiable":[30],"IERC1967":[20],"Proxy":[423],"StorageSlot":[1196]},"id":68,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":32,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"114:23:2"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol","file":"../Proxy.sol","id":33,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":68,"sourceUnit":424,"src":"139:22:2","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol","file":"./ERC1967Upgrade.sol","id":34,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":68,"sourceUnit":372,"src":"162:30:2","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":36,"name":"Proxy","nameLocations":["592:5:2"],"nodeType":"IdentifierPath","referencedDeclaration":423,"src":"592:5:2"},"id":37,"nodeType":"InheritanceSpecifier","src":"592:5:2"},{"baseName":{"id":38,"name":"ERC1967Upgrade","nameLocations":["599:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":371,"src":"599:14:2"},"id":39,"nodeType":"InheritanceSpecifier","src":"599:14:2"}],"canonicalName":"ERC1967Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":35,"nodeType":"StructuredDocumentation","src":"194:372:2","text":" @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n implementation address that can be changed. This address is stored in storage in the location specified by\n https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the\n implementation behind the proxy."},"fullyImplemented":true,"id":67,"linearizedBaseContracts":[67,371,20,423],"name":"ERC1967Proxy","nameLocation":"576:12:2","nodeType":"ContractDefinition","nodes":[{"body":{"id":53,"nodeType":"Block","src":"1014:56:2","statements":[{"expression":{"arguments":[{"id":48,"name":"_logic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":42,"src":"1042:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":49,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1050:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"66616c7365","id":50,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1057:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":47,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":166,"src":"1024:17:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":51,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1024:39:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":52,"nodeType":"ExpressionStatement","src":"1024:39:2"}]},"documentation":{"id":40,"nodeType":"StructuredDocumentation","src":"620:333:2","text":" @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.\n If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded\n function call, and allows initializing the storage of the proxy like a Solidity constructor."},"id":54,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":45,"nodeType":"ParameterList","parameters":[{"constant":false,"id":42,"mutability":"mutable","name":"_logic","nameLocation":"978:6:2","nodeType":"VariableDeclaration","scope":54,"src":"970:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":41,"name":"address","nodeType":"ElementaryTypeName","src":"970:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":44,"mutability":"mutable","name":"_data","nameLocation":"999:5:2","nodeType":"VariableDeclaration","scope":54,"src":"986:18:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":43,"name":"bytes","nodeType":"ElementaryTypeName","src":"986:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"969:36:2"},"returnParameters":{"id":46,"nodeType":"ParameterList","parameters":[],"src":"1014:0:2"},"scope":67,"src":"958:112:2","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[388],"body":{"id":65,"nodeType":"Block","src":"1229:59:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":61,"name":"ERC1967Upgrade","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":371,"src":"1246:14:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Upgrade_$371_$","typeString":"type(contract ERC1967Upgrade)"}},"id":62,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1261:18:2","memberName":"_getImplementation","nodeType":"MemberAccess","referencedDeclaration":97,"src":"1246:33:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":63,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1246:35:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":60,"id":64,"nodeType":"Return","src":"1239:42:2"}]},"documentation":{"id":55,"nodeType":"StructuredDocumentation","src":"1076:67:2","text":" @dev Returns the current implementation address."},"id":66,"implemented":true,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"1157:15:2","nodeType":"FunctionDefinition","overrides":{"id":57,"nodeType":"OverrideSpecifier","overrides":[],"src":"1197:8:2"},"parameters":{"id":56,"nodeType":"ParameterList","parameters":[],"src":"1172:2:2"},"returnParameters":{"id":60,"nodeType":"ParameterList","parameters":[{"constant":false,"id":59,"mutability":"mutable","name":"impl","nameLocation":"1223:4:2","nodeType":"VariableDeclaration","scope":66,"src":"1215:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":58,"name":"address","nodeType":"ElementaryTypeName","src":"1215:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1214:14:2"},"scope":67,"src":"1148:140:2","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":68,"src":"567:723:2","usedErrors":[],"usedEvents":[7,14,19]}],"src":"114:1177:2"},"id":2},"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol","exportedSymbols":{"Address":[1086],"ERC1967Upgrade":[371],"IBeacon":[433],"IERC1822Proxiable":[30],"IERC1967":[20],"StorageSlot":[1196]},"id":372,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":69,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"116:23:3"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol","file":"../beacon/IBeacon.sol","id":70,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":372,"sourceUnit":434,"src":"141:31:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol","file":"../../interfaces/IERC1967.sol","id":71,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":372,"sourceUnit":21,"src":"173:39:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol","file":"../../interfaces/draft-IERC1822.sol","id":72,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":372,"sourceUnit":31,"src":"213:45:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol","file":"../../utils/Address.sol","id":73,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":372,"sourceUnit":1087,"src":"259:33:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol","file":"../../utils/StorageSlot.sol","id":74,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":372,"sourceUnit":1197,"src":"293:37:3","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":76,"name":"IERC1967","nameLocations":["553:8:3"],"nodeType":"IdentifierPath","referencedDeclaration":20,"src":"553:8:3"},"id":77,"nodeType":"InheritanceSpecifier","src":"553:8:3"}],"canonicalName":"ERC1967Upgrade","contractDependencies":[],"contractKind":"contract","documentation":{"id":75,"nodeType":"StructuredDocumentation","src":"332:184:3","text":" @dev This abstract contract provides getters and event emitting update functions for\n https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n _Available since v4.1._"},"fullyImplemented":true,"id":371,"linearizedBaseContracts":[371,20],"name":"ERC1967Upgrade","nameLocation":"535:14:3","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":80,"mutability":"constant","name":"_ROLLBACK_SLOT","nameLocation":"672:14:3","nodeType":"VariableDeclaration","scope":371,"src":"647:108:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":78,"name":"bytes32","nodeType":"ElementaryTypeName","src":"647:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307834393130666466613136666564333236306564306537313437663763633664613131613630323038623562393430366431326136333536313466666439313433","id":79,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"689:66:3","typeDescriptions":{"typeIdentifier":"t_rational_33048860383849004559742813297059419343339852917517107368639918720169455489347_by_1","typeString":"int_const 3304...(69 digits omitted)...9347"},"value":"0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143"},"visibility":"private"},{"constant":true,"documentation":{"id":81,"nodeType":"StructuredDocumentation","src":"762:214:3","text":" @dev Storage slot with the address of the current implementation.\n This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n validated in the constructor."},"id":84,"mutability":"constant","name":"_IMPLEMENTATION_SLOT","nameLocation":"1007:20:3","nodeType":"VariableDeclaration","scope":371,"src":"981:115:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":82,"name":"bytes32","nodeType":"ElementaryTypeName","src":"981:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307833363038393461313362613161333231303636376338323834393264623938646361336532303736636333373335613932306133636135303564333832626263","id":83,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1030:66:3","typeDescriptions":{"typeIdentifier":"t_rational_24440054405305269366569402256811496959409073762505157381672968839269610695612_by_1","typeString":"int_const 2444...(69 digits omitted)...5612"},"value":"0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc"},"visibility":"internal"},{"body":{"id":96,"nodeType":"Block","src":"1237:78:3","statements":[{"expression":{"expression":{"arguments":[{"id":92,"name":"_IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":84,"src":"1281:20:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":90,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"1254:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":91,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1266:14:3","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1118,"src":"1254:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1092_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":93,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1254:48:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":94,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1303:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1091,"src":"1254:54:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":89,"id":95,"nodeType":"Return","src":"1247:61:3"}]},"documentation":{"id":85,"nodeType":"StructuredDocumentation","src":"1103:67:3","text":" @dev Returns the current implementation address."},"id":97,"implemented":true,"kind":"function","modifiers":[],"name":"_getImplementation","nameLocation":"1184:18:3","nodeType":"FunctionDefinition","parameters":{"id":86,"nodeType":"ParameterList","parameters":[],"src":"1202:2:3"},"returnParameters":{"id":89,"nodeType":"ParameterList","parameters":[{"constant":false,"id":88,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":97,"src":"1228:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":87,"name":"address","nodeType":"ElementaryTypeName","src":"1228:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1227:9:3"},"scope":371,"src":"1175:140:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":120,"nodeType":"Block","src":"1469:196:3","statements":[{"expression":{"arguments":[{"arguments":[{"id":106,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":100,"src":"1506:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":104,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"1487:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1086_$","typeString":"type(library Address)"}},"id":105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1495:10:3","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":774,"src":"1487:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1487:37:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a206e657720696d706c656d656e746174696f6e206973206e6f74206120636f6e7472616374","id":108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1526:47:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65","typeString":"literal_string \"ERC1967: new implementation is not a contract\""},"value":"ERC1967: new implementation is not a contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65","typeString":"literal_string \"ERC1967: new implementation is not a contract\""}],"id":103,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1479:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1479:95:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":110,"nodeType":"ExpressionStatement","src":"1479:95:3"},{"expression":{"id":118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":114,"name":"_IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":84,"src":"1611:20:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":111,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"1584:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1596:14:3","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1118,"src":"1584:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1092_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":115,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1584:48:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":116,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1633:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1091,"src":"1584:54:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":117,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":100,"src":"1641:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1584:74:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":119,"nodeType":"ExpressionStatement","src":"1584:74:3"}]},"documentation":{"id":98,"nodeType":"StructuredDocumentation","src":"1321:80:3","text":" @dev Stores a new address in the EIP1967 implementation slot."},"id":121,"implemented":true,"kind":"function","modifiers":[],"name":"_setImplementation","nameLocation":"1415:18:3","nodeType":"FunctionDefinition","parameters":{"id":101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":100,"mutability":"mutable","name":"newImplementation","nameLocation":"1442:17:3","nodeType":"VariableDeclaration","scope":121,"src":"1434:25:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":99,"name":"address","nodeType":"ElementaryTypeName","src":"1434:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1433:27:3"},"returnParameters":{"id":102,"nodeType":"ParameterList","parameters":[],"src":"1469:0:3"},"scope":371,"src":"1406:259:3","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":135,"nodeType":"Block","src":"1827:96:3","statements":[{"expression":{"arguments":[{"id":128,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"1856:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":127,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":121,"src":"1837:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1837:37:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":130,"nodeType":"ExpressionStatement","src":"1837:37:3"},{"eventCall":{"arguments":[{"id":132,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"1898:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":131,"name":"Upgraded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"1889:8:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1889:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":134,"nodeType":"EmitStatement","src":"1884:32:3"}]},"documentation":{"id":122,"nodeType":"StructuredDocumentation","src":"1671:95:3","text":" @dev Perform implementation upgrade\n Emits an {Upgraded} event."},"id":136,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeTo","nameLocation":"1780:10:3","nodeType":"FunctionDefinition","parameters":{"id":125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":124,"mutability":"mutable","name":"newImplementation","nameLocation":"1799:17:3","nodeType":"VariableDeclaration","scope":136,"src":"1791:25:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":123,"name":"address","nodeType":"ElementaryTypeName","src":"1791:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1790:27:3"},"returnParameters":{"id":126,"nodeType":"ParameterList","parameters":[],"src":"1827:0:3"},"scope":371,"src":"1771:152:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":165,"nodeType":"Block","src":"2155:167:3","statements":[{"expression":{"arguments":[{"id":147,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":139,"src":"2176:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":146,"name":"_upgradeTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":136,"src":"2165:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2165:29:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":149,"nodeType":"ExpressionStatement","src":"2165:29:3"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":150,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":141,"src":"2208:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2213:6:3","memberName":"length","nodeType":"MemberAccess","src":"2208:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2222:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2208:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":154,"name":"forceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":143,"src":"2227:9:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2208:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":164,"nodeType":"IfStatement","src":"2204:112:3","trueBody":{"id":163,"nodeType":"Block","src":"2238:78:3","statements":[{"expression":{"arguments":[{"id":159,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":139,"src":"2281:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":160,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":141,"src":"2300:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":156,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"2252:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1086_$","typeString":"type(library Address)"}},"id":158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2260:20:3","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":973,"src":"2252:28:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2252:53:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":162,"nodeType":"ExpressionStatement","src":"2252:53:3"}]}}]},"documentation":{"id":137,"nodeType":"StructuredDocumentation","src":"1929:123:3","text":" @dev Perform implementation upgrade with additional setup call.\n Emits an {Upgraded} event."},"id":166,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCall","nameLocation":"2066:17:3","nodeType":"FunctionDefinition","parameters":{"id":144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":139,"mutability":"mutable","name":"newImplementation","nameLocation":"2092:17:3","nodeType":"VariableDeclaration","scope":166,"src":"2084:25:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":138,"name":"address","nodeType":"ElementaryTypeName","src":"2084:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":141,"mutability":"mutable","name":"data","nameLocation":"2124:4:3","nodeType":"VariableDeclaration","scope":166,"src":"2111:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":140,"name":"bytes","nodeType":"ElementaryTypeName","src":"2111:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":143,"mutability":"mutable","name":"forceCall","nameLocation":"2135:9:3","nodeType":"VariableDeclaration","scope":166,"src":"2130:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":142,"name":"bool","nodeType":"ElementaryTypeName","src":"2130:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2083:62:3"},"returnParameters":{"id":145,"nodeType":"ParameterList","parameters":[],"src":"2155:0:3"},"scope":371,"src":"2057:265:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":218,"nodeType":"Block","src":"2596:820:3","statements":[{"condition":{"expression":{"arguments":[{"id":178,"name":"_ROLLBACK_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"2937:14:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":176,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"2910:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2922:14:3","memberName":"getBooleanSlot","nodeType":"MemberAccess","referencedDeclaration":1129,"src":"2910:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_BooleanSlot_$1095_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.BooleanSlot storage pointer)"}},"id":179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2910:42:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1095_storage_ptr","typeString":"struct StorageSlot.BooleanSlot storage pointer"}},"id":180,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2953:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1094,"src":"2910:48:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":216,"nodeType":"Block","src":"3028:382:3","statements":[{"clauses":[{"block":{"id":201,"nodeType":"Block","src":"3122:115:3","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":195,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"3148:4:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":196,"name":"_IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":84,"src":"3156:20:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3148:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524331393637557067726164653a20756e737570706f727465642070726f786961626c6555554944","id":198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3178:43:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_76b6b6debfc5febf101145a79ecf0b0d2e89e397dfdab2bca99888370411152c","typeString":"literal_string \"ERC1967Upgrade: unsupported proxiableUUID\""},"value":"ERC1967Upgrade: unsupported proxiableUUID"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_76b6b6debfc5febf101145a79ecf0b0d2e89e397dfdab2bca99888370411152c","typeString":"literal_string \"ERC1967Upgrade: unsupported proxiableUUID\""}],"id":194,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3140:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3140:82:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":200,"nodeType":"ExpressionStatement","src":"3140:82:3"}]},"errorName":"","id":202,"nodeType":"TryCatchClause","parameters":{"id":193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"slot","nameLocation":"3116:4:3","nodeType":"VariableDeclaration","scope":202,"src":"3108:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3108:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3107:14:3"},"src":"3099:138:3"},{"block":{"id":207,"nodeType":"Block","src":"3244:89:3","statements":[{"expression":{"arguments":[{"hexValue":"45524331393637557067726164653a206e657720696d706c656d656e746174696f6e206973206e6f742055555053","id":204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3269:48:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_8e8e2fbcb586f700b5b14e2c4a650c8d83b9773c31c5fe8962070ea544e11f24","typeString":"literal_string \"ERC1967Upgrade: new implementation is not UUPS\""},"value":"ERC1967Upgrade: new implementation is not UUPS"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8e8e2fbcb586f700b5b14e2c4a650c8d83b9773c31c5fe8962070ea544e11f24","typeString":"literal_string \"ERC1967Upgrade: new implementation is not UUPS\""}],"id":203,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3262:6:3","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3262:56:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":206,"nodeType":"ExpressionStatement","src":"3262:56:3"}]},"errorName":"","id":208,"nodeType":"TryCatchClause","src":"3238:95:3"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":187,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"3064:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":186,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30,"src":"3046:17:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1822Proxiable_$30_$","typeString":"type(contract IERC1822Proxiable)"}},"id":188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:36:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1822Proxiable_$30","typeString":"contract IERC1822Proxiable"}},"id":189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3083:13:3","memberName":"proxiableUUID","nodeType":"MemberAccess","referencedDeclaration":29,"src":"3046:50:3","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes32_$","typeString":"function () view external returns (bytes32)"}},"id":190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:52:3","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":209,"nodeType":"TryStatement","src":"3042:291:3"},{"expression":{"arguments":[{"id":211,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"3364:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":212,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"3383:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":213,"name":"forceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":173,"src":"3389:9:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":210,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":166,"src":"3346:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3346:53:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":215,"nodeType":"ExpressionStatement","src":"3346:53:3"}]},"id":217,"nodeType":"IfStatement","src":"2906:504:3","trueBody":{"id":185,"nodeType":"Block","src":"2960:62:3","statements":[{"expression":{"arguments":[{"id":182,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"2993:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":181,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":121,"src":"2974:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2974:37:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":184,"nodeType":"ExpressionStatement","src":"2974:37:3"}]}}]},"documentation":{"id":167,"nodeType":"StructuredDocumentation","src":"2328:161:3","text":" @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n Emits an {Upgraded} event."},"id":219,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCallUUPS","nameLocation":"2503:21:3","nodeType":"FunctionDefinition","parameters":{"id":174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":169,"mutability":"mutable","name":"newImplementation","nameLocation":"2533:17:3","nodeType":"VariableDeclaration","scope":219,"src":"2525:25:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":168,"name":"address","nodeType":"ElementaryTypeName","src":"2525:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":171,"mutability":"mutable","name":"data","nameLocation":"2565:4:3","nodeType":"VariableDeclaration","scope":219,"src":"2552:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":170,"name":"bytes","nodeType":"ElementaryTypeName","src":"2552:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":173,"mutability":"mutable","name":"forceCall","nameLocation":"2576:9:3","nodeType":"VariableDeclaration","scope":219,"src":"2571:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":172,"name":"bool","nodeType":"ElementaryTypeName","src":"2571:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2524:62:3"},"returnParameters":{"id":175,"nodeType":"ParameterList","parameters":[],"src":"2596:0:3"},"scope":371,"src":"2494:922:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":220,"nodeType":"StructuredDocumentation","src":"3422:189:3","text":" @dev Storage slot with the admin of the contract.\n This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n validated in the constructor."},"id":223,"mutability":"constant","name":"_ADMIN_SLOT","nameLocation":"3642:11:3","nodeType":"VariableDeclaration","scope":371,"src":"3616:106:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":221,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3616:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307862353331323736383461353638623331373361653133623966386136303136653234336536336236653865653131373864366137313738353062356436313033","id":222,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3656:66:3","typeDescriptions":{"typeIdentifier":"t_rational_81955473079516046949633743016697847541294818689821282749996681496272635257091_by_1","typeString":"int_const 8195...(69 digits omitted)...7091"},"value":"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103"},"visibility":"internal"},{"body":{"id":235,"nodeType":"Block","src":"3837:69:3","statements":[{"expression":{"expression":{"arguments":[{"id":231,"name":"_ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":223,"src":"3881:11:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":229,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"3854:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3866:14:3","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1118,"src":"3854:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1092_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3854:39:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3894:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1091,"src":"3854:45:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":228,"id":234,"nodeType":"Return","src":"3847:52:3"}]},"documentation":{"id":224,"nodeType":"StructuredDocumentation","src":"3729:50:3","text":" @dev Returns the current admin."},"id":236,"implemented":true,"kind":"function","modifiers":[],"name":"_getAdmin","nameLocation":"3793:9:3","nodeType":"FunctionDefinition","parameters":{"id":225,"nodeType":"ParameterList","parameters":[],"src":"3802:2:3"},"returnParameters":{"id":228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":236,"src":"3828:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":226,"name":"address","nodeType":"ElementaryTypeName","src":"3828:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3827:9:3"},"scope":371,"src":"3784:122:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":261,"nodeType":"Block","src":"4033:156:3","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":243,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":239,"src":"4051:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4071: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":245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4063:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":244,"name":"address","nodeType":"ElementaryTypeName","src":"4063:7:3","typeDescriptions":{}}},"id":247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4063:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4051:22:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a206e65772061646d696e20697320746865207a65726f2061646472657373","id":249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4075:40:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5","typeString":"literal_string \"ERC1967: new admin is the zero address\""},"value":"ERC1967: new admin is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5","typeString":"literal_string \"ERC1967: new admin is the zero address\""}],"id":242,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4043:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4043:73:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":251,"nodeType":"ExpressionStatement","src":"4043:73:3"},{"expression":{"id":259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":255,"name":"_ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":223,"src":"4153:11:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":252,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"4126:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4138:14:3","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1118,"src":"4126:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1092_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4126:39:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":257,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4166:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1091,"src":"4126:45:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":258,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":239,"src":"4174:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4126:56:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":260,"nodeType":"ExpressionStatement","src":"4126:56:3"}]},"documentation":{"id":237,"nodeType":"StructuredDocumentation","src":"3912:71:3","text":" @dev Stores a new address in the EIP1967 admin slot."},"id":262,"implemented":true,"kind":"function","modifiers":[],"name":"_setAdmin","nameLocation":"3997:9:3","nodeType":"FunctionDefinition","parameters":{"id":240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":239,"mutability":"mutable","name":"newAdmin","nameLocation":"4015:8:3","nodeType":"VariableDeclaration","scope":262,"src":"4007:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":238,"name":"address","nodeType":"ElementaryTypeName","src":"4007:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4006:18:3"},"returnParameters":{"id":241,"nodeType":"ParameterList","parameters":[],"src":"4033:0:3"},"scope":371,"src":"3988:201:3","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":278,"nodeType":"Block","src":"4349:86:3","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":269,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":236,"src":"4377:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4377:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":271,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":265,"src":"4390:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":268,"name":"AdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14,"src":"4364:12:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4364:35:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":273,"nodeType":"EmitStatement","src":"4359:40:3"},{"expression":{"arguments":[{"id":275,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":265,"src":"4419:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":274,"name":"_setAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":262,"src":"4409:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4409:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":277,"nodeType":"ExpressionStatement","src":"4409:19:3"}]},"documentation":{"id":263,"nodeType":"StructuredDocumentation","src":"4195:100:3","text":" @dev Changes the admin of the proxy.\n Emits an {AdminChanged} event."},"id":279,"implemented":true,"kind":"function","modifiers":[],"name":"_changeAdmin","nameLocation":"4309:12:3","nodeType":"FunctionDefinition","parameters":{"id":266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":265,"mutability":"mutable","name":"newAdmin","nameLocation":"4330:8:3","nodeType":"VariableDeclaration","scope":279,"src":"4322:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":264,"name":"address","nodeType":"ElementaryTypeName","src":"4322:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4321:18:3"},"returnParameters":{"id":267,"nodeType":"ParameterList","parameters":[],"src":"4349:0:3"},"scope":371,"src":"4300:135:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":280,"nodeType":"StructuredDocumentation","src":"4441:232:3","text":" @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor."},"id":283,"mutability":"constant","name":"_BEACON_SLOT","nameLocation":"4704:12:3","nodeType":"VariableDeclaration","scope":371,"src":"4678:107:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":281,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4678:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861336630616437346535343233616562666438306433656634333436353738333335613961373261656165653539666636636233353832623335313333643530","id":282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4719:66:3","typeDescriptions":{"typeIdentifier":"t_rational_74152234768234802001998023604048924213078445070507226371336425913862612794704_by_1","typeString":"int_const 7415...(69 digits omitted)...4704"},"value":"0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50"},"visibility":"internal"},{"body":{"id":295,"nodeType":"Block","src":"4902:70:3","statements":[{"expression":{"expression":{"arguments":[{"id":291,"name":"_BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":283,"src":"4946:12:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":289,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"4919:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4931:14:3","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1118,"src":"4919:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1092_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:40:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":293,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4960:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1091,"src":"4919:46:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":288,"id":294,"nodeType":"Return","src":"4912:53:3"}]},"documentation":{"id":284,"nodeType":"StructuredDocumentation","src":"4792:51:3","text":" @dev Returns the current beacon."},"id":296,"implemented":true,"kind":"function","modifiers":[],"name":"_getBeacon","nameLocation":"4857:10:3","nodeType":"FunctionDefinition","parameters":{"id":285,"nodeType":"ParameterList","parameters":[],"src":"4867:2:3"},"returnParameters":{"id":288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":287,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":296,"src":"4893:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":286,"name":"address","nodeType":"ElementaryTypeName","src":"4893:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4892:9:3"},"scope":371,"src":"4848:124:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":331,"nodeType":"Block","src":"5101:324:3","statements":[{"expression":{"arguments":[{"arguments":[{"id":305,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"5138:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":303,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5119:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1086_$","typeString":"type(library Address)"}},"id":304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5127:10:3","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":774,"src":"5119:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5119:29:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a206e657720626561636f6e206973206e6f74206120636f6e7472616374","id":307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5150:39:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_9589b7809634e4928033de18bb696e9af4ef71b703652af5245f2dbebf2f4470","typeString":"literal_string \"ERC1967: new beacon is not a contract\""},"value":"ERC1967: new beacon is not a contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9589b7809634e4928033de18bb696e9af4ef71b703652af5245f2dbebf2f4470","typeString":"literal_string \"ERC1967: new beacon is not a contract\""}],"id":302,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5111:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5111:79:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":309,"nodeType":"ExpressionStatement","src":"5111:79:3"},{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":314,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"5248:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":313,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":433,"src":"5240:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$433_$","typeString":"type(contract IBeacon)"}},"id":315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5240:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$433","typeString":"contract IBeacon"}},"id":316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5259:14:3","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":432,"src":"5240:33:3","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5240:35:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":311,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5221:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1086_$","typeString":"type(library Address)"}},"id":312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5229:10:3","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":774,"src":"5221:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5221:55:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"455243313936373a20626561636f6e20696d706c656d656e746174696f6e206973206e6f74206120636f6e7472616374","id":319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5290:50:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_f95fd1f5b5578816eb23f6ca0f2439b4b5e4094dc16e99c3b8e91603a83f93c8","typeString":"literal_string \"ERC1967: beacon implementation is not a contract\""},"value":"ERC1967: beacon implementation is not a contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f95fd1f5b5578816eb23f6ca0f2439b4b5e4094dc16e99c3b8e91603a83f93c8","typeString":"literal_string \"ERC1967: beacon implementation is not a contract\""}],"id":310,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5200:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5200:150:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":321,"nodeType":"ExpressionStatement","src":"5200:150:3"},{"expression":{"id":329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":325,"name":"_BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":283,"src":"5387:12:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":322,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"5360:11:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$1196_$","typeString":"type(library StorageSlot)"}},"id":324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5372:14:3","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":1118,"src":"5360:26:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$1092_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5360:40:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":327,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5401:5:3","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1091,"src":"5360:46:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":328,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":299,"src":"5409:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5360:58:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":330,"nodeType":"ExpressionStatement","src":"5360:58:3"}]},"documentation":{"id":297,"nodeType":"StructuredDocumentation","src":"4978:71:3","text":" @dev Stores a new beacon in the EIP1967 beacon slot."},"id":332,"implemented":true,"kind":"function","modifiers":[],"name":"_setBeacon","nameLocation":"5063:10:3","nodeType":"FunctionDefinition","parameters":{"id":300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":299,"mutability":"mutable","name":"newBeacon","nameLocation":"5082:9:3","nodeType":"VariableDeclaration","scope":332,"src":"5074:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":298,"name":"address","nodeType":"ElementaryTypeName","src":"5074:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5073:19:3"},"returnParameters":{"id":301,"nodeType":"ParameterList","parameters":[],"src":"5101:0:3"},"scope":371,"src":"5054:371:3","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":369,"nodeType":"Block","src":"5824:217:3","statements":[{"expression":{"arguments":[{"id":343,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":335,"src":"5845:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":342,"name":"_setBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":332,"src":"5834:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5834:21:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":345,"nodeType":"ExpressionStatement","src":"5834:21:3"},{"eventCall":{"arguments":[{"id":347,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":335,"src":"5885:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":346,"name":"BeaconUpgraded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19,"src":"5870:14:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5870:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":349,"nodeType":"EmitStatement","src":"5865:30:3"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":350,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":337,"src":"5909:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5914:6:3","memberName":"length","nodeType":"MemberAccess","src":"5909:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5923:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5909:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":354,"name":"forceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":339,"src":"5928:9:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5909:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":368,"nodeType":"IfStatement","src":"5905:130:3","trueBody":{"id":367,"nodeType":"Block","src":"5939:96:3","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":360,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":335,"src":"5990:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":359,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":433,"src":"5982:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$433_$","typeString":"type(contract IBeacon)"}},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5982:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$433","typeString":"contract IBeacon"}},"id":362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6001:14:3","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":432,"src":"5982:33:3","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5982:35:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":364,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":337,"src":"6019:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":356,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5953:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$1086_$","typeString":"type(library Address)"}},"id":358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5961:20:3","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":973,"src":"5953:28:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5953:71:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":366,"nodeType":"ExpressionStatement","src":"5953:71:3"}]}}]},"documentation":{"id":333,"nodeType":"StructuredDocumentation","src":"5431:292:3","text":" @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n Emits a {BeaconUpgraded} event."},"id":370,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeBeaconToAndCall","nameLocation":"5737:23:3","nodeType":"FunctionDefinition","parameters":{"id":340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":335,"mutability":"mutable","name":"newBeacon","nameLocation":"5769:9:3","nodeType":"VariableDeclaration","scope":370,"src":"5761:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":334,"name":"address","nodeType":"ElementaryTypeName","src":"5761:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":337,"mutability":"mutable","name":"data","nameLocation":"5793:4:3","nodeType":"VariableDeclaration","scope":370,"src":"5780:17:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":336,"name":"bytes","nodeType":"ElementaryTypeName","src":"5780:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":339,"mutability":"mutable","name":"forceCall","nameLocation":"5804:9:3","nodeType":"VariableDeclaration","scope":370,"src":"5799:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":338,"name":"bool","nodeType":"ElementaryTypeName","src":"5799:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5760:54:3"},"returnParameters":{"id":341,"nodeType":"ParameterList","parameters":[],"src":"5824:0:3"},"scope":371,"src":"5728:313:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":372,"src":"517:5526:3","usedErrors":[],"usedEvents":[7,14,19]}],"src":"116:5928:3"},"id":3},"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol","exportedSymbols":{"Proxy":[423]},"id":424,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":373,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"99:23:4"},{"abstract":true,"baseContracts":[],"canonicalName":"Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":374,"nodeType":"StructuredDocumentation","src":"124:598:4","text":" @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n be specified by overriding the virtual {_implementation} function.\n Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n different contract through the {_delegate} function.\n The success and return data of the delegated call will be returned back to the caller of the proxy."},"fullyImplemented":false,"id":423,"linearizedBaseContracts":[423],"name":"Proxy","nameLocation":"741:5:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":381,"nodeType":"Block","src":"1008:835:4","statements":[{"AST":{"nodeType":"YulBlock","src":"1027:810:4","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1280:1:4","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1283:1:4","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"1286:12:4"},"nodeType":"YulFunctionCall","src":"1286:14:4"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"1267:12:4"},"nodeType":"YulFunctionCall","src":"1267:34:4"},"nodeType":"YulExpressionStatement","src":"1267:34:4"},{"nodeType":"YulVariableDeclaration","src":"1428:74:4","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"1455:3:4"},"nodeType":"YulFunctionCall","src":"1455:5:4"},{"name":"implementation","nodeType":"YulIdentifier","src":"1462:14:4"},{"kind":"number","nodeType":"YulLiteral","src":"1478:1:4","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"1481:12:4"},"nodeType":"YulFunctionCall","src":"1481:14:4"},{"kind":"number","nodeType":"YulLiteral","src":"1497:1:4","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1500:1:4","type":"","value":"0"}],"functionName":{"name":"delegatecall","nodeType":"YulIdentifier","src":"1442:12:4"},"nodeType":"YulFunctionCall","src":"1442:60:4"},"variables":[{"name":"result","nodeType":"YulTypedName","src":"1432:6:4","type":""}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1570:1:4","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1573:1:4","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"1576:14:4"},"nodeType":"YulFunctionCall","src":"1576:16:4"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"1555:14:4"},"nodeType":"YulFunctionCall","src":"1555:38:4"},"nodeType":"YulExpressionStatement","src":"1555:38:4"},{"cases":[{"body":{"nodeType":"YulBlock","src":"1688:59:4","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1713:1:4","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"1716:14:4"},"nodeType":"YulFunctionCall","src":"1716:16:4"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1706:6:4"},"nodeType":"YulFunctionCall","src":"1706:27:4"},"nodeType":"YulExpressionStatement","src":"1706:27:4"}]},"nodeType":"YulCase","src":"1681:66:4","value":{"kind":"number","nodeType":"YulLiteral","src":"1686:1:4","type":"","value":"0"}},{"body":{"nodeType":"YulBlock","src":"1768:59:4","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1793:1:4","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"1796:14:4"},"nodeType":"YulFunctionCall","src":"1796:16:4"}],"functionName":{"name":"return","nodeType":"YulIdentifier","src":"1786:6:4"},"nodeType":"YulFunctionCall","src":"1786:27:4"},"nodeType":"YulExpressionStatement","src":"1786:27:4"}]},"nodeType":"YulCase","src":"1760:67:4","value":"default"}],"expression":{"name":"result","nodeType":"YulIdentifier","src":"1614:6:4"},"nodeType":"YulSwitch","src":"1607:220:4"}]},"evmVersion":"shanghai","externalReferences":[{"declaration":377,"isOffset":false,"isSlot":false,"src":"1462:14:4","valueSize":1}],"id":380,"nodeType":"InlineAssembly","src":"1018:819:4"}]},"documentation":{"id":375,"nodeType":"StructuredDocumentation","src":"753:190:4","text":" @dev Delegates the current call to `implementation`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":382,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"957:9:4","nodeType":"FunctionDefinition","parameters":{"id":378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":377,"mutability":"mutable","name":"implementation","nameLocation":"975:14:4","nodeType":"VariableDeclaration","scope":382,"src":"967:22:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":376,"name":"address","nodeType":"ElementaryTypeName","src":"967:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"966:24:4"},"returnParameters":{"id":379,"nodeType":"ParameterList","parameters":[],"src":"1008:0:4"},"scope":423,"src":"948:895:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":383,"nodeType":"StructuredDocumentation","src":"1849:173:4","text":" @dev This is a virtual function that should be overridden so it returns the address to which the fallback function\n and {_fallback} should delegate."},"id":388,"implemented":false,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"2036:15:4","nodeType":"FunctionDefinition","parameters":{"id":384,"nodeType":"ParameterList","parameters":[],"src":"2051:2:4"},"returnParameters":{"id":387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":386,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":388,"src":"2085:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":385,"name":"address","nodeType":"ElementaryTypeName","src":"2085:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2084:9:4"},"scope":423,"src":"2027:67:4","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":400,"nodeType":"Block","src":"2360:72:4","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":392,"name":"_beforeFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":422,"src":"2370:15:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2370:17:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":394,"nodeType":"ExpressionStatement","src":"2370:17:4"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":396,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":388,"src":"2407:15:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2407:17:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":395,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":382,"src":"2397:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2397:28:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":399,"nodeType":"ExpressionStatement","src":"2397:28:4"}]},"documentation":{"id":389,"nodeType":"StructuredDocumentation","src":"2100:217:4","text":" @dev Delegates the current call to the address returned by `_implementation()`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":401,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"2331:9:4","nodeType":"FunctionDefinition","parameters":{"id":390,"nodeType":"ParameterList","parameters":[],"src":"2340:2:4"},"returnParameters":{"id":391,"nodeType":"ParameterList","parameters":[],"src":"2360:0:4"},"scope":423,"src":"2322:110:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":408,"nodeType":"Block","src":"2665:28:4","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":405,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":401,"src":"2675:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2675:11:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":407,"nodeType":"ExpressionStatement","src":"2675:11:4"}]},"documentation":{"id":402,"nodeType":"StructuredDocumentation","src":"2438:186:4","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n function in the contract matches the call data."},"id":409,"implemented":true,"kind":"fallback","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":403,"nodeType":"ParameterList","parameters":[],"src":"2637:2:4"},"returnParameters":{"id":404,"nodeType":"ParameterList","parameters":[],"src":"2665:0:4"},"scope":423,"src":"2629:64:4","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":416,"nodeType":"Block","src":"2888:28:4","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":413,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":401,"src":"2898:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2898:11:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":415,"nodeType":"ExpressionStatement","src":"2898:11:4"}]},"documentation":{"id":410,"nodeType":"StructuredDocumentation","src":"2699:149:4","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data\n is empty."},"id":417,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":411,"nodeType":"ParameterList","parameters":[],"src":"2860:2:4"},"returnParameters":{"id":412,"nodeType":"ParameterList","parameters":[],"src":"2888:0:4"},"scope":423,"src":"2853:63:4","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":421,"nodeType":"Block","src":"3242:2:4","statements":[]},"documentation":{"id":418,"nodeType":"StructuredDocumentation","src":"2922:271:4","text":" @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`\n call, or as part of the Solidity `fallback` or `receive` functions.\n If overridden should call `super._beforeFallback()`."},"id":422,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeFallback","nameLocation":"3207:15:4","nodeType":"FunctionDefinition","parameters":{"id":419,"nodeType":"ParameterList","parameters":[],"src":"3222:2:4"},"returnParameters":{"id":420,"nodeType":"ParameterList","parameters":[],"src":"3242:0:4"},"scope":423,"src":"3198:46:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":424,"src":"723:2523:4","usedErrors":[],"usedEvents":[]}],"src":"99:3148:4"},"id":4},"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol","exportedSymbols":{"IBeacon":[433]},"id":434,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":425,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"93:23:5"},{"abstract":false,"baseContracts":[],"canonicalName":"IBeacon","contractDependencies":[],"contractKind":"interface","documentation":{"id":426,"nodeType":"StructuredDocumentation","src":"118:79:5","text":" @dev This is the interface that {BeaconProxy} expects of its beacon."},"fullyImplemented":false,"id":433,"linearizedBaseContracts":[433],"name":"IBeacon","nameLocation":"208:7:5","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":427,"nodeType":"StructuredDocumentation","src":"222:162:5","text":" @dev Must return an address that can be used as a delegate call target.\n {BeaconProxy} will check that this address is a contract."},"functionSelector":"5c60da1b","id":432,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"398:14:5","nodeType":"FunctionDefinition","parameters":{"id":428,"nodeType":"ParameterList","parameters":[],"src":"412:2:5"},"returnParameters":{"id":431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":430,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":432,"src":"438:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":429,"name":"address","nodeType":"ElementaryTypeName","src":"438:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"437:9:5"},"scope":433,"src":"389:58:5","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":434,"src":"198:251:5","usedErrors":[],"usedEvents":[]}],"src":"93:357:5"},"id":5},"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol","exportedSymbols":{"Address":[1086],"ERC1967Proxy":[67],"ERC1967Upgrade":[371],"IBeacon":[433],"IERC1822Proxiable":[30],"IERC1967":[20],"ITransparentUpgradeableProxy":[467],"Proxy":[423],"StorageSlot":[1196],"TransparentUpgradeableProxy":[756]},"id":757,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":435,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"133:23:6"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol","file":"../ERC1967/ERC1967Proxy.sol","id":436,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":757,"sourceUnit":68,"src":"158:37:6","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":438,"name":"IERC1967","nameLocations":["679:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":20,"src":"679:8:6"},"id":439,"nodeType":"InheritanceSpecifier","src":"679:8:6"}],"canonicalName":"ITransparentUpgradeableProxy","contractDependencies":[],"contractKind":"interface","documentation":{"id":437,"nodeType":"StructuredDocumentation","src":"197:439:6","text":" @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}\n does not implement this interface directly, and some of its functions are implemented by an internal dispatch\n mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not\n include them in the ABI so this interface must be used to interact with it."},"fullyImplemented":false,"id":467,"linearizedBaseContracts":[467,20],"name":"ITransparentUpgradeableProxy","nameLocation":"647:28:6","nodeType":"ContractDefinition","nodes":[{"functionSelector":"f851a440","id":444,"implemented":false,"kind":"function","modifiers":[],"name":"admin","nameLocation":"703:5:6","nodeType":"FunctionDefinition","parameters":{"id":440,"nodeType":"ParameterList","parameters":[],"src":"708:2:6"},"returnParameters":{"id":443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":442,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":444,"src":"734:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":441,"name":"address","nodeType":"ElementaryTypeName","src":"734:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"733:9:6"},"scope":467,"src":"694:49:6","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"5c60da1b","id":449,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"758:14:6","nodeType":"FunctionDefinition","parameters":{"id":445,"nodeType":"ParameterList","parameters":[],"src":"772:2:6"},"returnParameters":{"id":448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":447,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":449,"src":"798:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":446,"name":"address","nodeType":"ElementaryTypeName","src":"798:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"797:9:6"},"scope":467,"src":"749:58:6","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8f283970","id":454,"implemented":false,"kind":"function","modifiers":[],"name":"changeAdmin","nameLocation":"822:11:6","nodeType":"FunctionDefinition","parameters":{"id":452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":451,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":454,"src":"834:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":450,"name":"address","nodeType":"ElementaryTypeName","src":"834:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"833:9:6"},"returnParameters":{"id":453,"nodeType":"ParameterList","parameters":[],"src":"851:0:6"},"scope":467,"src":"813:39:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"3659cfe6","id":459,"implemented":false,"kind":"function","modifiers":[],"name":"upgradeTo","nameLocation":"867:9:6","nodeType":"FunctionDefinition","parameters":{"id":457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":456,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":459,"src":"877:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":455,"name":"address","nodeType":"ElementaryTypeName","src":"877:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"876:9:6"},"returnParameters":{"id":458,"nodeType":"ParameterList","parameters":[],"src":"894:0:6"},"scope":467,"src":"858:37:6","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"4f1ef286","id":466,"implemented":false,"kind":"function","modifiers":[],"name":"upgradeToAndCall","nameLocation":"910:16:6","nodeType":"FunctionDefinition","parameters":{"id":464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":461,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":466,"src":"927:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":460,"name":"address","nodeType":"ElementaryTypeName","src":"927:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":466,"src":"936:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":462,"name":"bytes","nodeType":"ElementaryTypeName","src":"936:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"926:23:6"},"returnParameters":{"id":465,"nodeType":"ParameterList","parameters":[],"src":"966:0:6"},"scope":467,"src":"901:66:6","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":757,"src":"637:332:6","usedErrors":[],"usedEvents":[7,14,19]},{"abstract":false,"baseContracts":[{"baseName":{"id":469,"name":"ERC1967Proxy","nameLocations":["3429:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":67,"src":"3429:12:6"},"id":470,"nodeType":"InheritanceSpecifier","src":"3429:12:6"}],"canonicalName":"TransparentUpgradeableProxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":468,"nodeType":"StructuredDocumentation","src":"971:2417:6","text":" @dev This contract implements a proxy that is upgradeable by an admin.\n To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n clashing], which can potentially be used in an attack, this contract uses the\n https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n things that go hand in hand:\n 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n that call matches one of the admin functions exposed by the proxy itself.\n 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the\n implementation. If the admin tries to call a function on the implementation it will fail with an error that says\n \"admin cannot fallback to proxy target\".\n These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing\n the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due\n to sudden errors when trying to call a function from the proxy implementation.\n Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,\n you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\n NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not\n inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch\n mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to\n fully implement transparency without decoding reverts caused by selector clashes between the proxy and the\n implementation.\n WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler\n will not check that there are no selector conflicts, due to the note above. A selector clash between any new function\n and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could\n render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised."},"fullyImplemented":true,"id":756,"linearizedBaseContracts":[756,67,371,20,423],"name":"TransparentUpgradeableProxy","nameLocation":"3398:27:6","nodeType":"ContractDefinition","nodes":[{"body":{"id":488,"nodeType":"Block","src":"3763:37:6","statements":[{"expression":{"arguments":[{"id":485,"name":"admin_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"3786:6:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":484,"name":"_changeAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":279,"src":"3773:12:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3773:20:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":487,"nodeType":"ExpressionStatement","src":"3773:20:6"}]},"documentation":{"id":471,"nodeType":"StructuredDocumentation","src":"3448:210:6","text":" @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and\n optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}."},"id":489,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":480,"name":"_logic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":473,"src":"3748:6:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":481,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":477,"src":"3756:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":482,"kind":"baseConstructorSpecifier","modifierName":{"id":479,"name":"ERC1967Proxy","nameLocations":["3735:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":67,"src":"3735:12:6"},"nodeType":"ModifierInvocation","src":"3735:27:6"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":473,"mutability":"mutable","name":"_logic","nameLocation":"3683:6:6","nodeType":"VariableDeclaration","scope":489,"src":"3675:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":472,"name":"address","nodeType":"ElementaryTypeName","src":"3675:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":475,"mutability":"mutable","name":"admin_","nameLocation":"3699:6:6","nodeType":"VariableDeclaration","scope":489,"src":"3691:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":474,"name":"address","nodeType":"ElementaryTypeName","src":"3691:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":477,"mutability":"mutable","name":"_data","nameLocation":"3720:5:6","nodeType":"VariableDeclaration","scope":489,"src":"3707:18:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":476,"name":"bytes","nodeType":"ElementaryTypeName","src":"3707:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3674:52:6"},"returnParameters":{"id":483,"nodeType":"ParameterList","parameters":[],"src":"3763:0:6"},"scope":756,"src":"3663:137:6","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":504,"nodeType":"Block","src":"4151:115:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":492,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4165:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4169:6:6","memberName":"sender","nodeType":"MemberAccess","src":"4165:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":494,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":236,"src":"4179:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4179:11:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4165:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":502,"nodeType":"Block","src":"4224:36:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":499,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[598],"referencedDeclaration":598,"src":"4238:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4238:11:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":501,"nodeType":"ExpressionStatement","src":"4238:11:6"}]},"id":503,"nodeType":"IfStatement","src":"4161:99:6","trueBody":{"id":498,"nodeType":"Block","src":"4192:26:6","statements":[{"id":497,"nodeType":"PlaceholderStatement","src":"4206:1:6"}]}}]},"documentation":{"id":490,"nodeType":"StructuredDocumentation","src":"3806:321:6","text":" @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.\n CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the\n implementation provides a function with the same selector."},"id":505,"name":"ifAdmin","nameLocation":"4141:7:6","nodeType":"ModifierDefinition","parameters":{"id":491,"nodeType":"ParameterList","parameters":[],"src":"4148:2:6"},"src":"4132:134:6","virtual":false,"visibility":"internal"},{"baseFunctions":[401],"body":{"id":597,"nodeType":"Block","src":"4454:1055:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":510,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4468:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4472:6:6","memberName":"sender","nodeType":"MemberAccess","src":"4468:10:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":512,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":236,"src":"4482:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4482:11:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4468:25:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":595,"nodeType":"Block","src":"5461:42:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":590,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5475:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TransparentUpgradeableProxy_$756_$","typeString":"type(contract super TransparentUpgradeableProxy)"}},"id":592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5481:9:6","memberName":"_fallback","nodeType":"MemberAccess","referencedDeclaration":401,"src":"5475:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5475:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":594,"nodeType":"ExpressionStatement","src":"5475:17:6"}]},"id":596,"nodeType":"IfStatement","src":"4464:1039:6","trueBody":{"id":589,"nodeType":"Block","src":"4495:960:6","statements":[{"assignments":[516],"declarations":[{"constant":false,"id":516,"mutability":"mutable","name":"ret","nameLocation":"4522:3:6","nodeType":"VariableDeclaration","scope":589,"src":"4509:16:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":515,"name":"bytes","nodeType":"ElementaryTypeName","src":"4509:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":517,"nodeType":"VariableDeclarationStatement","src":"4509:16:6"},{"assignments":[519],"declarations":[{"constant":false,"id":519,"mutability":"mutable","name":"selector","nameLocation":"4546:8:6","nodeType":"VariableDeclaration","scope":589,"src":"4539:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":518,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4539:6:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":522,"initialValue":{"expression":{"id":520,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4557:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4561:3:6","memberName":"sig","nodeType":"MemberAccess","src":"4557:7:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"4539:25:6"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":523,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"4582:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":524,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"4594:28:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$467_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":525,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4623:9:6","memberName":"upgradeTo","nodeType":"MemberAccess","referencedDeclaration":459,"src":"4594:38:6","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$returns$__$","typeString":"function ITransparentUpgradeableProxy.upgradeTo(address)"}},"id":526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4633:8:6","memberName":"selector","nodeType":"MemberAccess","src":"4594:47:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4582:59:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":534,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"4712:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":535,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"4724:28:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$467_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4753:16:6","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":466,"src":"4724:45:6","typeDescriptions":{"typeIdentifier":"t_function_declaration_payable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function ITransparentUpgradeableProxy.upgradeToAndCall(address,bytes memory) payable"}},"id":537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4770:8:6","memberName":"selector","nodeType":"MemberAccess","src":"4724:54:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4712:66:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":545,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"4856:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":546,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"4868:28:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$467_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4897:11:6","memberName":"changeAdmin","nodeType":"MemberAccess","referencedDeclaration":454,"src":"4868:40:6","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$returns$__$","typeString":"function ITransparentUpgradeableProxy.changeAdmin(address)"}},"id":548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4909:8:6","memberName":"selector","nodeType":"MemberAccess","src":"4868:49:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4856:61:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":556,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"4990:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":557,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"5002:28:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$467_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":558,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5031:5:6","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":444,"src":"5002:34:6","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_address_$","typeString":"function ITransparentUpgradeableProxy.admin() view returns (address)"}},"id":559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5037:8:6","memberName":"selector","nodeType":"MemberAccess","src":"5002:43:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4990:55:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":567,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":519,"src":"5112:8:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":568,"name":"ITransparentUpgradeableProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"5124:28:6","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ITransparentUpgradeableProxy_$467_$","typeString":"type(contract ITransparentUpgradeableProxy)"}},"id":569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5153:14:6","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":449,"src":"5124:43:6","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_address_$","typeString":"function ITransparentUpgradeableProxy.implementation() view returns (address)"}},"id":570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5168:8:6","memberName":"selector","nodeType":"MemberAccess","src":"5124:52:6","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"5112:64:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":582,"nodeType":"Block","src":"5248:109:6","statements":[{"expression":{"arguments":[{"hexValue":"5472616e73706172656e745570677261646561626c6550726f78793a2061646d696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172676574","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5273:68:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d","typeString":"literal_string \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\""},"value":"TransparentUpgradeableProxy: admin cannot fallback to proxy target"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d","typeString":"literal_string \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\""}],"id":578,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"5266:6:6","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5266:76:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":581,"nodeType":"ExpressionStatement","src":"5266:76:6"}]},"id":583,"nodeType":"IfStatement","src":"5108:249:6","trueBody":{"id":577,"nodeType":"Block","src":"5178:64:6","statements":[{"expression":{"id":575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":572,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"5196:3:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":573,"name":"_dispatchImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":638,"src":"5202:23:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5202:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"5196:31:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":576,"nodeType":"ExpressionStatement","src":"5196:31:6"}]}},"id":584,"nodeType":"IfStatement","src":"4986:371:6","trueBody":{"id":566,"nodeType":"Block","src":"5047:55:6","statements":[{"expression":{"id":564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":561,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"5065:3:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":562,"name":"_dispatchAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"5071:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5071:16:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"5065:22:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":565,"nodeType":"ExpressionStatement","src":"5065:22:6"}]}},"id":585,"nodeType":"IfStatement","src":"4852:505:6","trueBody":{"id":555,"nodeType":"Block","src":"4919:61:6","statements":[{"expression":{"id":553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":550,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"4937:3:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":551,"name":"_dispatchChangeAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":667,"src":"4943:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4943:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4937:28:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":554,"nodeType":"ExpressionStatement","src":"4937:28:6"}]}},"id":586,"nodeType":"IfStatement","src":"4708:649:6","trueBody":{"id":544,"nodeType":"Block","src":"4780:66:6","statements":[{"expression":{"id":542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":539,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"4798:3:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":540,"name":"_dispatchUpgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":733,"src":"4804:25:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4804:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4798:33:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":543,"nodeType":"ExpressionStatement","src":"4798:33:6"}]}},"id":587,"nodeType":"IfStatement","src":"4578:779:6","trueBody":{"id":533,"nodeType":"Block","src":"4643:59:6","statements":[{"expression":{"id":531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":528,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"4661:3:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":529,"name":"_dispatchUpgradeTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"4667:18:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_bytes_memory_ptr_$","typeString":"function () returns (bytes memory)"}},"id":530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4667:20:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4661:26:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":532,"nodeType":"ExpressionStatement","src":"4661:26:6"}]}},{"AST":{"nodeType":"YulBlock","src":"5379:66:6","statements":[{"expression":{"arguments":[{"arguments":[{"name":"ret","nodeType":"YulIdentifier","src":"5408:3:6"},{"kind":"number","nodeType":"YulLiteral","src":"5413:4:6","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5404:3:6"},"nodeType":"YulFunctionCall","src":"5404:14:6"},{"arguments":[{"name":"ret","nodeType":"YulIdentifier","src":"5426:3:6"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5420:5:6"},"nodeType":"YulFunctionCall","src":"5420:10:6"}],"functionName":{"name":"return","nodeType":"YulIdentifier","src":"5397:6:6"},"nodeType":"YulFunctionCall","src":"5397:34:6"},"nodeType":"YulExpressionStatement","src":"5397:34:6"}]},"evmVersion":"shanghai","externalReferences":[{"declaration":516,"isOffset":false,"isSlot":false,"src":"5408:3:6","valueSize":1},{"declaration":516,"isOffset":false,"isSlot":false,"src":"5426:3:6","valueSize":1}],"id":588,"nodeType":"InlineAssembly","src":"5370:75:6"}]}}]},"documentation":{"id":506,"nodeType":"StructuredDocumentation","src":"4272:130:6","text":" @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior"},"id":598,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"4416:9:6","nodeType":"FunctionDefinition","overrides":{"id":508,"nodeType":"OverrideSpecifier","overrides":[],"src":"4445:8:6"},"parameters":{"id":507,"nodeType":"ParameterList","parameters":[],"src":"4425:2:6"},"returnParameters":{"id":509,"nodeType":"ParameterList","parameters":[],"src":"4454:0:6"},"scope":756,"src":"4407:1102:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":617,"nodeType":"Block","src":"5917:108:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":604,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":755,"src":"5927:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5927:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":606,"nodeType":"ExpressionStatement","src":"5927:19:6"},{"assignments":[608],"declarations":[{"constant":false,"id":608,"mutability":"mutable","name":"admin","nameLocation":"5965:5:6","nodeType":"VariableDeclaration","scope":617,"src":"5957:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":607,"name":"address","nodeType":"ElementaryTypeName","src":"5957:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":611,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":609,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":236,"src":"5973:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5973:11:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5957:27:6"},{"expression":{"arguments":[{"id":614,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":608,"src":"6012:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":612,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6001:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6005:6:6","memberName":"encode","nodeType":"MemberAccess","src":"6001:10:6","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6001:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":603,"id":616,"nodeType":"Return","src":"5994:24:6"}]},"documentation":{"id":599,"nodeType":"StructuredDocumentation","src":"5515:340:6","text":" @dev Returns the current admin.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"},"id":618,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchAdmin","nameLocation":"5869:14:6","nodeType":"FunctionDefinition","parameters":{"id":600,"nodeType":"ParameterList","parameters":[],"src":"5883:2:6"},"returnParameters":{"id":603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":602,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":618,"src":"5903:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":601,"name":"bytes","nodeType":"ElementaryTypeName","src":"5903:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5902:14:6"},"scope":756,"src":"5860:165:6","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":637,"nodeType":"Block","src":"6451:132:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":624,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":755,"src":"6461:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6461:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":626,"nodeType":"ExpressionStatement","src":"6461:19:6"},{"assignments":[628],"declarations":[{"constant":false,"id":628,"mutability":"mutable","name":"implementation","nameLocation":"6499:14:6","nodeType":"VariableDeclaration","scope":637,"src":"6491:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":627,"name":"address","nodeType":"ElementaryTypeName","src":"6491:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":631,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":629,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[66],"referencedDeclaration":66,"src":"6516:15:6","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":"6516:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6491:42:6"},{"expression":{"arguments":[{"id":634,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"6561:14:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":632,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6550:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6554:6:6","memberName":"encode","nodeType":"MemberAccess","src":"6550:10:6","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6550:26:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":623,"id":636,"nodeType":"Return","src":"6543:33:6"}]},"documentation":{"id":619,"nodeType":"StructuredDocumentation","src":"6031:349:6","text":" @dev Returns the current implementation.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"},"id":638,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchImplementation","nameLocation":"6394:23:6","nodeType":"FunctionDefinition","parameters":{"id":620,"nodeType":"ParameterList","parameters":[],"src":"6417:2:6"},"returnParameters":{"id":623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":638,"src":"6437:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":621,"name":"bytes","nodeType":"ElementaryTypeName","src":"6437:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6436:14:6"},"scope":756,"src":"6385:198:6","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":666,"nodeType":"Block","src":"6757:153:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":644,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":755,"src":"6767:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6767:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":646,"nodeType":"ExpressionStatement","src":"6767:19:6"},{"assignments":[648],"declarations":[{"constant":false,"id":648,"mutability":"mutable","name":"newAdmin","nameLocation":"6805:8:6","nodeType":"VariableDeclaration","scope":666,"src":"6797:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":647,"name":"address","nodeType":"ElementaryTypeName","src":"6797:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":659,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":651,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6827:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6831:4:6","memberName":"data","nodeType":"MemberAccess","src":"6827:8:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"6827:12:6","startExpression":{"hexValue":"34","id":653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6836:1:6","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":656,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6842:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":655,"name":"address","nodeType":"ElementaryTypeName","src":"6842:7:6","typeDescriptions":{}}}],"id":657,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6841:9:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":649,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6816:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6820:6:6","memberName":"decode","nodeType":"MemberAccess","src":"6816:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6816:35:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"6797:54:6"},{"expression":{"arguments":[{"id":661,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":648,"src":"6874:8:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":660,"name":"_changeAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":279,"src":"6861:12:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6861:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":663,"nodeType":"ExpressionStatement","src":"6861:22:6"},{"expression":{"hexValue":"","id":664,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6901:2:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":643,"id":665,"nodeType":"Return","src":"6894:9:6"}]},"documentation":{"id":639,"nodeType":"StructuredDocumentation","src":"6589:100:6","text":" @dev Changes the admin of the proxy.\n Emits an {AdminChanged} event."},"id":667,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchChangeAdmin","nameLocation":"6703:20:6","nodeType":"FunctionDefinition","parameters":{"id":640,"nodeType":"ParameterList","parameters":[],"src":"6723:2:6"},"returnParameters":{"id":643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":642,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":667,"src":"6743:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":641,"name":"bytes","nodeType":"ElementaryTypeName","src":"6743:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6742:14:6"},"scope":756,"src":"6694:216:6","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":700,"nodeType":"Block","src":"7046:194:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":673,"name":"_requireZeroValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":755,"src":"7056:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":674,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7056:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":675,"nodeType":"ExpressionStatement","src":"7056:19:6"},{"assignments":[677],"declarations":[{"constant":false,"id":677,"mutability":"mutable","name":"newImplementation","nameLocation":"7094:17:6","nodeType":"VariableDeclaration","scope":700,"src":"7086:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":676,"name":"address","nodeType":"ElementaryTypeName","src":"7086:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":688,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":680,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7125:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7129:4:6","memberName":"data","nodeType":"MemberAccess","src":"7125:8:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"7125:12:6","startExpression":{"hexValue":"34","id":682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7134:1:6","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":685,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7140:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":684,"name":"address","nodeType":"ElementaryTypeName","src":"7140:7:6","typeDescriptions":{}}}],"id":686,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7139:9:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":678,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7114:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7118:6:6","memberName":"decode","nodeType":"MemberAccess","src":"7114:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7114:35:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"7086:63:6"},{"expression":{"arguments":[{"id":690,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":677,"src":"7177:17:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"","id":693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7202:2:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7196:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":691,"name":"bytes","nodeType":"ElementaryTypeName","src":"7196:5:6","typeDescriptions":{}}},"id":694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7196:9:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"66616c7365","id":695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7207:5:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":689,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":166,"src":"7159:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7159:54:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":697,"nodeType":"ExpressionStatement","src":"7159:54:6"},{"expression":{"hexValue":"","id":698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7231:2:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":672,"id":699,"nodeType":"Return","src":"7224:9:6"}]},"documentation":{"id":668,"nodeType":"StructuredDocumentation","src":"6916:64:6","text":" @dev Upgrade the implementation of the proxy."},"id":701,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchUpgradeTo","nameLocation":"6994:18:6","nodeType":"FunctionDefinition","parameters":{"id":669,"nodeType":"ParameterList","parameters":[],"src":"7012:2:6"},"returnParameters":{"id":672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":701,"src":"7032:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":670,"name":"bytes","nodeType":"ElementaryTypeName","src":"7032:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7031:14:6"},"scope":756,"src":"6985:255:6","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":732,"nodeType":"Block","src":"7592:186:6","statements":[{"assignments":[708,710],"declarations":[{"constant":false,"id":708,"mutability":"mutable","name":"newImplementation","nameLocation":"7611:17:6","nodeType":"VariableDeclaration","scope":732,"src":"7603:25:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":707,"name":"address","nodeType":"ElementaryTypeName","src":"7603:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":710,"mutability":"mutable","name":"data","nameLocation":"7643:4:6","nodeType":"VariableDeclaration","scope":732,"src":"7630:17:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":709,"name":"bytes","nodeType":"ElementaryTypeName","src":"7630:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":723,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":713,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7662:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7666:4:6","memberName":"data","nodeType":"MemberAccess","src":"7662:8:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"7662:12:6","startExpression":{"hexValue":"34","id":715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7671:1:6","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":718,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7677:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":717,"name":"address","nodeType":"ElementaryTypeName","src":"7677:7:6","typeDescriptions":{}}},{"id":720,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7686:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":719,"name":"bytes","nodeType":"ElementaryTypeName","src":"7686:5:6","typeDescriptions":{}}}],"id":721,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7676:16:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(address),type(bytes storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_address_$_$_t_type$_t_bytes_storage_ptr_$_$","typeString":"tuple(type(address),type(bytes storage pointer))"}],"expression":{"id":711,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7651:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7655:6:6","memberName":"decode","nodeType":"MemberAccess","src":"7651:10:6","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7651:42:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_payable_$_t_bytes_memory_ptr_$","typeString":"tuple(address payable,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7602:91:6"},{"expression":{"arguments":[{"id":725,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"7721:17:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":726,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"7740:4:6","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"74727565","id":727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7746:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":724,"name":"_upgradeToAndCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":166,"src":"7703:17:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_bool_$returns$__$","typeString":"function (address,bytes memory,bool)"}},"id":728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7703:48:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":729,"nodeType":"ExpressionStatement","src":"7703:48:6"},{"expression":{"hexValue":"","id":730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7769:2:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":706,"id":731,"nodeType":"Return","src":"7762:9:6"}]},"documentation":{"id":702,"nodeType":"StructuredDocumentation","src":"7246:273:6","text":" @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified\n by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the\n proxied contract."},"id":733,"implemented":true,"kind":"function","modifiers":[],"name":"_dispatchUpgradeToAndCall","nameLocation":"7533:25:6","nodeType":"FunctionDefinition","parameters":{"id":703,"nodeType":"ParameterList","parameters":[],"src":"7558:2:6"},"returnParameters":{"id":706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":705,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":733,"src":"7578:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":704,"name":"bytes","nodeType":"ElementaryTypeName","src":"7578:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7577:14:6"},"scope":756,"src":"7524:254:6","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":742,"nodeType":"Block","src":"7989:35:6","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":739,"name":"_getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":236,"src":"8006:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8006:11:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":738,"id":741,"nodeType":"Return","src":"7999:18:6"}]},"documentation":{"id":734,"nodeType":"StructuredDocumentation","src":"7784:142:6","text":" @dev Returns the current admin.\n CAUTION: This function is deprecated. Use {ERC1967Upgrade-_getAdmin} instead."},"id":743,"implemented":true,"kind":"function","modifiers":[],"name":"_admin","nameLocation":"7940:6:6","nodeType":"FunctionDefinition","parameters":{"id":735,"nodeType":"ParameterList","parameters":[],"src":"7946:2:6"},"returnParameters":{"id":738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":743,"src":"7980:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":736,"name":"address","nodeType":"ElementaryTypeName","src":"7980:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7979:9:6"},"scope":756,"src":"7931:93:6","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":754,"nodeType":"Block","src":"8298:40:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":748,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8316:3:6","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8320:5:6","memberName":"value","nodeType":"MemberAccess","src":"8316:9:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8329:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8316:14:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":747,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8308:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8308:23:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":753,"nodeType":"ExpressionStatement","src":"8308:23:6"}]},"documentation":{"id":744,"nodeType":"StructuredDocumentation","src":"8030:226:6","text":" @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to\n emulate some proxy functions being non-payable while still allowing value to pass through."},"id":755,"implemented":true,"kind":"function","modifiers":[],"name":"_requireZeroValue","nameLocation":"8270:17:6","nodeType":"FunctionDefinition","parameters":{"id":745,"nodeType":"ParameterList","parameters":[],"src":"8287:2:6"},"returnParameters":{"id":746,"nodeType":"ParameterList","parameters":[],"src":"8298:0:6"},"scope":756,"src":"8261:77:6","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":757,"src":"3389:4951:6","usedErrors":[],"usedEvents":[7,14,19]}],"src":"133:8208:6"},"id":6},"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Address.sol","exportedSymbols":{"Address":[1086]},"id":1087,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":758,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:7"},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":759,"nodeType":"StructuredDocumentation","src":"126:67:7","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":1086,"linearizedBaseContracts":[1086],"name":"Address","nameLocation":"202:7:7","nodeType":"ContractDefinition","nodes":[{"body":{"id":773,"nodeType":"Block","src":"1478:254:7","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":767,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":762,"src":"1702:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1710:4:7","memberName":"code","nodeType":"MemberAccess","src":"1702:12:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1715:6:7","memberName":"length","nodeType":"MemberAccess","src":"1702:19:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1724:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1702:23:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":766,"id":772,"nodeType":"Return","src":"1695:30:7"}]},"documentation":{"id":760,"nodeType":"StructuredDocumentation","src":"216:1191:7","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":774,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1421:10:7","nodeType":"FunctionDefinition","parameters":{"id":763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":762,"mutability":"mutable","name":"account","nameLocation":"1440:7:7","nodeType":"VariableDeclaration","scope":774,"src":"1432:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":761,"name":"address","nodeType":"ElementaryTypeName","src":"1432:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1431:17:7"},"returnParameters":{"id":766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":774,"src":"1472:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":764,"name":"bool","nodeType":"ElementaryTypeName","src":"1472:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1471:6:7"},"scope":1086,"src":"1412:320:7","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":807,"nodeType":"Block","src":"2718:241:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":785,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2744:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$1086","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$1086","typeString":"library Address"}],"id":784,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2736:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":783,"name":"address","nodeType":"ElementaryTypeName","src":"2736:7:7","typeDescriptions":{}}},"id":786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2736:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2750:7:7","memberName":"balance","nodeType":"MemberAccess","src":"2736:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":788,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":779,"src":"2761:6:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2736:31:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2769:31:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":782,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2728:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2728:73:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":792,"nodeType":"ExpressionStatement","src":"2728:73:7"},{"assignments":[794,null],"declarations":[{"constant":false,"id":794,"mutability":"mutable","name":"success","nameLocation":"2818:7:7","nodeType":"VariableDeclaration","scope":807,"src":"2813:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":793,"name":"bool","nodeType":"ElementaryTypeName","src":"2813:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":801,"initialValue":{"arguments":[{"hexValue":"","id":799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2861:2:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":795,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"2831:9:7","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2841:4:7","memberName":"call","nodeType":"MemberAccess","src":"2831:14:7","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":798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":797,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":779,"src":"2853:6:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2831:29:7","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":800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:33:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2812:52:7"},{"expression":{"arguments":[{"id":803,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"2882:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2891:60:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":802,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2874:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2874:78:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":806,"nodeType":"ExpressionStatement","src":"2874:78:7"}]},"documentation":{"id":775,"nodeType":"StructuredDocumentation","src":"1738:904:7","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":808,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2656:9:7","nodeType":"FunctionDefinition","parameters":{"id":780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":777,"mutability":"mutable","name":"recipient","nameLocation":"2682:9:7","nodeType":"VariableDeclaration","scope":808,"src":"2666:25:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":776,"name":"address","nodeType":"ElementaryTypeName","src":"2666:15:7","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":779,"mutability":"mutable","name":"amount","nameLocation":"2701:6:7","nodeType":"VariableDeclaration","scope":808,"src":"2693:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":778,"name":"uint256","nodeType":"ElementaryTypeName","src":"2693:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:43:7"},"returnParameters":{"id":781,"nodeType":"ParameterList","parameters":[],"src":"2718:0:7"},"scope":1086,"src":"2647:312:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":825,"nodeType":"Block","src":"3790:96:7","statements":[{"expression":{"arguments":[{"id":819,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":811,"src":"3829:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":820,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":813,"src":"3837:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3843:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":822,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3846:32:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":818,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[866,910],"referencedDeclaration":910,"src":"3807:21:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3807:72:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":817,"id":824,"nodeType":"Return","src":"3800:79:7"}]},"documentation":{"id":809,"nodeType":"StructuredDocumentation","src":"2965:731:7","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":826,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3710:12:7","nodeType":"FunctionDefinition","parameters":{"id":814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":811,"mutability":"mutable","name":"target","nameLocation":"3731:6:7","nodeType":"VariableDeclaration","scope":826,"src":"3723:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":810,"name":"address","nodeType":"ElementaryTypeName","src":"3723:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":813,"mutability":"mutable","name":"data","nameLocation":"3752:4:7","nodeType":"VariableDeclaration","scope":826,"src":"3739:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":812,"name":"bytes","nodeType":"ElementaryTypeName","src":"3739:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3722:35:7"},"returnParameters":{"id":817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":816,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":826,"src":"3776:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":815,"name":"bytes","nodeType":"ElementaryTypeName","src":"3776:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3775:14:7"},"scope":1086,"src":"3701:185:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":845,"nodeType":"Block","src":"4255:76:7","statements":[{"expression":{"arguments":[{"id":839,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":829,"src":"4294:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":840,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":831,"src":"4302:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4308:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":842,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"4311:12:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":838,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[866,910],"referencedDeclaration":910,"src":"4272:21:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4272:52:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":837,"id":844,"nodeType":"Return","src":"4265:59:7"}]},"documentation":{"id":827,"nodeType":"StructuredDocumentation","src":"3892:211:7","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":846,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4117:12:7","nodeType":"FunctionDefinition","parameters":{"id":834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":829,"mutability":"mutable","name":"target","nameLocation":"4147:6:7","nodeType":"VariableDeclaration","scope":846,"src":"4139:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":828,"name":"address","nodeType":"ElementaryTypeName","src":"4139:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":831,"mutability":"mutable","name":"data","nameLocation":"4176:4:7","nodeType":"VariableDeclaration","scope":846,"src":"4163:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":830,"name":"bytes","nodeType":"ElementaryTypeName","src":"4163:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":833,"mutability":"mutable","name":"errorMessage","nameLocation":"4204:12:7","nodeType":"VariableDeclaration","scope":846,"src":"4190:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":832,"name":"string","nodeType":"ElementaryTypeName","src":"4190:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4129:93:7"},"returnParameters":{"id":837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":846,"src":"4241:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":835,"name":"bytes","nodeType":"ElementaryTypeName","src":"4241:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4240:14:7"},"scope":1086,"src":"4108:223:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":865,"nodeType":"Block","src":"4806:111:7","statements":[{"expression":{"arguments":[{"id":859,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"4845:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":860,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":851,"src":"4853:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":861,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":853,"src":"4859:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4866:43:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":858,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[866,910],"referencedDeclaration":910,"src":"4823:21:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:87:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":857,"id":864,"nodeType":"Return","src":"4816:94:7"}]},"documentation":{"id":847,"nodeType":"StructuredDocumentation","src":"4337:351:7","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":866,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4702:21:7","nodeType":"FunctionDefinition","parameters":{"id":854,"nodeType":"ParameterList","parameters":[{"constant":false,"id":849,"mutability":"mutable","name":"target","nameLocation":"4732:6:7","nodeType":"VariableDeclaration","scope":866,"src":"4724:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":848,"name":"address","nodeType":"ElementaryTypeName","src":"4724:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":851,"mutability":"mutable","name":"data","nameLocation":"4753:4:7","nodeType":"VariableDeclaration","scope":866,"src":"4740:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":850,"name":"bytes","nodeType":"ElementaryTypeName","src":"4740:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":853,"mutability":"mutable","name":"value","nameLocation":"4767:5:7","nodeType":"VariableDeclaration","scope":866,"src":"4759:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":852,"name":"uint256","nodeType":"ElementaryTypeName","src":"4759:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4723:50:7"},"returnParameters":{"id":857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":856,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":866,"src":"4792:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":855,"name":"bytes","nodeType":"ElementaryTypeName","src":"4792:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4791:14:7"},"scope":1086,"src":"4693:224:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":909,"nodeType":"Block","src":"5344:267:7","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":883,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5370:4:7","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$1086","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$1086","typeString":"library Address"}],"id":882,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5362:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":881,"name":"address","nodeType":"ElementaryTypeName","src":"5362:7:7","typeDescriptions":{}}},"id":884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5362:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5376:7:7","memberName":"balance","nodeType":"MemberAccess","src":"5362:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":886,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"5387:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5362:30:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":888,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5394:40:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":880,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5354:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5354:81:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":890,"nodeType":"ExpressionStatement","src":"5354:81:7"},{"assignments":[892,894],"declarations":[{"constant":false,"id":892,"mutability":"mutable","name":"success","nameLocation":"5451:7:7","nodeType":"VariableDeclaration","scope":909,"src":"5446:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":891,"name":"bool","nodeType":"ElementaryTypeName","src":"5446:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":894,"mutability":"mutable","name":"returndata","nameLocation":"5473:10:7","nodeType":"VariableDeclaration","scope":909,"src":"5460:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":893,"name":"bytes","nodeType":"ElementaryTypeName","src":"5460:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":901,"initialValue":{"arguments":[{"id":899,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"5513:4:7","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":895,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":869,"src":"5487:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5494:4:7","memberName":"call","nodeType":"MemberAccess","src":"5487:11:7","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":898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":897,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"5506:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5487:25:7","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":900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5487:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5445:73:7"},{"expression":{"arguments":[{"id":903,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":869,"src":"5562:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":904,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":892,"src":"5570:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":905,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"5579:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":906,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"5591:12:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":902,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"5535:26:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:69:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":879,"id":908,"nodeType":"Return","src":"5528:76:7"}]},"documentation":{"id":867,"nodeType":"StructuredDocumentation","src":"4923:237:7","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":910,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5174:21:7","nodeType":"FunctionDefinition","parameters":{"id":876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":869,"mutability":"mutable","name":"target","nameLocation":"5213:6:7","nodeType":"VariableDeclaration","scope":910,"src":"5205:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":868,"name":"address","nodeType":"ElementaryTypeName","src":"5205:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":871,"mutability":"mutable","name":"data","nameLocation":"5242:4:7","nodeType":"VariableDeclaration","scope":910,"src":"5229:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":870,"name":"bytes","nodeType":"ElementaryTypeName","src":"5229:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":873,"mutability":"mutable","name":"value","nameLocation":"5264:5:7","nodeType":"VariableDeclaration","scope":910,"src":"5256:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":872,"name":"uint256","nodeType":"ElementaryTypeName","src":"5256:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":875,"mutability":"mutable","name":"errorMessage","nameLocation":"5293:12:7","nodeType":"VariableDeclaration","scope":910,"src":"5279:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":874,"name":"string","nodeType":"ElementaryTypeName","src":"5279:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5195:116:7"},"returnParameters":{"id":879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":878,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":910,"src":"5330:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":877,"name":"bytes","nodeType":"ElementaryTypeName","src":"5330:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5329:14:7"},"scope":1086,"src":"5165:446:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":926,"nodeType":"Block","src":"5888:97:7","statements":[{"expression":{"arguments":[{"id":921,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":913,"src":"5924:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":922,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":915,"src":"5932:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5938:39:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":920,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[927,956],"referencedDeclaration":956,"src":"5905:18:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5905:73:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":919,"id":925,"nodeType":"Return","src":"5898:80:7"}]},"documentation":{"id":911,"nodeType":"StructuredDocumentation","src":"5617:166:7","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":927,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5797:18:7","nodeType":"FunctionDefinition","parameters":{"id":916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":913,"mutability":"mutable","name":"target","nameLocation":"5824:6:7","nodeType":"VariableDeclaration","scope":927,"src":"5816:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":912,"name":"address","nodeType":"ElementaryTypeName","src":"5816:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":915,"mutability":"mutable","name":"data","nameLocation":"5845:4:7","nodeType":"VariableDeclaration","scope":927,"src":"5832:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":914,"name":"bytes","nodeType":"ElementaryTypeName","src":"5832:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5815:35:7"},"returnParameters":{"id":919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":918,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":927,"src":"5874:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":917,"name":"bytes","nodeType":"ElementaryTypeName","src":"5874:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5873:14:7"},"scope":1086,"src":"5788:197:7","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":955,"nodeType":"Block","src":"6327:168:7","statements":[{"assignments":[940,942],"declarations":[{"constant":false,"id":940,"mutability":"mutable","name":"success","nameLocation":"6343:7:7","nodeType":"VariableDeclaration","scope":955,"src":"6338:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":939,"name":"bool","nodeType":"ElementaryTypeName","src":"6338:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":942,"mutability":"mutable","name":"returndata","nameLocation":"6365:10:7","nodeType":"VariableDeclaration","scope":955,"src":"6352:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":941,"name":"bytes","nodeType":"ElementaryTypeName","src":"6352:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":947,"initialValue":{"arguments":[{"id":945,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":932,"src":"6397:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":943,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":930,"src":"6379:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6386:10:7","memberName":"staticcall","nodeType":"MemberAccess","src":"6379:17:7","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6379:23:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6337:65:7"},{"expression":{"arguments":[{"id":949,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":930,"src":"6446:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":950,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":940,"src":"6454:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":951,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":942,"src":"6463:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":952,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":934,"src":"6475:12:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":948,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"6419:26:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6419:69:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":938,"id":954,"nodeType":"Return","src":"6412:76:7"}]},"documentation":{"id":928,"nodeType":"StructuredDocumentation","src":"5991:173:7","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":956,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6178:18:7","nodeType":"FunctionDefinition","parameters":{"id":935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":930,"mutability":"mutable","name":"target","nameLocation":"6214:6:7","nodeType":"VariableDeclaration","scope":956,"src":"6206:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":929,"name":"address","nodeType":"ElementaryTypeName","src":"6206:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":932,"mutability":"mutable","name":"data","nameLocation":"6243:4:7","nodeType":"VariableDeclaration","scope":956,"src":"6230:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":931,"name":"bytes","nodeType":"ElementaryTypeName","src":"6230:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":934,"mutability":"mutable","name":"errorMessage","nameLocation":"6271:12:7","nodeType":"VariableDeclaration","scope":956,"src":"6257:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":933,"name":"string","nodeType":"ElementaryTypeName","src":"6257:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6196:93:7"},"returnParameters":{"id":938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":937,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":956,"src":"6313:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":936,"name":"bytes","nodeType":"ElementaryTypeName","src":"6313:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6312:14:7"},"scope":1086,"src":"6169:326:7","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":972,"nodeType":"Block","src":"6771:101:7","statements":[{"expression":{"arguments":[{"id":967,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":959,"src":"6809:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":968,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":961,"src":"6817:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6823:41:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":966,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[973,1002],"referencedDeclaration":1002,"src":"6788:20:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6788:77:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":965,"id":971,"nodeType":"Return","src":"6781:84:7"}]},"documentation":{"id":957,"nodeType":"StructuredDocumentation","src":"6501:168:7","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":973,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6683:20:7","nodeType":"FunctionDefinition","parameters":{"id":962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":959,"mutability":"mutable","name":"target","nameLocation":"6712:6:7","nodeType":"VariableDeclaration","scope":973,"src":"6704:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":958,"name":"address","nodeType":"ElementaryTypeName","src":"6704:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":961,"mutability":"mutable","name":"data","nameLocation":"6733:4:7","nodeType":"VariableDeclaration","scope":973,"src":"6720:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":960,"name":"bytes","nodeType":"ElementaryTypeName","src":"6720:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6703:35:7"},"returnParameters":{"id":965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":964,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":973,"src":"6757:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":963,"name":"bytes","nodeType":"ElementaryTypeName","src":"6757:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6756:14:7"},"scope":1086,"src":"6674:198:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1001,"nodeType":"Block","src":"7213:170:7","statements":[{"assignments":[986,988],"declarations":[{"constant":false,"id":986,"mutability":"mutable","name":"success","nameLocation":"7229:7:7","nodeType":"VariableDeclaration","scope":1001,"src":"7224:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":985,"name":"bool","nodeType":"ElementaryTypeName","src":"7224:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":988,"mutability":"mutable","name":"returndata","nameLocation":"7251:10:7","nodeType":"VariableDeclaration","scope":1001,"src":"7238:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":987,"name":"bytes","nodeType":"ElementaryTypeName","src":"7238:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":993,"initialValue":{"arguments":[{"id":991,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"7285:4:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":989,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"7265:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7272:12:7","memberName":"delegatecall","nodeType":"MemberAccess","src":"7265:19:7","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7265:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7223:67:7"},{"expression":{"arguments":[{"id":995,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"7334:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":996,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":986,"src":"7342:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":997,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":988,"src":"7351:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":998,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"7363:12:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":994,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"7307:26:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7307:69:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":984,"id":1000,"nodeType":"Return","src":"7300:76:7"}]},"documentation":{"id":974,"nodeType":"StructuredDocumentation","src":"6878:175:7","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":1002,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7067:20:7","nodeType":"FunctionDefinition","parameters":{"id":981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":976,"mutability":"mutable","name":"target","nameLocation":"7105:6:7","nodeType":"VariableDeclaration","scope":1002,"src":"7097:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":975,"name":"address","nodeType":"ElementaryTypeName","src":"7097:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":978,"mutability":"mutable","name":"data","nameLocation":"7134:4:7","nodeType":"VariableDeclaration","scope":1002,"src":"7121:17:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":977,"name":"bytes","nodeType":"ElementaryTypeName","src":"7121:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":980,"mutability":"mutable","name":"errorMessage","nameLocation":"7162:12:7","nodeType":"VariableDeclaration","scope":1002,"src":"7148:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":979,"name":"string","nodeType":"ElementaryTypeName","src":"7148:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7087:93:7"},"returnParameters":{"id":984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":983,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1002,"src":"7199:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":982,"name":"bytes","nodeType":"ElementaryTypeName","src":"7199:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7198:14:7"},"scope":1086,"src":"7058:325:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1040,"nodeType":"Block","src":"7865:434:7","statements":[{"condition":{"id":1016,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1007,"src":"7879:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1038,"nodeType":"Block","src":"8235:58:7","statements":[{"expression":{"arguments":[{"id":1034,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"8257:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1035,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"8269:12:7","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":1033,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1085,"src":"8249:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":1036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8249:33:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1037,"nodeType":"ExpressionStatement","src":"8249:33:7"}]},"id":1039,"nodeType":"IfStatement","src":"7875:418:7","trueBody":{"id":1032,"nodeType":"Block","src":"7888:341:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1017,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"7906:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7917:6:7","memberName":"length","nodeType":"MemberAccess","src":"7906:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7927:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7906:22:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1029,"nodeType":"IfStatement","src":"7902:286:7","trueBody":{"id":1028,"nodeType":"Block","src":"7930:258:7","statements":[{"expression":{"arguments":[{"arguments":[{"id":1023,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1005,"src":"8132:6:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1022,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"8121:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":1024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8121:18:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":1025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8141:31:7","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":1021,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8113:7:7","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8113:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1027,"nodeType":"ExpressionStatement","src":"8113:60:7"}]}},{"expression":{"id":1030,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"8208:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1015,"id":1031,"nodeType":"Return","src":"8201:17:7"}]}}]},"documentation":{"id":1003,"nodeType":"StructuredDocumentation","src":"7389:277:7","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":1041,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7680:26:7","nodeType":"FunctionDefinition","parameters":{"id":1012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1005,"mutability":"mutable","name":"target","nameLocation":"7724:6:7","nodeType":"VariableDeclaration","scope":1041,"src":"7716:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1004,"name":"address","nodeType":"ElementaryTypeName","src":"7716:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1007,"mutability":"mutable","name":"success","nameLocation":"7745:7:7","nodeType":"VariableDeclaration","scope":1041,"src":"7740:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1006,"name":"bool","nodeType":"ElementaryTypeName","src":"7740:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1009,"mutability":"mutable","name":"returndata","nameLocation":"7775:10:7","nodeType":"VariableDeclaration","scope":1041,"src":"7762:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1008,"name":"bytes","nodeType":"ElementaryTypeName","src":"7762:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1011,"mutability":"mutable","name":"errorMessage","nameLocation":"7809:12:7","nodeType":"VariableDeclaration","scope":1041,"src":"7795:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1010,"name":"string","nodeType":"ElementaryTypeName","src":"7795:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7706:121:7"},"returnParameters":{"id":1015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1014,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1041,"src":"7851:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1013,"name":"bytes","nodeType":"ElementaryTypeName","src":"7851:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7850:14:7"},"scope":1086,"src":"7671:628:7","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1064,"nodeType":"Block","src":"8680:135:7","statements":[{"condition":{"id":1053,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1044,"src":"8694:7:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1062,"nodeType":"Block","src":"8751:58:7","statements":[{"expression":{"arguments":[{"id":1058,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1046,"src":"8773:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1059,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1048,"src":"8785:12:7","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":1057,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1085,"src":"8765:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":1060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8765:33:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1061,"nodeType":"ExpressionStatement","src":"8765:33:7"}]},"id":1063,"nodeType":"IfStatement","src":"8690:119:7","trueBody":{"id":1056,"nodeType":"Block","src":"8703:42:7","statements":[{"expression":{"id":1054,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1046,"src":"8724:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1052,"id":1055,"nodeType":"Return","src":"8717:17:7"}]}}]},"documentation":{"id":1042,"nodeType":"StructuredDocumentation","src":"8305:210:7","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":1065,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8529:16:7","nodeType":"FunctionDefinition","parameters":{"id":1049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1044,"mutability":"mutable","name":"success","nameLocation":"8560:7:7","nodeType":"VariableDeclaration","scope":1065,"src":"8555:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1043,"name":"bool","nodeType":"ElementaryTypeName","src":"8555:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1046,"mutability":"mutable","name":"returndata","nameLocation":"8590:10:7","nodeType":"VariableDeclaration","scope":1065,"src":"8577:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1045,"name":"bytes","nodeType":"ElementaryTypeName","src":"8577:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1048,"mutability":"mutable","name":"errorMessage","nameLocation":"8624:12:7","nodeType":"VariableDeclaration","scope":1065,"src":"8610:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1047,"name":"string","nodeType":"ElementaryTypeName","src":"8610:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8545:97:7"},"returnParameters":{"id":1052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1051,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1065,"src":"8666:12:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1050,"name":"bytes","nodeType":"ElementaryTypeName","src":"8666:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8665:14:7"},"scope":1086,"src":"8520:295:7","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1084,"nodeType":"Block","src":"8904:457:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1072,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1067,"src":"8980:10:7","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8991:6:7","memberName":"length","nodeType":"MemberAccess","src":"8980:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9000:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8980:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1082,"nodeType":"Block","src":"9310:45:7","statements":[{"expression":{"arguments":[{"id":1079,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1069,"src":"9331:12:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1078,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9324:6:7","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9324:20:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1081,"nodeType":"ExpressionStatement","src":"9324:20:7"}]},"id":1083,"nodeType":"IfStatement","src":"8976:379:7","trueBody":{"id":1077,"nodeType":"Block","src":"9003:301:7","statements":[{"AST":{"nodeType":"YulBlock","src":"9161:133:7","statements":[{"nodeType":"YulVariableDeclaration","src":"9179:40:7","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9208:10:7"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9202:5:7"},"nodeType":"YulFunctionCall","src":"9202:17:7"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9183:15:7","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9247:2:7","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9251:10:7"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9243:3:7"},"nodeType":"YulFunctionCall","src":"9243:19:7"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9264:15:7"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9236:6:7"},"nodeType":"YulFunctionCall","src":"9236:44:7"},"nodeType":"YulExpressionStatement","src":"9236:44:7"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1067,"isOffset":false,"isSlot":false,"src":"9208:10:7","valueSize":1},{"declaration":1067,"isOffset":false,"isSlot":false,"src":"9251:10:7","valueSize":1}],"id":1076,"nodeType":"InlineAssembly","src":"9152:142:7"}]}}]},"id":1085,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8830:7:7","nodeType":"FunctionDefinition","parameters":{"id":1070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1067,"mutability":"mutable","name":"returndata","nameLocation":"8851:10:7","nodeType":"VariableDeclaration","scope":1085,"src":"8838:23:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1066,"name":"bytes","nodeType":"ElementaryTypeName","src":"8838:5:7","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1069,"mutability":"mutable","name":"errorMessage","nameLocation":"8877:12:7","nodeType":"VariableDeclaration","scope":1085,"src":"8863:26:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1068,"name":"string","nodeType":"ElementaryTypeName","src":"8863:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8837:53:7"},"returnParameters":{"id":1071,"nodeType":"ParameterList","parameters":[],"src":"8904:0:7"},"scope":1086,"src":"8821:540:7","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":1087,"src":"194:9169:7","usedErrors":[],"usedEvents":[]}],"src":"101:9263:7"},"id":7},"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[1196]},"id":1197,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1088,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"193:23:8"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":1089,"nodeType":"StructuredDocumentation","src":"218:1201:8","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 ERC1967 implementation slot:\n ```solidity\n contract ERC1967 {\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(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n }\n ```\n _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n _Available since v4.9 for `string`, `bytes`._"},"fullyImplemented":true,"id":1196,"linearizedBaseContracts":[1196],"name":"StorageSlot","nameLocation":"1428:11:8","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":1092,"members":[{"constant":false,"id":1091,"mutability":"mutable","name":"value","nameLocation":"1483:5:8","nodeType":"VariableDeclaration","scope":1092,"src":"1475:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1090,"name":"address","nodeType":"ElementaryTypeName","src":"1475:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1453:11:8","nodeType":"StructDefinition","scope":1196,"src":"1446:49:8","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":1095,"members":[{"constant":false,"id":1094,"mutability":"mutable","name":"value","nameLocation":"1535:5:8","nodeType":"VariableDeclaration","scope":1095,"src":"1530:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1093,"name":"bool","nodeType":"ElementaryTypeName","src":"1530:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1508:11:8","nodeType":"StructDefinition","scope":1196,"src":"1501:46:8","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":1098,"members":[{"constant":false,"id":1097,"mutability":"mutable","name":"value","nameLocation":"1590:5:8","nodeType":"VariableDeclaration","scope":1098,"src":"1582:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1096,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1582:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1560:11:8","nodeType":"StructDefinition","scope":1196,"src":"1553:49:8","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":1101,"members":[{"constant":false,"id":1100,"mutability":"mutable","name":"value","nameLocation":"1645:5:8","nodeType":"VariableDeclaration","scope":1101,"src":"1637:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1099,"name":"uint256","nodeType":"ElementaryTypeName","src":"1637:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1615:11:8","nodeType":"StructDefinition","scope":1196,"src":"1608:49:8","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":1104,"members":[{"constant":false,"id":1103,"mutability":"mutable","name":"value","nameLocation":"1698:5:8","nodeType":"VariableDeclaration","scope":1104,"src":"1691:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1102,"name":"string","nodeType":"ElementaryTypeName","src":"1691:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1670:10:8","nodeType":"StructDefinition","scope":1196,"src":"1663:47:8","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":1107,"members":[{"constant":false,"id":1106,"mutability":"mutable","name":"value","nameLocation":"1749:5:8","nodeType":"VariableDeclaration","scope":1107,"src":"1743:11:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1105,"name":"bytes","nodeType":"ElementaryTypeName","src":"1743:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1723:9:8","nodeType":"StructDefinition","scope":1196,"src":"1716:45:8","visibility":"public"},{"body":{"id":1117,"nodeType":"Block","src":"1943:106:8","statements":[{"AST":{"nodeType":"YulBlock","src":"2005:38:8","statements":[{"nodeType":"YulAssignment","src":"2019:14:8","value":{"name":"slot","nodeType":"YulIdentifier","src":"2029:4:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2019:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1114,"isOffset":false,"isSlot":true,"src":"2019:6:8","suffix":"slot","valueSize":1},{"declaration":1110,"isOffset":false,"isSlot":false,"src":"2029:4:8","valueSize":1}],"id":1116,"nodeType":"InlineAssembly","src":"1996:47:8"}]},"documentation":{"id":1108,"nodeType":"StructuredDocumentation","src":"1767:87:8","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":1118,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1868:14:8","nodeType":"FunctionDefinition","parameters":{"id":1111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1110,"mutability":"mutable","name":"slot","nameLocation":"1891:4:8","nodeType":"VariableDeclaration","scope":1118,"src":"1883:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1109,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1883:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1882:14:8"},"returnParameters":{"id":1115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1114,"mutability":"mutable","name":"r","nameLocation":"1940:1:8","nodeType":"VariableDeclaration","scope":1118,"src":"1920:21:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":1113,"nodeType":"UserDefinedTypeName","pathNode":{"id":1112,"name":"AddressSlot","nameLocations":["1920:11:8"],"nodeType":"IdentifierPath","referencedDeclaration":1092,"src":"1920:11:8"},"referencedDeclaration":1092,"src":"1920:11:8","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1092_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1919:23:8"},"scope":1196,"src":"1859:190:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1128,"nodeType":"Block","src":"2231:106:8","statements":[{"AST":{"nodeType":"YulBlock","src":"2293:38:8","statements":[{"nodeType":"YulAssignment","src":"2307:14:8","value":{"name":"slot","nodeType":"YulIdentifier","src":"2317:4:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2307:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1125,"isOffset":false,"isSlot":true,"src":"2307:6:8","suffix":"slot","valueSize":1},{"declaration":1121,"isOffset":false,"isSlot":false,"src":"2317:4:8","valueSize":1}],"id":1127,"nodeType":"InlineAssembly","src":"2284:47:8"}]},"documentation":{"id":1119,"nodeType":"StructuredDocumentation","src":"2055:87:8","text":" @dev Returns an `BooleanSlot` with member `value` located at `slot`."},"id":1129,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2156:14:8","nodeType":"FunctionDefinition","parameters":{"id":1122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1121,"mutability":"mutable","name":"slot","nameLocation":"2179:4:8","nodeType":"VariableDeclaration","scope":1129,"src":"2171:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1120,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2171:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2170:14:8"},"returnParameters":{"id":1126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1125,"mutability":"mutable","name":"r","nameLocation":"2228:1:8","nodeType":"VariableDeclaration","scope":1129,"src":"2208:21:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1095_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":1124,"nodeType":"UserDefinedTypeName","pathNode":{"id":1123,"name":"BooleanSlot","nameLocations":["2208:11:8"],"nodeType":"IdentifierPath","referencedDeclaration":1095,"src":"2208:11:8"},"referencedDeclaration":1095,"src":"2208:11:8","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1095_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2207:23:8"},"scope":1196,"src":"2147:190:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1139,"nodeType":"Block","src":"2519:106:8","statements":[{"AST":{"nodeType":"YulBlock","src":"2581:38:8","statements":[{"nodeType":"YulAssignment","src":"2595:14:8","value":{"name":"slot","nodeType":"YulIdentifier","src":"2605:4:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2595:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1136,"isOffset":false,"isSlot":true,"src":"2595:6:8","suffix":"slot","valueSize":1},{"declaration":1132,"isOffset":false,"isSlot":false,"src":"2605:4:8","valueSize":1}],"id":1138,"nodeType":"InlineAssembly","src":"2572:47:8"}]},"documentation":{"id":1130,"nodeType":"StructuredDocumentation","src":"2343:87:8","text":" @dev Returns an `Bytes32Slot` with member `value` located at `slot`."},"id":1140,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2444:14:8","nodeType":"FunctionDefinition","parameters":{"id":1133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1132,"mutability":"mutable","name":"slot","nameLocation":"2467:4:8","nodeType":"VariableDeclaration","scope":1140,"src":"2459:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1131,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2459:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2458:14:8"},"returnParameters":{"id":1137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1136,"mutability":"mutable","name":"r","nameLocation":"2516:1:8","nodeType":"VariableDeclaration","scope":1140,"src":"2496:21:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$1098_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":1135,"nodeType":"UserDefinedTypeName","pathNode":{"id":1134,"name":"Bytes32Slot","nameLocations":["2496:11:8"],"nodeType":"IdentifierPath","referencedDeclaration":1098,"src":"2496:11:8"},"referencedDeclaration":1098,"src":"2496:11:8","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$1098_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2495:23:8"},"scope":1196,"src":"2435:190:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1150,"nodeType":"Block","src":"2807:106:8","statements":[{"AST":{"nodeType":"YulBlock","src":"2869:38:8","statements":[{"nodeType":"YulAssignment","src":"2883:14:8","value":{"name":"slot","nodeType":"YulIdentifier","src":"2893:4:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2883:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1147,"isOffset":false,"isSlot":true,"src":"2883:6:8","suffix":"slot","valueSize":1},{"declaration":1143,"isOffset":false,"isSlot":false,"src":"2893:4:8","valueSize":1}],"id":1149,"nodeType":"InlineAssembly","src":"2860:47:8"}]},"documentation":{"id":1141,"nodeType":"StructuredDocumentation","src":"2631:87:8","text":" @dev Returns an `Uint256Slot` with member `value` located at `slot`."},"id":1151,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2732:14:8","nodeType":"FunctionDefinition","parameters":{"id":1144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1143,"mutability":"mutable","name":"slot","nameLocation":"2755:4:8","nodeType":"VariableDeclaration","scope":1151,"src":"2747:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1142,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2747:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2746:14:8"},"returnParameters":{"id":1148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1147,"mutability":"mutable","name":"r","nameLocation":"2804:1:8","nodeType":"VariableDeclaration","scope":1151,"src":"2784:21:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$1101_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":1146,"nodeType":"UserDefinedTypeName","pathNode":{"id":1145,"name":"Uint256Slot","nameLocations":["2784:11:8"],"nodeType":"IdentifierPath","referencedDeclaration":1101,"src":"2784:11:8"},"referencedDeclaration":1101,"src":"2784:11:8","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$1101_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2783:23:8"},"scope":1196,"src":"2723:190:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1161,"nodeType":"Block","src":"3092:106:8","statements":[{"AST":{"nodeType":"YulBlock","src":"3154:38:8","statements":[{"nodeType":"YulAssignment","src":"3168:14:8","value":{"name":"slot","nodeType":"YulIdentifier","src":"3178:4:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3168:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1158,"isOffset":false,"isSlot":true,"src":"3168:6:8","suffix":"slot","valueSize":1},{"declaration":1154,"isOffset":false,"isSlot":false,"src":"3178:4:8","valueSize":1}],"id":1160,"nodeType":"InlineAssembly","src":"3145:47:8"}]},"documentation":{"id":1152,"nodeType":"StructuredDocumentation","src":"2919:86:8","text":" @dev Returns an `StringSlot` with member `value` located at `slot`."},"id":1162,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3019:13:8","nodeType":"FunctionDefinition","parameters":{"id":1155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1154,"mutability":"mutable","name":"slot","nameLocation":"3041:4:8","nodeType":"VariableDeclaration","scope":1162,"src":"3033:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1153,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3033:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3032:14:8"},"returnParameters":{"id":1159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1158,"mutability":"mutable","name":"r","nameLocation":"3089:1:8","nodeType":"VariableDeclaration","scope":1162,"src":"3070:20:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1104_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":1157,"nodeType":"UserDefinedTypeName","pathNode":{"id":1156,"name":"StringSlot","nameLocations":["3070:10:8"],"nodeType":"IdentifierPath","referencedDeclaration":1104,"src":"3070:10:8"},"referencedDeclaration":1104,"src":"3070:10:8","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1104_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3069:22:8"},"scope":1196,"src":"3010:188:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1172,"nodeType":"Block","src":"3400:112:8","statements":[{"AST":{"nodeType":"YulBlock","src":"3462:44:8","statements":[{"nodeType":"YulAssignment","src":"3476:20:8","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"3486:10:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3476:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1169,"isOffset":false,"isSlot":true,"src":"3476:6:8","suffix":"slot","valueSize":1},{"declaration":1165,"isOffset":false,"isSlot":true,"src":"3486:10:8","suffix":"slot","valueSize":1}],"id":1171,"nodeType":"InlineAssembly","src":"3453:53:8"}]},"documentation":{"id":1163,"nodeType":"StructuredDocumentation","src":"3204:101:8","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":1173,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3319:13:8","nodeType":"FunctionDefinition","parameters":{"id":1166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1165,"mutability":"mutable","name":"store","nameLocation":"3348:5:8","nodeType":"VariableDeclaration","scope":1173,"src":"3333:20:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1164,"name":"string","nodeType":"ElementaryTypeName","src":"3333:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3332:22:8"},"returnParameters":{"id":1170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1169,"mutability":"mutable","name":"r","nameLocation":"3397:1:8","nodeType":"VariableDeclaration","scope":1173,"src":"3378:20:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1104_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":1168,"nodeType":"UserDefinedTypeName","pathNode":{"id":1167,"name":"StringSlot","nameLocations":["3378:10:8"],"nodeType":"IdentifierPath","referencedDeclaration":1104,"src":"3378:10:8"},"referencedDeclaration":1104,"src":"3378:10:8","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$1104_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3377:22:8"},"scope":1196,"src":"3310:202:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1183,"nodeType":"Block","src":"3688:106:8","statements":[{"AST":{"nodeType":"YulBlock","src":"3750:38:8","statements":[{"nodeType":"YulAssignment","src":"3764:14:8","value":{"name":"slot","nodeType":"YulIdentifier","src":"3774:4:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3764:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1180,"isOffset":false,"isSlot":true,"src":"3764:6:8","suffix":"slot","valueSize":1},{"declaration":1176,"isOffset":false,"isSlot":false,"src":"3774:4:8","valueSize":1}],"id":1182,"nodeType":"InlineAssembly","src":"3741:47:8"}]},"documentation":{"id":1174,"nodeType":"StructuredDocumentation","src":"3518:85:8","text":" @dev Returns an `BytesSlot` with member `value` located at `slot`."},"id":1184,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3617:12:8","nodeType":"FunctionDefinition","parameters":{"id":1177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1176,"mutability":"mutable","name":"slot","nameLocation":"3638:4:8","nodeType":"VariableDeclaration","scope":1184,"src":"3630:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1175,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3630:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3629:14:8"},"returnParameters":{"id":1181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1180,"mutability":"mutable","name":"r","nameLocation":"3685:1:8","nodeType":"VariableDeclaration","scope":1184,"src":"3667:19:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1107_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":1179,"nodeType":"UserDefinedTypeName","pathNode":{"id":1178,"name":"BytesSlot","nameLocations":["3667:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":1107,"src":"3667:9:8"},"referencedDeclaration":1107,"src":"3667:9:8","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1107_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3666:21:8"},"scope":1196,"src":"3608:186:8","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1194,"nodeType":"Block","src":"3991:112:8","statements":[{"AST":{"nodeType":"YulBlock","src":"4053:44:8","statements":[{"nodeType":"YulAssignment","src":"4067:20:8","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"4077:10:8"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"4067:6:8"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":1191,"isOffset":false,"isSlot":true,"src":"4067:6:8","suffix":"slot","valueSize":1},{"declaration":1187,"isOffset":false,"isSlot":true,"src":"4077:10:8","suffix":"slot","valueSize":1}],"id":1193,"nodeType":"InlineAssembly","src":"4044:53:8"}]},"documentation":{"id":1185,"nodeType":"StructuredDocumentation","src":"3800:99:8","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":1195,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3913:12:8","nodeType":"FunctionDefinition","parameters":{"id":1188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1187,"mutability":"mutable","name":"store","nameLocation":"3940:5:8","nodeType":"VariableDeclaration","scope":1195,"src":"3926:19:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1186,"name":"bytes","nodeType":"ElementaryTypeName","src":"3926:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3925:21:8"},"returnParameters":{"id":1192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1191,"mutability":"mutable","name":"r","nameLocation":"3988:1:8","nodeType":"VariableDeclaration","scope":1195,"src":"3970:19:8","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1107_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":1190,"nodeType":"UserDefinedTypeName","pathNode":{"id":1189,"name":"BytesSlot","nameLocations":["3970:9:8"],"nodeType":"IdentifierPath","referencedDeclaration":1107,"src":"3970:9:8"},"referencedDeclaration":1107,"src":"3970:9:8","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$1107_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3969:21:8"},"scope":1196,"src":"3904:199:8","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1197,"src":"1420:2685:8","usedErrors":[],"usedEvents":[]}],"src":"193:3913:8"},"id":8}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005.json b/artifacts/build-info/solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005.json new file mode 100644 index 0000000..cb0ac95 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005.json @@ -0,0 +1,44 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/interfaces/IGateway.sol": "project/contracts/interfaces/IGateway.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev 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 amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" + }, + "project/contracts/interfaces/IGateway.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGateway {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t * @param rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t */\n\tevent SettleOut(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint64 settlePercent,\n\t\tuint64 rebatePercent\n\t);\n\n\t/**\n * @dev Emitted when an onramp order is successfully processed\n */\n event SettleIn(\n bytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n address indexed recipient,\n uint256 amount,\n address token,\n uint256 aggregatorFee,\n\t\tuint96 rate\n );\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(bytes32 indexed orderId, address indexed sender, uint256 indexed amount);\n\n\t/**\n\t * @dev Emitted when a local transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param providerAmount The amount that goes to the provider.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent LocalTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 providerAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/**\n\t * @dev Emitted when an FX transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent FxTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settleOut(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external returns (bool);\n\n\t/**\n * @notice Process settleIn order\n * @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator\n * @dev It process an order and transfers tokens to the recipient after deducting sender fees\n * @param _orderId Unique identifier for the order being processed\n * @param _token Address of the token to be sent to the user\n * @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\n * @param _senderFeeRecipient Address that will receive the sender fee\n * @param _senderFee Amount of fee to be paid to the sender fee recipient\n * @param _recipient Address of the recipient who will receive the tokens\n * @param _rate Rate at which the tokens are being sent\n * @return success Boolean indicating if the operation was successful\n */\n function settleIn(\n bytes32 _orderId,\n address _token,\n uint256 _amount,\n address _senderFeeRecipient,\n uint96 _senderFee,\n address _recipient,\n uint96 _rate\n ) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n\n\t/**\n\t * @notice Gets the address of the aggregator.\n\t * @return address The address of the aggregator.\n\t */\n\tfunction getAggregator() external view returns (address);\n}\n" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005.output.json b/artifacts/build-info/solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005.output.json new file mode 100644 index 0000000..61c854a --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005","output":{"contracts":{"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]}},\"version\":1}"}},"project/contracts/interfaces/IGateway.sol":{"IGateway":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"aggregatorFee","type":"uint256"},{"indexed":false,"internalType":"uint96","name":"rate","type":"uint96"}],"name":"SettleIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"SettleOut","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint96","name":"_senderFee","type":"uint96"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint96","name":"_rate","type":"uint96"}],"name":"settleIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settleOut","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":{"createOrder(address,uint256,uint96,address,uint256,address,string)":"809804f7","getAggregator()":"3ad59dbc","getOrderInfo(bytes32)":"768c6ec0","isTokenSupported(address)":"75151b63","refund(uint256,bytes32)":"71eedb88","settleIn(bytes32,address,uint256,address,uint96,address,uint96)":"d839de63","settleOut(bytes32,bytes32,address,uint64,uint64)":"32553efa"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"FxTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"senderAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"providerAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorAmount\",\"type\":\"uint256\"}],\"name\":\"LocalTransferFeeSplit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"aggregatorFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"rate\",\"type\":\"uint96\"}],\"name\":\"SettleIn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"settlePercent\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"rebatePercent\",\"type\":\"uint64\"}],\"name\":\"SettleOut\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAggregator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_senderFee\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"}],\"name\":\"settleIn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_rebatePercent\",\"type\":\"uint64\"}],\"name\":\"settleOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FxTransferFeeSplit(bytes32,uint256,uint256)\":{\"details\":\"Emitted when an FX transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)\":{\"details\":\"Emitted when a local transfer fee is split.\",\"params\":{\"aggregatorAmount\":\"The amount that goes to the aggregator.\",\"orderId\":\"The ID of the order.\",\"providerAmount\":\"The amount that goes to the provider.\",\"senderAmount\":\"The amount that goes to the sender.\"}},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"SenderFeeTransferred(bytes32,address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"SettleIn(bytes32,address,address,uint256,address,uint256,uint96)\":{\"details\":\"Emitted when an onramp order is successfully processed\"},\"SettleOut(bytes32,bytes32,address,uint64,uint64)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}}},\"kind\":\"dev\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"details\":\"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.\",\"params\":{\"_amount\":\"The amount in the decimal of `_token` to be locked.\",\"_rate\":\"The rate at which the sender intends to sell `_amount` of `_token`.\",\"_refundAddress\":\"The address that will receive `_amount` in `_token` when there is a need to refund.\",\"_senderFee\":\"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\",\"_senderFeeRecipient\":\"The address that will receive `_senderFee` in `_token`.\",\"_token\":\"The address of the token.\",\"messageHash\":\"The hash of the message.\"},\"returns\":{\"_orderId\":\"The ID of the order.\"}},\"getAggregator()\":{\"returns\":{\"_0\":\"address The address of the aggregator.\"}},\"getOrderInfo(bytes32)\":{\"params\":{\"_orderId\":\"The ID of the order.\"},\"returns\":{\"_0\":\"Order The order details.\"}},\"isTokenSupported(address)\":{\"params\":{\"_token\":\"The address of the token to check.\"},\"returns\":{\"_0\":\"bool the token is supported.\"}},\"refund(uint256,bytes32)\":{\"details\":\"Requirements: - Only aggregators can call this function.\",\"params\":{\"_fee\":\"The amount to be deducted from the amount to be refunded.\",\"_orderId\":\"The ID of the transaction.\"},\"returns\":{\"_0\":\"bool the refund is successful.\"}},\"settleIn(bytes32,address,uint256,address,uint96,address,uint96)\":{\"details\":\"Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregatorIt process an order and transfers tokens to the recipient after deducting sender fees\",\"params\":{\"_amount\":\"Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\",\"_orderId\":\"Unique identifier for the order being processed\",\"_rate\":\"Rate at which the tokens are being sent\",\"_recipient\":\"Address of the recipient who will receive the tokens\",\"_senderFee\":\"Amount of fee to be paid to the sender fee recipient\",\"_senderFeeRecipient\":\"Address that will receive the sender fee\",\"_token\":\"Address of the token to be sent to the user\"},\"returns\":{\"_0\":\"success Boolean indicating if the operation was successful\"}},\"settleOut(bytes32,bytes32,address,uint64,uint64)\":{\"params\":{\"_liquidityProvider\":\"The address of the liquidity provider.\",\"_orderId\":\"The ID of the transaction.\",\"_rebatePercent\":\"The percentage of the aggregator fee that is given back to the provider.\",\"_settlePercent\":\"The rate at which the transaction is settled.\",\"_splitOrderId\":\"The ID of the split order.\"},\"returns\":{\"_0\":\"bool the settlement is successful.\"}}},\"title\":\"IGateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createOrder(address,uint256,uint96,address,uint256,address,string)\":{\"notice\":\"Locks the sender's amount of token into Gateway.\"},\"getAggregator()\":{\"notice\":\"Gets the address of the aggregator.\"},\"getOrderInfo(bytes32)\":{\"notice\":\"Gets the details of an order.\"},\"isTokenSupported(address)\":{\"notice\":\"Checks if a token is supported by Gateway.\"},\"refund(uint256,bytes32)\":{\"notice\":\"Refunds to the specified refundable address.\"},\"settleIn(bytes32,address,uint256,address,uint96,address,uint96)\":{\"notice\":\"Process settleIn order\"},\"settleOut(bytes32,bytes32,address,uint64,uint64)\":{\"notice\":\"Settles a transaction and distributes rewards accordingly.\"}},\"notice\":\"Interface for the Gateway contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/interfaces/IGateway.sol\":\"IGateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"project/contracts/interfaces/IGateway.sol\":{\"keccak256\":\"0xde1b1c76a6886c05c36b81af43239e3705fc823040bd82b27a0e60ae37b9590e\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://fdbbbe9642743f6f16bb51fbb2a1d77b18dafd5d0b4e890409973290c24b598c\",\"dweb:/ipfs/QmPpcGz6YBFtE9wTikDbbL4tRYd1ki7zmaRzARqjiJfKP5\"]}},\"version\":1}"}}},"sources":{"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[77]},"id":78,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"131:70:0","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":77,"linearizedBaseContracts":[77],"name":"IERC20","nameLocation":"212:6:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"225:158:0","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":11,"name":"Transfer","nameLocation":"394:8:0","nodeType":"EventDefinition","parameters":{"id":10,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:0","nodeType":"VariableDeclaration","scope":11,"src":"403:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:0","nodeType":"VariableDeclaration","scope":11,"src":"425:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:0","nodeType":"VariableDeclaration","scope":11,"src":"445:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:0"},"src":"388:72:0"},{"anonymous":false,"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"466:148:0","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":20,"name":"Approval","nameLocation":"625:8:0","nodeType":"EventDefinition","parameters":{"id":19,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:0","nodeType":"VariableDeclaration","scope":20,"src":"634:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:0","nodeType":"VariableDeclaration","scope":20,"src":"657:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:0","nodeType":"VariableDeclaration","scope":20,"src":"682:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:0"},"src":"619:78:0"},{"documentation":{"id":21,"nodeType":"StructuredDocumentation","src":"703:66:0","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":26,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:0","nodeType":"FunctionDefinition","parameters":{"id":22,"nodeType":"ParameterList","parameters":[],"src":"794:2:0"},"returnParameters":{"id":25,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26,"src":"820:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:0"},"scope":77,"src":"774:55:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":27,"nodeType":"StructuredDocumentation","src":"835:72:0","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":34,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:0","nodeType":"FunctionDefinition","parameters":{"id":30,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29,"mutability":"mutable","name":"account","nameLocation":"939:7:0","nodeType":"VariableDeclaration","scope":34,"src":"931:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:0"},"returnParameters":{"id":33,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34,"src":"971:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:0"},"scope":77,"src":"912:68:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":35,"nodeType":"StructuredDocumentation","src":"986:202:0","text":" @dev Moves `amount` 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":44,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:0","nodeType":"FunctionDefinition","parameters":{"id":40,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37,"mutability":"mutable","name":"to","nameLocation":"1219:2:0","nodeType":"VariableDeclaration","scope":44,"src":"1211:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":36,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39,"mutability":"mutable","name":"amount","nameLocation":"1231:6:0","nodeType":"VariableDeclaration","scope":44,"src":"1223:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:0"},"returnParameters":{"id":43,"nodeType":"ParameterList","parameters":[{"constant":false,"id":42,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":44,"src":"1257:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":41,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:0"},"scope":77,"src":"1193:70:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":45,"nodeType":"StructuredDocumentation","src":"1269:264:0","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":54,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:0","nodeType":"FunctionDefinition","parameters":{"id":50,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"owner","nameLocation":"1565:5:0","nodeType":"VariableDeclaration","scope":54,"src":"1557:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":46,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":49,"mutability":"mutable","name":"spender","nameLocation":"1580:7:0","nodeType":"VariableDeclaration","scope":54,"src":"1572:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":48,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:0"},"returnParameters":{"id":53,"nodeType":"ParameterList","parameters":[{"constant":false,"id":52,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":54,"src":"1612:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":51,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:0"},"scope":77,"src":"1538:83:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":55,"nodeType":"StructuredDocumentation","src":"1627:642:0","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":64,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:0","nodeType":"FunctionDefinition","parameters":{"id":60,"nodeType":"ParameterList","parameters":[{"constant":false,"id":57,"mutability":"mutable","name":"spender","nameLocation":"2299:7:0","nodeType":"VariableDeclaration","scope":64,"src":"2291:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":56,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":59,"mutability":"mutable","name":"amount","nameLocation":"2316:6:0","nodeType":"VariableDeclaration","scope":64,"src":"2308:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":58,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:0"},"returnParameters":{"id":63,"nodeType":"ParameterList","parameters":[{"constant":false,"id":62,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":64,"src":"2342:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":61,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:0"},"scope":77,"src":"2274:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":65,"nodeType":"StructuredDocumentation","src":"2354:287:0","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":76,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:0","nodeType":"FunctionDefinition","parameters":{"id":72,"nodeType":"ParameterList","parameters":[{"constant":false,"id":67,"mutability":"mutable","name":"from","nameLocation":"2676:4:0","nodeType":"VariableDeclaration","scope":76,"src":"2668:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":66,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":69,"mutability":"mutable","name":"to","nameLocation":"2690:2:0","nodeType":"VariableDeclaration","scope":76,"src":"2682:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":68,"name":"address","nodeType":"ElementaryTypeName","src":"2682:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":71,"mutability":"mutable","name":"amount","nameLocation":"2702:6:0","nodeType":"VariableDeclaration","scope":76,"src":"2694:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":70,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:42:0"},"returnParameters":{"id":75,"nodeType":"ParameterList","parameters":[{"constant":false,"id":74,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":76,"src":"2728:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":73,"name":"bool","nodeType":"ElementaryTypeName","src":"2728:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2727:6:0"},"scope":77,"src":"2646:88:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":78,"src":"202:2534:0","usedErrors":[],"usedEvents":[11,20]}],"src":"106:2631:0"},"id":0},"project/contracts/interfaces/IGateway.sol":{"ast":{"absolutePath":"project/contracts/interfaces/IGateway.sol","exportedSymbols":{"IERC20":[77],"IGateway":[277]},"id":278,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":79,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:1"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":81,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":278,"sourceUnit":78,"src":"65:70:1","symbolAliases":[{"foreign":{"id":80,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"73:6:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGateway","contractDependencies":[],"contractKind":"interface","documentation":{"id":82,"nodeType":"StructuredDocumentation","src":"137:73:1","text":" @title IGateway\n @notice Interface for the Gateway contract."},"fullyImplemented":false,"id":277,"linearizedBaseContracts":[277],"name":"IGateway","nameLocation":"221:8:1","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":83,"nodeType":"StructuredDocumentation","src":"417:335:1","text":" @dev Emitted when a deposit is made.\n @param sender The address of the sender.\n @param token The address of the deposited token.\n @param amount The amount of the deposit.\n @param orderId The ID of the order.\n @param rate The rate at which the deposit is made.\n @param messageHash The hash of the message."},"eventSelector":"40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a137","id":99,"name":"OrderCreated","nameLocation":"760:12:1","nodeType":"EventDefinition","parameters":{"id":98,"nodeType":"ParameterList","parameters":[{"constant":false,"id":85,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"792:6:1","nodeType":"VariableDeclaration","scope":99,"src":"776:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":84,"name":"address","nodeType":"ElementaryTypeName","src":"776:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":87,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"818:5:1","nodeType":"VariableDeclaration","scope":99,"src":"802:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":86,"name":"address","nodeType":"ElementaryTypeName","src":"802:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":89,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"843:6:1","nodeType":"VariableDeclaration","scope":99,"src":"827:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":88,"name":"uint256","nodeType":"ElementaryTypeName","src":"827:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":91,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"861:11:1","nodeType":"VariableDeclaration","scope":99,"src":"853:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":90,"name":"uint256","nodeType":"ElementaryTypeName","src":"853:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":93,"indexed":false,"mutability":"mutable","name":"orderId","nameLocation":"884:7:1","nodeType":"VariableDeclaration","scope":99,"src":"876:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":92,"name":"bytes32","nodeType":"ElementaryTypeName","src":"876:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":95,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"903:4:1","nodeType":"VariableDeclaration","scope":99,"src":"895:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":94,"name":"uint256","nodeType":"ElementaryTypeName","src":"895:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":97,"indexed":false,"mutability":"mutable","name":"messageHash","nameLocation":"918:11:1","nodeType":"VariableDeclaration","scope":99,"src":"911:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":96,"name":"string","nodeType":"ElementaryTypeName","src":"911:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"772:160:1"},"src":"754:179:1"},{"anonymous":false,"documentation":{"id":100,"nodeType":"StructuredDocumentation","src":"936:401:1","text":" @dev Emitted when an aggregator settles a transaction.\n @param splitOrderId The ID of the split order.\n @param orderId The ID of the order.\n @param liquidityProvider The address of the liquidity provider.\n @param settlePercent The percentage at which the transaction is settled.\n @param rebatePercent The percentage of the aggregator fee that is given back to the provider."},"eventSelector":"1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c45","id":112,"name":"SettleOut","nameLocation":"1345:9:1","nodeType":"EventDefinition","parameters":{"id":111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":102,"indexed":false,"mutability":"mutable","name":"splitOrderId","nameLocation":"1366:12:1","nodeType":"VariableDeclaration","scope":112,"src":"1358:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":101,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1358:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":104,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1398:7:1","nodeType":"VariableDeclaration","scope":112,"src":"1382:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":103,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1382:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":106,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1425:17:1","nodeType":"VariableDeclaration","scope":112,"src":"1409:33:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":105,"name":"address","nodeType":"ElementaryTypeName","src":"1409:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":108,"indexed":false,"mutability":"mutable","name":"settlePercent","nameLocation":"1453:13:1","nodeType":"VariableDeclaration","scope":112,"src":"1446:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":107,"name":"uint64","nodeType":"ElementaryTypeName","src":"1446:6:1","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":110,"indexed":false,"mutability":"mutable","name":"rebatePercent","nameLocation":"1477:13:1","nodeType":"VariableDeclaration","scope":112,"src":"1470:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":109,"name":"uint64","nodeType":"ElementaryTypeName","src":"1470:6:1","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1354:139:1"},"src":"1339:155:1"},{"anonymous":false,"documentation":{"id":113,"nodeType":"StructuredDocumentation","src":"1497:78:1","text":" @dev Emitted when an onramp order is successfully processed"},"eventSelector":"b5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b","id":129,"name":"SettleIn","nameLocation":"1586:8:1","nodeType":"EventDefinition","parameters":{"id":128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":115,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1620:7:1","nodeType":"VariableDeclaration","scope":129,"src":"1604:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":114,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1604:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":117,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1647:17:1","nodeType":"VariableDeclaration","scope":129,"src":"1631:33:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":116,"name":"address","nodeType":"ElementaryTypeName","src":"1631:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":119,"indexed":true,"mutability":"mutable","name":"recipient","nameLocation":"1690:9:1","nodeType":"VariableDeclaration","scope":129,"src":"1674:25:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":118,"name":"address","nodeType":"ElementaryTypeName","src":"1674:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":121,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1717:6:1","nodeType":"VariableDeclaration","scope":129,"src":"1709:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":120,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":123,"indexed":false,"mutability":"mutable","name":"token","nameLocation":"1741:5:1","nodeType":"VariableDeclaration","scope":129,"src":"1733:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":122,"name":"address","nodeType":"ElementaryTypeName","src":"1733:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":125,"indexed":false,"mutability":"mutable","name":"aggregatorFee","nameLocation":"1764:13:1","nodeType":"VariableDeclaration","scope":129,"src":"1756:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":124,"name":"uint256","nodeType":"ElementaryTypeName","src":"1756:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":127,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"1788:4:1","nodeType":"VariableDeclaration","scope":129,"src":"1781:11:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":126,"name":"uint96","nodeType":"ElementaryTypeName","src":"1781:6:1","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1594:204:1"},"src":"1580:219:1"},{"anonymous":false,"documentation":{"id":130,"nodeType":"StructuredDocumentation","src":"1802:163:1","text":" @dev Emitted when an aggregator refunds a transaction.\n @param fee The fee deducted from the refund amount.\n @param orderId The ID of the order."},"eventSelector":"0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e","id":136,"name":"OrderRefunded","nameLocation":"1973:13:1","nodeType":"EventDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":132,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"1995:3:1","nodeType":"VariableDeclaration","scope":136,"src":"1987:11:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":131,"name":"uint256","nodeType":"ElementaryTypeName","src":"1987:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":134,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2016:7:1","nodeType":"VariableDeclaration","scope":136,"src":"2000:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":133,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2000:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1986:38:1"},"src":"1967:58:1"},{"anonymous":false,"documentation":{"id":137,"nodeType":"StructuredDocumentation","src":"2028:161:1","text":" @dev Emitted when the sender's fee is transferred.\n @param sender The address of the sender.\n @param amount The amount of the fee transferred."},"eventSelector":"879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c","id":145,"name":"SenderFeeTransferred","nameLocation":"2197:20:1","nodeType":"EventDefinition","parameters":{"id":144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":139,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2234:7:1","nodeType":"VariableDeclaration","scope":145,"src":"2218:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":138,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2218:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":141,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"2259:6:1","nodeType":"VariableDeclaration","scope":145,"src":"2243:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":140,"name":"address","nodeType":"ElementaryTypeName","src":"2243:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":143,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"2283:6:1","nodeType":"VariableDeclaration","scope":145,"src":"2267:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":142,"name":"uint256","nodeType":"ElementaryTypeName","src":"2267:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2217:73:1"},"src":"2191:100:1"},{"anonymous":false,"documentation":{"id":146,"nodeType":"StructuredDocumentation","src":"2294:293:1","text":" @dev Emitted when a local transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param providerAmount The amount that goes to the provider.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4","id":156,"name":"LocalTransferFeeSplit","nameLocation":"2595:21:1","nodeType":"EventDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":148,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"2636:7:1","nodeType":"VariableDeclaration","scope":156,"src":"2620:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":147,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2620:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":150,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"2655:12:1","nodeType":"VariableDeclaration","scope":156,"src":"2647:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":149,"name":"uint256","nodeType":"ElementaryTypeName","src":"2647:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":152,"indexed":false,"mutability":"mutable","name":"providerAmount","nameLocation":"2679:14:1","nodeType":"VariableDeclaration","scope":156,"src":"2671:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":151,"name":"uint256","nodeType":"ElementaryTypeName","src":"2671:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":154,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"2705:16:1","nodeType":"VariableDeclaration","scope":156,"src":"2697:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":153,"name":"uint256","nodeType":"ElementaryTypeName","src":"2697:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2616:108:1"},"src":"2589:136:1"},{"anonymous":false,"documentation":{"id":157,"nodeType":"StructuredDocumentation","src":"2728:227:1","text":" @dev Emitted when an FX transfer fee is split.\n @param orderId The ID of the order.\n @param senderAmount The amount that goes to the sender.\n @param aggregatorAmount The amount that goes to the aggregator."},"eventSelector":"88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a","id":165,"name":"FxTransferFeeSplit","nameLocation":"2963:18:1","nodeType":"EventDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":159,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"3001:7:1","nodeType":"VariableDeclaration","scope":165,"src":"2985:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2985:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":161,"indexed":false,"mutability":"mutable","name":"senderAmount","nameLocation":"3020:12:1","nodeType":"VariableDeclaration","scope":165,"src":"3012:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":160,"name":"uint256","nodeType":"ElementaryTypeName","src":"3012:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":163,"indexed":false,"mutability":"mutable","name":"aggregatorAmount","nameLocation":"3044:16:1","nodeType":"VariableDeclaration","scope":165,"src":"3036:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":162,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2981:82:1"},"src":"2957:107:1"},{"canonicalName":"IGateway.Order","documentation":{"id":166,"nodeType":"StructuredDocumentation","src":"3252:592:1","text":" @dev Struct representing an order.\n @param sender The address of the sender.\n @param token The address of the token.\n @param senderFeeRecipient The address of the sender fee recipient.\n @param senderFee The fee to be paid to the sender fee recipient.\n @param protocolFee The protocol fee to be paid.\n @param isFulfilled Whether the order is fulfilled.\n @param isRefunded Whether the order is refunded.\n @param refundAddress The address to which the refund is made.\n @param currentBPS The current basis points.\n @param amount The amount of the order."},"id":187,"members":[{"constant":false,"id":168,"mutability":"mutable","name":"sender","nameLocation":"3871:6:1","nodeType":"VariableDeclaration","scope":187,"src":"3863:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":167,"name":"address","nodeType":"ElementaryTypeName","src":"3863:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":170,"mutability":"mutable","name":"token","nameLocation":"3889:5:1","nodeType":"VariableDeclaration","scope":187,"src":"3881:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":169,"name":"address","nodeType":"ElementaryTypeName","src":"3881:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":172,"mutability":"mutable","name":"senderFeeRecipient","nameLocation":"3906:18:1","nodeType":"VariableDeclaration","scope":187,"src":"3898:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":171,"name":"address","nodeType":"ElementaryTypeName","src":"3898:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":174,"mutability":"mutable","name":"senderFee","nameLocation":"3936:9:1","nodeType":"VariableDeclaration","scope":187,"src":"3928:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":173,"name":"uint256","nodeType":"ElementaryTypeName","src":"3928:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":176,"mutability":"mutable","name":"protocolFee","nameLocation":"3957:11:1","nodeType":"VariableDeclaration","scope":187,"src":"3949:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":175,"name":"uint256","nodeType":"ElementaryTypeName","src":"3949:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":178,"mutability":"mutable","name":"isFulfilled","nameLocation":"3977:11:1","nodeType":"VariableDeclaration","scope":187,"src":"3972:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":177,"name":"bool","nodeType":"ElementaryTypeName","src":"3972:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":180,"mutability":"mutable","name":"isRefunded","nameLocation":"3997:10:1","nodeType":"VariableDeclaration","scope":187,"src":"3992:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":179,"name":"bool","nodeType":"ElementaryTypeName","src":"3992:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":182,"mutability":"mutable","name":"refundAddress","nameLocation":"4019:13:1","nodeType":"VariableDeclaration","scope":187,"src":"4011:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":181,"name":"address","nodeType":"ElementaryTypeName","src":"4011:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":184,"mutability":"mutable","name":"currentBPS","nameLocation":"4043:10:1","nodeType":"VariableDeclaration","scope":187,"src":"4036:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":183,"name":"uint96","nodeType":"ElementaryTypeName","src":"4036:6:1","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":186,"mutability":"mutable","name":"amount","nameLocation":"4065:6:1","nodeType":"VariableDeclaration","scope":187,"src":"4057:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":185,"name":"uint256","nodeType":"ElementaryTypeName","src":"4057:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Order","nameLocation":"3853:5:1","nodeType":"StructDefinition","scope":277,"src":"3846:229:1","visibility":"public"},{"documentation":{"id":188,"nodeType":"StructuredDocumentation","src":"4270:964:1","text":" @notice Locks the sender's amount of token into Gateway.\n @dev Requirements:\n - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n - `_token` must be an acceptable token. See {isTokenSupported}.\n - `amount` must be greater than minimum.\n - `_refundAddress` refund address must not be zero address.\n @param _token The address of the token.\n @param _amount The amount in the decimal of `_token` to be locked.\n @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n @param messageHash The hash of the message.\n @return _orderId The ID of the order."},"functionSelector":"809804f7","id":207,"implemented":false,"kind":"function","modifiers":[],"name":"createOrder","nameLocation":"5245:11:1","nodeType":"FunctionDefinition","parameters":{"id":203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":190,"mutability":"mutable","name":"_token","nameLocation":"5268:6:1","nodeType":"VariableDeclaration","scope":207,"src":"5260:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":189,"name":"address","nodeType":"ElementaryTypeName","src":"5260:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":192,"mutability":"mutable","name":"_amount","nameLocation":"5286:7:1","nodeType":"VariableDeclaration","scope":207,"src":"5278:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":191,"name":"uint256","nodeType":"ElementaryTypeName","src":"5278:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":194,"mutability":"mutable","name":"_rate","nameLocation":"5304:5:1","nodeType":"VariableDeclaration","scope":207,"src":"5297:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":193,"name":"uint96","nodeType":"ElementaryTypeName","src":"5297:6:1","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":196,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"5321:19:1","nodeType":"VariableDeclaration","scope":207,"src":"5313:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":195,"name":"address","nodeType":"ElementaryTypeName","src":"5313:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":198,"mutability":"mutable","name":"_senderFee","nameLocation":"5352:10:1","nodeType":"VariableDeclaration","scope":207,"src":"5344:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":197,"name":"uint256","nodeType":"ElementaryTypeName","src":"5344:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":200,"mutability":"mutable","name":"_refundAddress","nameLocation":"5374:14:1","nodeType":"VariableDeclaration","scope":207,"src":"5366:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":199,"name":"address","nodeType":"ElementaryTypeName","src":"5366:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":202,"mutability":"mutable","name":"messageHash","nameLocation":"5408:11:1","nodeType":"VariableDeclaration","scope":207,"src":"5392:27:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":201,"name":"string","nodeType":"ElementaryTypeName","src":"5392:6:1","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5256:166:1"},"returnParameters":{"id":206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":205,"mutability":"mutable","name":"_orderId","nameLocation":"5449:8:1","nodeType":"VariableDeclaration","scope":207,"src":"5441:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":204,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5441:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5440:18:1"},"scope":277,"src":"5236:223:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":208,"nodeType":"StructuredDocumentation","src":"5462:465:1","text":" @notice Settles a transaction and distributes rewards accordingly.\n @param _splitOrderId The ID of the split order.\n @param _orderId The ID of the transaction.\n @param _liquidityProvider The address of the liquidity provider.\n @param _settlePercent The rate at which the transaction is settled.\n @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n @return bool the settlement is successful."},"functionSelector":"32553efa","id":223,"implemented":false,"kind":"function","modifiers":[],"name":"settleOut","nameLocation":"5938:9:1","nodeType":"FunctionDefinition","parameters":{"id":219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":210,"mutability":"mutable","name":"_splitOrderId","nameLocation":"5959:13:1","nodeType":"VariableDeclaration","scope":223,"src":"5951:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":209,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5951:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":212,"mutability":"mutable","name":"_orderId","nameLocation":"5984:8:1","nodeType":"VariableDeclaration","scope":223,"src":"5976:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":211,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5976:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":214,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"6004:18:1","nodeType":"VariableDeclaration","scope":223,"src":"5996:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":213,"name":"address","nodeType":"ElementaryTypeName","src":"5996:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":216,"mutability":"mutable","name":"_settlePercent","nameLocation":"6033:14:1","nodeType":"VariableDeclaration","scope":223,"src":"6026:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":215,"name":"uint64","nodeType":"ElementaryTypeName","src":"6026:6:1","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":218,"mutability":"mutable","name":"_rebatePercent","nameLocation":"6058:14:1","nodeType":"VariableDeclaration","scope":223,"src":"6051:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":217,"name":"uint64","nodeType":"ElementaryTypeName","src":"6051:6:1","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5947:128:1"},"returnParameters":{"id":222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":223,"src":"6094:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":220,"name":"bool","nodeType":"ElementaryTypeName","src":"6094:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6093:6:1"},"scope":277,"src":"5929:171:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":224,"nodeType":"StructuredDocumentation","src":"6103:920:1","text":" @notice Process settleIn order\n @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator\n @dev It process an order and transfers tokens to the recipient after deducting sender fees\n @param _orderId Unique identifier for the order being processed\n @param _token Address of the token to be sent to the user\n @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\n @param _senderFeeRecipient Address that will receive the sender fee\n @param _senderFee Amount of fee to be paid to the sender fee recipient\n @param _recipient Address of the recipient who will receive the tokens\n @param _rate Rate at which the tokens are being sent\n @return success Boolean indicating if the operation was successful"},"functionSelector":"d839de63","id":243,"implemented":false,"kind":"function","modifiers":[],"name":"settleIn","nameLocation":"7037:8:1","nodeType":"FunctionDefinition","parameters":{"id":239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":226,"mutability":"mutable","name":"_orderId","nameLocation":"7063:8:1","nodeType":"VariableDeclaration","scope":243,"src":"7055:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":225,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7055:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":228,"mutability":"mutable","name":"_token","nameLocation":"7089:6:1","nodeType":"VariableDeclaration","scope":243,"src":"7081:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":227,"name":"address","nodeType":"ElementaryTypeName","src":"7081:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":230,"mutability":"mutable","name":"_amount","nameLocation":"7113:7:1","nodeType":"VariableDeclaration","scope":243,"src":"7105:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":229,"name":"uint256","nodeType":"ElementaryTypeName","src":"7105:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":232,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"7138:19:1","nodeType":"VariableDeclaration","scope":243,"src":"7130:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":231,"name":"address","nodeType":"ElementaryTypeName","src":"7130:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":234,"mutability":"mutable","name":"_senderFee","nameLocation":"7174:10:1","nodeType":"VariableDeclaration","scope":243,"src":"7167:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":233,"name":"uint96","nodeType":"ElementaryTypeName","src":"7167:6:1","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":236,"mutability":"mutable","name":"_recipient","nameLocation":"7202:10:1","nodeType":"VariableDeclaration","scope":243,"src":"7194:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":235,"name":"address","nodeType":"ElementaryTypeName","src":"7194:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":238,"mutability":"mutable","name":"_rate","nameLocation":"7229:5:1","nodeType":"VariableDeclaration","scope":243,"src":"7222:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":237,"name":"uint96","nodeType":"ElementaryTypeName","src":"7222:6:1","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"7045:195:1"},"returnParameters":{"id":242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":241,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":243,"src":"7259:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":240,"name":"bool","nodeType":"ElementaryTypeName","src":"7259:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7258:6:1"},"scope":277,"src":"7028:237:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"7268:299:1","text":" @notice Refunds to the specified refundable address.\n @dev Requirements:\n - Only aggregators can call this function.\n @param _fee The amount to be deducted from the amount to be refunded.\n @param _orderId The ID of the transaction.\n @return bool the refund is successful."},"functionSelector":"71eedb88","id":253,"implemented":false,"kind":"function","modifiers":[],"name":"refund","nameLocation":"7578:6:1","nodeType":"FunctionDefinition","parameters":{"id":249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":246,"mutability":"mutable","name":"_fee","nameLocation":"7593:4:1","nodeType":"VariableDeclaration","scope":253,"src":"7585:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":245,"name":"uint256","nodeType":"ElementaryTypeName","src":"7585:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":248,"mutability":"mutable","name":"_orderId","nameLocation":"7607:8:1","nodeType":"VariableDeclaration","scope":253,"src":"7599:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":247,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7599:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7584:32:1"},"returnParameters":{"id":252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":251,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":253,"src":"7635:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":250,"name":"bool","nodeType":"ElementaryTypeName","src":"7635:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7634:6:1"},"scope":277,"src":"7569:72:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":254,"nodeType":"StructuredDocumentation","src":"7644:157:1","text":" @notice Checks if a token is supported by Gateway.\n @param _token The address of the token to check.\n @return bool the token is supported."},"functionSelector":"75151b63","id":261,"implemented":false,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"7812:16:1","nodeType":"FunctionDefinition","parameters":{"id":257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":256,"mutability":"mutable","name":"_token","nameLocation":"7837:6:1","nodeType":"VariableDeclaration","scope":261,"src":"7829:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":255,"name":"address","nodeType":"ElementaryTypeName","src":"7829:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7828:16:1"},"returnParameters":{"id":260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":259,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":261,"src":"7868:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":258,"name":"bool","nodeType":"ElementaryTypeName","src":"7868:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7867:6:1"},"scope":277,"src":"7803:71:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":262,"nodeType":"StructuredDocumentation","src":"7877:128:1","text":" @notice Gets the details of an order.\n @param _orderId The ID of the order.\n @return Order The order details."},"functionSelector":"768c6ec0","id":270,"implemented":false,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"8016:12:1","nodeType":"FunctionDefinition","parameters":{"id":265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"_orderId","nameLocation":"8037:8:1","nodeType":"VariableDeclaration","scope":270,"src":"8029:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":263,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8029:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8028:18:1"},"returnParameters":{"id":269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":270,"src":"8070:12:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$187_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":267,"nodeType":"UserDefinedTypeName","pathNode":{"id":266,"name":"Order","nameLocations":["8070:5:1"],"nodeType":"IdentifierPath","referencedDeclaration":187,"src":"8070:5:1"},"referencedDeclaration":187,"src":"8070:5:1","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$187_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"8069:14:1"},"scope":277,"src":"8007:77:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":271,"nodeType":"StructuredDocumentation","src":"8087:107:1","text":" @notice Gets the address of the aggregator.\n @return address The address of the aggregator."},"functionSelector":"3ad59dbc","id":276,"implemented":false,"kind":"function","modifiers":[],"name":"getAggregator","nameLocation":"8205:13:1","nodeType":"FunctionDefinition","parameters":{"id":272,"nodeType":"ParameterList","parameters":[],"src":"8218:2:1"},"returnParameters":{"id":275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":274,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":276,"src":"8244:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":273,"name":"address","nodeType":"ElementaryTypeName","src":"8244:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8243:9:1"},"scope":277,"src":"8196:57:1","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":278,"src":"211:8044:1","usedErrors":[],"usedEvents":[99,112,129,136,145,156,165]}],"src":"39:8217:1"},"id":1}}}} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.json b/artifacts/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.json new file mode 100644 index 0000000..c7d1652 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.json @@ -0,0 +1,53 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/ProviderBatchCallAndSponsor.sol": "project/contracts/ProviderBatchCallAndSponsor.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Strings.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS,\n InvalidSignatureV // Deprecated in v4.8\n }\n\n function _throwError(RecoverError error) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert(\"ECDSA: invalid signature\");\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert(\"ECDSA: invalid signature length\");\n } else if (error == RecoverError.InvalidSignatureS) {\n revert(\"ECDSA: invalid signature 's' value\");\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature` or error string. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n /// @solidity memory-safe-assembly\n assembly {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength);\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, signature);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n *\n * _Available since v4.2._\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature);\n }\n\n return (signer, RecoverError.NoError);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n // 32 is the length in bytes of hash,\n // enforced by the type signature above\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n mstore(0x1c, hash)\n message := keccak256(0x00, 0x3c)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from `s`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", Strings.toString(s.length), s));\n }\n\n /**\n * @dev Returns an Ethereum Signed Typed Data, created from a\n * `domainSeparator` and a `structHash`. This produces hash corresponding\n * to the one signed with the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n * JSON-RPC method as part of EIP-712.\n *\n * See {recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n /// @solidity memory-safe-assembly\n assembly {\n let ptr := mload(0x40)\n mstore(ptr, \"\\x19\\x01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n data := keccak256(ptr, 0x42)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Data with intended validator, created from a\n * `validator` and `data` according to the version 0 of EIP-191.\n *\n * See {recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\nimport \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\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 toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(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 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] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\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 representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n" + }, + "project/contracts/ProviderBatchCallAndSponsor.sol": { + "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.18;\n\nimport \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\n\ninterface IGateway {\n function getAggregator() external view returns (address);\n}\n/**\n * @title ProviderBatchCallAndSponsor\n *\n * When an EOA upgrades via EIP‑7702, it delegates to this implementation.\n * Off‑chain, the account signs a message authorizing a batch of calls. The message is the hash of:\n * keccak256(abi.encodePacked(nonce, calls))\n * The signature must be generated with the EOA’s private key so that, once upgraded, the recovered signer equals the account’s own address (i.e. address(this)).\n *\n * This contract provides just one way to execute a batch:\n * 1. With a signature: Any sponsor can submit the batch if it carries a valid signature.\n *\n * Replay protection is achieved by using a nonce that is included in the signed message.\n */\ncontract ProviderBatchCallAndSponsor {\n using ECDSA for bytes32;\n \n // constant because when it assigned to eao we want to ensure it never changes\n /// @notice The address of the Gateway contract.\n address public constant gatewayAddress = 0x56dA8fCE8FD64CaaE90D80DED55587b282bb4303;\n /// @notice A nonce used for replay protection.\n uint256 public nonce;\n\n /// @notice Represents a single call within a batch.\n struct Call {\n address to;\n uint256 value;\n bytes data;\n }\n\n modifier onlyAggregator() {\n\t\trequire(msg.sender == IGateway(gatewayAddress).getAggregator(), \"OnlyAggregator\");\n\t\t_;\n\t}\n\n /// @notice Emitted for every individual call executed.\n event CallExecuted(address indexed sender, address indexed to, uint256 value, bytes data);\n /// @notice Emitted when a full batch is executed.\n event BatchExecuted(uint256 indexed nonce, Call[] calls);\n\n /**\n * @notice Executes a batch of calls using an off–chain signature.\n * @param calls An array of Call structs containing destination, ETH value, and calldata.\n * @param signature The ECDSA signature over the current nonce and the call data.\n *\n * The signature must be produced off–chain by signing:\n * The signing key should be the account’s key (which becomes the smart account’s own identity after upgrade).\n */\n function execute(Call[] calldata calls, bytes calldata signature) external payable onlyAggregator {\n // Compute the digest that the account was expected to sign.\n bytes memory encodedCalls;\n for (uint256 i = 0; i < calls.length; i++) {\n encodedCalls = abi.encodePacked(encodedCalls, calls[i].to, calls[i].value, calls[i].data);\n }\n bytes32 digest = keccak256(abi.encodePacked(nonce, encodedCalls));\n \n bytes32 ethSignedMessageHash = ECDSA.toEthSignedMessageHash(digest);\n\n // Recover the signer from the provided signature.\n address recovered = ECDSA.recover(ethSignedMessageHash, signature);\n require(recovered == address(this), \"Invalid signature\");\n\n _executeBatch(calls);\n }\n\n /**\n * @notice Executes a batch of calls directly.\n * @dev This contract doesnt authorized self execution.\n * @param calls An array of Call structs containing destination, ETH value, and calldata.\n */\n function execute(Call[] calldata calls) external payable {\n revert(\"Not implemented\"); // we don't expect this to be called directly\n }\n\n /**\n * @dev Internal function that handles batch execution and nonce incrementation.\n * @param calls An array of Call structs.\n */\n function _executeBatch(Call[] calldata calls) internal {\n uint256 currentNonce = nonce;\n nonce++; // Increment nonce to protect against replay attacks\n\n for (uint256 i = 0; i < calls.length; i++) {\n _executeCall(calls[i]);\n }\n\n emit BatchExecuted(currentNonce, calls);\n }\n\n /**\n * @dev Internal function to execute a single call.\n * @param callItem The Call struct containing destination, value, and calldata.\n */\n function _executeCall(Call calldata callItem) internal {\n (bool success,) = callItem.to.call{value: callItem.value}(callItem.data);\n require(success, \"Call reverted\");\n emit CallExecuted(msg.sender, callItem.to, callItem.value, callItem.data);\n }\n\n // Allow the contract to receive ETH (e.g. from DEX swaps or other transfers).\n fallback() external payable {}\n receive() external payable {}\n}" + } + } + } +} \ No newline at end of file diff --git a/artifacts/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.output.json b/artifacts/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.output.json new file mode 100644 index 0000000..3881506 --- /dev/null +++ b/artifacts/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.output.json @@ -0,0 +1 @@ +{"_format":"hh3-sol-build-info-output-1","id":"solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82","output":{"contracts":{"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol":{"Strings":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212204acbf8faaf6203e02d9d68a1810ae6f3eb1133e424a0a1a5ec4a522c0d8baa3364736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4A 0xCB 0xF8 STATICCALL 0xAF PUSH3 0x3E02D SWAP14 PUSH9 0xA1810AE6F3EB1133E4 0x24 LOG0 LOG1 0xA5 0xEC 0x4A MSTORE 0x2C 0xD DUP12 0xAA CALLER PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"220:2559:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;220:2559:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212204acbf8faaf6203e02d9d68a1810ae6f3eb1133e424a0a1a5ec4a522c0d8baa3364736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4A 0xCB 0xF8 STATICCALL 0xAF PUSH3 0x3E02D SWAP14 PUSH9 0xA1810AE6F3EB1133E4 0x24 LOG0 LOG1 0xA5 0xEC 0x4A MSTORE 0x2C 0xD DUP12 0xAA CALLER PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"220:2559:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"String operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol":{"ECDSA":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122067f83b0191f31c5077625106ebf268f0b5f73786823150ef95873355bbd33fe164736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH8 0xF83B0191F31C5077 PUSH3 0x5106EB CALLCODE PUSH9 0xF0B5F73786823150EF SWAP6 DUP8 CALLER SSTORE 0xBB 0xD3 EXTCODEHASH 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"369:8761:1:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;369:8761:1;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122067f83b0191f31c5077625106ebf268f0b5f73786823150ef95873355bbd33fe164736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH8 0xF83B0191F31C5077 PUSH3 0x5106EB CALLCODE PUSH9 0xF0B5F73786823150EF SWAP6 DUP8 CALLER SSTORE 0xBB 0xD3 EXTCODEHASH 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"369:8761:1:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x809bc3edb4bcbef8263fa616c1b60ee0004b50a8a1bfa164d8f57fd31f520c58\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b93a1e39a4a19eba1600b92c96f435442db88cac91e315c8291547a2a7bcfe2\",\"dweb:/ipfs/QmTm34KVe6uZBZwq8dZDNWwPcm24qBJdxqL3rPxBJ4LrMv\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212205b632efb73d4ad42a44be5a80fdaeced920cd6edbb5d4f327fa3ca9e4720957f64736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST PUSH4 0x2EFB73D4 0xAD TIMESTAMP LOG4 0x4B 0xE5 0xA8 0xF 0xDA 0xEC 0xED SWAP3 0xC 0xD6 0xED 0xBB 0x5D 0x4F ORIGIN PUSH32 0xA3CA9E4720957F64736F6C634300081400330000000000000000000000000000 ","sourceMap":"202:12582:2:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;202:12582:2;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212205b632efb73d4ad42a44be5a80fdaeced920cd6edbb5d4f327fa3ca9e4720957f64736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST PUSH4 0x2EFB73D4 0xAD TIMESTAMP LOG4 0x4B 0xE5 0xA8 0xF 0xDA 0xEC 0xED SWAP3 0xC 0xD6 0xED 0xBB 0x5D 0x4F ORIGIN PUSH32 0xA3CA9E4720957F64736F6C634300081400330000000000000000000000000000 ","sourceMap":"202:12582:2:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"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\":{\"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol\":\"Math\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]}},\"version\":1}"}},"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220b6d7442277908062d38903b2fce84a8852cec2f2c050d76ffe66613483fc793764736f6c63430008140033","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 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 0xD7 PREVRANDAO 0x22 PUSH24 0x908062D38903B2FCE84A8852CEC2F2C050D76FFE66613483 0xFC PUSH26 0x3764736F6C634300081400330000000000000000000000000000 ","sourceMap":"215:1047:3:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;215:1047:3;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220b6d7442277908062d38903b2fce84a8852cec2f2c050d76ffe66613483fc793764736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 0xD7 PREVRANDAO 0x22 PUSH24 0x908062D38903B2FCE84A8852CEC2F2C050D76FFE66613483 0xFC PUSH26 0x3764736F6C634300081400330000000000000000000000000000 ","sourceMap":"215:1047:3:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"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\":{\"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol\":\"SignedMath\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]}},\"version\":1}"}},"project/contracts/ProviderBatchCallAndSponsor.sol":{"IGateway":{"abi":[{"inputs":[],"name":"getAggregator","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":{"getAggregator()":"3ad59dbc"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"getAggregator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/ProviderBatchCallAndSponsor.sol\":\"IGateway\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x809bc3edb4bcbef8263fa616c1b60ee0004b50a8a1bfa164d8f57fd31f520c58\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b93a1e39a4a19eba1600b92c96f435442db88cac91e315c8291547a2a7bcfe2\",\"dweb:/ipfs/QmTm34KVe6uZBZwq8dZDNWwPcm24qBJdxqL3rPxBJ4LrMv\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]},\"project/contracts/ProviderBatchCallAndSponsor.sol\":{\"keccak256\":\"0xb15db608edab3dd9fc9fd9b537c429506b58347924050bce23bd889bc514eb3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a41db6feb1d57044fb81584e09447711f218a86409335e87b274bfed8b5cb1e\",\"dweb:/ipfs/QmXuwC7h5BM7bXuc15Avbk8DsnCaaxZ3qHaDMr14ui6RYM\"]}},\"version\":1}"},"ProviderBatchCallAndSponsor":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"indexed":false,"internalType":"struct ProviderBatchCallAndSponsor.Call[]","name":"calls","type":"tuple[]"}],"name":"BatchExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct ProviderBatchCallAndSponsor.Call[]","name":"calls","type":"tuple[]"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct ProviderBatchCallAndSponsor.Call[]","name":"calls","type":"tuple[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"gatewayAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD6 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3F707E6B EQ PUSH2 0x48 JUMPI DUP1 PUSH4 0x6171D1C9 EQ PUSH2 0x5B JUMPI DUP1 PUSH4 0x8B851B95 EQ PUSH2 0x6E JUMPI DUP1 PUSH4 0xAFFED0E0 EQ PUSH2 0xB2 JUMPI STOP JUMPDEST CALLDATASIZE PUSH2 0x46 JUMPI STOP JUMPDEST STOP JUMPDEST PUSH2 0x46 PUSH2 0x56 CALLDATASIZE PUSH1 0x4 PUSH2 0x819 JUMP JUMPDEST PUSH2 0xD4 JUMP JUMPDEST PUSH2 0x46 PUSH2 0x69 CALLDATASIZE PUSH1 0x4 PUSH2 0x858 JUMP JUMPDEST PUSH2 0x113 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x79 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x95 PUSH20 0x56DA8FCE8FD64CAAE90D80DED55587B282BB4303 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBD JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xC6 PUSH0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x139BDD081A5B5C1B195B595B9D1959 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH20 0x56DA8FCE8FD64CAAE90D80DED55587B282BB4303 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD59DBC 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 0x163 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x187 SWAP2 SWAP1 PUSH2 0x8FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1D8 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 0x27B7363CA0B3B3B932B3B0BA37B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH1 0x60 PUSH0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x2A9 JUMPI DUP2 DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x1F7 JUMPI PUSH2 0x1F7 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH2 0x217 SWAP1 PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x94F JUMP JUMPDEST DUP8 DUP8 DUP5 DUP2 DUP2 LT PUSH2 0x229 JUMPI PUSH2 0x229 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x23B SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH1 0x20 ADD CALLDATALOAD DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x251 JUMPI PUSH2 0x251 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x263 SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH2 0x271 SWAP1 PUSH1 0x40 DUP2 ADD SWAP1 PUSH2 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x285 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x9DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP DUP1 DUP1 PUSH2 0x2A1 SWAP1 PUSH2 0xA1B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1DC JUMP JUMPDEST POP PUSH0 DUP1 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2BF SWAP3 SWAP2 SWAP1 PUSH2 0xA3F JUMP JUMPDEST 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 0x30E DUP3 PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3C SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x350 DUP3 DUP8 DUP8 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 0x3B2 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ADDRESS EQ PUSH2 0x39E 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 0x496E76616C6964207369676E6174757265 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH2 0x3A8 DUP9 DUP9 PUSH2 0x3D4 JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH2 0x3BF DUP6 DUP6 PUSH2 0x471 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x3CC DUP2 PUSH2 0x4B3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 DUP2 SWAP1 DUP1 PUSH2 0x3E4 DUP4 PUSH2 0xA1B JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x431 JUMPI PUSH2 0x41F DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x408 JUMPI PUSH2 0x408 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x41A SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH2 0x5FF JUMP JUMPDEST DUP1 PUSH2 0x429 DUP2 PUSH2 0xA1B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3EB JUMP JUMPDEST POP DUP1 PUSH32 0x280BB3599696ACBF79FB8FFCDE81A57337B52500F789600FBB1CFF9B4CBABA39 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x464 SWAP3 SWAP2 SWAP1 PUSH2 0xA80 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP3 MLOAD PUSH1 0x41 SUB PUSH2 0x4A5 JUMPI PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH0 BYTE PUSH2 0x499 DUP8 DUP3 DUP6 DUP6 PUSH2 0x71B JUMP JUMPDEST SWAP5 POP SWAP5 POP POP POP POP PUSH2 0x4AC JUMP JUMPDEST POP PUSH0 SWAP1 POP PUSH1 0x2 JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x4C6 JUMPI PUSH2 0x4C6 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x4CE JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x4E2 JUMPI PUSH2 0x4E2 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x52F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x543 JUMPI PUSH2 0x543 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x590 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x5A4 JUMPI PUSH2 0x5A4 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x5FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7565 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x10A JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x60D PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x94F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x628 PUSH1 0x40 DUP6 ADD DUP6 PUSH2 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x636 SWAP3 SWAP2 SWAP1 PUSH2 0xB6F JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x670 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 0x675 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x6B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x10D85B1B081C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH2 0x6C3 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x94F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH32 0xED7E8F919DF9CC0D0AD8B4057D084EBF319B630564D5DA283E14751ADC931F3A PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x700 PUSH1 0x40 DUP8 ADD DUP8 PUSH2 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xB7E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x750 JUMPI POP PUSH0 SWAP1 POP PUSH1 0x3 PUSH2 0x7CF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7A1 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x7C9 JUMPI PUSH0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x7CF JUMP JUMPDEST SWAP2 POP PUSH0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x7E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7FF JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x4AC JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x82A JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x840 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x84C DUP6 DUP3 DUP7 ADD PUSH2 0x7D8 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x86B JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x882 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x88E DUP9 DUP4 DUP10 ADD PUSH2 0x7D8 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x8A6 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x8B9 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x8C7 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x8D8 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x5FC JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x90B JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x916 DUP2 PUSH2 0x8E7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH1 0x5E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x945 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x95F JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x916 DUP2 PUSH2 0x8E7 JUMP JUMPDEST PUSH0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x97F JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x999 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x4AC JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 MLOAD PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x9CC JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD MSTORE ADD PUSH2 0x9B2 JUMP JUMPDEST POP PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x9E5 DUP3 DUP9 PUSH2 0x9AD JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP8 PUSH1 0x60 SHL AND DUP2 MSTORE DUP6 PUSH1 0x14 DUP3 ADD MSTORE DUP4 DUP6 PUSH1 0x34 DUP4 ADD CALLDATACOPY PUSH0 SWAP4 ADD PUSH1 0x34 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0xA38 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH0 PUSH2 0xA50 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x9AD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP 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 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH0 SWAP1 PUSH1 0x40 DUP1 DUP5 ADD PUSH1 0x5 DUP7 SWAP1 SHL DUP6 ADD DUP3 ADD DUP8 DUP6 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0xB4D JUMPI DUP8 DUP4 SUB PUSH1 0x3F NOT ADD DUP5 MSTORE DUP2 CALLDATALOAD CALLDATASIZE DUP12 SWAP1 SUB PUSH1 0x5E NOT ADD DUP2 SLT PUSH2 0xAC3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP11 ADD PUSH1 0x60 DUP2 CALLDATALOAD PUSH2 0xAD2 DUP2 PUSH2 0x8E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE DUP2 DUP9 ADD CALLDATALOAD DUP9 DUP7 ADD MSTORE DUP7 DUP3 ADD CALLDATALOAD CALLDATASIZE DUP4 SWAP1 SUB PUSH1 0x1E NOT ADD DUP2 SLT PUSH2 0xAFB JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 SWAP2 ADD DUP8 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB18 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP4 SGT ISZERO PUSH2 0xB26 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP9 DUP8 ADD MSTORE PUSH2 0xB38 DUP3 DUP8 ADD DUP3 DUP6 PUSH2 0xA58 JUMP JUMPDEST SWAP7 DUP10 ADD SWAP7 SWAP6 POP POP POP SWAP2 DUP7 ADD SWAP2 POP PUSH1 0x1 ADD PUSH2 0xA9E JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP 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 DUP2 DUP4 DUP3 CALLDATACOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0xB97 PUSH1 0x40 DUP4 ADD DUP5 DUP7 PUSH2 0xA58 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 TIMESTAMP 0xE7 PUSH27 0x99C684D5C0D4FE73C5495F8473BF83B096B103360DB73B60A067AC PUSH1 0xC4 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"894:3583:4:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_1809":{"entryPoint":null,"id":1809,"parameterSlots":0,"returnSlots":0},"@_1813":{"entryPoint":null,"id":1813,"parameterSlots":0,"returnSlots":0},"@_executeBatch_1769":{"entryPoint":980,"id":1769,"parameterSlots":2,"returnSlots":0},"@_executeCall_1805":{"entryPoint":1535,"id":1805,"parameterSlots":1,"returnSlots":0},"@_throwError_282":{"entryPoint":1203,"id":282,"parameterSlots":1,"returnSlots":0},"@execute_1716":{"entryPoint":275,"id":1716,"parameterSlots":4,"returnSlots":0},"@execute_1729":{"entryPoint":212,"id":1729,"parameterSlots":2,"returnSlots":0},"@gatewayAddress_1582":{"entryPoint":null,"id":1582,"parameterSlots":0,"returnSlots":0},"@nonce_1585":{"entryPoint":null,"id":1585,"parameterSlots":0,"returnSlots":0},"@recover_355":{"entryPoint":946,"id":355,"parameterSlots":2,"returnSlots":1},"@toEthSignedMessageHash_539":{"entryPoint":null,"id":539,"parameterSlots":1,"returnSlots":1},"@tryRecover_328":{"entryPoint":1137,"id":328,"parameterSlots":2,"returnSlots":2},"@tryRecover_496":{"entryPoint":1819,"id":496,"parameterSlots":4,"returnSlots":2},"abi_decode_array_struct_Call_calldata_dyn_calldata":{"entryPoint":2008,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":2383,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":2299,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":2073,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptrt_bytes_calldata_ptr":{"entryPoint":2136,"id":null,"parameterSlots":2,"returnSlots":4},"abi_encode_bytes":{"entryPoint":2477,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":2648,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":2927,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr_t_address_t_uint256_t_bytes_calldata_ptr__to_t_bytes_memory_ptr_t_address_t_uint256_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":2522,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_packed_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":2623,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr__to_t_array$_t_struct$_Call_$1593_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":2688,"id":null,"parameterSlots":3,"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_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4f2d7dfcb27c0aafa13ae8c400de482c7832204d194018b6e45bd2bf244c74e7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9f5474d7a5849b3f79e8aee7ea2c60bcd36a60a08b4fa41f97e2fccf1c4df98b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f98adb58895f05e03f48b831c1c143b263ff8defb24575454c739da4a24d730b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":2942,"id":null,"parameterSlots":4,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":2410,"id":null,"parameterSlots":2,"returnSlots":2},"access_calldata_tail_t_struct$_Call_$1593_calldata_ptr":{"entryPoint":2353,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":2587,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x21":{"entryPoint":2907,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":2333,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":2279,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:10940:5","statements":[{"nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nodeType":"YulBlock","src":"111:283:5","statements":[{"body":{"nodeType":"YulBlock","src":"160:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"169:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"172:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"162:6:5"},"nodeType":"YulFunctionCall","src":"162:12:5"},"nodeType":"YulExpressionStatement","src":"162:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"139:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"147:4:5","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"135:3:5"},"nodeType":"YulFunctionCall","src":"135:17:5"},{"name":"end","nodeType":"YulIdentifier","src":"154:3:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"131:3:5"},"nodeType":"YulFunctionCall","src":"131:27:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"124:6:5"},"nodeType":"YulFunctionCall","src":"124:35:5"},"nodeType":"YulIf","src":"121:55:5"},{"nodeType":"YulAssignment","src":"185:30:5","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"208:6:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"195:12:5"},"nodeType":"YulFunctionCall","src":"195:20:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"185:6:5"}]},{"body":{"nodeType":"YulBlock","src":"258:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"267:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"270:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"260:6:5"},"nodeType":"YulFunctionCall","src":"260:12:5"},"nodeType":"YulExpressionStatement","src":"260:12:5"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"230:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"238:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"227:2:5"},"nodeType":"YulFunctionCall","src":"227:30:5"},"nodeType":"YulIf","src":"224:50:5"},{"nodeType":"YulAssignment","src":"283:29:5","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"299:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"307:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"295:3:5"},"nodeType":"YulFunctionCall","src":"295:17:5"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"283:8:5"}]},{"body":{"nodeType":"YulBlock","src":"372:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"381:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"384:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"374:6:5"},"nodeType":"YulFunctionCall","src":"374:12:5"},"nodeType":"YulExpressionStatement","src":"374:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"335:6:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"347:1:5","type":"","value":"5"},{"name":"length","nodeType":"YulIdentifier","src":"350:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"343:3:5"},"nodeType":"YulFunctionCall","src":"343:14:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"331:3:5"},"nodeType":"YulFunctionCall","src":"331:27:5"},{"kind":"number","nodeType":"YulLiteral","src":"360:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"327:3:5"},"nodeType":"YulFunctionCall","src":"327:38:5"},{"name":"end","nodeType":"YulIdentifier","src":"367:3:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"324:2:5"},"nodeType":"YulFunctionCall","src":"324:47:5"},"nodeType":"YulIf","src":"321:67:5"}]},"name":"abi_decode_array_struct_Call_calldata_dyn_calldata","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"74:6:5","type":""},{"name":"end","nodeType":"YulTypedName","src":"82:3:5","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"90:8:5","type":""},{"name":"length","nodeType":"YulTypedName","src":"100:6:5","type":""}],"src":"14:380:5"},{"body":{"nodeType":"YulBlock","src":"528:345:5","statements":[{"body":{"nodeType":"YulBlock","src":"574:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"583:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"586:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"576:6:5"},"nodeType":"YulFunctionCall","src":"576:12:5"},"nodeType":"YulExpressionStatement","src":"576:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"549:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"558:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"545:3:5"},"nodeType":"YulFunctionCall","src":"545:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"570:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"541:3:5"},"nodeType":"YulFunctionCall","src":"541:32:5"},"nodeType":"YulIf","src":"538:52:5"},{"nodeType":"YulVariableDeclaration","src":"599:37:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"626:9:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"613:12:5"},"nodeType":"YulFunctionCall","src":"613:23:5"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"603:6:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"679:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"688:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"691:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"681:6:5"},"nodeType":"YulFunctionCall","src":"681:12:5"},"nodeType":"YulExpressionStatement","src":"681:12:5"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"651:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"659:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"648:2:5"},"nodeType":"YulFunctionCall","src":"648:30:5"},"nodeType":"YulIf","src":"645:50:5"},{"nodeType":"YulVariableDeclaration","src":"704:109:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"785:9:5"},{"name":"offset","nodeType":"YulIdentifier","src":"796:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"781:3:5"},"nodeType":"YulFunctionCall","src":"781:22:5"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"805:7:5"}],"functionName":{"name":"abi_decode_array_struct_Call_calldata_dyn_calldata","nodeType":"YulIdentifier","src":"730:50:5"},"nodeType":"YulFunctionCall","src":"730:83:5"},"variables":[{"name":"value0_1","nodeType":"YulTypedName","src":"708:8:5","type":""},{"name":"value1_1","nodeType":"YulTypedName","src":"718:8:5","type":""}]},{"nodeType":"YulAssignment","src":"822:18:5","value":{"name":"value0_1","nodeType":"YulIdentifier","src":"832:8:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"822:6:5"}]},{"nodeType":"YulAssignment","src":"849:18:5","value":{"name":"value1_1","nodeType":"YulIdentifier","src":"859:8:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"849:6:5"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"486:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"497:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"509:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"517:6:5","type":""}],"src":"399:474:5"},{"body":{"nodeType":"YulBlock","src":"1043:778:5","statements":[{"body":{"nodeType":"YulBlock","src":"1089:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1098:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1101:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1091:6:5"},"nodeType":"YulFunctionCall","src":"1091:12:5"},"nodeType":"YulExpressionStatement","src":"1091:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1064:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"1073:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1060:3:5"},"nodeType":"YulFunctionCall","src":"1060:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"1085:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1056:3:5"},"nodeType":"YulFunctionCall","src":"1056:32:5"},"nodeType":"YulIf","src":"1053:52:5"},{"nodeType":"YulVariableDeclaration","src":"1114:37:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1141:9:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1128:12:5"},"nodeType":"YulFunctionCall","src":"1128:23:5"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1118:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1160:28:5","value":{"kind":"number","nodeType":"YulLiteral","src":"1170:18:5","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1164:2:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1215:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1224:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1227:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1217:6:5"},"nodeType":"YulFunctionCall","src":"1217:12:5"},"nodeType":"YulExpressionStatement","src":"1217:12:5"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1203:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"1211:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1200:2:5"},"nodeType":"YulFunctionCall","src":"1200:14:5"},"nodeType":"YulIf","src":"1197:34:5"},{"nodeType":"YulVariableDeclaration","src":"1240:109:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1321:9:5"},{"name":"offset","nodeType":"YulIdentifier","src":"1332:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1317:3:5"},"nodeType":"YulFunctionCall","src":"1317:22:5"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1341:7:5"}],"functionName":{"name":"abi_decode_array_struct_Call_calldata_dyn_calldata","nodeType":"YulIdentifier","src":"1266:50:5"},"nodeType":"YulFunctionCall","src":"1266:83:5"},"variables":[{"name":"value0_1","nodeType":"YulTypedName","src":"1244:8:5","type":""},{"name":"value1_1","nodeType":"YulTypedName","src":"1254:8:5","type":""}]},{"nodeType":"YulAssignment","src":"1358:18:5","value":{"name":"value0_1","nodeType":"YulIdentifier","src":"1368:8:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1358:6:5"}]},{"nodeType":"YulAssignment","src":"1385:18:5","value":{"name":"value1_1","nodeType":"YulIdentifier","src":"1395:8:5"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1385:6:5"}]},{"nodeType":"YulVariableDeclaration","src":"1412:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1445:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1456:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1441:3:5"},"nodeType":"YulFunctionCall","src":"1441:18:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1428:12:5"},"nodeType":"YulFunctionCall","src":"1428:32:5"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1416:8:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1489:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1498:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1501:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1491:6:5"},"nodeType":"YulFunctionCall","src":"1491:12:5"},"nodeType":"YulExpressionStatement","src":"1491:12:5"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1475:8:5"},{"name":"_1","nodeType":"YulIdentifier","src":"1485:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1472:2:5"},"nodeType":"YulFunctionCall","src":"1472:16:5"},"nodeType":"YulIf","src":"1469:36:5"},{"nodeType":"YulVariableDeclaration","src":"1514:34:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1528:9:5"},{"name":"offset_1","nodeType":"YulIdentifier","src":"1539:8:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1524:3:5"},"nodeType":"YulFunctionCall","src":"1524:24:5"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"1518:2:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1596:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1605:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1608:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1598:6:5"},"nodeType":"YulFunctionCall","src":"1598:12:5"},"nodeType":"YulExpressionStatement","src":"1598:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1575:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"1579:4:5","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1571:3:5"},"nodeType":"YulFunctionCall","src":"1571:13:5"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1586:7:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1567:3:5"},"nodeType":"YulFunctionCall","src":"1567:27:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1560:6:5"},"nodeType":"YulFunctionCall","src":"1560:35:5"},"nodeType":"YulIf","src":"1557:55:5"},{"nodeType":"YulVariableDeclaration","src":"1621:30:5","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1648:2:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1635:12:5"},"nodeType":"YulFunctionCall","src":"1635:16:5"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"1625:6:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"1678:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1687:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1690:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1680:6:5"},"nodeType":"YulFunctionCall","src":"1680:12:5"},"nodeType":"YulExpressionStatement","src":"1680:12:5"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1666:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"1674:2:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1663:2:5"},"nodeType":"YulFunctionCall","src":"1663:14:5"},"nodeType":"YulIf","src":"1660:34:5"},{"body":{"nodeType":"YulBlock","src":"1744:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1753:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1756:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1746:6:5"},"nodeType":"YulFunctionCall","src":"1746:12:5"},"nodeType":"YulExpressionStatement","src":"1746:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1717:2:5"},{"name":"length","nodeType":"YulIdentifier","src":"1721:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1713:3:5"},"nodeType":"YulFunctionCall","src":"1713:15:5"},{"kind":"number","nodeType":"YulLiteral","src":"1730:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1709:3:5"},"nodeType":"YulFunctionCall","src":"1709:24:5"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1735:7:5"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1706:2:5"},"nodeType":"YulFunctionCall","src":"1706:37:5"},"nodeType":"YulIf","src":"1703:57:5"},{"nodeType":"YulAssignment","src":"1769:21:5","value":{"arguments":[{"name":"_2","nodeType":"YulIdentifier","src":"1783:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"1787:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1779:3:5"},"nodeType":"YulFunctionCall","src":"1779:11:5"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1769:6:5"}]},{"nodeType":"YulAssignment","src":"1799:16:5","value":{"name":"length","nodeType":"YulIdentifier","src":"1809:6:5"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"1799:6:5"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptrt_bytes_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"985:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"996:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1008:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1016:6:5","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1024:6:5","type":""},{"name":"value3","nodeType":"YulTypedName","src":"1032:6:5","type":""}],"src":"878:943:5"},{"body":{"nodeType":"YulBlock","src":"1927:102:5","statements":[{"nodeType":"YulAssignment","src":"1937:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1949:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"1960:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1945:3:5"},"nodeType":"YulFunctionCall","src":"1945:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1937:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1979:9:5"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1994:6:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2010:3:5","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2015:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2006:3:5"},"nodeType":"YulFunctionCall","src":"2006:11:5"},{"kind":"number","nodeType":"YulLiteral","src":"2019:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2002:3:5"},"nodeType":"YulFunctionCall","src":"2002:19:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1990:3:5"},"nodeType":"YulFunctionCall","src":"1990:32:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1972:6:5"},"nodeType":"YulFunctionCall","src":"1972:51:5"},"nodeType":"YulExpressionStatement","src":"1972:51:5"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1896:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1907:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1918:4:5","type":""}],"src":"1826:203:5"},{"body":{"nodeType":"YulBlock","src":"2135:76:5","statements":[{"nodeType":"YulAssignment","src":"2145:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2157:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2168:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2153:3:5"},"nodeType":"YulFunctionCall","src":"2153:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2145:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2187:9:5"},{"name":"value0","nodeType":"YulIdentifier","src":"2198:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2180:6:5"},"nodeType":"YulFunctionCall","src":"2180:25:5"},"nodeType":"YulExpressionStatement","src":"2180:25:5"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2104:9:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2115:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2126:4:5","type":""}],"src":"2034:177:5"},{"body":{"nodeType":"YulBlock","src":"2390:165:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2407:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2418:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2400:6:5"},"nodeType":"YulFunctionCall","src":"2400:21:5"},"nodeType":"YulExpressionStatement","src":"2400:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2441:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2452:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2437:3:5"},"nodeType":"YulFunctionCall","src":"2437:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"2457:2:5","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2430:6:5"},"nodeType":"YulFunctionCall","src":"2430:30:5"},"nodeType":"YulExpressionStatement","src":"2430:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2480:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2491:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2476:3:5"},"nodeType":"YulFunctionCall","src":"2476:18:5"},{"hexValue":"4e6f7420696d706c656d656e746564","kind":"string","nodeType":"YulLiteral","src":"2496:17:5","type":"","value":"Not implemented"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2469:6:5"},"nodeType":"YulFunctionCall","src":"2469:45:5"},"nodeType":"YulExpressionStatement","src":"2469:45:5"},{"nodeType":"YulAssignment","src":"2523:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2535:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"2546:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2531:3:5"},"nodeType":"YulFunctionCall","src":"2531:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2523:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_9f5474d7a5849b3f79e8aee7ea2c60bcd36a60a08b4fa41f97e2fccf1c4df98b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2367:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2381:4:5","type":""}],"src":"2216:339:5"},{"body":{"nodeType":"YulBlock","src":"2605:86:5","statements":[{"body":{"nodeType":"YulBlock","src":"2669:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2678:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2681:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2671:6:5"},"nodeType":"YulFunctionCall","src":"2671:12:5"},"nodeType":"YulExpressionStatement","src":"2671:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2628:5:5"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2639:5:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2654:3:5","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2659:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2650:3:5"},"nodeType":"YulFunctionCall","src":"2650:11:5"},{"kind":"number","nodeType":"YulLiteral","src":"2663:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2646:3:5"},"nodeType":"YulFunctionCall","src":"2646:19:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2635:3:5"},"nodeType":"YulFunctionCall","src":"2635:31:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2625:2:5"},"nodeType":"YulFunctionCall","src":"2625:42:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2618:6:5"},"nodeType":"YulFunctionCall","src":"2618:50:5"},"nodeType":"YulIf","src":"2615:70:5"}]},"name":"validator_revert_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2594:5:5","type":""}],"src":"2560:131:5"},{"body":{"nodeType":"YulBlock","src":"2777:170:5","statements":[{"body":{"nodeType":"YulBlock","src":"2823:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2832:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2835:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2825:6:5"},"nodeType":"YulFunctionCall","src":"2825:12:5"},"nodeType":"YulExpressionStatement","src":"2825:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2798:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"2807:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2794:3:5"},"nodeType":"YulFunctionCall","src":"2794:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"2819:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2790:3:5"},"nodeType":"YulFunctionCall","src":"2790:32:5"},"nodeType":"YulIf","src":"2787:52:5"},{"nodeType":"YulVariableDeclaration","src":"2848:29:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2867:9:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2861:5:5"},"nodeType":"YulFunctionCall","src":"2861:16:5"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"2852:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2911:5:5"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"2886:24:5"},"nodeType":"YulFunctionCall","src":"2886:31:5"},"nodeType":"YulExpressionStatement","src":"2886:31:5"},{"nodeType":"YulAssignment","src":"2926:15:5","value":{"name":"value","nodeType":"YulIdentifier","src":"2936:5:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2926:6:5"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2743:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2754:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2766:6:5","type":""}],"src":"2696:251:5"},{"body":{"nodeType":"YulBlock","src":"3126:164:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3143:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3154:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3136:6:5"},"nodeType":"YulFunctionCall","src":"3136:21:5"},"nodeType":"YulExpressionStatement","src":"3136:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3177:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3188:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3173:3:5"},"nodeType":"YulFunctionCall","src":"3173:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"3193:2:5","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3166:6:5"},"nodeType":"YulFunctionCall","src":"3166:30:5"},"nodeType":"YulExpressionStatement","src":"3166:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3216:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3227:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3212:3:5"},"nodeType":"YulFunctionCall","src":"3212:18:5"},{"hexValue":"4f6e6c7941676772656761746f72","kind":"string","nodeType":"YulLiteral","src":"3232:16:5","type":"","value":"OnlyAggregator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3205:6:5"},"nodeType":"YulFunctionCall","src":"3205:44:5"},"nodeType":"YulExpressionStatement","src":"3205:44:5"},{"nodeType":"YulAssignment","src":"3258:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3270:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"3281:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3266:3:5"},"nodeType":"YulFunctionCall","src":"3266:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3258:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3103:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3117:4:5","type":""}],"src":"2952:338:5"},{"body":{"nodeType":"YulBlock","src":"3327:95:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3344:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3351:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3356:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3347:3:5"},"nodeType":"YulFunctionCall","src":"3347:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3337:6:5"},"nodeType":"YulFunctionCall","src":"3337:31:5"},"nodeType":"YulExpressionStatement","src":"3337:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3384:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3387:4:5","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3377:6:5"},"nodeType":"YulFunctionCall","src":"3377:15:5"},"nodeType":"YulExpressionStatement","src":"3377:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3408:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3411:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3401:6:5"},"nodeType":"YulFunctionCall","src":"3401:15:5"},"nodeType":"YulExpressionStatement","src":"3401:15:5"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"3295:127:5"},{"body":{"nodeType":"YulBlock","src":"3526:222:5","statements":[{"nodeType":"YulVariableDeclaration","src":"3536:51:5","value":{"arguments":[{"name":"ptr_to_tail","nodeType":"YulIdentifier","src":"3575:11:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3562:12:5"},"nodeType":"YulFunctionCall","src":"3562:25:5"},"variables":[{"name":"rel_offset_of_tail","nodeType":"YulTypedName","src":"3540:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"3676:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3685:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3688:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3678:6:5"},"nodeType":"YulFunctionCall","src":"3678:12:5"},"nodeType":"YulExpressionStatement","src":"3678:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nodeType":"YulIdentifier","src":"3610:18:5"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"3638:12:5"},"nodeType":"YulFunctionCall","src":"3638:14:5"},{"name":"base_ref","nodeType":"YulIdentifier","src":"3654:8:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3634:3:5"},"nodeType":"YulFunctionCall","src":"3634:29:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3669:2:5","type":"","value":"94"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3665:3:5"},"nodeType":"YulFunctionCall","src":"3665:7:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3630:3:5"},"nodeType":"YulFunctionCall","src":"3630:43:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3606:3:5"},"nodeType":"YulFunctionCall","src":"3606:68:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3599:6:5"},"nodeType":"YulFunctionCall","src":"3599:76:5"},"nodeType":"YulIf","src":"3596:96:5"},{"nodeType":"YulAssignment","src":"3701:41:5","value":{"arguments":[{"name":"base_ref","nodeType":"YulIdentifier","src":"3713:8:5"},{"name":"rel_offset_of_tail","nodeType":"YulIdentifier","src":"3723:18:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3709:3:5"},"nodeType":"YulFunctionCall","src":"3709:33:5"},"variableNames":[{"name":"addr","nodeType":"YulIdentifier","src":"3701:4:5"}]}]},"name":"access_calldata_tail_t_struct$_Call_$1593_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nodeType":"YulTypedName","src":"3491:8:5","type":""},{"name":"ptr_to_tail","nodeType":"YulTypedName","src":"3501:11:5","type":""}],"returnVariables":[{"name":"addr","nodeType":"YulTypedName","src":"3517:4:5","type":""}],"src":"3427:321:5"},{"body":{"nodeType":"YulBlock","src":"3823:177:5","statements":[{"body":{"nodeType":"YulBlock","src":"3869:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3878:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3881:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3871:6:5"},"nodeType":"YulFunctionCall","src":"3871:12:5"},"nodeType":"YulExpressionStatement","src":"3871:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3844:7:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"3853:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3840:3:5"},"nodeType":"YulFunctionCall","src":"3840:23:5"},{"kind":"number","nodeType":"YulLiteral","src":"3865:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3836:3:5"},"nodeType":"YulFunctionCall","src":"3836:32:5"},"nodeType":"YulIf","src":"3833:52:5"},{"nodeType":"YulVariableDeclaration","src":"3894:36:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3920:9:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"3907:12:5"},"nodeType":"YulFunctionCall","src":"3907:23:5"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3898:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3964:5:5"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"3939:24:5"},"nodeType":"YulFunctionCall","src":"3939:31:5"},"nodeType":"YulExpressionStatement","src":"3939:31:5"},{"nodeType":"YulAssignment","src":"3979:15:5","value":{"name":"value","nodeType":"YulIdentifier","src":"3989:5:5"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3979:6:5"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3789:9:5","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3800:7:5","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3812:6:5","type":""}],"src":"3753:247:5"},{"body":{"nodeType":"YulBlock","src":"4099:427:5","statements":[{"nodeType":"YulVariableDeclaration","src":"4109:51:5","value":{"arguments":[{"name":"ptr_to_tail","nodeType":"YulIdentifier","src":"4148:11:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4135:12:5"},"nodeType":"YulFunctionCall","src":"4135:25:5"},"variables":[{"name":"rel_offset_of_tail","nodeType":"YulTypedName","src":"4113:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"4249:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4258:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4261:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4251:6:5"},"nodeType":"YulFunctionCall","src":"4251:12:5"},"nodeType":"YulExpressionStatement","src":"4251:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nodeType":"YulIdentifier","src":"4183:18:5"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"4211:12:5"},"nodeType":"YulFunctionCall","src":"4211:14:5"},{"name":"base_ref","nodeType":"YulIdentifier","src":"4227:8:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4207:3:5"},"nodeType":"YulFunctionCall","src":"4207:29:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4242:2:5","type":"","value":"30"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4238:3:5"},"nodeType":"YulFunctionCall","src":"4238:7:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4203:3:5"},"nodeType":"YulFunctionCall","src":"4203:43:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4179:3:5"},"nodeType":"YulFunctionCall","src":"4179:68:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"4172:6:5"},"nodeType":"YulFunctionCall","src":"4172:76:5"},"nodeType":"YulIf","src":"4169:96:5"},{"nodeType":"YulVariableDeclaration","src":"4274:47:5","value":{"arguments":[{"name":"base_ref","nodeType":"YulIdentifier","src":"4292:8:5"},{"name":"rel_offset_of_tail","nodeType":"YulIdentifier","src":"4302:18:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4288:3:5"},"nodeType":"YulFunctionCall","src":"4288:33:5"},"variables":[{"name":"addr_1","nodeType":"YulTypedName","src":"4278:6:5","type":""}]},{"nodeType":"YulAssignment","src":"4330:30:5","value":{"arguments":[{"name":"addr_1","nodeType":"YulIdentifier","src":"4353:6:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4340:12:5"},"nodeType":"YulFunctionCall","src":"4340:20:5"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"4330:6:5"}]},{"body":{"nodeType":"YulBlock","src":"4403:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4412:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4415:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4405:6:5"},"nodeType":"YulFunctionCall","src":"4405:12:5"},"nodeType":"YulExpressionStatement","src":"4405:12:5"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4375:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"4383:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4372:2:5"},"nodeType":"YulFunctionCall","src":"4372:30:5"},"nodeType":"YulIf","src":"4369:50:5"},{"nodeType":"YulAssignment","src":"4428:25:5","value":{"arguments":[{"name":"addr_1","nodeType":"YulIdentifier","src":"4440:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"4448:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4436:3:5"},"nodeType":"YulFunctionCall","src":"4436:17:5"},"variableNames":[{"name":"addr","nodeType":"YulIdentifier","src":"4428:4:5"}]},{"body":{"nodeType":"YulBlock","src":"4504:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4513:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4516:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4506:6:5"},"nodeType":"YulFunctionCall","src":"4506:12:5"},"nodeType":"YulExpressionStatement","src":"4506:12:5"}]},"condition":{"arguments":[{"name":"addr","nodeType":"YulIdentifier","src":"4469:4:5"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"4479:12:5"},"nodeType":"YulFunctionCall","src":"4479:14:5"},{"name":"length","nodeType":"YulIdentifier","src":"4495:6:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4475:3:5"},"nodeType":"YulFunctionCall","src":"4475:27:5"}],"functionName":{"name":"sgt","nodeType":"YulIdentifier","src":"4465:3:5"},"nodeType":"YulFunctionCall","src":"4465:38:5"},"nodeType":"YulIf","src":"4462:58:5"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nodeType":"YulTypedName","src":"4056:8:5","type":""},{"name":"ptr_to_tail","nodeType":"YulTypedName","src":"4066:11:5","type":""}],"returnVariables":[{"name":"addr","nodeType":"YulTypedName","src":"4082:4:5","type":""},{"name":"length","nodeType":"YulTypedName","src":"4088:6:5","type":""}],"src":"4005:521:5"},{"body":{"nodeType":"YulBlock","src":"4580:273:5","statements":[{"nodeType":"YulVariableDeclaration","src":"4590:26:5","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4610:5:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4604:5:5"},"nodeType":"YulFunctionCall","src":"4604:12:5"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4594:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4625:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"4634:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"4629:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"4696:76:5","statements":[{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4721:3:5"},{"name":"i","nodeType":"YulIdentifier","src":"4726:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4717:3:5"},"nodeType":"YulFunctionCall","src":"4717:11:5"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4744:5:5"},{"name":"i","nodeType":"YulIdentifier","src":"4751:1:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4740:3:5"},"nodeType":"YulFunctionCall","src":"4740:13:5"},{"kind":"number","nodeType":"YulLiteral","src":"4755:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4736:3:5"},"nodeType":"YulFunctionCall","src":"4736:24:5"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4730:5:5"},"nodeType":"YulFunctionCall","src":"4730:31:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4710:6:5"},"nodeType":"YulFunctionCall","src":"4710:52:5"},"nodeType":"YulExpressionStatement","src":"4710:52:5"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4655:1:5"},{"name":"length","nodeType":"YulIdentifier","src":"4658:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4652:2:5"},"nodeType":"YulFunctionCall","src":"4652:13:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4666:21:5","statements":[{"nodeType":"YulAssignment","src":"4668:17:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4677:1:5"},{"kind":"number","nodeType":"YulLiteral","src":"4680:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4673:3:5"},"nodeType":"YulFunctionCall","src":"4673:12:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"4668:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"4648:3:5","statements":[]},"src":"4644:128:5"},{"nodeType":"YulVariableDeclaration","src":"4781:26:5","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4795:3:5"},{"name":"length","nodeType":"YulIdentifier","src":"4800:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4791:3:5"},"nodeType":"YulFunctionCall","src":"4791:16:5"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4785:2:5","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"4823:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"4827:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4816:6:5"},"nodeType":"YulFunctionCall","src":"4816:13:5"},"nodeType":"YulExpressionStatement","src":"4816:13:5"},{"nodeType":"YulAssignment","src":"4838:9:5","value":{"name":"_1","nodeType":"YulIdentifier","src":"4845:2:5"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"4838:3:5"}]}]},"name":"abi_encode_bytes","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4557:5:5","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4564:3:5","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"4572:3:5","type":""}],"src":"4531:322:5"},{"body":{"nodeType":"YulBlock","src":"5107:313:5","statements":[{"nodeType":"YulVariableDeclaration","src":"5117:42:5","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"5147:6:5"},{"name":"pos","nodeType":"YulIdentifier","src":"5155:3:5"}],"functionName":{"name":"abi_encode_bytes","nodeType":"YulIdentifier","src":"5130:16:5"},"nodeType":"YulFunctionCall","src":"5130:29:5"},"variables":[{"name":"pos_1","nodeType":"YulTypedName","src":"5121:5:5","type":""}]},{"expression":{"arguments":[{"name":"pos_1","nodeType":"YulIdentifier","src":"5175:5:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5190:2:5","type":"","value":"96"},{"name":"value1","nodeType":"YulIdentifier","src":"5194:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"5186:3:5"},"nodeType":"YulFunctionCall","src":"5186:15:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5207:26:5","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"5203:3:5"},"nodeType":"YulFunctionCall","src":"5203:31:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5182:3:5"},"nodeType":"YulFunctionCall","src":"5182:53:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5168:6:5"},"nodeType":"YulFunctionCall","src":"5168:68:5"},"nodeType":"YulExpressionStatement","src":"5168:68:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos_1","nodeType":"YulIdentifier","src":"5256:5:5"},{"kind":"number","nodeType":"YulLiteral","src":"5263:2:5","type":"","value":"20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5252:3:5"},"nodeType":"YulFunctionCall","src":"5252:14:5"},{"name":"value2","nodeType":"YulIdentifier","src":"5268:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5245:6:5"},"nodeType":"YulFunctionCall","src":"5245:30:5"},"nodeType":"YulExpressionStatement","src":"5245:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos_1","nodeType":"YulIdentifier","src":"5301:5:5"},{"kind":"number","nodeType":"YulLiteral","src":"5308:2:5","type":"","value":"52"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5297:3:5"},"nodeType":"YulFunctionCall","src":"5297:14:5"},{"name":"value3","nodeType":"YulIdentifier","src":"5313:6:5"},{"name":"value4","nodeType":"YulIdentifier","src":"5321:6:5"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"5284:12:5"},"nodeType":"YulFunctionCall","src":"5284:44:5"},"nodeType":"YulExpressionStatement","src":"5284:44:5"},{"nodeType":"YulVariableDeclaration","src":"5337:37:5","value":{"arguments":[{"arguments":[{"name":"pos_1","nodeType":"YulIdentifier","src":"5355:5:5"},{"name":"value4","nodeType":"YulIdentifier","src":"5362:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5351:3:5"},"nodeType":"YulFunctionCall","src":"5351:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"5371:2:5","type":"","value":"52"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5347:3:5"},"nodeType":"YulFunctionCall","src":"5347:27:5"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"5341:2:5","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"5390:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"5394:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5383:6:5"},"nodeType":"YulFunctionCall","src":"5383:13:5"},"nodeType":"YulExpressionStatement","src":"5383:13:5"},{"nodeType":"YulAssignment","src":"5405:9:5","value":{"name":"_1","nodeType":"YulIdentifier","src":"5412:2:5"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"5405:3:5"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr_t_address_t_uint256_t_bytes_calldata_ptr__to_t_bytes_memory_ptr_t_address_t_uint256_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5051:3:5","type":""},{"name":"value4","nodeType":"YulTypedName","src":"5056:6:5","type":""},{"name":"value3","nodeType":"YulTypedName","src":"5064:6:5","type":""},{"name":"value2","nodeType":"YulTypedName","src":"5072:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5080:6:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5088:6:5","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"5099:3:5","type":""}],"src":"4858:562:5"},{"body":{"nodeType":"YulBlock","src":"5472:185:5","statements":[{"body":{"nodeType":"YulBlock","src":"5511:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5532:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5539:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"5544:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"5535:3:5"},"nodeType":"YulFunctionCall","src":"5535:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5525:6:5"},"nodeType":"YulFunctionCall","src":"5525:31:5"},"nodeType":"YulExpressionStatement","src":"5525:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5576:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"5579:4:5","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5569:6:5"},"nodeType":"YulFunctionCall","src":"5569:15:5"},"nodeType":"YulExpressionStatement","src":"5569:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5604:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5607:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5597:6:5"},"nodeType":"YulFunctionCall","src":"5597:15:5"},"nodeType":"YulExpressionStatement","src":"5597:15:5"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5488:5:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5499:1:5","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"5495:3:5"},"nodeType":"YulFunctionCall","src":"5495:6:5"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"5485:2:5"},"nodeType":"YulFunctionCall","src":"5485:17:5"},"nodeType":"YulIf","src":"5482:140:5"},{"nodeType":"YulAssignment","src":"5631:20:5","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5642:5:5"},{"kind":"number","nodeType":"YulLiteral","src":"5649:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5638:3:5"},"nodeType":"YulFunctionCall","src":"5638:13:5"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5631:3:5"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5454:5:5","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5464:3:5","type":""}],"src":"5425:232:5"},{"body":{"nodeType":"YulBlock","src":"5827:89:5","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5844:3:5"},{"name":"value0","nodeType":"YulIdentifier","src":"5849:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5837:6:5"},"nodeType":"YulFunctionCall","src":"5837:19:5"},"nodeType":"YulExpressionStatement","src":"5837:19:5"},{"nodeType":"YulAssignment","src":"5865:45:5","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"5889:6:5"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5901:3:5"},{"kind":"number","nodeType":"YulLiteral","src":"5906:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5897:3:5"},"nodeType":"YulFunctionCall","src":"5897:12:5"}],"functionName":{"name":"abi_encode_bytes","nodeType":"YulIdentifier","src":"5872:16:5"},"nodeType":"YulFunctionCall","src":"5872:38:5"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"5865:3:5"}]}]},"name":"abi_encode_tuple_packed_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5795:3:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5800:6:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5808:6:5","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"5819:3:5","type":""}],"src":"5662:254:5"},{"body":{"nodeType":"YulBlock","src":"6095:167:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6112:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6123:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6105:6:5"},"nodeType":"YulFunctionCall","src":"6105:21:5"},"nodeType":"YulExpressionStatement","src":"6105:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6146:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6157:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6142:3:5"},"nodeType":"YulFunctionCall","src":"6142:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"6162:2:5","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6135:6:5"},"nodeType":"YulFunctionCall","src":"6135:30:5"},"nodeType":"YulExpressionStatement","src":"6135:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6185:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6196:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6181:3:5"},"nodeType":"YulFunctionCall","src":"6181:18:5"},{"hexValue":"496e76616c6964207369676e6174757265","kind":"string","nodeType":"YulLiteral","src":"6201:19:5","type":"","value":"Invalid signature"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6174:6:5"},"nodeType":"YulFunctionCall","src":"6174:47:5"},"nodeType":"YulExpressionStatement","src":"6174:47:5"},{"nodeType":"YulAssignment","src":"6230:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6242:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"6253:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6238:3:5"},"nodeType":"YulFunctionCall","src":"6238:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6230:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_4f2d7dfcb27c0aafa13ae8c400de482c7832204d194018b6e45bd2bf244c74e7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6072:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6086:4:5","type":""}],"src":"5921:341:5"},{"body":{"nodeType":"YulBlock","src":"6333:200:5","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6350:3:5"},{"name":"length","nodeType":"YulIdentifier","src":"6355:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6343:6:5"},"nodeType":"YulFunctionCall","src":"6343:19:5"},"nodeType":"YulExpressionStatement","src":"6343:19:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6388:3:5"},{"kind":"number","nodeType":"YulLiteral","src":"6393:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6384:3:5"},"nodeType":"YulFunctionCall","src":"6384:14:5"},{"name":"start","nodeType":"YulIdentifier","src":"6400:5:5"},{"name":"length","nodeType":"YulIdentifier","src":"6407:6:5"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"6371:12:5"},"nodeType":"YulFunctionCall","src":"6371:43:5"},"nodeType":"YulExpressionStatement","src":"6371:43:5"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6438:3:5"},{"name":"length","nodeType":"YulIdentifier","src":"6443:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6434:3:5"},"nodeType":"YulFunctionCall","src":"6434:16:5"},{"kind":"number","nodeType":"YulLiteral","src":"6452:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6430:3:5"},"nodeType":"YulFunctionCall","src":"6430:27:5"},{"kind":"number","nodeType":"YulLiteral","src":"6459:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6423:6:5"},"nodeType":"YulFunctionCall","src":"6423:38:5"},"nodeType":"YulExpressionStatement","src":"6423:38:5"},{"nodeType":"YulAssignment","src":"6470:57:5","value":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6485:3:5"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6498:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"6506:2:5","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6494:3:5"},"nodeType":"YulFunctionCall","src":"6494:15:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6515:2:5","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"6511:3:5"},"nodeType":"YulFunctionCall","src":"6511:7:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6490:3:5"},"nodeType":"YulFunctionCall","src":"6490:29:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6481:3:5"},"nodeType":"YulFunctionCall","src":"6481:39:5"},{"kind":"number","nodeType":"YulLiteral","src":"6522:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6477:3:5"},"nodeType":"YulFunctionCall","src":"6477:50:5"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"6470:3:5"}]}]},"name":"abi_encode_bytes_calldata","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"6302:5:5","type":""},{"name":"length","nodeType":"YulTypedName","src":"6309:6:5","type":""},{"name":"pos","nodeType":"YulTypedName","src":"6317:3:5","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6325:3:5","type":""}],"src":"6267:266:5"},{"body":{"nodeType":"YulBlock","src":"6745:1604:5","statements":[{"nodeType":"YulVariableDeclaration","src":"6755:12:5","value":{"kind":"number","nodeType":"YulLiteral","src":"6765:2:5","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"6759:2:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6776:32:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6794:9:5"},{"name":"_1","nodeType":"YulIdentifier","src":"6805:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6790:3:5"},"nodeType":"YulFunctionCall","src":"6790:18:5"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"6780:6:5","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6824:9:5"},{"name":"_1","nodeType":"YulIdentifier","src":"6835:2:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6817:6:5"},"nodeType":"YulFunctionCall","src":"6817:21:5"},"nodeType":"YulExpressionStatement","src":"6817:21:5"},{"nodeType":"YulVariableDeclaration","src":"6847:17:5","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"6858:6:5"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"6851:3:5","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"6880:6:5"},{"name":"value1","nodeType":"YulIdentifier","src":"6888:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6873:6:5"},"nodeType":"YulFunctionCall","src":"6873:22:5"},"nodeType":"YulExpressionStatement","src":"6873:22:5"},{"nodeType":"YulVariableDeclaration","src":"6904:12:5","value":{"kind":"number","nodeType":"YulLiteral","src":"6914:2:5","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"6908:2:5","type":""}]},{"nodeType":"YulAssignment","src":"6925:25:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6936:9:5"},{"name":"_2","nodeType":"YulIdentifier","src":"6947:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6932:3:5"},"nodeType":"YulFunctionCall","src":"6932:18:5"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6925:3:5"}]},{"nodeType":"YulVariableDeclaration","src":"6959:53:5","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6981:9:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6996:1:5","type":"","value":"5"},{"name":"value1","nodeType":"YulIdentifier","src":"6999:6:5"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"6992:3:5"},"nodeType":"YulFunctionCall","src":"6992:14:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6977:3:5"},"nodeType":"YulFunctionCall","src":"6977:30:5"},{"name":"_2","nodeType":"YulIdentifier","src":"7009:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6973:3:5"},"nodeType":"YulFunctionCall","src":"6973:39:5"},"variables":[{"name":"tail_2","nodeType":"YulTypedName","src":"6963:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7021:20:5","value":{"name":"value0","nodeType":"YulIdentifier","src":"7035:6:5"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"7025:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7050:10:5","value":{"kind":"number","nodeType":"YulLiteral","src":"7059:1:5","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"7054:1:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"7118:1202:5","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7139:3:5"},{"arguments":[{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"7152:6:5"},{"name":"headStart","nodeType":"YulIdentifier","src":"7160:9:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7148:3:5"},"nodeType":"YulFunctionCall","src":"7148:22:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7176:2:5","type":"","value":"63"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"7172:3:5"},"nodeType":"YulFunctionCall","src":"7172:7:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7144:3:5"},"nodeType":"YulFunctionCall","src":"7144:36:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7132:6:5"},"nodeType":"YulFunctionCall","src":"7132:49:5"},"nodeType":"YulExpressionStatement","src":"7132:49:5"},{"nodeType":"YulVariableDeclaration","src":"7194:46:5","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"7233:6:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7220:12:5"},"nodeType":"YulFunctionCall","src":"7220:20:5"},"variables":[{"name":"rel_offset_of_tail","nodeType":"YulTypedName","src":"7198:18:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"7331:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7340:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7343:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7333:6:5"},"nodeType":"YulFunctionCall","src":"7333:12:5"},"nodeType":"YulExpressionStatement","src":"7333:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nodeType":"YulIdentifier","src":"7267:18:5"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"7295:12:5"},"nodeType":"YulFunctionCall","src":"7295:14:5"},{"name":"value0","nodeType":"YulIdentifier","src":"7311:6:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7291:3:5"},"nodeType":"YulFunctionCall","src":"7291:27:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7324:2:5","type":"","value":"94"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"7320:3:5"},"nodeType":"YulFunctionCall","src":"7320:7:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7287:3:5"},"nodeType":"YulFunctionCall","src":"7287:41:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7263:3:5"},"nodeType":"YulFunctionCall","src":"7263:66:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7256:6:5"},"nodeType":"YulFunctionCall","src":"7256:74:5"},"nodeType":"YulIf","src":"7253:94:5"},{"nodeType":"YulVariableDeclaration","src":"7360:44:5","value":{"arguments":[{"name":"rel_offset_of_tail","nodeType":"YulIdentifier","src":"7377:18:5"},{"name":"value0","nodeType":"YulIdentifier","src":"7397:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7373:3:5"},"nodeType":"YulFunctionCall","src":"7373:31:5"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"7364:5:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7417:14:5","value":{"kind":"number","nodeType":"YulLiteral","src":"7427:4:5","type":"","value":"0x60"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"7421:2:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7444:34:5","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7472:5:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7459:12:5"},"nodeType":"YulFunctionCall","src":"7459:19:5"},"variables":[{"name":"value_1","nodeType":"YulTypedName","src":"7448:7:5","type":""}]},{"expression":{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"7516:7:5"}],"functionName":{"name":"validator_revert_address","nodeType":"YulIdentifier","src":"7491:24:5"},"nodeType":"YulFunctionCall","src":"7491:33:5"},"nodeType":"YulExpressionStatement","src":"7491:33:5"},{"expression":{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"7544:6:5"},{"arguments":[{"name":"value_1","nodeType":"YulIdentifier","src":"7556:7:5"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7573:3:5","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"7578:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"7569:3:5"},"nodeType":"YulFunctionCall","src":"7569:11:5"},{"kind":"number","nodeType":"YulLiteral","src":"7582:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7565:3:5"},"nodeType":"YulFunctionCall","src":"7565:19:5"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"7552:3:5"},"nodeType":"YulFunctionCall","src":"7552:33:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7537:6:5"},"nodeType":"YulFunctionCall","src":"7537:49:5"},"nodeType":"YulExpressionStatement","src":"7537:49:5"},{"expression":{"arguments":[{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"7610:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"7618:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7606:3:5"},"nodeType":"YulFunctionCall","src":"7606:15:5"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7640:5:5"},{"name":"_1","nodeType":"YulIdentifier","src":"7647:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7636:3:5"},"nodeType":"YulFunctionCall","src":"7636:14:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7623:12:5"},"nodeType":"YulFunctionCall","src":"7623:28:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7599:6:5"},"nodeType":"YulFunctionCall","src":"7599:53:5"},"nodeType":"YulExpressionStatement","src":"7599:53:5"},{"nodeType":"YulVariableDeclaration","src":"7665:56:5","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7710:5:5"},{"name":"_2","nodeType":"YulIdentifier","src":"7717:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7706:3:5"},"nodeType":"YulFunctionCall","src":"7706:14:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7693:12:5"},"nodeType":"YulFunctionCall","src":"7693:28:5"},"variables":[{"name":"rel_offset_of_tail_1","nodeType":"YulTypedName","src":"7669:20:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"7813:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7822:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7825:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7815:6:5"},"nodeType":"YulFunctionCall","src":"7815:12:5"},"nodeType":"YulExpressionStatement","src":"7815:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail_1","nodeType":"YulIdentifier","src":"7748:20:5"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"7778:12:5"},"nodeType":"YulFunctionCall","src":"7778:14:5"},{"name":"value","nodeType":"YulIdentifier","src":"7794:5:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7774:3:5"},"nodeType":"YulFunctionCall","src":"7774:26:5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7806:2:5","type":"","value":"30"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"7802:3:5"},"nodeType":"YulFunctionCall","src":"7802:7:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7770:3:5"},"nodeType":"YulFunctionCall","src":"7770:40:5"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7744:3:5"},"nodeType":"YulFunctionCall","src":"7744:67:5"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7737:6:5"},"nodeType":"YulFunctionCall","src":"7737:75:5"},"nodeType":"YulIf","src":"7734:95:5"},{"nodeType":"YulVariableDeclaration","src":"7842:47:5","value":{"arguments":[{"name":"rel_offset_of_tail_1","nodeType":"YulIdentifier","src":"7861:20:5"},{"name":"value","nodeType":"YulIdentifier","src":"7883:5:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7857:3:5"},"nodeType":"YulFunctionCall","src":"7857:32:5"},"variables":[{"name":"value_2","nodeType":"YulTypedName","src":"7846:7:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7902:35:5","value":{"arguments":[{"name":"value_2","nodeType":"YulIdentifier","src":"7929:7:5"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7916:12:5"},"nodeType":"YulFunctionCall","src":"7916:21:5"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"7906:6:5","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7950:31:5","value":{"arguments":[{"name":"value_2","nodeType":"YulIdentifier","src":"7969:7:5"},{"name":"_1","nodeType":"YulIdentifier","src":"7978:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7965:3:5"},"nodeType":"YulFunctionCall","src":"7965:16:5"},"variables":[{"name":"value_3","nodeType":"YulTypedName","src":"7954:7:5","type":""}]},{"body":{"nodeType":"YulBlock","src":"8028:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8037:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8040:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8030:6:5"},"nodeType":"YulFunctionCall","src":"8030:12:5"},"nodeType":"YulExpressionStatement","src":"8030:12:5"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"8000:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"8008:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7997:2:5"},"nodeType":"YulFunctionCall","src":"7997:30:5"},"nodeType":"YulIf","src":"7994:50:5"},{"body":{"nodeType":"YulBlock","src":"8102:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8111:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8114:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8104:6:5"},"nodeType":"YulFunctionCall","src":"8104:12:5"},"nodeType":"YulExpressionStatement","src":"8104:12:5"}]},"condition":{"arguments":[{"name":"value_3","nodeType":"YulIdentifier","src":"8064:7:5"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nodeType":"YulIdentifier","src":"8077:12:5"},"nodeType":"YulFunctionCall","src":"8077:14:5"},{"name":"length","nodeType":"YulIdentifier","src":"8093:6:5"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8073:3:5"},"nodeType":"YulFunctionCall","src":"8073:27:5"}],"functionName":{"name":"sgt","nodeType":"YulIdentifier","src":"8060:3:5"},"nodeType":"YulFunctionCall","src":"8060:41:5"},"nodeType":"YulIf","src":"8057:61:5"},{"expression":{"arguments":[{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"8142:6:5"},{"name":"_2","nodeType":"YulIdentifier","src":"8150:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8138:3:5"},"nodeType":"YulFunctionCall","src":"8138:15:5"},{"name":"_3","nodeType":"YulIdentifier","src":"8155:2:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8131:6:5"},"nodeType":"YulFunctionCall","src":"8131:27:5"},"nodeType":"YulExpressionStatement","src":"8131:27:5"},{"nodeType":"YulAssignment","src":"8171:69:5","value":{"arguments":[{"name":"value_3","nodeType":"YulIdentifier","src":"8207:7:5"},{"name":"length","nodeType":"YulIdentifier","src":"8216:6:5"},{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"8228:6:5"},{"name":"_3","nodeType":"YulIdentifier","src":"8236:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8224:3:5"},"nodeType":"YulFunctionCall","src":"8224:15:5"}],"functionName":{"name":"abi_encode_bytes_calldata","nodeType":"YulIdentifier","src":"8181:25:5"},"nodeType":"YulFunctionCall","src":"8181:59:5"},"variableNames":[{"name":"tail_2","nodeType":"YulIdentifier","src":"8171:6:5"}]},{"nodeType":"YulAssignment","src":"8253:25:5","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"8267:6:5"},{"name":"_1","nodeType":"YulIdentifier","src":"8275:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8263:3:5"},"nodeType":"YulFunctionCall","src":"8263:15:5"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"8253:6:5"}]},{"nodeType":"YulAssignment","src":"8291:19:5","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8302:3:5"},{"name":"_1","nodeType":"YulIdentifier","src":"8307:2:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8298:3:5"},"nodeType":"YulFunctionCall","src":"8298:12:5"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8291:3:5"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7080:1:5"},{"name":"value1","nodeType":"YulIdentifier","src":"7083:6:5"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"7077:2:5"},"nodeType":"YulFunctionCall","src":"7077:13:5"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"7091:18:5","statements":[{"nodeType":"YulAssignment","src":"7093:14:5","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7102:1:5"},{"kind":"number","nodeType":"YulLiteral","src":"7105:1:5","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7098:3:5"},"nodeType":"YulFunctionCall","src":"7098:9:5"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"7093:1:5"}]}]},"pre":{"nodeType":"YulBlock","src":"7073:3:5","statements":[]},"src":"7069:1251:5"},{"nodeType":"YulAssignment","src":"8329:14:5","value":{"name":"tail_2","nodeType":"YulIdentifier","src":"8337:6:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8329:4:5"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr__to_t_array$_t_struct$_Call_$1593_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6706:9:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6717:6:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6725:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6736:4:5","type":""}],"src":"6538:1811:5"},{"body":{"nodeType":"YulBlock","src":"8386:95:5","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8403:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8410:3:5","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"8415:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"8406:3:5"},"nodeType":"YulFunctionCall","src":"8406:20:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8396:6:5"},"nodeType":"YulFunctionCall","src":"8396:31:5"},"nodeType":"YulExpressionStatement","src":"8396:31:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8443:1:5","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"8446:4:5","type":"","value":"0x21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8436:6:5"},"nodeType":"YulFunctionCall","src":"8436:15:5"},"nodeType":"YulExpressionStatement","src":"8436:15:5"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8467:1:5","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8470:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8460:6:5"},"nodeType":"YulFunctionCall","src":"8460:15:5"},"nodeType":"YulExpressionStatement","src":"8460:15:5"}]},"name":"panic_error_0x21","nodeType":"YulFunctionDefinition","src":"8354:127:5"},{"body":{"nodeType":"YulBlock","src":"8660:174:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8677:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"8688:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8670:6:5"},"nodeType":"YulFunctionCall","src":"8670:21:5"},"nodeType":"YulExpressionStatement","src":"8670:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8711:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"8722:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8707:3:5"},"nodeType":"YulFunctionCall","src":"8707:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"8727:2:5","type":"","value":"24"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8700:6:5"},"nodeType":"YulFunctionCall","src":"8700:30:5"},"nodeType":"YulExpressionStatement","src":"8700:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8750:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"8761:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8746:3:5"},"nodeType":"YulFunctionCall","src":"8746:18:5"},{"hexValue":"45434453413a20696e76616c6964207369676e6174757265","kind":"string","nodeType":"YulLiteral","src":"8766:26:5","type":"","value":"ECDSA: invalid signature"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8739:6:5"},"nodeType":"YulFunctionCall","src":"8739:54:5"},"nodeType":"YulExpressionStatement","src":"8739:54:5"},{"nodeType":"YulAssignment","src":"8802:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8814:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"8825:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8810:3:5"},"nodeType":"YulFunctionCall","src":"8810:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8802:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8637:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8651:4:5","type":""}],"src":"8486:348:5"},{"body":{"nodeType":"YulBlock","src":"9013:181:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9030:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9041:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9023:6:5"},"nodeType":"YulFunctionCall","src":"9023:21:5"},"nodeType":"YulExpressionStatement","src":"9023:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9064:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9075:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9060:3:5"},"nodeType":"YulFunctionCall","src":"9060:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"9080:2:5","type":"","value":"31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9053:6:5"},"nodeType":"YulFunctionCall","src":"9053:30:5"},"nodeType":"YulExpressionStatement","src":"9053:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9103:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9114:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9099:3:5"},"nodeType":"YulFunctionCall","src":"9099:18:5"},{"hexValue":"45434453413a20696e76616c6964207369676e6174757265206c656e677468","kind":"string","nodeType":"YulLiteral","src":"9119:33:5","type":"","value":"ECDSA: invalid signature length"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9092:6:5"},"nodeType":"YulFunctionCall","src":"9092:61:5"},"nodeType":"YulExpressionStatement","src":"9092:61:5"},{"nodeType":"YulAssignment","src":"9162:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9174:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9185:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9170:3:5"},"nodeType":"YulFunctionCall","src":"9170:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9162:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8990:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9004:4:5","type":""}],"src":"8839:355:5"},{"body":{"nodeType":"YulBlock","src":"9373:224:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9390:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9401:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9383:6:5"},"nodeType":"YulFunctionCall","src":"9383:21:5"},"nodeType":"YulExpressionStatement","src":"9383:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9424:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9435:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9420:3:5"},"nodeType":"YulFunctionCall","src":"9420:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"9440:2:5","type":"","value":"34"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9413:6:5"},"nodeType":"YulFunctionCall","src":"9413:30:5"},"nodeType":"YulExpressionStatement","src":"9413:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9463:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9474:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9459:3:5"},"nodeType":"YulFunctionCall","src":"9459:18:5"},{"hexValue":"45434453413a20696e76616c6964207369676e6174757265202773272076616c","kind":"string","nodeType":"YulLiteral","src":"9479:34:5","type":"","value":"ECDSA: invalid signature 's' val"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9452:6:5"},"nodeType":"YulFunctionCall","src":"9452:62:5"},"nodeType":"YulExpressionStatement","src":"9452:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9534:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9545:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9530:3:5"},"nodeType":"YulFunctionCall","src":"9530:18:5"},{"hexValue":"7565","kind":"string","nodeType":"YulLiteral","src":"9550:4:5","type":"","value":"ue"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9523:6:5"},"nodeType":"YulFunctionCall","src":"9523:32:5"},"nodeType":"YulExpressionStatement","src":"9523:32:5"},{"nodeType":"YulAssignment","src":"9564:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9576:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"9587:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9572:3:5"},"nodeType":"YulFunctionCall","src":"9572:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9564:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9350:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9364:4:5","type":""}],"src":"9199:398:5"},{"body":{"nodeType":"YulBlock","src":"9749:124:5","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9772:3:5"},{"name":"value0","nodeType":"YulIdentifier","src":"9777:6:5"},{"name":"value1","nodeType":"YulIdentifier","src":"9785:6:5"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"9759:12:5"},"nodeType":"YulFunctionCall","src":"9759:33:5"},"nodeType":"YulExpressionStatement","src":"9759:33:5"},{"nodeType":"YulVariableDeclaration","src":"9801:26:5","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9815:3:5"},{"name":"value1","nodeType":"YulIdentifier","src":"9820:6:5"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9811:3:5"},"nodeType":"YulFunctionCall","src":"9811:16:5"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"9805:2:5","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"9843:2:5"},{"kind":"number","nodeType":"YulLiteral","src":"9847:1:5","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9836:6:5"},"nodeType":"YulFunctionCall","src":"9836:13:5"},"nodeType":"YulExpressionStatement","src":"9836:13:5"},{"nodeType":"YulAssignment","src":"9858:9:5","value":{"name":"_1","nodeType":"YulIdentifier","src":"9865:2:5"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9858:3:5"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9717:3:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9722:6:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9730:6:5","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9741:3:5","type":""}],"src":"9602:271:5"},{"body":{"nodeType":"YulBlock","src":"10052:163:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10069:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10080:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10062:6:5"},"nodeType":"YulFunctionCall","src":"10062:21:5"},"nodeType":"YulExpressionStatement","src":"10062:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10103:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10114:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10099:3:5"},"nodeType":"YulFunctionCall","src":"10099:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"10119:2:5","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10092:6:5"},"nodeType":"YulFunctionCall","src":"10092:30:5"},"nodeType":"YulExpressionStatement","src":"10092:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10142:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10153:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10138:3:5"},"nodeType":"YulFunctionCall","src":"10138:18:5"},{"hexValue":"43616c6c207265766572746564","kind":"string","nodeType":"YulLiteral","src":"10158:15:5","type":"","value":"Call reverted"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10131:6:5"},"nodeType":"YulFunctionCall","src":"10131:43:5"},"nodeType":"YulExpressionStatement","src":"10131:43:5"},{"nodeType":"YulAssignment","src":"10183:26:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10195:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10206:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10191:3:5"},"nodeType":"YulFunctionCall","src":"10191:18:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10183:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_f98adb58895f05e03f48b831c1c143b263ff8defb24575454c739da4a24d730b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10029:9:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10043:4:5","type":""}],"src":"9878:337:5"},{"body":{"nodeType":"YulBlock","src":"10377:158:5","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10394:9:5"},{"name":"value0","nodeType":"YulIdentifier","src":"10405:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10387:6:5"},"nodeType":"YulFunctionCall","src":"10387:25:5"},"nodeType":"YulExpressionStatement","src":"10387:25:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10432:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10443:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10428:3:5"},"nodeType":"YulFunctionCall","src":"10428:18:5"},{"kind":"number","nodeType":"YulLiteral","src":"10448:2:5","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10421:6:5"},"nodeType":"YulFunctionCall","src":"10421:30:5"},"nodeType":"YulExpressionStatement","src":"10421:30:5"},{"nodeType":"YulAssignment","src":"10460:69:5","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"10494:6:5"},{"name":"value2","nodeType":"YulIdentifier","src":"10502:6:5"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10514:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10525:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10510:3:5"},"nodeType":"YulFunctionCall","src":"10510:18:5"}],"functionName":{"name":"abi_encode_bytes_calldata","nodeType":"YulIdentifier","src":"10468:25:5"},"nodeType":"YulFunctionCall","src":"10468:61:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10460:4:5"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10330:9:5","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10341:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10349:6:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10357:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10368:4:5","type":""}],"src":"10220:315:5"},{"body":{"nodeType":"YulBlock","src":"10721:217:5","statements":[{"nodeType":"YulAssignment","src":"10731:27:5","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10743:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10754:3:5","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10739:3:5"},"nodeType":"YulFunctionCall","src":"10739:19:5"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10731:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10774:9:5"},{"name":"value0","nodeType":"YulIdentifier","src":"10785:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10767:6:5"},"nodeType":"YulFunctionCall","src":"10767:25:5"},"nodeType":"YulExpressionStatement","src":"10767:25:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10812:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10823:2:5","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10808:3:5"},"nodeType":"YulFunctionCall","src":"10808:18:5"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"10832:6:5"},{"kind":"number","nodeType":"YulLiteral","src":"10840:4:5","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10828:3:5"},"nodeType":"YulFunctionCall","src":"10828:17:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10801:6:5"},"nodeType":"YulFunctionCall","src":"10801:45:5"},"nodeType":"YulExpressionStatement","src":"10801:45:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10866:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10877:2:5","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10862:3:5"},"nodeType":"YulFunctionCall","src":"10862:18:5"},{"name":"value2","nodeType":"YulIdentifier","src":"10882:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10855:6:5"},"nodeType":"YulFunctionCall","src":"10855:34:5"},"nodeType":"YulExpressionStatement","src":"10855:34:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10909:9:5"},{"kind":"number","nodeType":"YulLiteral","src":"10920:2:5","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10905:3:5"},"nodeType":"YulFunctionCall","src":"10905:18:5"},{"name":"value3","nodeType":"YulIdentifier","src":"10925:6:5"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10898:6:5"},"nodeType":"YulFunctionCall","src":"10898:34:5"},"nodeType":"YulExpressionStatement","src":"10898:34:5"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10666:9:5","type":""},{"name":"value3","nodeType":"YulTypedName","src":"10677:6:5","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10685:6:5","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10693:6:5","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10701:6:5","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10712:4:5","type":""}],"src":"10540:398:5"}]},"contents":"{\n { }\n function abi_decode_array_struct_Call_calldata_dyn_calldata(offset, end) -> arrayPos, length\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n arrayPos := add(offset, 0x20)\n if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n }\n function abi_decode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let offset := calldataload(headStart)\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n let value0_1, value1_1 := abi_decode_array_struct_Call_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n value0 := value0_1\n value1 := value1_1\n }\n function abi_decode_tuple_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let offset := calldataload(headStart)\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let value0_1, value1_1 := abi_decode_array_struct_Call_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n value0 := value0_1\n value1 := value1_1\n let offset_1 := calldataload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n let _2 := add(headStart, offset_1)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let length := calldataload(_2)\n if gt(length, _1) { revert(0, 0) }\n if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n value2 := add(_2, 32)\n value3 := length\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 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_encode_tuple_t_stringliteral_9f5474d7a5849b3f79e8aee7ea2c60bcd36a60a08b4fa41f97e2fccf1c4df98b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 15)\n mstore(add(headStart, 64), \"Not implemented\")\n tail := add(headStart, 96)\n }\n function validator_revert_address(value)\n {\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n validator_revert_address(value)\n value0 := value\n }\n function abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__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), \"OnlyAggregator\")\n tail := add(headStart, 96)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n function access_calldata_tail_t_struct$_Call_$1593_calldata_ptr(base_ref, ptr_to_tail) -> addr\n {\n let rel_offset_of_tail := calldataload(ptr_to_tail)\n if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(94)))) { revert(0, 0) }\n addr := add(base_ref, rel_offset_of_tail)\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 access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n {\n let rel_offset_of_tail := calldataload(ptr_to_tail)\n if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n let addr_1 := add(base_ref, rel_offset_of_tail)\n length := calldataload(addr_1)\n if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n addr := add(addr_1, 0x20)\n if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n }\n function abi_encode_bytes(value, pos) -> end\n {\n let length := mload(value)\n let i := 0\n for { } lt(i, length) { i := add(i, 0x20) }\n {\n mstore(add(pos, i), mload(add(add(value, i), 0x20)))\n }\n let _1 := add(pos, length)\n mstore(_1, 0)\n end := _1\n }\n function abi_encode_tuple_packed_t_bytes_memory_ptr_t_address_t_uint256_t_bytes_calldata_ptr__to_t_bytes_memory_ptr_t_address_t_uint256_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value4, value3, value2, value1, value0) -> end\n {\n let pos_1 := abi_encode_bytes(value0, pos)\n mstore(pos_1, and(shl(96, value1), not(0xffffffffffffffffffffffff)))\n mstore(add(pos_1, 20), value2)\n calldatacopy(add(pos_1, 52), value3, value4)\n let _1 := add(add(pos_1, value4), 52)\n mstore(_1, 0)\n end := _1\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, not(0))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n ret := add(value, 1)\n }\n function abi_encode_tuple_packed_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n {\n mstore(pos, value0)\n end := abi_encode_bytes(value1, add(pos, 32))\n }\n function abi_encode_tuple_t_stringliteral_4f2d7dfcb27c0aafa13ae8c400de482c7832204d194018b6e45bd2bf244c74e7__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 signature\")\n tail := add(headStart, 96)\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_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr__to_t_array$_t_struct$_Call_$1593_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n mstore(tail_1, value1)\n let _2 := 64\n pos := add(headStart, _2)\n let tail_2 := add(add(headStart, shl(5, value1)), _2)\n let srcPtr := value0\n let i := 0\n for { } lt(i, value1) { i := add(i, 1) }\n {\n mstore(pos, add(sub(tail_2, headStart), not(63)))\n let rel_offset_of_tail := calldataload(srcPtr)\n if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), value0), not(94)))) { revert(0, 0) }\n let value := add(rel_offset_of_tail, value0)\n let _3 := 0x60\n let value_1 := calldataload(value)\n validator_revert_address(value_1)\n mstore(tail_2, and(value_1, sub(shl(160, 1), 1)))\n mstore(add(tail_2, _1), calldataload(add(value, _1)))\n let rel_offset_of_tail_1 := calldataload(add(value, _2))\n if iszero(slt(rel_offset_of_tail_1, add(sub(calldatasize(), value), not(30)))) { revert(0, 0) }\n let value_2 := add(rel_offset_of_tail_1, value)\n let length := calldataload(value_2)\n let value_3 := add(value_2, _1)\n if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n if sgt(value_3, sub(calldatasize(), length)) { revert(0, 0) }\n mstore(add(tail_2, _2), _3)\n tail_2 := abi_encode_bytes_calldata(value_3, length, add(tail_2, _3))\n srcPtr := add(srcPtr, _1)\n pos := add(pos, _1)\n }\n tail := tail_2\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_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 24)\n mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n mstore(add(headStart, 96), \"ue\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n {\n calldatacopy(pos, value0, value1)\n let _1 := add(pos, value1)\n mstore(_1, 0)\n end := _1\n }\n function abi_encode_tuple_t_stringliteral_f98adb58895f05e03f48b831c1c143b263ff8defb24575454c739da4a24d730b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 13)\n mstore(add(headStart, 64), \"Call reverted\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_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_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}","id":5,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3F707E6B EQ PUSH2 0x48 JUMPI DUP1 PUSH4 0x6171D1C9 EQ PUSH2 0x5B JUMPI DUP1 PUSH4 0x8B851B95 EQ PUSH2 0x6E JUMPI DUP1 PUSH4 0xAFFED0E0 EQ PUSH2 0xB2 JUMPI STOP JUMPDEST CALLDATASIZE PUSH2 0x46 JUMPI STOP JUMPDEST STOP JUMPDEST PUSH2 0x46 PUSH2 0x56 CALLDATASIZE PUSH1 0x4 PUSH2 0x819 JUMP JUMPDEST PUSH2 0xD4 JUMP JUMPDEST PUSH2 0x46 PUSH2 0x69 CALLDATASIZE PUSH1 0x4 PUSH2 0x858 JUMP JUMPDEST PUSH2 0x113 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x79 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x95 PUSH20 0x56DA8FCE8FD64CAAE90D80DED55587B282BB4303 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBD JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xC6 PUSH0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x139BDD081A5B5C1B195B595B9D1959 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH20 0x56DA8FCE8FD64CAAE90D80DED55587B282BB4303 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD59DBC 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 0x163 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x187 SWAP2 SWAP1 PUSH2 0x8FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1D8 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 0x27B7363CA0B3B3B932B3B0BA37B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH1 0x60 PUSH0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x2A9 JUMPI DUP2 DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x1F7 JUMPI PUSH2 0x1F7 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH2 0x217 SWAP1 PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x94F JUMP JUMPDEST DUP8 DUP8 DUP5 DUP2 DUP2 LT PUSH2 0x229 JUMPI PUSH2 0x229 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x23B SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH1 0x20 ADD CALLDATALOAD DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x251 JUMPI PUSH2 0x251 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x263 SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH2 0x271 SWAP1 PUSH1 0x40 DUP2 ADD SWAP1 PUSH2 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x285 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x9DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP DUP1 DUP1 PUSH2 0x2A1 SWAP1 PUSH2 0xA1B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1DC JUMP JUMPDEST POP PUSH0 DUP1 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2BF SWAP3 SWAP2 SWAP1 PUSH2 0xA3F JUMP JUMPDEST 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 0x30E DUP3 PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3C SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x350 DUP3 DUP8 DUP8 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 0x3B2 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ADDRESS EQ PUSH2 0x39E 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 0x496E76616C6964207369676E6174757265 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH2 0x3A8 DUP9 DUP9 PUSH2 0x3D4 JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH2 0x3BF DUP6 DUP6 PUSH2 0x471 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x3CC DUP2 PUSH2 0x4B3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 DUP2 SWAP1 DUP1 PUSH2 0x3E4 DUP4 PUSH2 0xA1B JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x431 JUMPI PUSH2 0x41F DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x408 JUMPI PUSH2 0x408 PUSH2 0x91D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x41A SWAP2 SWAP1 PUSH2 0x931 JUMP JUMPDEST PUSH2 0x5FF JUMP JUMPDEST DUP1 PUSH2 0x429 DUP2 PUSH2 0xA1B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3EB JUMP JUMPDEST POP DUP1 PUSH32 0x280BB3599696ACBF79FB8FFCDE81A57337B52500F789600FBB1CFF9B4CBABA39 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x464 SWAP3 SWAP2 SWAP1 PUSH2 0xA80 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP3 MLOAD PUSH1 0x41 SUB PUSH2 0x4A5 JUMPI PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH0 BYTE PUSH2 0x499 DUP8 DUP3 DUP6 DUP6 PUSH2 0x71B JUMP JUMPDEST SWAP5 POP SWAP5 POP POP POP POP PUSH2 0x4AC JUMP JUMPDEST POP PUSH0 SWAP1 POP PUSH1 0x2 JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x4C6 JUMPI PUSH2 0x4C6 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x4CE JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x4E2 JUMPI PUSH2 0x4E2 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x52F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x543 JUMPI PUSH2 0x543 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x590 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x5A4 JUMPI PUSH2 0x5A4 PUSH2 0xB5B JUMP JUMPDEST SUB PUSH2 0x5FC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7565 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x10A JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x60D PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x94F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x628 PUSH1 0x40 DUP6 ADD DUP6 PUSH2 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x636 SWAP3 SWAP2 SWAP1 PUSH2 0xB6F JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x670 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 0x675 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x6B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x10D85B1B081C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x10A JUMP JUMPDEST PUSH2 0x6C3 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x94F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH32 0xED7E8F919DF9CC0D0AD8B4057D084EBF319B630564D5DA283E14751ADC931F3A PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x700 PUSH1 0x40 DUP8 ADD DUP8 PUSH2 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xB7E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x750 JUMPI POP PUSH0 SWAP1 POP PUSH1 0x3 PUSH2 0x7CF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7A1 JUMPI RETURNDATASIZE PUSH0 DUP1 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 0x7C9 JUMPI PUSH0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x7CF JUMP JUMPDEST SWAP2 POP PUSH0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x7E8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7FF JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x4AC JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x82A JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x840 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x84C DUP6 DUP3 DUP7 ADD PUSH2 0x7D8 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x86B JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x882 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x88E DUP9 DUP4 DUP10 ADD PUSH2 0x7D8 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x8A6 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x8B9 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x8C7 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x8D8 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x5FC JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x90B JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x916 DUP2 PUSH2 0x8E7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH1 0x5E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x945 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x95F JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x916 DUP2 PUSH2 0x8E7 JUMP JUMPDEST PUSH0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x97F JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x999 JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x4AC JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 MLOAD PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x9CC JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD MSTORE ADD PUSH2 0x9B2 JUMP JUMPDEST POP PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x9E5 DUP3 DUP9 PUSH2 0x9AD JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP8 PUSH1 0x60 SHL AND DUP2 MSTORE DUP6 PUSH1 0x14 DUP3 ADD MSTORE DUP4 DUP6 PUSH1 0x34 DUP4 ADD CALLDATACOPY PUSH0 SWAP4 ADD PUSH1 0x34 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0xA38 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH0 PUSH2 0xA50 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x9AD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP 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 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH0 SWAP1 PUSH1 0x40 DUP1 DUP5 ADD PUSH1 0x5 DUP7 SWAP1 SHL DUP6 ADD DUP3 ADD DUP8 DUP6 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0xB4D JUMPI DUP8 DUP4 SUB PUSH1 0x3F NOT ADD DUP5 MSTORE DUP2 CALLDATALOAD CALLDATASIZE DUP12 SWAP1 SUB PUSH1 0x5E NOT ADD DUP2 SLT PUSH2 0xAC3 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP11 ADD PUSH1 0x60 DUP2 CALLDATALOAD PUSH2 0xAD2 DUP2 PUSH2 0x8E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE DUP2 DUP9 ADD CALLDATALOAD DUP9 DUP7 ADD MSTORE DUP7 DUP3 ADD CALLDATALOAD CALLDATASIZE DUP4 SWAP1 SUB PUSH1 0x1E NOT ADD DUP2 SLT PUSH2 0xAFB JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 SWAP2 ADD DUP8 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB18 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP4 SGT ISZERO PUSH2 0xB26 JUMPI PUSH0 DUP1 REVERT JUMPDEST DUP2 DUP9 DUP8 ADD MSTORE PUSH2 0xB38 DUP3 DUP8 ADD DUP3 DUP6 PUSH2 0xA58 JUMP JUMPDEST SWAP7 DUP10 ADD SWAP7 SWAP6 POP POP POP SWAP2 DUP7 ADD SWAP2 POP PUSH1 0x1 ADD PUSH2 0xA9E JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP 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 DUP2 DUP4 DUP3 CALLDATACOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0xB97 PUSH1 0x40 DUP4 ADD DUP5 DUP7 PUSH2 0xA58 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 TIMESTAMP 0xE7 PUSH27 0x99C684D5C0D4FE73C5495F8473BF83B096B103360DB73B60A067AC PUSH1 0xC4 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"894:3583:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3272:145;;;;;;:::i;:::-;;:::i;2276:769::-;;;;;;:::i;:::-;;:::i;1107:83::-;;;;;;;;;;;;1148:42;1107:83;;;;;-1:-1:-1;;;;;1990:32:5;;;1972:51;;1960:2;1945:18;1107:83:4;;;;;;;;1248:20;;;;;;;;;;;;;;;;;;;2180:25:5;;;2168:2;2153:18;1248:20:4;2034:177:5;3272:145:4;3339:25;;-1:-1:-1;;;3339:25:4;;2418:2:5;3339:25:4;;;2400:21:5;2457:2;2437:18;;;2430:30;-1:-1:-1;;;2476:18:5;;;2469:45;2531:18;;3339:25:4;;;;;;;;2276:769;1148:42;-1:-1:-1;;;;;1472:38:4;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1458:54:4;:10;-1:-1:-1;;;;;1458:54:4;;1450:81;;;;-1:-1:-1;;;1450:81:4;;3154:2:5;1450:81:4;;;3136:21:5;3193:2;3173:18;;;3166:30;-1:-1:-1;;;3212:18:5;;;3205:44;3266:18;;1450:81:4;2952:338:5;1450:81:4;2453:25:::1;2493:9;2488:157;2508:16:::0;;::::1;2488:157;;;2577:12;2591:5;;2597:1;2591:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:11;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;2604:5;;2610:1;2604:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:14;;;2620:5;;2626:1;2620:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:13;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;2560:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2545:89;;2526:3;;;;;:::i;:::-;;;;2488:157;;;;2654:14;2698:5:::0;::::1;2705:12;2681:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2671:48;;;;;;2654:65;;2738:28;2769:36;2798:6;7389:34:1::0;7189:15;7376:48;;;7444:4;7437:18;;;;7495:4;7479:21;;;7120:396;2769:36:4::1;2738:67;;2875:17;2895:46;2909:20;2931:9;;2895:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;2895:13:4::1;::::0;-1:-1:-1;;;2895:46:4:i:1;:::-;2875:66:::0;-1:-1:-1;;;;;;2959:26:4;::::1;2980:4;2959:26;2951:56;;;::::0;-1:-1:-1;;;2951:56:4;;6123:2:5;2951:56:4::1;::::0;::::1;6105:21:5::0;6162:2;6142:18;;;6135:30;-1:-1:-1;;;6181:18:5;;;6174:47;6238:18;;2951:56:4::1;5921:341:5::0;2951:56:4::1;3018:20;3032:5;;3018:13;:20::i;:::-;2374:671;;;;2276:769:::0;;;;:::o;3661:227:1:-;3739:7;3759:17;3778:18;3800:27;3811:4;3817:9;3800:10;:27::i;:::-;3758:69;;;;3837:18;3849:5;3837:11;:18::i;:::-;-1:-1:-1;3872:9:1;3661:227;-1:-1:-1;;;3661:227:1:o;3570:320:4:-;3635:20;3658:5;;;;;3635:20;3673:7;3658:5;3673:7;:::i;:::-;;;;;;3749:9;3744:90;3764:16;;;3744:90;;;3801:22;3814:5;;3820:1;3814:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;3801:12;:22::i;:::-;3782:3;;;;:::i;:::-;;;;3744:90;;;;3863:12;3849:34;3877:5;;3849:34;;;;;;;:::i;:::-;;;;;;;;3625:265;3570:320;;:::o;2145:730:1:-;2226:7;2235:12;2263:9;:16;2283:2;2263:22;2259:610;;2599:4;2584:20;;2578:27;2648:4;2633:20;;2627:27;2705:4;2690:20;;2684:27;2301:9;2676:36;2746:25;2757:4;2676:36;2578:27;2627;2746:10;:25::i;:::-;2739:32;;;;;;;;;2259:610;-1:-1:-1;2818:1:1;;-1:-1:-1;2822:35:1;2259:610;2145:730;;;;;:::o;570:511::-;647:20;638:5;:29;;;;;;;;:::i;:::-;;634:441;;570:511;:::o;634:441::-;743:29;734:5;:38;;;;;;;;:::i;:::-;;730:345;;788:34;;-1:-1:-1;;;788:34:1;;8688:2:5;788:34:1;;;8670:21:5;8727:2;8707:18;;;8700:30;8766:26;8746:18;;;8739:54;8810:18;;788:34:1;8486:348:5;730:345:1;852:35;843:5;:44;;;;;;;;:::i;:::-;;839:236;;903:41;;-1:-1:-1;;;903:41:1;;9041:2:5;903:41:1;;;9023:21:5;9080:2;9060:18;;;9053:30;9119:33;9099:18;;;9092:61;9170:18;;903:41:1;8839:355:5;839:236:1;974:30;965:5;:39;;;;;;;;:::i;:::-;;961:114;;1020:44;;-1:-1:-1;;;1020:44:1;;9401:2:5;1020:44:1;;;9383:21:5;9440:2;9420:18;;;9413:30;9479:34;9459:18;;;9452:62;-1:-1:-1;;;9530:18:5;;;9523:32;9572:19;;1020:44:1;9199:398:5;961:114:1;570:511;:::o;4052:270:4:-;4118:12;4135:11;;;;:8;:11;:::i;:::-;-1:-1:-1;;;;;4135:16:4;4159:14;;;;4175:13;;;;4159:8;4175:13;:::i;:::-;4135:54;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4117:72;;;4207:7;4199:33;;;;-1:-1:-1;;;4199:33:4;;10080:2:5;4199:33:4;;;10062:21:5;10119:2;10099:18;;;10092:30;-1:-1:-1;;;10138:18:5;;;10131:43;10191:18;;4199:33:4;9878:337:5;4199:33:4;4272:11;;;;:8;:11;:::i;:::-;-1:-1:-1;;;;;4247:68:4;4260:10;4247:68;4285:14;;;;4301:13;;;;4285:8;4301:13;:::i;:::-;4247:68;;;;;;;;:::i;:::-;;;;;;;;4107:215;4052:270;:::o;5009:1456:1:-;5097:7;;6021:66;6008:79;;6004:161;;;-1:-1:-1;6119:1:1;;-1:-1:-1;6123:30:1;6103:51;;6004:161;6276:24;;;6259:14;6276:24;;;;;;;;;10767:25:5;;;10840:4;10828:17;;10808:18;;;10801:45;;;;10862:18;;;10855:34;;;10905:18;;;10898:34;;;6276:24:1;;10739:19:5;;6276:24:1;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6276:24:1;;-1:-1:-1;;6276:24:1;;;-1:-1:-1;;;;;;;6314:20:1;;6310:101;;6366:1;6370:29;6350:50;;;;;;;6310:101;6429:6;-1:-1:-1;6437:20:1;;-1:-1:-1;5009:1456:1;;;;;;;;:::o;14:380:5:-;90:8;100:6;154:3;147:4;139:6;135:17;131:27;121:55;;172:1;169;162:12;121:55;-1:-1:-1;195:20:5;;238:18;227:30;;224:50;;;270:1;267;260:12;224:50;307:4;299:6;295:17;283:29;;367:3;360:4;350:6;347:1;343:14;335:6;331:27;327:38;324:47;321:67;;;384:1;381;374:12;399:474;509:6;517;570:2;558:9;549:7;545:23;541:32;538:52;;;586:1;583;576:12;538:52;626:9;613:23;659:18;651:6;648:30;645:50;;;691:1;688;681:12;645:50;730:83;805:7;796:6;785:9;781:22;730:83;:::i;:::-;832:8;;704:109;;-1:-1:-1;399:474:5;-1:-1:-1;;;;399:474:5:o;878:943::-;1008:6;1016;1024;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1141:9;1128:23;1170:18;1211:2;1203:6;1200:14;1197:34;;;1227:1;1224;1217:12;1197:34;1266:83;1341:7;1332:6;1321:9;1317:22;1266:83;:::i;:::-;1368:8;;-1:-1:-1;1240:109:5;-1:-1:-1;1456:2:5;1441:18;;1428:32;;-1:-1:-1;1472:16:5;;;1469:36;;;1501:1;1498;1491:12;1469:36;1539:8;1528:9;1524:24;1514:34;;1586:7;1579:4;1575:2;1571:13;1567:27;1557:55;;1608:1;1605;1598:12;1557:55;1648:2;1635:16;1674:2;1666:6;1663:14;1660:34;;;1690:1;1687;1680:12;1660:34;1735:7;1730:2;1721:6;1717:2;1713:15;1709:24;1706:37;1703:57;;;1756:1;1753;1746:12;1703:57;878:943;;;;-1:-1:-1;;1787:2:5;1779:11;;-1:-1:-1;;;878:943:5:o;2560:131::-;-1:-1:-1;;;;;2635:31:5;;2625:42;;2615:70;;2681:1;2678;2671:12;2696:251;2766:6;2819:2;2807:9;2798:7;2794:23;2790:32;2787:52;;;2835:1;2832;2825:12;2787:52;2867:9;2861:16;2886:31;2911:5;2886:31;:::i;:::-;2936:5;2696:251;-1:-1:-1;;;2696:251:5:o;3295:127::-;3356:10;3351:3;3347:20;3344:1;3337:31;3387:4;3384:1;3377:15;3411:4;3408:1;3401:15;3427:321;3517:4;3575:11;3562:25;3669:2;3665:7;3654:8;3638:14;3634:29;3630:43;3610:18;3606:68;3596:96;;3688:1;3685;3678:12;3596:96;3709:33;;;;;3427:321;-1:-1:-1;;3427:321:5:o;3753:247::-;3812:6;3865:2;3853:9;3844:7;3840:23;3836:32;3833:52;;;3881:1;3878;3871:12;3833:52;3920:9;3907:23;3939:31;3964:5;3939:31;:::i;4005:521::-;4082:4;4088:6;4148:11;4135:25;4242:2;4238:7;4227:8;4211:14;4207:29;4203:43;4183:18;4179:68;4169:96;;4261:1;4258;4251:12;4169:96;4288:33;;4340:20;;;-1:-1:-1;4383:18:5;4372:30;;4369:50;;;4415:1;4412;4405:12;4369:50;4448:4;4436:17;;-1:-1:-1;4479:14:5;4475:27;;;4465:38;;4462:58;;;4516:1;4513;4506:12;4531:322;4572:3;4610:5;4604:12;4634:1;4644:128;4658:6;4655:1;4652:13;4644:128;;;4755:4;4740:13;;;4736:24;;4730:31;4717:11;;;4710:52;4673:12;4644:128;;;-1:-1:-1;4827:1:5;4791:16;;4816:13;;;-1:-1:-1;4791:16:5;;4531:322;-1:-1:-1;4531:322:5:o;4858:562::-;5099:3;5130:29;5155:3;5147:6;5130:29;:::i;:::-;5207:26;5203:31;5194:6;5190:2;5186:15;5182:53;5175:5;5168:68;5268:6;5263:2;5256:5;5252:14;5245:30;5321:6;5313;5308:2;5301:5;5297:14;5284:44;5394:1;5351:18;;5371:2;5347:27;5383:13;;;-1:-1:-1;5347:27:5;;4858:562;-1:-1:-1;;;;;4858:562:5:o;5425:232::-;5464:3;5485:17;;;5482:140;;5544:10;5539:3;5535:20;5532:1;5525:31;5579:4;5576:1;5569:15;5607:4;5604:1;5597:15;5482:140;-1:-1:-1;5649:1:5;5638:13;;5425:232::o;5662:254::-;5849:6;5844:3;5837:19;5819:3;5872:38;5906:2;5901:3;5897:12;5889:6;5872:38;:::i;:::-;5865:45;5662:254;-1:-1:-1;;;;5662:254:5:o;6267:266::-;6355:6;6350:3;6343:19;6407:6;6400:5;6393:4;6388:3;6384:14;6371:43;-1:-1:-1;6459:1:5;6434:16;;;6452:4;6430:27;;;6423:38;;;;6515:2;6494:15;;;-1:-1:-1;;6490:29:5;6481:39;;;6477:50;;6267:266::o;6538:1811::-;6765:2;6817:21;;;6790:18;;;6873:22;;;6736:4;;6914:2;6932:18;;;6996:1;6992:14;;;6977:30;;6973:39;;7035:6;6736:4;7069:1251;7083:6;7080:1;7077:13;7069:1251;;;7148:22;;;-1:-1:-1;;7144:36:5;7132:49;;7220:20;;7295:14;7291:27;;;-1:-1:-1;;7287:41:5;7263:66;;7253:94;;7343:1;7340;7333:12;7253:94;7373:31;;7427:4;7459:19;;7491:33;7459:19;7491:33;:::i;:::-;-1:-1:-1;;;;;7552:33:5;7537:49;;7636:14;;;7623:28;7606:15;;;7599:53;7706:14;;;7693:28;7778:14;7774:26;;;-1:-1:-1;;7770:40:5;7744:67;;7734:95;;7825:1;7822;7815:12;7734:95;7857:32;;;7965:16;;;;-1:-1:-1;7916:21:5;8008:18;7997:30;;7994:50;;;8040:1;8037;8030:12;7994:50;8093:6;8077:14;8073:27;8064:7;8060:41;8057:61;;;8114:1;8111;8104:12;8057:61;8155:2;8150;8142:6;8138:15;8131:27;8181:59;8236:2;8228:6;8224:15;8216:6;8207:7;8181:59;:::i;:::-;8298:12;;;;8171:69;-1:-1:-1;;;8263:15:5;;;;-1:-1:-1;7105:1:5;7098:9;7069:1251;;;-1:-1:-1;8337:6:5;;6538:1811;-1:-1:-1;;;;;;;;6538:1811:5:o;8354:127::-;8415:10;8410:3;8406:20;8403:1;8396:31;8446:4;8443:1;8436:15;8470:4;8467:1;8460:15;9602:271;9785:6;9777;9772:3;9759:33;9741:3;9811:16;;9836:13;;;9811:16;9602:271;-1:-1:-1;9602:271:5:o;10220:315::-;10405:6;10394:9;10387:25;10448:2;10443;10432:9;10428:18;10421:30;10368:4;10468:61;10525:2;10514:9;10510:18;10502:6;10494;10468:61;:::i;:::-;10460:69;10220:315;-1:-1:-1;;;;;10220:315:5:o"},"methodIdentifiers":{"execute((address,uint256,bytes)[])":"3f707e6b","execute((address,uint256,bytes)[],bytes)":"6171d1c9","gatewayAddress()":"8b851b95","nonce()":"affed0e0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"indexed\":false,\"internalType\":\"struct ProviderBatchCallAndSponsor.Call[]\",\"name\":\"calls\",\"type\":\"tuple[]\"}],\"name\":\"BatchExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"CallExecuted\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct ProviderBatchCallAndSponsor.Call[]\",\"name\":\"calls\",\"type\":\"tuple[]\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct ProviderBatchCallAndSponsor.Call[]\",\"name\":\"calls\",\"type\":\"tuple[]\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"gatewayAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"nonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"execute((address,uint256,bytes)[])\":{\"details\":\"This contract doesnt authorized self execution.\",\"params\":{\"calls\":\"An array of Call structs containing destination, ETH value, and calldata.\"}},\"execute((address,uint256,bytes)[],bytes)\":{\"params\":{\"calls\":\"An array of Call structs containing destination, ETH value, and calldata.\",\"signature\":\"The ECDSA signature over the current nonce and the call data. The signature must be produced off\\u2013chain by signing: The signing key should be the account\\u2019s key (which becomes the smart account\\u2019s own identity after upgrade).\"}}},\"title\":\"ProviderBatchCallAndSponsor When an EOA upgrades via EIP\\u20117702, it delegates to this implementation. Off\\u2011chain, the account signs a message authorizing a batch of calls. The message is the hash of: keccak256(abi.encodePacked(nonce, calls)) The signature must be generated with the EOA\\u2019s private key so that, once upgraded, the recovered signer equals the account\\u2019s own address (i.e. address(this)). This contract provides just one way to execute a batch: 1. With a signature: Any sponsor can submit the batch if it carries a valid signature. Replay protection is achieved by using a nonce that is included in the signed message.\",\"version\":1},\"userdoc\":{\"events\":{\"BatchExecuted(uint256,(address,uint256,bytes)[])\":{\"notice\":\"Emitted when a full batch is executed.\"},\"CallExecuted(address,address,uint256,bytes)\":{\"notice\":\"Emitted for every individual call executed.\"}},\"kind\":\"user\",\"methods\":{\"execute((address,uint256,bytes)[])\":{\"notice\":\"Executes a batch of calls directly.\"},\"execute((address,uint256,bytes)[],bytes)\":{\"notice\":\"Executes a batch of calls using an off\\u2013chain signature.\"},\"gatewayAddress()\":{\"notice\":\"The address of the Gateway contract.\"},\"nonce()\":{\"notice\":\"A nonce used for replay protection.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project/contracts/ProviderBatchCallAndSponsor.sol\":\"ProviderBatchCallAndSponsor\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\"project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/\"]},\"sources\":{\"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol\":{\"keccak256\":\"0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f\",\"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x809bc3edb4bcbef8263fa616c1b60ee0004b50a8a1bfa164d8f57fd31f520c58\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b93a1e39a4a19eba1600b92c96f435442db88cac91e315c8291547a2a7bcfe2\",\"dweb:/ipfs/QmTm34KVe6uZBZwq8dZDNWwPcm24qBJdxqL3rPxBJ4LrMv\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol\":{\"keccak256\":\"0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c\",\"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS\"]},\"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol\":{\"keccak256\":\"0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7\",\"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6\"]},\"project/contracts/ProviderBatchCallAndSponsor.sol\":{\"keccak256\":\"0xb15db608edab3dd9fc9fd9b537c429506b58347924050bce23bd889bc514eb3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a41db6feb1d57044fb81584e09447711f218a86409335e87b274bfed8b5cb1e\",\"dweb:/ipfs/QmXuwC7h5BM7bXuc15Avbk8DsnCaaxZ3qHaDMr14ui6RYM\"]}},\"version\":1}"}}},"errors":[{"component":"general","errorCode":"5667","formattedMessage":"Warning: Unused function parameter. Remove or comment out the variable name to silence this warning.\n --> project/contracts/ProviderBatchCallAndSponsor.sol:78:22:\n |\n78 | function execute(Call[] calldata calls) external payable {\n | ^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Unused function parameter. Remove or comment out the variable name to silence this warning.","severity":"warning","sourceLocation":{"end":3310,"file":"project/contracts/ProviderBatchCallAndSponsor.sol","start":3289},"type":"Warning"}],"sources":{"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol","exportedSymbols":{"Math":[1460],"SignedMath":[1565],"Strings":[228]},"id":229,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:0"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol","file":"./math/Math.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":229,"sourceUnit":1461,"src":"126:25:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":229,"sourceUnit":1566,"src":"152:31:0","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":4,"nodeType":"StructuredDocumentation","src":"185:34:0","text":" @dev String operations."},"fullyImplemented":true,"id":228,"linearizedBaseContracts":[228],"name":"Strings","nameLocation":"228:7:0","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":7,"mutability":"constant","name":"_SYMBOLS","nameLocation":"267:8:0","nodeType":"VariableDeclaration","scope":228,"src":"242:54:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":5,"name":"bytes16","nodeType":"ElementaryTypeName","src":"242:7:0","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":6,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"278:18:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":10,"mutability":"constant","name":"_ADDRESS_LENGTH","nameLocation":"325:15:0","nodeType":"VariableDeclaration","scope":228,"src":"302:43:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8,"name":"uint8","nodeType":"ElementaryTypeName","src":"302:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":9,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"343:2:0","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"body":{"id":57,"nodeType":"Block","src":"518:625:0","statements":[{"id":56,"nodeType":"UncheckedBlock","src":"528:609:0","statements":[{"assignments":[19],"declarations":[{"constant":false,"id":19,"mutability":"mutable","name":"length","nameLocation":"560:6:0","nodeType":"VariableDeclaration","scope":56,"src":"552:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18,"name":"uint256","nodeType":"ElementaryTypeName","src":"552:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":22,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13,"src":"580:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":20,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1460,"src":"569:4:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$1460_$","typeString":"type(library Math)"}},"id":21,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"574:5:0","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":1297,"src":"569:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"569:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":24,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"589:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"569:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"552:38:0"},{"assignments":[28],"declarations":[{"constant":false,"id":28,"mutability":"mutable","name":"buffer","nameLocation":"618:6:0","nodeType":"VariableDeclaration","scope":56,"src":"604:20:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":27,"name":"string","nodeType":"ElementaryTypeName","src":"604:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":33,"initialValue":{"arguments":[{"id":31,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19,"src":"638:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":30,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"627:10:0","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":29,"name":"string","nodeType":"ElementaryTypeName","src":"631:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":32,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"627:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"604:41:0"},{"assignments":[35],"declarations":[{"constant":false,"id":35,"mutability":"mutable","name":"ptr","nameLocation":"667:3:0","nodeType":"VariableDeclaration","scope":56,"src":"659:11:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34,"name":"uint256","nodeType":"ElementaryTypeName","src":"659:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":36,"nodeType":"VariableDeclarationStatement","src":"659:11:0"},{"AST":{"nodeType":"YulBlock","src":"740:67:0","statements":[{"nodeType":"YulAssignment","src":"758:35:0","value":{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"769:6:0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"781:2:0","type":"","value":"32"},{"name":"length","nodeType":"YulIdentifier","src":"785:6:0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"777:3:0"},"nodeType":"YulFunctionCall","src":"777:15:0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"765:3:0"},"nodeType":"YulFunctionCall","src":"765:28:0"},"variableNames":[{"name":"ptr","nodeType":"YulIdentifier","src":"758:3:0"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":28,"isOffset":false,"isSlot":false,"src":"769:6:0","valueSize":1},{"declaration":19,"isOffset":false,"isSlot":false,"src":"785:6:0","valueSize":1},{"declaration":35,"isOffset":false,"isSlot":false,"src":"758:3:0","valueSize":1}],"id":37,"nodeType":"InlineAssembly","src":"731:76:0"},{"body":{"id":52,"nodeType":"Block","src":"833:267:0","statements":[{"expression":{"id":40,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"851:5:0","subExpression":{"id":39,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"851:3:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":41,"nodeType":"ExpressionStatement","src":"851:5:0"},{"AST":{"nodeType":"YulBlock","src":"934:84:0","statements":[{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"964:3:0"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"978:5:0"},{"kind":"number","nodeType":"YulLiteral","src":"985:2:0","type":"","value":"10"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"974:3:0"},"nodeType":"YulFunctionCall","src":"974:14:0"},{"name":"_SYMBOLS","nodeType":"YulIdentifier","src":"990:8:0"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"969:4:0"},"nodeType":"YulFunctionCall","src":"969:30:0"}],"functionName":{"name":"mstore8","nodeType":"YulIdentifier","src":"956:7:0"},"nodeType":"YulFunctionCall","src":"956:44:0"},"nodeType":"YulExpressionStatement","src":"956:44:0"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":7,"isOffset":false,"isSlot":false,"src":"990:8:0","valueSize":1},{"declaration":35,"isOffset":false,"isSlot":false,"src":"964:3:0","valueSize":1},{"declaration":13,"isOffset":false,"isSlot":false,"src":"978:5:0","valueSize":1}],"id":42,"nodeType":"InlineAssembly","src":"925:93:0"},{"expression":{"id":45,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":43,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13,"src":"1035:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":44,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1044:2:0","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1035:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":46,"nodeType":"ExpressionStatement","src":"1035:11:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":49,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":47,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13,"src":"1068:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":48,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1077:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1068:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":51,"nodeType":"IfStatement","src":"1064:21:0","trueBody":{"id":50,"nodeType":"Break","src":"1080:5:0"}}]},"condition":{"hexValue":"74727565","id":38,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"827:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":53,"nodeType":"WhileStatement","src":"820:280:0"},{"expression":{"id":54,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28,"src":"1120:6:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":17,"id":55,"nodeType":"Return","src":"1113:13:0"}]}]},"documentation":{"id":11,"nodeType":"StructuredDocumentation","src":"352:90:0","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":58,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"456:8:0","nodeType":"FunctionDefinition","parameters":{"id":14,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"mutability":"mutable","name":"value","nameLocation":"473:5:0","nodeType":"VariableDeclaration","scope":58,"src":"465:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12,"name":"uint256","nodeType":"ElementaryTypeName","src":"465:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"464:15:0"},"returnParameters":{"id":17,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":58,"src":"503:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15,"name":"string","nodeType":"ElementaryTypeName","src":"503:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"502:15:0"},"scope":228,"src":"447:696:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":85,"nodeType":"Block","src":"1313:103:0","statements":[{"expression":{"arguments":[{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":72,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":70,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":61,"src":"1354:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":71,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1362:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1354:9:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":74,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1372:2:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1354:20:0","trueExpression":{"hexValue":"2d","id":73,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1366:3:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":79,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":61,"src":"1400:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":77,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"1385:10:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$1565_$","typeString":"type(library SignedMath)"}},"id":78,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1396:3:0","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":1564,"src":"1385:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":80,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1385:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":76,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[58,86],"referencedDeclaration":58,"src":"1376:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":81,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1376:31:0","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":68,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1337:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":69,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1341:12:0","memberName":"encodePacked","nodeType":"MemberAccess","src":"1337:16:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":82,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1337:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":67,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1330:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":66,"name":"string","nodeType":"ElementaryTypeName","src":"1330:6:0","typeDescriptions":{}}},"id":83,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1330:79:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":65,"id":84,"nodeType":"Return","src":"1323:86:0"}]},"documentation":{"id":59,"nodeType":"StructuredDocumentation","src":"1149:89:0","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":86,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"1252:8:0","nodeType":"FunctionDefinition","parameters":{"id":62,"nodeType":"ParameterList","parameters":[{"constant":false,"id":61,"mutability":"mutable","name":"value","nameLocation":"1268:5:0","nodeType":"VariableDeclaration","scope":86,"src":"1261:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":60,"name":"int256","nodeType":"ElementaryTypeName","src":"1261:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1260:14:0"},"returnParameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":86,"src":"1298:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":63,"name":"string","nodeType":"ElementaryTypeName","src":"1298:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1297:15:0"},"scope":228,"src":"1243:173:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":105,"nodeType":"Block","src":"1595:100:0","statements":[{"id":104,"nodeType":"UncheckedBlock","src":"1605:84:0","statements":[{"expression":{"arguments":[{"id":95,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89,"src":"1648:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":98,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89,"src":"1667:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":96,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1460,"src":"1655:4:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$1460_$","typeString":"type(library Math)"}},"id":97,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1660:6:0","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":1420,"src":"1655:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":99,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1676:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1655:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":94,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[106,182,202],"referencedDeclaration":182,"src":"1636:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1636:42:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":93,"id":103,"nodeType":"Return","src":"1629:49:0"}]}]},"documentation":{"id":87,"nodeType":"StructuredDocumentation","src":"1422:94:0","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":106,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"1530:11:0","nodeType":"FunctionDefinition","parameters":{"id":90,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89,"mutability":"mutable","name":"value","nameLocation":"1550:5:0","nodeType":"VariableDeclaration","scope":106,"src":"1542:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":88,"name":"uint256","nodeType":"ElementaryTypeName","src":"1542:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1541:15:0"},"returnParameters":{"id":93,"nodeType":"ParameterList","parameters":[{"constant":false,"id":92,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":106,"src":"1580:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":91,"name":"string","nodeType":"ElementaryTypeName","src":"1580:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1579:15:0"},"scope":228,"src":"1521:174:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":181,"nodeType":"Block","src":"1908:347:0","statements":[{"assignments":[117],"declarations":[{"constant":false,"id":117,"mutability":"mutable","name":"buffer","nameLocation":"1931:6:0","nodeType":"VariableDeclaration","scope":181,"src":"1918:19:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":116,"name":"bytes","nodeType":"ElementaryTypeName","src":"1918:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":126,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1950:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":121,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"1954:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1950:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1963:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"1950:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":119,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1940:9:0","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":118,"name":"bytes","nodeType":"ElementaryTypeName","src":"1944:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1940:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1918:47:0"},{"expression":{"id":131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":127,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":117,"src":"1975:6:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":129,"indexExpression":{"hexValue":"30","id":128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1982:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1975:9:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1987:3:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"1975:15:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":132,"nodeType":"ExpressionStatement","src":"1975:15:0"},{"expression":{"id":137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":133,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":117,"src":"2000:6:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":135,"indexExpression":{"hexValue":"31","id":134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2007:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2000:9:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2012:3:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2000:15:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":138,"nodeType":"ExpressionStatement","src":"2000:15:0"},{"body":{"id":167,"nodeType":"Block","src":"2070:83:0","statements":[{"expression":{"id":161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":153,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":117,"src":"2084:6:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":155,"indexExpression":{"id":154,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":140,"src":"2091:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2084:9:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":156,"name":"_SYMBOLS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7,"src":"2096:8:0","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":160,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":157,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":109,"src":"2105:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2113:3:0","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2105:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2096:21:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2084:33:0","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":162,"nodeType":"ExpressionStatement","src":"2084:33:0"},{"expression":{"id":165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":163,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":109,"src":"2131:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2141:1:0","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2131:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":166,"nodeType":"ExpressionStatement","src":"2131:11:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":147,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":140,"src":"2058:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2062:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2058:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":168,"initializationExpression":{"assignments":[140],"declarations":[{"constant":false,"id":140,"mutability":"mutable","name":"i","nameLocation":"2038:1:0","nodeType":"VariableDeclaration","scope":168,"src":"2030:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":139,"name":"uint256","nodeType":"ElementaryTypeName","src":"2030:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":146,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2042:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":142,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"2046:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2042:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2055:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2042:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2030:26:0"},"loopExpression":{"expression":{"id":151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2065:3:0","subExpression":{"id":150,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":140,"src":"2067:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":152,"nodeType":"ExpressionStatement","src":"2065:3:0"},"nodeType":"ForStatement","src":"2025:128:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":170,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":109,"src":"2170:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2179:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2170:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"537472696e67733a20686578206c656e67746820696e73756666696369656e74","id":173,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2182:34:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2","typeString":"literal_string \"Strings: hex length insufficient\""},"value":"Strings: hex length insufficient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2","typeString":"literal_string \"Strings: hex length insufficient\""}],"id":169,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2162:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2162:55:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":175,"nodeType":"ExpressionStatement","src":"2162:55:0"},{"expression":{"arguments":[{"id":178,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":117,"src":"2241:6:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2234:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":176,"name":"string","nodeType":"ElementaryTypeName","src":"2234:6:0","typeDescriptions":{}}},"id":179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2234:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":115,"id":180,"nodeType":"Return","src":"2227:21:0"}]},"documentation":{"id":107,"nodeType":"StructuredDocumentation","src":"1701:112:0","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":182,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"1827:11:0","nodeType":"FunctionDefinition","parameters":{"id":112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":109,"mutability":"mutable","name":"value","nameLocation":"1847:5:0","nodeType":"VariableDeclaration","scope":182,"src":"1839:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":108,"name":"uint256","nodeType":"ElementaryTypeName","src":"1839:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":111,"mutability":"mutable","name":"length","nameLocation":"1862:6:0","nodeType":"VariableDeclaration","scope":182,"src":"1854:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":110,"name":"uint256","nodeType":"ElementaryTypeName","src":"1854:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1838:31:0"},"returnParameters":{"id":115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":114,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":182,"src":"1893:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":113,"name":"string","nodeType":"ElementaryTypeName","src":"1893:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1892:15:0"},"scope":228,"src":"1818:437:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":201,"nodeType":"Block","src":"2480:76:0","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":195,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":185,"src":"2525:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2517:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":193,"name":"uint160","nodeType":"ElementaryTypeName","src":"2517:7:0","typeDescriptions":{}}},"id":196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2517:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2509:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":191,"name":"uint256","nodeType":"ElementaryTypeName","src":"2509:7:0","typeDescriptions":{}}},"id":197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2509:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":198,"name":"_ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10,"src":"2533:15:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":190,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[106,182,202],"referencedDeclaration":182,"src":"2497:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2497:52:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":189,"id":200,"nodeType":"Return","src":"2490:59:0"}]},"documentation":{"id":183,"nodeType":"StructuredDocumentation","src":"2261:141:0","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation."},"id":202,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2416:11:0","nodeType":"FunctionDefinition","parameters":{"id":186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":185,"mutability":"mutable","name":"addr","nameLocation":"2436:4:0","nodeType":"VariableDeclaration","scope":202,"src":"2428:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":184,"name":"address","nodeType":"ElementaryTypeName","src":"2428:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2427:14:0"},"returnParameters":{"id":189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":202,"src":"2465:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":187,"name":"string","nodeType":"ElementaryTypeName","src":"2465:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2464:15:0"},"scope":228,"src":"2407:149:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":226,"nodeType":"Block","src":"2711:66:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":215,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":205,"src":"2744:1:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":214,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2738:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":213,"name":"bytes","nodeType":"ElementaryTypeName","src":"2738:5:0","typeDescriptions":{}}},"id":216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2738:8:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":212,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2728:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2728:19:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":221,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":207,"src":"2767:1:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2761:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":219,"name":"bytes","nodeType":"ElementaryTypeName","src":"2761:5:0","typeDescriptions":{}}},"id":222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2761:8:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":218,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2751:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:19:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2728:42:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":211,"id":225,"nodeType":"Return","src":"2721:49:0"}]},"documentation":{"id":203,"nodeType":"StructuredDocumentation","src":"2562:66:0","text":" @dev Returns true if the two strings are equal."},"id":227,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"2642:5:0","nodeType":"FunctionDefinition","parameters":{"id":208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":205,"mutability":"mutable","name":"a","nameLocation":"2662:1:0","nodeType":"VariableDeclaration","scope":227,"src":"2648:15:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":204,"name":"string","nodeType":"ElementaryTypeName","src":"2648:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":207,"mutability":"mutable","name":"b","nameLocation":"2679:1:0","nodeType":"VariableDeclaration","scope":227,"src":"2665:15:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":206,"name":"string","nodeType":"ElementaryTypeName","src":"2665:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2647:34:0"},"returnParameters":{"id":211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":210,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":227,"src":"2705:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":209,"name":"bool","nodeType":"ElementaryTypeName","src":"2705:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2704:6:0"},"scope":228,"src":"2633:144:0","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":229,"src":"220:2559:0","usedErrors":[],"usedEvents":[]}],"src":"101:2679:0"},"id":0},"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[594],"Math":[1460],"SignedMath":[1565],"Strings":[228]},"id":595,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":230,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"112:23:1"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol","file":"../Strings.sol","id":231,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":595,"sourceUnit":229,"src":"137:24:1","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":232,"nodeType":"StructuredDocumentation","src":"163:205:1","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":594,"linearizedBaseContracts":[594],"name":"ECDSA","nameLocation":"377:5:1","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":238,"members":[{"id":233,"name":"NoError","nameLocation":"417:7:1","nodeType":"EnumValue","src":"417:7:1"},{"id":234,"name":"InvalidSignature","nameLocation":"434:16:1","nodeType":"EnumValue","src":"434:16:1"},{"id":235,"name":"InvalidSignatureLength","nameLocation":"460:22:1","nodeType":"EnumValue","src":"460:22:1"},{"id":236,"name":"InvalidSignatureS","nameLocation":"492:17:1","nodeType":"EnumValue","src":"492:17:1"},{"id":237,"name":"InvalidSignatureV","nameLocation":"519:17:1","nodeType":"EnumValue","src":"519:17:1"}],"name":"RecoverError","nameLocation":"394:12:1","nodeType":"EnumDefinition","src":"389:175:1"},{"body":{"id":281,"nodeType":"Block","src":"624:457:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"id":247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":244,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":241,"src":"638:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":245,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"647:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":246,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"660:7:1","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":233,"src":"647:20:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"src":"638:29:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"id":253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":250,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":241,"src":"734:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":251,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"743:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"756:16:1","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":234,"src":"743:29:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"src":"734:38:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"id":262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":259,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":241,"src":"843:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":260,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"852:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"865:22:1","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":235,"src":"852:35:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"src":"843:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"id":271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":268,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":241,"src":"965:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":269,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"974:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"987:17:1","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":236,"src":"974:30:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"src":"965:39:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":277,"nodeType":"IfStatement","src":"961:114:1","trueBody":{"id":276,"nodeType":"Block","src":"1006:69:1","statements":[{"expression":{"arguments":[{"hexValue":"45434453413a20696e76616c6964207369676e6174757265202773272076616c7565","id":273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1027:36:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd","typeString":"literal_string \"ECDSA: invalid signature 's' value\""},"value":"ECDSA: invalid signature 's' value"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd","typeString":"literal_string \"ECDSA: invalid signature 's' value\""}],"id":272,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"1020:6:1","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1020:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":275,"nodeType":"ExpressionStatement","src":"1020:44:1"}]}},"id":278,"nodeType":"IfStatement","src":"839:236:1","trueBody":{"id":267,"nodeType":"Block","src":"889:66:1","statements":[{"expression":{"arguments":[{"hexValue":"45434453413a20696e76616c6964207369676e6174757265206c656e677468","id":264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"910:33:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77","typeString":"literal_string \"ECDSA: invalid signature length\""},"value":"ECDSA: invalid signature length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77","typeString":"literal_string \"ECDSA: invalid signature length\""}],"id":263,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"903:6:1","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"903:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":266,"nodeType":"ExpressionStatement","src":"903:41:1"}]}},"id":279,"nodeType":"IfStatement","src":"730:345:1","trueBody":{"id":258,"nodeType":"Block","src":"774:59:1","statements":[{"expression":{"arguments":[{"hexValue":"45434453413a20696e76616c6964207369676e6174757265","id":255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"795:26:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be","typeString":"literal_string \"ECDSA: invalid signature\""},"value":"ECDSA: invalid signature"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be","typeString":"literal_string \"ECDSA: invalid signature\""}],"id":254,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"788:6:1","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"788:34:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":257,"nodeType":"ExpressionStatement","src":"788:34:1"}]}},"id":280,"nodeType":"IfStatement","src":"634:441:1","trueBody":{"id":249,"nodeType":"Block","src":"669:55:1","statements":[{"functionReturnParameters":243,"id":248,"nodeType":"Return","src":"683:7:1"}]}}]},"id":282,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"579:11:1","nodeType":"FunctionDefinition","parameters":{"id":242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":241,"mutability":"mutable","name":"error","nameLocation":"604:5:1","nodeType":"VariableDeclaration","scope":282,"src":"591:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":240,"nodeType":"UserDefinedTypeName","pathNode":{"id":239,"name":"RecoverError","nameLocations":["591:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"591:12:1"},"referencedDeclaration":238,"src":"591:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"src":"590:20:1"},"returnParameters":{"id":243,"nodeType":"ParameterList","parameters":[],"src":"624:0:1"},"scope":594,"src":"570:511:1","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":327,"nodeType":"Block","src":"2249:626:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":295,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":287,"src":"2263:9:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2273:6:1","memberName":"length","nodeType":"MemberAccess","src":"2263:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2283:2:1","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2263:22:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":325,"nodeType":"Block","src":"2788:81:1","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2818:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2810:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":317,"name":"address","nodeType":"ElementaryTypeName","src":"2810:7:1","typeDescriptions":{}}},"id":320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2810:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":321,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"2822:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:22:1","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":235,"src":"2822:35:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"id":323,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2809:49:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"functionReturnParameters":294,"id":324,"nodeType":"Return","src":"2802:56:1"}]},"id":326,"nodeType":"IfStatement","src":"2259:610:1","trueBody":{"id":316,"nodeType":"Block","src":"2287:495:1","statements":[{"assignments":[300],"declarations":[{"constant":false,"id":300,"mutability":"mutable","name":"r","nameLocation":"2309:1:1","nodeType":"VariableDeclaration","scope":316,"src":"2301:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":299,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2301:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":301,"nodeType":"VariableDeclarationStatement","src":"2301:9:1"},{"assignments":[303],"declarations":[{"constant":false,"id":303,"mutability":"mutable","name":"s","nameLocation":"2332:1:1","nodeType":"VariableDeclaration","scope":316,"src":"2324:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2324:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":304,"nodeType":"VariableDeclarationStatement","src":"2324:9:1"},{"assignments":[306],"declarations":[{"constant":false,"id":306,"mutability":"mutable","name":"v","nameLocation":"2353:1:1","nodeType":"VariableDeclaration","scope":316,"src":"2347:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":305,"name":"uint8","nodeType":"ElementaryTypeName","src":"2347:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":307,"nodeType":"VariableDeclarationStatement","src":"2347:7:1"},{"AST":{"nodeType":"YulBlock","src":"2555:171:1","statements":[{"nodeType":"YulAssignment","src":"2573:32:1","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2588:9:1"},{"kind":"number","nodeType":"YulLiteral","src":"2599:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2584:3:1"},"nodeType":"YulFunctionCall","src":"2584:20:1"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2578:5:1"},"nodeType":"YulFunctionCall","src":"2578:27:1"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"2573:1:1"}]},{"nodeType":"YulAssignment","src":"2622:32:1","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2637:9:1"},{"kind":"number","nodeType":"YulLiteral","src":"2648:4:1","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2633:3:1"},"nodeType":"YulFunctionCall","src":"2633:20:1"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2627:5:1"},"nodeType":"YulFunctionCall","src":"2627:27:1"},"variableNames":[{"name":"s","nodeType":"YulIdentifier","src":"2622:1:1"}]},{"nodeType":"YulAssignment","src":"2671:41:1","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2681:1:1","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2694:9:1"},{"kind":"number","nodeType":"YulLiteral","src":"2705:4:1","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2690:3:1"},"nodeType":"YulFunctionCall","src":"2690:20:1"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2684:5:1"},"nodeType":"YulFunctionCall","src":"2684:27:1"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"2676:4:1"},"nodeType":"YulFunctionCall","src":"2676:36:1"},"variableNames":[{"name":"v","nodeType":"YulIdentifier","src":"2671:1:1"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":300,"isOffset":false,"isSlot":false,"src":"2573:1:1","valueSize":1},{"declaration":303,"isOffset":false,"isSlot":false,"src":"2622:1:1","valueSize":1},{"declaration":287,"isOffset":false,"isSlot":false,"src":"2588:9:1","valueSize":1},{"declaration":287,"isOffset":false,"isSlot":false,"src":"2637:9:1","valueSize":1},{"declaration":287,"isOffset":false,"isSlot":false,"src":"2694:9:1","valueSize":1},{"declaration":306,"isOffset":false,"isSlot":false,"src":"2671:1:1","valueSize":1}],"id":308,"nodeType":"InlineAssembly","src":"2546:180:1"},{"expression":{"arguments":[{"id":310,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":285,"src":"2757:4:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":311,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":306,"src":"2763:1:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":312,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":300,"src":"2766:1:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":313,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":303,"src":"2769:1:1","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":309,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[328,402,496],"referencedDeclaration":496,"src":"2746:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"}},"id":314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2746:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"functionReturnParameters":294,"id":315,"nodeType":"Return","src":"2739:32:1"}]}}]},"documentation":{"id":283,"nodeType":"StructuredDocumentation","src":"1087:1053:1","text":" @dev Returns the address that signed a hashed message (`hash`) with\n `signature` or error string. This address can then be used for verification purposes.\n The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {toEthSignedMessageHash} on it.\n Documentation for signature generation:\n - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n _Available since v4.3._"},"id":328,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2154:10:1","nodeType":"FunctionDefinition","parameters":{"id":288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":285,"mutability":"mutable","name":"hash","nameLocation":"2173:4:1","nodeType":"VariableDeclaration","scope":328,"src":"2165:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":284,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2165:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":287,"mutability":"mutable","name":"signature","nameLocation":"2192:9:1","nodeType":"VariableDeclaration","scope":328,"src":"2179:22:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":286,"name":"bytes","nodeType":"ElementaryTypeName","src":"2179:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2164:38:1"},"returnParameters":{"id":294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":290,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":328,"src":"2226:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":289,"name":"address","nodeType":"ElementaryTypeName","src":"2226:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":293,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":328,"src":"2235:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":292,"nodeType":"UserDefinedTypeName","pathNode":{"id":291,"name":"RecoverError","nameLocations":["2235:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"2235:12:1"},"referencedDeclaration":238,"src":"2235:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"src":"2225:23:1"},"scope":594,"src":"2145:730:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":354,"nodeType":"Block","src":"3748:140:1","statements":[{"assignments":[339,342],"declarations":[{"constant":false,"id":339,"mutability":"mutable","name":"recovered","nameLocation":"3767:9:1","nodeType":"VariableDeclaration","scope":354,"src":"3759:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":338,"name":"address","nodeType":"ElementaryTypeName","src":"3759:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":342,"mutability":"mutable","name":"error","nameLocation":"3791:5:1","nodeType":"VariableDeclaration","scope":354,"src":"3778:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":341,"nodeType":"UserDefinedTypeName","pathNode":{"id":340,"name":"RecoverError","nameLocations":["3778:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"3778:12:1"},"referencedDeclaration":238,"src":"3778:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"id":347,"initialValue":{"arguments":[{"id":344,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":331,"src":"3811:4:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":345,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":333,"src":"3817:9:1","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":343,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[328,402,496],"referencedDeclaration":328,"src":"3800:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError)"}},"id":346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3800:27:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"nodeType":"VariableDeclarationStatement","src":"3758:69:1"},{"expression":{"arguments":[{"id":349,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":342,"src":"3849:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}],"id":348,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":282,"src":"3837:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$238_$returns$__$","typeString":"function (enum ECDSA.RecoverError) pure"}},"id":350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3837:18:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":351,"nodeType":"ExpressionStatement","src":"3837:18:1"},{"expression":{"id":352,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":339,"src":"3872:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":337,"id":353,"nodeType":"Return","src":"3865:16:1"}]},"documentation":{"id":329,"nodeType":"StructuredDocumentation","src":"2881:775:1","text":" @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {toEthSignedMessageHash} on it."},"id":355,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3670:7:1","nodeType":"FunctionDefinition","parameters":{"id":334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":331,"mutability":"mutable","name":"hash","nameLocation":"3686:4:1","nodeType":"VariableDeclaration","scope":355,"src":"3678:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":330,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3678:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":333,"mutability":"mutable","name":"signature","nameLocation":"3705:9:1","nodeType":"VariableDeclaration","scope":355,"src":"3692:22:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":332,"name":"bytes","nodeType":"ElementaryTypeName","src":"3692:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3677:38:1"},"returnParameters":{"id":337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":336,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":355,"src":"3739:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":335,"name":"address","nodeType":"ElementaryTypeName","src":"3739:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3738:9:1"},"scope":594,"src":"3661:227:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":401,"nodeType":"Block","src":"4245:203:1","statements":[{"assignments":[371],"declarations":[{"constant":false,"id":371,"mutability":"mutable","name":"s","nameLocation":"4263:1:1","nodeType":"VariableDeclaration","scope":401,"src":"4255:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":370,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":378,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":372,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":362,"src":"4267:2:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4280:66:1","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":374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4272:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":373,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4272:7:1","typeDescriptions":{}}},"id":376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4272:75:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4267:80:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4255:92:1"},{"assignments":[380],"declarations":[{"constant":false,"id":380,"mutability":"mutable","name":"v","nameLocation":"4363:1:1","nodeType":"VariableDeclaration","scope":401,"src":"4357:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":379,"name":"uint8","nodeType":"ElementaryTypeName","src":"4357:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":393,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":385,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":362,"src":"4382:2:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4374:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":383,"name":"uint256","nodeType":"ElementaryTypeName","src":"4374:7:1","typeDescriptions":{}}},"id":386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4374:11:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4389:3:1","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4374:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":389,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4373:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4396:2:1","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4373:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4367:5:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":381,"name":"uint8","nodeType":"ElementaryTypeName","src":"4367:5:1","typeDescriptions":{}}},"id":392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4367:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4357:42:1"},{"expression":{"arguments":[{"id":395,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":358,"src":"4427:4:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":396,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":380,"src":"4433:1:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":397,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":360,"src":"4436:1:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":398,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":371,"src":"4439:1:1","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":394,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[328,402,496],"referencedDeclaration":496,"src":"4416:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"}},"id":399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4416:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"functionReturnParameters":369,"id":400,"nodeType":"Return","src":"4409:32:1"}]},"documentation":{"id":356,"nodeType":"StructuredDocumentation","src":"3894:243:1","text":" @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n _Available since v4.3._"},"id":402,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4151:10:1","nodeType":"FunctionDefinition","parameters":{"id":363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":358,"mutability":"mutable","name":"hash","nameLocation":"4170:4:1","nodeType":"VariableDeclaration","scope":402,"src":"4162:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":357,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4162:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":360,"mutability":"mutable","name":"r","nameLocation":"4184:1:1","nodeType":"VariableDeclaration","scope":402,"src":"4176:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":359,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4176:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":362,"mutability":"mutable","name":"vs","nameLocation":"4195:2:1","nodeType":"VariableDeclaration","scope":402,"src":"4187:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":361,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4187:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4161:37:1"},"returnParameters":{"id":369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":402,"src":"4222:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":364,"name":"address","nodeType":"ElementaryTypeName","src":"4222:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":402,"src":"4231:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":367,"nodeType":"UserDefinedTypeName","pathNode":{"id":366,"name":"RecoverError","nameLocations":["4231:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"4231:12:1"},"referencedDeclaration":238,"src":"4231:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"src":"4221:23:1"},"scope":594,"src":"4142:306:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":431,"nodeType":"Block","src":"4699:136:1","statements":[{"assignments":[415,418],"declarations":[{"constant":false,"id":415,"mutability":"mutable","name":"recovered","nameLocation":"4718:9:1","nodeType":"VariableDeclaration","scope":431,"src":"4710:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":414,"name":"address","nodeType":"ElementaryTypeName","src":"4710:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":418,"mutability":"mutable","name":"error","nameLocation":"4742:5:1","nodeType":"VariableDeclaration","scope":431,"src":"4729:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":417,"nodeType":"UserDefinedTypeName","pathNode":{"id":416,"name":"RecoverError","nameLocations":["4729:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"4729:12:1"},"referencedDeclaration":238,"src":"4729:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"id":424,"initialValue":{"arguments":[{"id":420,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"4762:4:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":421,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":407,"src":"4768:1:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":422,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":409,"src":"4771:2:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":419,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[328,402,496],"referencedDeclaration":402,"src":"4751:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"}},"id":423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4751:23:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"nodeType":"VariableDeclarationStatement","src":"4709:65:1"},{"expression":{"arguments":[{"id":426,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":418,"src":"4796:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}],"id":425,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":282,"src":"4784:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$238_$returns$__$","typeString":"function (enum ECDSA.RecoverError) pure"}},"id":427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4784:18:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":428,"nodeType":"ExpressionStatement","src":"4784:18:1"},{"expression":{"id":429,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":415,"src":"4819:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":413,"id":430,"nodeType":"Return","src":"4812:16:1"}]},"documentation":{"id":403,"nodeType":"StructuredDocumentation","src":"4454:154:1","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n _Available since v4.2._"},"id":432,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4622:7:1","nodeType":"FunctionDefinition","parameters":{"id":410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":405,"mutability":"mutable","name":"hash","nameLocation":"4638:4:1","nodeType":"VariableDeclaration","scope":432,"src":"4630:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":404,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4630:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":407,"mutability":"mutable","name":"r","nameLocation":"4652:1:1","nodeType":"VariableDeclaration","scope":432,"src":"4644:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":406,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4644:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":409,"mutability":"mutable","name":"vs","nameLocation":"4663:2:1","nodeType":"VariableDeclaration","scope":432,"src":"4655:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":408,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4655:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4629:37:1"},"returnParameters":{"id":413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":412,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":432,"src":"4690:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":411,"name":"address","nodeType":"ElementaryTypeName","src":"4690:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4689:9:1"},"scope":594,"src":"4613:222:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":495,"nodeType":"Block","src":"5120:1345:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":451,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":441,"src":"6016:1:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":450,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6008:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":449,"name":"uint256","nodeType":"ElementaryTypeName","src":"6008:7:1","typeDescriptions":{}}},"id":452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6008:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6021:66:1","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6008:79:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":464,"nodeType":"IfStatement","src":"6004:161:1","trueBody":{"id":463,"nodeType":"Block","src":"6089:76:1","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6119:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6111:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":455,"name":"address","nodeType":"ElementaryTypeName","src":"6111:7:1","typeDescriptions":{}}},"id":458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6111:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":459,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"6123:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6136:17:1","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":236,"src":"6123:30:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"id":461,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6110:44:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"functionReturnParameters":448,"id":462,"nodeType":"Return","src":"6103:51:1"}]}},{"assignments":[466],"declarations":[{"constant":false,"id":466,"mutability":"mutable","name":"signer","nameLocation":"6267:6:1","nodeType":"VariableDeclaration","scope":495,"src":"6259:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":465,"name":"address","nodeType":"ElementaryTypeName","src":"6259:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":473,"initialValue":{"arguments":[{"id":468,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":435,"src":"6286:4:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":469,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":437,"src":"6292:1:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":470,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":439,"src":"6295:1:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":471,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":441,"src":"6298:1:1","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":467,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"6276:9:1","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":472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6276:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6259:41:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":474,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":466,"src":"6314:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6332:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":476,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6324:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":475,"name":"address","nodeType":"ElementaryTypeName","src":"6324:7:1","typeDescriptions":{}}},"id":478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6324:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6314:20:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":489,"nodeType":"IfStatement","src":"6310:101:1","trueBody":{"id":488,"nodeType":"Block","src":"6336:75:1","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6366:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6358:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":480,"name":"address","nodeType":"ElementaryTypeName","src":"6358:7:1","typeDescriptions":{}}},"id":483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6358:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":484,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"6370:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":485,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6383:16:1","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":234,"src":"6370:29:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"id":486,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6357:43:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"functionReturnParameters":448,"id":487,"nodeType":"Return","src":"6350:50:1"}]}},{"expression":{"components":[{"id":490,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":466,"src":"6429:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":491,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":238,"src":"6437:12:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$238_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":492,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6450:7:1","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":233,"src":"6437:20:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"id":493,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6428:30:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"functionReturnParameters":448,"id":494,"nodeType":"Return","src":"6421:37:1"}]},"documentation":{"id":433,"nodeType":"StructuredDocumentation","src":"4841:163:1","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately.\n _Available since v4.3._"},"id":496,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5018:10:1","nodeType":"FunctionDefinition","parameters":{"id":442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":435,"mutability":"mutable","name":"hash","nameLocation":"5037:4:1","nodeType":"VariableDeclaration","scope":496,"src":"5029:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":434,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5029:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":437,"mutability":"mutable","name":"v","nameLocation":"5049:1:1","nodeType":"VariableDeclaration","scope":496,"src":"5043:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":436,"name":"uint8","nodeType":"ElementaryTypeName","src":"5043:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":439,"mutability":"mutable","name":"r","nameLocation":"5060:1:1","nodeType":"VariableDeclaration","scope":496,"src":"5052:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":438,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5052:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":441,"mutability":"mutable","name":"s","nameLocation":"5071:1:1","nodeType":"VariableDeclaration","scope":496,"src":"5063:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":440,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5063:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5028:45:1"},"returnParameters":{"id":448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":444,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":496,"src":"5097:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":443,"name":"address","nodeType":"ElementaryTypeName","src":"5097:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":447,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":496,"src":"5106:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":446,"nodeType":"UserDefinedTypeName","pathNode":{"id":445,"name":"RecoverError","nameLocations":["5106:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"5106:12:1"},"referencedDeclaration":238,"src":"5106:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"src":"5096:23:1"},"scope":594,"src":"5009:1456:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":528,"nodeType":"Block","src":"6692:138:1","statements":[{"assignments":[511,514],"declarations":[{"constant":false,"id":511,"mutability":"mutable","name":"recovered","nameLocation":"6711:9:1","nodeType":"VariableDeclaration","scope":528,"src":"6703:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":510,"name":"address","nodeType":"ElementaryTypeName","src":"6703:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":514,"mutability":"mutable","name":"error","nameLocation":"6735:5:1","nodeType":"VariableDeclaration","scope":528,"src":"6722:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":513,"nodeType":"UserDefinedTypeName","pathNode":{"id":512,"name":"RecoverError","nameLocations":["6722:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":238,"src":"6722:12:1"},"referencedDeclaration":238,"src":"6722:12:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"}],"id":521,"initialValue":{"arguments":[{"id":516,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":499,"src":"6755:4:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":517,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"6761:1:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":518,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"6764:1:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":519,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":505,"src":"6767:1:1","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":515,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[328,402,496],"referencedDeclaration":496,"src":"6744:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"}},"id":520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6744:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$238_$","typeString":"tuple(address,enum ECDSA.RecoverError)"}},"nodeType":"VariableDeclarationStatement","src":"6702:67:1"},{"expression":{"arguments":[{"id":523,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"6791:5:1","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$238","typeString":"enum ECDSA.RecoverError"}],"id":522,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":282,"src":"6779:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$238_$returns$__$","typeString":"function (enum ECDSA.RecoverError) pure"}},"id":524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6779:18:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":525,"nodeType":"ExpressionStatement","src":"6779:18:1"},{"expression":{"id":526,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":511,"src":"6814:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":509,"id":527,"nodeType":"Return","src":"6807:16:1"}]},"documentation":{"id":497,"nodeType":"StructuredDocumentation","src":"6471:122:1","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":529,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6607:7:1","nodeType":"FunctionDefinition","parameters":{"id":506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":499,"mutability":"mutable","name":"hash","nameLocation":"6623:4:1","nodeType":"VariableDeclaration","scope":529,"src":"6615:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":498,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6615:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":501,"mutability":"mutable","name":"v","nameLocation":"6635:1:1","nodeType":"VariableDeclaration","scope":529,"src":"6629:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":500,"name":"uint8","nodeType":"ElementaryTypeName","src":"6629:5:1","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":503,"mutability":"mutable","name":"r","nameLocation":"6646:1:1","nodeType":"VariableDeclaration","scope":529,"src":"6638:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":502,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6638:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":505,"mutability":"mutable","name":"s","nameLocation":"6657:1:1","nodeType":"VariableDeclaration","scope":529,"src":"6649:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":504,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6649:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6614:45:1"},"returnParameters":{"id":509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":529,"src":"6683:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":507,"name":"address","nodeType":"ElementaryTypeName","src":"6683:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6682:9:1"},"scope":594,"src":"6598:232:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":538,"nodeType":"Block","src":"7206:310:1","statements":[{"AST":{"nodeType":"YulBlock","src":"7362:148:1","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7383:4:1","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nodeType":"YulLiteral","src":"7389:34:1","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7376:6:1"},"nodeType":"YulFunctionCall","src":"7376:48:1"},"nodeType":"YulExpressionStatement","src":"7376:48:1"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7444:4:1","type":"","value":"0x1c"},{"name":"hash","nodeType":"YulIdentifier","src":"7450:4:1"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7437:6:1"},"nodeType":"YulFunctionCall","src":"7437:18:1"},"nodeType":"YulExpressionStatement","src":"7437:18:1"},{"nodeType":"YulAssignment","src":"7468:32:1","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7489:4:1","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"7495:4:1","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"7479:9:1"},"nodeType":"YulFunctionCall","src":"7479:21:1"},"variableNames":[{"name":"message","nodeType":"YulIdentifier","src":"7468:7:1"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":532,"isOffset":false,"isSlot":false,"src":"7450:4:1","valueSize":1},{"declaration":535,"isOffset":false,"isSlot":false,"src":"7468:7:1","valueSize":1}],"id":537,"nodeType":"InlineAssembly","src":"7353:157:1"}]},"documentation":{"id":530,"nodeType":"StructuredDocumentation","src":"6836:279:1","text":" @dev Returns an Ethereum Signed Message, created from a `hash`. This\n produces hash corresponding to the one signed with the\n https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n JSON-RPC method as part of EIP-191.\n See {recover}."},"id":539,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"7129:22:1","nodeType":"FunctionDefinition","parameters":{"id":533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":532,"mutability":"mutable","name":"hash","nameLocation":"7160:4:1","nodeType":"VariableDeclaration","scope":539,"src":"7152:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":531,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7152:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7151:14:1"},"returnParameters":{"id":536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":535,"mutability":"mutable","name":"message","nameLocation":"7197:7:1","nodeType":"VariableDeclaration","scope":539,"src":"7189:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":534,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7189:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7188:17:1"},"scope":594,"src":"7120:396:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":560,"nodeType":"Block","src":"7881:116:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7925:32:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"expression":{"id":553,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":542,"src":"7976:1:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7978:6:1","memberName":"length","nodeType":"MemberAccess","src":"7976:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":551,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":228,"src":"7959:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$228_$","typeString":"type(library Strings)"}},"id":552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7967:8:1","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":58,"src":"7959:16:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7959:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":556,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":542,"src":"7987:1:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":548,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7908:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7912:12:1","memberName":"encodePacked","nodeType":"MemberAccess","src":"7908:16:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7908:81:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":547,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7898:9:1","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7898:92:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":546,"id":559,"nodeType":"Return","src":"7891:99:1"}]},"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"7522:274:1","text":" @dev Returns an Ethereum Signed Message, created from `s`. This\n produces hash corresponding to the one signed with the\n https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n JSON-RPC method as part of EIP-191.\n See {recover}."},"id":561,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"7810:22:1","nodeType":"FunctionDefinition","parameters":{"id":543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":542,"mutability":"mutable","name":"s","nameLocation":"7846:1:1","nodeType":"VariableDeclaration","scope":561,"src":"7833:14:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":541,"name":"bytes","nodeType":"ElementaryTypeName","src":"7833:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7832:16:1"},"returnParameters":{"id":546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":561,"src":"7872:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":544,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7872:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7871:9:1"},"scope":594,"src":"7801:196:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":572,"nodeType":"Block","src":"8443:290:1","statements":[{"AST":{"nodeType":"YulBlock","src":"8505:222:1","statements":[{"nodeType":"YulVariableDeclaration","src":"8519:22:1","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8536:4:1","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8530:5:1"},"nodeType":"YulFunctionCall","src":"8530:11:1"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"8523:3:1","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8561:3:1"},{"hexValue":"1901","kind":"string","nodeType":"YulLiteral","src":"8566:10:1","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8554:6:1"},"nodeType":"YulFunctionCall","src":"8554:23:1"},"nodeType":"YulExpressionStatement","src":"8554:23:1"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8601:3:1"},{"kind":"number","nodeType":"YulLiteral","src":"8606:4:1","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8597:3:1"},"nodeType":"YulFunctionCall","src":"8597:14:1"},{"name":"domainSeparator","nodeType":"YulIdentifier","src":"8613:15:1"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8590:6:1"},"nodeType":"YulFunctionCall","src":"8590:39:1"},"nodeType":"YulExpressionStatement","src":"8590:39:1"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8653:3:1"},{"kind":"number","nodeType":"YulLiteral","src":"8658:4:1","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8649:3:1"},"nodeType":"YulFunctionCall","src":"8649:14:1"},{"name":"structHash","nodeType":"YulIdentifier","src":"8665:10:1"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8642:6:1"},"nodeType":"YulFunctionCall","src":"8642:34:1"},"nodeType":"YulExpressionStatement","src":"8642:34:1"},{"nodeType":"YulAssignment","src":"8689:28:1","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8707:3:1"},{"kind":"number","nodeType":"YulLiteral","src":"8712:4:1","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"8697:9:1"},"nodeType":"YulFunctionCall","src":"8697:20:1"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"8689:4:1"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":569,"isOffset":false,"isSlot":false,"src":"8689:4:1","valueSize":1},{"declaration":564,"isOffset":false,"isSlot":false,"src":"8613:15:1","valueSize":1},{"declaration":566,"isOffset":false,"isSlot":false,"src":"8665:10:1","valueSize":1}],"id":571,"nodeType":"InlineAssembly","src":"8496:231:1"}]},"documentation":{"id":562,"nodeType":"StructuredDocumentation","src":"8003:328:1","text":" @dev Returns an Ethereum Signed Typed Data, created from a\n `domainSeparator` and a `structHash`. This produces hash corresponding\n to the one signed with the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n JSON-RPC method as part of EIP-712.\n See {recover}."},"id":573,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"8345:15:1","nodeType":"FunctionDefinition","parameters":{"id":567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":564,"mutability":"mutable","name":"domainSeparator","nameLocation":"8369:15:1","nodeType":"VariableDeclaration","scope":573,"src":"8361:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":563,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8361:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":566,"mutability":"mutable","name":"structHash","nameLocation":"8394:10:1","nodeType":"VariableDeclaration","scope":573,"src":"8386:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":565,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8386:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8360:45:1"},"returnParameters":{"id":570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":569,"mutability":"mutable","name":"data","nameLocation":"8437:4:1","nodeType":"VariableDeclaration","scope":573,"src":"8429:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":568,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8429:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8428:14:1"},"scope":594,"src":"8336:397:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":592,"nodeType":"Block","src":"9048:80:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9092:10:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":587,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":576,"src":"9104:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":588,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":578,"src":"9115:4:1","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":584,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"9075:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":585,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9079:12:1","memberName":"encodePacked","nodeType":"MemberAccess","src":"9075:16:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9075:45:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":583,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"9065:9:1","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9065:56:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":582,"id":591,"nodeType":"Return","src":"9058:63:1"}]},"documentation":{"id":574,"nodeType":"StructuredDocumentation","src":"8739:193:1","text":" @dev Returns an Ethereum Signed Data with intended validator, created from a\n `validator` and `data` according to the version 0 of EIP-191.\n See {recover}."},"id":593,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"8946:31:1","nodeType":"FunctionDefinition","parameters":{"id":579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":576,"mutability":"mutable","name":"validator","nameLocation":"8986:9:1","nodeType":"VariableDeclaration","scope":593,"src":"8978:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":575,"name":"address","nodeType":"ElementaryTypeName","src":"8978:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":578,"mutability":"mutable","name":"data","nameLocation":"9010:4:1","nodeType":"VariableDeclaration","scope":593,"src":"8997:17:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":577,"name":"bytes","nodeType":"ElementaryTypeName","src":"8997:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8977:38:1"},"returnParameters":{"id":582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":581,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":593,"src":"9039:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":580,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9039:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9038:9:1"},"scope":594,"src":"8937:191:1","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":595,"src":"369:8761:1","usedErrors":[],"usedEvents":[]}],"src":"112:9019:1"},"id":1},"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol","exportedSymbols":{"Math":[1460]},"id":1461,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":596,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"103:23:2"},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":597,"nodeType":"StructuredDocumentation","src":"128:73:2","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":1460,"linearizedBaseContracts":[1460],"name":"Math","nameLocation":"210:4:2","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":601,"members":[{"id":598,"name":"Down","nameLocation":"245:4:2","nodeType":"EnumValue","src":"245:4:2"},{"id":599,"name":"Up","nameLocation":"287:2:2","nodeType":"EnumValue","src":"287:2:2"},{"id":600,"name":"Zero","nameLocation":"318:4:2","nodeType":"EnumValue","src":"318:4:2"}],"name":"Rounding","nameLocation":"226:8:2","nodeType":"EnumDefinition","src":"221:122:2"},{"body":{"id":618,"nodeType":"Block","src":"480:37:2","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":611,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":604,"src":"497:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":612,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":606,"src":"501:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"497:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":615,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":606,"src":"509:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"497:13:2","trueExpression":{"id":614,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":604,"src":"505:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":610,"id":617,"nodeType":"Return","src":"490:20:2"}]},"documentation":{"id":602,"nodeType":"StructuredDocumentation","src":"349:59:2","text":" @dev Returns the largest of two numbers."},"id":619,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"422:3:2","nodeType":"FunctionDefinition","parameters":{"id":607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":604,"mutability":"mutable","name":"a","nameLocation":"434:1:2","nodeType":"VariableDeclaration","scope":619,"src":"426:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":603,"name":"uint256","nodeType":"ElementaryTypeName","src":"426:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":606,"mutability":"mutable","name":"b","nameLocation":"445:1:2","nodeType":"VariableDeclaration","scope":619,"src":"437:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":605,"name":"uint256","nodeType":"ElementaryTypeName","src":"437:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"425:22:2"},"returnParameters":{"id":610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":609,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":619,"src":"471:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":608,"name":"uint256","nodeType":"ElementaryTypeName","src":"471:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"470:9:2"},"scope":1460,"src":"413:104:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":636,"nodeType":"Block","src":"655:37:2","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":629,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":622,"src":"672:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":630,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":624,"src":"676:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"672:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":633,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":624,"src":"684:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"672:13:2","trueExpression":{"id":632,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":622,"src":"680:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":628,"id":635,"nodeType":"Return","src":"665:20:2"}]},"documentation":{"id":620,"nodeType":"StructuredDocumentation","src":"523:60:2","text":" @dev Returns the smallest of two numbers."},"id":637,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"597:3:2","nodeType":"FunctionDefinition","parameters":{"id":625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":622,"mutability":"mutable","name":"a","nameLocation":"609:1:2","nodeType":"VariableDeclaration","scope":637,"src":"601:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":621,"name":"uint256","nodeType":"ElementaryTypeName","src":"601:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":624,"mutability":"mutable","name":"b","nameLocation":"620:1:2","nodeType":"VariableDeclaration","scope":637,"src":"612:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":623,"name":"uint256","nodeType":"ElementaryTypeName","src":"612:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"600:22:2"},"returnParameters":{"id":628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":627,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":637,"src":"646:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":626,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"645:9:2"},"scope":1460,"src":"588:104:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":659,"nodeType":"Block","src":"876:82:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":647,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":640,"src":"931:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":648,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":642,"src":"935:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"931:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":650,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"930:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":651,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":640,"src":"941:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":652,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":642,"src":"945:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"941:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":654,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"940:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"950:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"940:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"930:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":646,"id":658,"nodeType":"Return","src":"923:28:2"}]},"documentation":{"id":638,"nodeType":"StructuredDocumentation","src":"698:102:2","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":660,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"814:7:2","nodeType":"FunctionDefinition","parameters":{"id":643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":640,"mutability":"mutable","name":"a","nameLocation":"830:1:2","nodeType":"VariableDeclaration","scope":660,"src":"822:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":639,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":642,"mutability":"mutable","name":"b","nameLocation":"841:1:2","nodeType":"VariableDeclaration","scope":660,"src":"833:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":641,"name":"uint256","nodeType":"ElementaryTypeName","src":"833:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:22:2"},"returnParameters":{"id":646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":660,"src":"867:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":644,"name":"uint256","nodeType":"ElementaryTypeName","src":"867:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"866:9:2"},"scope":1460,"src":"805:153:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":684,"nodeType":"Block","src":"1228:123:2","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":670,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"1316:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1321:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1316:6:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":674,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"1330:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1334:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1330:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":677,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1329:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":678,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"1339:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1329:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1343:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1329:15:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1316:28:2","trueExpression":{"hexValue":"30","id":673,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1325:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":669,"id":683,"nodeType":"Return","src":"1309:35:2"}]},"documentation":{"id":661,"nodeType":"StructuredDocumentation","src":"964:188:2","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds up instead\n of rounding down."},"id":685,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"1166:7:2","nodeType":"FunctionDefinition","parameters":{"id":666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":663,"mutability":"mutable","name":"a","nameLocation":"1182:1:2","nodeType":"VariableDeclaration","scope":685,"src":"1174:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":662,"name":"uint256","nodeType":"ElementaryTypeName","src":"1174:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":665,"mutability":"mutable","name":"b","nameLocation":"1193:1:2","nodeType":"VariableDeclaration","scope":685,"src":"1185:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":664,"name":"uint256","nodeType":"ElementaryTypeName","src":"1185:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1173:22:2"},"returnParameters":{"id":669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":685,"src":"1219:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":667,"name":"uint256","nodeType":"ElementaryTypeName","src":"1219:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1218:9:2"},"scope":1460,"src":"1157:194:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":807,"nodeType":"Block","src":"1765:4115:2","statements":[{"id":806,"nodeType":"UncheckedBlock","src":"1775:4099:2","statements":[{"assignments":[698],"declarations":[{"constant":false,"id":698,"mutability":"mutable","name":"prod0","nameLocation":"2104:5:2","nodeType":"VariableDeclaration","scope":806,"src":"2096:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":697,"name":"uint256","nodeType":"ElementaryTypeName","src":"2096:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":699,"nodeType":"VariableDeclarationStatement","src":"2096:13:2"},{"assignments":[701],"declarations":[{"constant":false,"id":701,"mutability":"mutable","name":"prod1","nameLocation":"2176:5:2","nodeType":"VariableDeclaration","scope":806,"src":"2168:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":700,"name":"uint256","nodeType":"ElementaryTypeName","src":"2168:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":702,"nodeType":"VariableDeclarationStatement","src":"2168:13:2"},{"AST":{"nodeType":"YulBlock","src":"2248:157:2","statements":[{"nodeType":"YulVariableDeclaration","src":"2266:30:2","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2283:1:2"},{"name":"y","nodeType":"YulIdentifier","src":"2286:1:2"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2293:1:2","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2289:3:2"},"nodeType":"YulFunctionCall","src":"2289:6:2"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"2276:6:2"},"nodeType":"YulFunctionCall","src":"2276:20:2"},"variables":[{"name":"mm","nodeType":"YulTypedName","src":"2270:2:2","type":""}]},{"nodeType":"YulAssignment","src":"2313:18:2","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"2326:1:2"},{"name":"y","nodeType":"YulIdentifier","src":"2329:1:2"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"2322:3:2"},"nodeType":"YulFunctionCall","src":"2322:9:2"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"2313:5:2"}]},{"nodeType":"YulAssignment","src":"2348:43:2","value":{"arguments":[{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"2365:2:2"},{"name":"prod0","nodeType":"YulIdentifier","src":"2369:5:2"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2361:3:2"},"nodeType":"YulFunctionCall","src":"2361:14:2"},{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"2380:2:2"},{"name":"prod0","nodeType":"YulIdentifier","src":"2384:5:2"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2377:2:2"},"nodeType":"YulFunctionCall","src":"2377:13:2"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2357:3:2"},"nodeType":"YulFunctionCall","src":"2357:34:2"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"2348:5:2"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":698,"isOffset":false,"isSlot":false,"src":"2313:5:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"2369:5:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"2384:5:2","valueSize":1},{"declaration":701,"isOffset":false,"isSlot":false,"src":"2348:5:2","valueSize":1},{"declaration":688,"isOffset":false,"isSlot":false,"src":"2283:1:2","valueSize":1},{"declaration":688,"isOffset":false,"isSlot":false,"src":"2326:1:2","valueSize":1},{"declaration":690,"isOffset":false,"isSlot":false,"src":"2286:1:2","valueSize":1},{"declaration":690,"isOffset":false,"isSlot":false,"src":"2329:1:2","valueSize":1}],"id":703,"nodeType":"InlineAssembly","src":"2239:166:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":704,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"2486:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2495:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2486:10:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":712,"nodeType":"IfStatement","src":"2482:368:2","trueBody":{"id":711,"nodeType":"Block","src":"2498:352:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":707,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":698,"src":"2816:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":708,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"2824:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2816:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":696,"id":710,"nodeType":"Return","src":"2809:26:2"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":714,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"2960:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":715,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"2974:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2960:19:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6174683a206d756c446976206f766572666c6f77","id":717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2981:23:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d87093691d63b122ac2c14d1b11554b287e2431cf2b03550b3be7cffb0f86851","typeString":"literal_string \"Math: mulDiv overflow\""},"value":"Math: mulDiv overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d87093691d63b122ac2c14d1b11554b287e2431cf2b03550b3be7cffb0f86851","typeString":"literal_string \"Math: mulDiv overflow\""}],"id":713,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2952:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2952:53:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":719,"nodeType":"ExpressionStatement","src":"2952:53:2"},{"assignments":[721],"declarations":[{"constant":false,"id":721,"mutability":"mutable","name":"remainder","nameLocation":"3269:9:2","nodeType":"VariableDeclaration","scope":806,"src":"3261:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":720,"name":"uint256","nodeType":"ElementaryTypeName","src":"3261:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":722,"nodeType":"VariableDeclarationStatement","src":"3261:17:2"},{"AST":{"nodeType":"YulBlock","src":"3301:291:2","statements":[{"nodeType":"YulAssignment","src":"3370:38:2","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3390:1:2"},{"name":"y","nodeType":"YulIdentifier","src":"3393:1:2"},{"name":"denominator","nodeType":"YulIdentifier","src":"3396:11:2"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"3383:6:2"},"nodeType":"YulFunctionCall","src":"3383:25:2"},"variableNames":[{"name":"remainder","nodeType":"YulIdentifier","src":"3370:9:2"}]},{"nodeType":"YulAssignment","src":"3490:41:2","value":{"arguments":[{"name":"prod1","nodeType":"YulIdentifier","src":"3503:5:2"},{"arguments":[{"name":"remainder","nodeType":"YulIdentifier","src":"3513:9:2"},{"name":"prod0","nodeType":"YulIdentifier","src":"3524:5:2"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3510:2:2"},"nodeType":"YulFunctionCall","src":"3510:20:2"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3499:3:2"},"nodeType":"YulFunctionCall","src":"3499:32:2"},"variableNames":[{"name":"prod1","nodeType":"YulIdentifier","src":"3490:5:2"}]},{"nodeType":"YulAssignment","src":"3548:30:2","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"3561:5:2"},{"name":"remainder","nodeType":"YulIdentifier","src":"3568:9:2"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3557:3:2"},"nodeType":"YulFunctionCall","src":"3557:21:2"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"3548:5:2"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":692,"isOffset":false,"isSlot":false,"src":"3396:11:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"3524:5:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"3548:5:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"3561:5:2","valueSize":1},{"declaration":701,"isOffset":false,"isSlot":false,"src":"3490:5:2","valueSize":1},{"declaration":701,"isOffset":false,"isSlot":false,"src":"3503:5:2","valueSize":1},{"declaration":721,"isOffset":false,"isSlot":false,"src":"3370:9:2","valueSize":1},{"declaration":721,"isOffset":false,"isSlot":false,"src":"3513:9:2","valueSize":1},{"declaration":721,"isOffset":false,"isSlot":false,"src":"3568:9:2","valueSize":1},{"declaration":688,"isOffset":false,"isSlot":false,"src":"3390:1:2","valueSize":1},{"declaration":690,"isOffset":false,"isSlot":false,"src":"3393:1:2","valueSize":1}],"id":723,"nodeType":"InlineAssembly","src":"3292:300:2"},{"assignments":[725],"declarations":[{"constant":false,"id":725,"mutability":"mutable","name":"twos","nameLocation":"3907:4:2","nodeType":"VariableDeclaration","scope":806,"src":"3899:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":724,"name":"uint256","nodeType":"ElementaryTypeName","src":"3899:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":733,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":726,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"3914:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"~","prefix":true,"src":"3929:12:2","subExpression":{"id":727,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"3930:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3944:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3929:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":731,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3928:18:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3914:32:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3899:47:2"},{"AST":{"nodeType":"YulBlock","src":"3969:362:2","statements":[{"nodeType":"YulAssignment","src":"4034:37:2","value":{"arguments":[{"name":"denominator","nodeType":"YulIdentifier","src":"4053:11:2"},{"name":"twos","nodeType":"YulIdentifier","src":"4066:4:2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4049:3:2"},"nodeType":"YulFunctionCall","src":"4049:22:2"},"variableNames":[{"name":"denominator","nodeType":"YulIdentifier","src":"4034:11:2"}]},{"nodeType":"YulAssignment","src":"4138:25:2","value":{"arguments":[{"name":"prod0","nodeType":"YulIdentifier","src":"4151:5:2"},{"name":"twos","nodeType":"YulIdentifier","src":"4158:4:2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4147:3:2"},"nodeType":"YulFunctionCall","src":"4147:16:2"},"variableNames":[{"name":"prod0","nodeType":"YulIdentifier","src":"4138:5:2"}]},{"nodeType":"YulAssignment","src":"4278:39:2","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4298:1:2","type":"","value":"0"},{"name":"twos","nodeType":"YulIdentifier","src":"4301:4:2"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4294:3:2"},"nodeType":"YulFunctionCall","src":"4294:12:2"},{"name":"twos","nodeType":"YulIdentifier","src":"4308:4:2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4290:3:2"},"nodeType":"YulFunctionCall","src":"4290:23:2"},{"kind":"number","nodeType":"YulLiteral","src":"4315:1:2","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4286:3:2"},"nodeType":"YulFunctionCall","src":"4286:31:2"},"variableNames":[{"name":"twos","nodeType":"YulIdentifier","src":"4278:4:2"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":692,"isOffset":false,"isSlot":false,"src":"4034:11:2","valueSize":1},{"declaration":692,"isOffset":false,"isSlot":false,"src":"4053:11:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"4138:5:2","valueSize":1},{"declaration":698,"isOffset":false,"isSlot":false,"src":"4151:5:2","valueSize":1},{"declaration":725,"isOffset":false,"isSlot":false,"src":"4066:4:2","valueSize":1},{"declaration":725,"isOffset":false,"isSlot":false,"src":"4158:4:2","valueSize":1},{"declaration":725,"isOffset":false,"isSlot":false,"src":"4278:4:2","valueSize":1},{"declaration":725,"isOffset":false,"isSlot":false,"src":"4301:4:2","valueSize":1},{"declaration":725,"isOffset":false,"isSlot":false,"src":"4308:4:2","valueSize":1}],"id":734,"nodeType":"InlineAssembly","src":"3960:371:2"},{"expression":{"id":739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":735,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":698,"src":"4397:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":736,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":701,"src":"4406:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":737,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":725,"src":"4414:4:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4406:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4397:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":740,"nodeType":"ExpressionStatement","src":"4397:21:2"},{"assignments":[742],"declarations":[{"constant":false,"id":742,"mutability":"mutable","name":"inverse","nameLocation":"4744:7:2","nodeType":"VariableDeclaration","scope":806,"src":"4736:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":741,"name":"uint256","nodeType":"ElementaryTypeName","src":"4736:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":749,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4755:1:2","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":744,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"4759:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4755:15:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":746,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4754:17:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4774:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"4754:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4736:39:2"},{"expression":{"id":756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":750,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"4992:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":751,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5003:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":752,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"5007:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":753,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5021:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5007:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5003:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4992:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":757,"nodeType":"ExpressionStatement","src":"4992:36:2"},{"expression":{"id":764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":758,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5061:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5072:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":760,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"5076:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":761,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5090:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5076:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5072:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5061:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":765,"nodeType":"ExpressionStatement","src":"5061:36:2"},{"expression":{"id":772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":766,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5131:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5142:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":768,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"5146:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":769,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5160:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5146:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5142:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5131:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":773,"nodeType":"ExpressionStatement","src":"5131:36:2"},{"expression":{"id":780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":774,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5201:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5212:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":776,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"5216:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":777,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5230:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5216:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5212:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5201:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":781,"nodeType":"ExpressionStatement","src":"5201:36:2"},{"expression":{"id":788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":782,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5271:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5282:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":784,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"5286:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":785,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5300:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5286:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5282:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5271:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":789,"nodeType":"ExpressionStatement","src":"5271:36:2"},{"expression":{"id":796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":790,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5342:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5353:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":792,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":692,"src":"5357:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":793,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5371:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5357:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5353:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5342:36:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":797,"nodeType":"ExpressionStatement","src":"5342:36:2"},{"expression":{"id":802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":798,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5812:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":799,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":698,"src":"5821:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":800,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"5829:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5821:15:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5812:24:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":803,"nodeType":"ExpressionStatement","src":"5812:24:2"},{"expression":{"id":804,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5857:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":696,"id":805,"nodeType":"Return","src":"5850:13:2"}]}]},"documentation":{"id":686,"nodeType":"StructuredDocumentation","src":"1357:305:2","text":" @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n with further edits by Uniswap Labs also under MIT license."},"id":808,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"1676:6:2","nodeType":"FunctionDefinition","parameters":{"id":693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":688,"mutability":"mutable","name":"x","nameLocation":"1691:1:2","nodeType":"VariableDeclaration","scope":808,"src":"1683:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":687,"name":"uint256","nodeType":"ElementaryTypeName","src":"1683:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":690,"mutability":"mutable","name":"y","nameLocation":"1702:1:2","nodeType":"VariableDeclaration","scope":808,"src":"1694:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":689,"name":"uint256","nodeType":"ElementaryTypeName","src":"1694:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":692,"mutability":"mutable","name":"denominator","nameLocation":"1713:11:2","nodeType":"VariableDeclaration","scope":808,"src":"1705:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":691,"name":"uint256","nodeType":"ElementaryTypeName","src":"1705:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1682:43:2"},"returnParameters":{"id":696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":695,"mutability":"mutable","name":"result","nameLocation":"1757:6:2","nodeType":"VariableDeclaration","scope":808,"src":"1749:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":694,"name":"uint256","nodeType":"ElementaryTypeName","src":"1749:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1748:16:2"},"scope":1460,"src":"1667:4213:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":851,"nodeType":"Block","src":"6122:189:2","statements":[{"assignments":[824],"declarations":[{"constant":false,"id":824,"mutability":"mutable","name":"result","nameLocation":"6140:6:2","nodeType":"VariableDeclaration","scope":851,"src":"6132:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":823,"name":"uint256","nodeType":"ElementaryTypeName","src":"6132:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":830,"initialValue":{"arguments":[{"id":826,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":811,"src":"6156:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":827,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":813,"src":"6159:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":828,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":815,"src":"6162:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":825,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[808,852],"referencedDeclaration":808,"src":"6149:6:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6149:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6132:42:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"id":834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":831,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":818,"src":"6188:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":832,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"6200:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$601_$","typeString":"type(enum Math.Rounding)"}},"id":833,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6209:2:2","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":599,"src":"6200:11:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"src":"6188:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":836,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":811,"src":"6222:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":837,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":813,"src":"6225:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":838,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":815,"src":"6228:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":835,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"6215:6:2","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6215:25:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6243:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6215:29:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6188:56:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":848,"nodeType":"IfStatement","src":"6184:98:2","trueBody":{"id":847,"nodeType":"Block","src":"6246:36:2","statements":[{"expression":{"id":845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":843,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"6260:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6270:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6260:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":846,"nodeType":"ExpressionStatement","src":"6260:11:2"}]}},{"expression":{"id":849,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"6298:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":822,"id":850,"nodeType":"Return","src":"6291:13:2"}]},"documentation":{"id":809,"nodeType":"StructuredDocumentation","src":"5886:121:2","text":" @notice Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":852,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"6021:6:2","nodeType":"FunctionDefinition","parameters":{"id":819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":811,"mutability":"mutable","name":"x","nameLocation":"6036:1:2","nodeType":"VariableDeclaration","scope":852,"src":"6028:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":810,"name":"uint256","nodeType":"ElementaryTypeName","src":"6028:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":813,"mutability":"mutable","name":"y","nameLocation":"6047:1:2","nodeType":"VariableDeclaration","scope":852,"src":"6039:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":812,"name":"uint256","nodeType":"ElementaryTypeName","src":"6039:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":815,"mutability":"mutable","name":"denominator","nameLocation":"6058:11:2","nodeType":"VariableDeclaration","scope":852,"src":"6050:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":814,"name":"uint256","nodeType":"ElementaryTypeName","src":"6050:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":818,"mutability":"mutable","name":"rounding","nameLocation":"6080:8:2","nodeType":"VariableDeclaration","scope":852,"src":"6071:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"typeName":{"id":817,"nodeType":"UserDefinedTypeName","pathNode":{"id":816,"name":"Rounding","nameLocations":["6071:8:2"],"nodeType":"IdentifierPath","referencedDeclaration":601,"src":"6071:8:2"},"referencedDeclaration":601,"src":"6071:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"6027:62:2"},"returnParameters":{"id":822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":821,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":852,"src":"6113:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":820,"name":"uint256","nodeType":"ElementaryTypeName","src":"6113:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6112:9:2"},"scope":1460,"src":"6012:299:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":963,"nodeType":"Block","src":"6587:1585:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":860,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"6601:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6606:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6601:6:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":866,"nodeType":"IfStatement","src":"6597:45:2","trueBody":{"id":865,"nodeType":"Block","src":"6609:33:2","statements":[{"expression":{"hexValue":"30","id":863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6630:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":859,"id":864,"nodeType":"Return","src":"6623:8:2"}]}},{"assignments":[868],"declarations":[{"constant":false,"id":868,"mutability":"mutable","name":"result","nameLocation":"7329:6:2","nodeType":"VariableDeclaration","scope":963,"src":"7321:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":867,"name":"uint256","nodeType":"ElementaryTypeName","src":"7321:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":877,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7338:1:2","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":874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":871,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"7349:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":870,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[1132,1168],"referencedDeclaration":1132,"src":"7344:4:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7344:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7355:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7344:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":875,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7343:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7338:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7321:36:2"},{"id":962,"nodeType":"UncheckedBlock","src":"7758:408:2","statements":[{"expression":{"id":887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":878,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7782:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":879,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7792:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":880,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"7801:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":881,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7805:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7792:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":884,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7791:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7816:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7791:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7782:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":888,"nodeType":"ExpressionStatement","src":"7782:35:2"},{"expression":{"id":898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":889,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7831:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":890,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7841:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":891,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"7850:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":892,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7854:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7850:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7841:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":895,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7840:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":896,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7865:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7840:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7831:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":899,"nodeType":"ExpressionStatement","src":"7831:35:2"},{"expression":{"id":909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":900,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7880:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":901,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7890:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":902,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"7899:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":903,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7903:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7899:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7890:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":906,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7889:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7914:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7889:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7880:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":910,"nodeType":"ExpressionStatement","src":"7880:35:2"},{"expression":{"id":920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":911,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7929:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":912,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7939:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":913,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"7948:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":914,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7952:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7948:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7939:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":917,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7938:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":918,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7963:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7938:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7929:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":921,"nodeType":"ExpressionStatement","src":"7929:35:2"},{"expression":{"id":931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":922,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7978:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":923,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"7988:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":924,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"7997:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":925,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8001:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7997:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7988:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":928,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7987:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8012:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7987:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7978:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":932,"nodeType":"ExpressionStatement","src":"7978:35:2"},{"expression":{"id":942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":933,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8027:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":934,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8037:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":935,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"8046:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":936,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8050:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8046:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8037:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":939,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8036:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8061:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8036:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8027:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":943,"nodeType":"ExpressionStatement","src":"8027:35:2"},{"expression":{"id":953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":944,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8076:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":945,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8086:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":946,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"8095:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":947,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8099:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8095:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8086:19:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":950,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8085:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8110:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8085:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8076:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":954,"nodeType":"ExpressionStatement","src":"8076:35:2"},{"expression":{"arguments":[{"id":956,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8136:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":957,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":855,"src":"8144:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":958,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"8148:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8144:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":955,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":637,"src":"8132:3:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":859,"id":961,"nodeType":"Return","src":"8125:30:2"}]}]},"documentation":{"id":853,"nodeType":"StructuredDocumentation","src":"6317:208:2","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11)."},"id":964,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"6539:4:2","nodeType":"FunctionDefinition","parameters":{"id":856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":855,"mutability":"mutable","name":"a","nameLocation":"6552:1:2","nodeType":"VariableDeclaration","scope":964,"src":"6544:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":854,"name":"uint256","nodeType":"ElementaryTypeName","src":"6544:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6543:11:2"},"returnParameters":{"id":859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":858,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":964,"src":"6578:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":857,"name":"uint256","nodeType":"ElementaryTypeName","src":"6578:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6577:9:2"},"scope":1460,"src":"6530:1642:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":999,"nodeType":"Block","src":"8348:161:2","statements":[{"id":998,"nodeType":"UncheckedBlock","src":"8358:145:2","statements":[{"assignments":[976],"declarations":[{"constant":false,"id":976,"mutability":"mutable","name":"result","nameLocation":"8390:6:2","nodeType":"VariableDeclaration","scope":998,"src":"8382:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":975,"name":"uint256","nodeType":"ElementaryTypeName","src":"8382:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":980,"initialValue":{"arguments":[{"id":978,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":967,"src":"8404:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":977,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[964,1000],"referencedDeclaration":964,"src":"8399:4:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8399:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8382:24:2"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":981,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"8427:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"id":985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":982,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":970,"src":"8437:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":983,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"8449:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$601_$","typeString":"type(enum Math.Rounding)"}},"id":984,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8458:2:2","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":599,"src":"8449:11:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"src":"8437:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":986,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"8464:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":987,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"8473:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8464:15:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":989,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":967,"src":"8482:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8464:19:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8437:46:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8490:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8437:54:2","trueExpression":{"hexValue":"31","id":992,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8486:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":995,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8436:56:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8427:65:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":974,"id":997,"nodeType":"Return","src":"8420:72:2"}]}]},"documentation":{"id":965,"nodeType":"StructuredDocumentation","src":"8178:89:2","text":" @notice Calculates sqrt(a), following the selected rounding direction."},"id":1000,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"8281:4:2","nodeType":"FunctionDefinition","parameters":{"id":971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":967,"mutability":"mutable","name":"a","nameLocation":"8294:1:2","nodeType":"VariableDeclaration","scope":1000,"src":"8286:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":966,"name":"uint256","nodeType":"ElementaryTypeName","src":"8286:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":970,"mutability":"mutable","name":"rounding","nameLocation":"8306:8:2","nodeType":"VariableDeclaration","scope":1000,"src":"8297:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"typeName":{"id":969,"nodeType":"UserDefinedTypeName","pathNode":{"id":968,"name":"Rounding","nameLocations":["8297:8:2"],"nodeType":"IdentifierPath","referencedDeclaration":601,"src":"8297:8:2"},"referencedDeclaration":601,"src":"8297:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"8285:30:2"},"returnParameters":{"id":974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":973,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1000,"src":"8339:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":972,"name":"uint256","nodeType":"ElementaryTypeName","src":"8339:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8338:9:2"},"scope":1460,"src":"8272:237:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1131,"nodeType":"Block","src":"8694:922:2","statements":[{"assignments":[1009],"declarations":[{"constant":false,"id":1009,"mutability":"mutable","name":"result","nameLocation":"8712:6:2","nodeType":"VariableDeclaration","scope":1131,"src":"8704:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1008,"name":"uint256","nodeType":"ElementaryTypeName","src":"8704:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1011,"initialValue":{"hexValue":"30","id":1010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8721:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8704:18:2"},{"id":1128,"nodeType":"UncheckedBlock","src":"8732:855:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"8760:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":1013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8769:3:2","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8760:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8775:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8760:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1026,"nodeType":"IfStatement","src":"8756:99:2","trueBody":{"id":1025,"nodeType":"Block","src":"8778:77:2","statements":[{"expression":{"id":1019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1017,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"8796:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":1018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8806:3:2","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8796:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1020,"nodeType":"ExpressionStatement","src":"8796:13:2"},{"expression":{"id":1023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1021,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"8827:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"313238","id":1022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8837:3:2","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8827:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1024,"nodeType":"ExpressionStatement","src":"8827:13:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1027,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"8872:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":1028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8881:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8872:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8886:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8872:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1041,"nodeType":"IfStatement","src":"8868:96:2","trueBody":{"id":1040,"nodeType":"Block","src":"8889:75:2","statements":[{"expression":{"id":1034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1032,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"8907:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":1033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8917:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8907:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1035,"nodeType":"ExpressionStatement","src":"8907:12:2"},{"expression":{"id":1038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1036,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"8937:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":1037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8947:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8937:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1039,"nodeType":"ExpressionStatement","src":"8937:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1042,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"8981:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":1043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8990:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"8981:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1045,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8995:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8981:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1056,"nodeType":"IfStatement","src":"8977:96:2","trueBody":{"id":1055,"nodeType":"Block","src":"8998:75:2","statements":[{"expression":{"id":1049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1047,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9016:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":1048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9026:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9016:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1050,"nodeType":"ExpressionStatement","src":"9016:12:2"},{"expression":{"id":1053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1051,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9046:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":1052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9056:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9046:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1054,"nodeType":"ExpressionStatement","src":"9046:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1057,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9090:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":1058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9099:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9090:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9104:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9090:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1071,"nodeType":"IfStatement","src":"9086:96:2","trueBody":{"id":1070,"nodeType":"Block","src":"9107:75:2","statements":[{"expression":{"id":1064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9125:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":1063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9135:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9125:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1065,"nodeType":"ExpressionStatement","src":"9125:12:2"},{"expression":{"id":1068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1066,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9155:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":1067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9165:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9155:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1069,"nodeType":"ExpressionStatement","src":"9155:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9199:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":1073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9208:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9199:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9212:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9199:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1086,"nodeType":"IfStatement","src":"9195:93:2","trueBody":{"id":1085,"nodeType":"Block","src":"9215:73:2","statements":[{"expression":{"id":1079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1077,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9233:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":1078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9243:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9233:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1080,"nodeType":"ExpressionStatement","src":"9233:11:2"},{"expression":{"id":1083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1081,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9262:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":1082,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9272:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9262:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1084,"nodeType":"ExpressionStatement","src":"9262:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1087,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9305:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"34","id":1088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9314:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"9305:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1090,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9318:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9305:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1101,"nodeType":"IfStatement","src":"9301:93:2","trueBody":{"id":1100,"nodeType":"Block","src":"9321:73:2","statements":[{"expression":{"id":1094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1092,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9339:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":1093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9349:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"9339:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1095,"nodeType":"ExpressionStatement","src":"9339:11:2"},{"expression":{"id":1098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1096,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9368:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":1097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9378:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"9368:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1099,"nodeType":"ExpressionStatement","src":"9368:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9411:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"32","id":1103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9420:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9411:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9424:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9411:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1116,"nodeType":"IfStatement","src":"9407:93:2","trueBody":{"id":1115,"nodeType":"Block","src":"9427:73:2","statements":[{"expression":{"id":1109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1107,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9445:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"32","id":1108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9455:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9445:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1110,"nodeType":"ExpressionStatement","src":"9445:11:2"},{"expression":{"id":1113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1111,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9474:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":1112,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9484:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9474:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1114,"nodeType":"ExpressionStatement","src":"9474:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1117,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1003,"src":"9517:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":1118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9526:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9517:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9530:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9517:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1127,"nodeType":"IfStatement","src":"9513:64:2","trueBody":{"id":1126,"nodeType":"Block","src":"9533:44:2","statements":[{"expression":{"id":1124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1122,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9551:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":1123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9561:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9551:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1125,"nodeType":"ExpressionStatement","src":"9551:11:2"}]}}]},{"expression":{"id":1129,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1009,"src":"9603:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1007,"id":1130,"nodeType":"Return","src":"9596:13:2"}]},"documentation":{"id":1001,"nodeType":"StructuredDocumentation","src":"8515:113:2","text":" @dev Return the log in base 2, rounded down, of a positive value.\n Returns 0 if given 0."},"id":1132,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"8642:4:2","nodeType":"FunctionDefinition","parameters":{"id":1004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1003,"mutability":"mutable","name":"value","nameLocation":"8655:5:2","nodeType":"VariableDeclaration","scope":1132,"src":"8647:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1002,"name":"uint256","nodeType":"ElementaryTypeName","src":"8647:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8646:15:2"},"returnParameters":{"id":1007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1006,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1132,"src":"8685:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1005,"name":"uint256","nodeType":"ElementaryTypeName","src":"8685:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8684:9:2"},"scope":1460,"src":"8633:983:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1167,"nodeType":"Block","src":"9849:165:2","statements":[{"id":1166,"nodeType":"UncheckedBlock","src":"9859:149:2","statements":[{"assignments":[1144],"declarations":[{"constant":false,"id":1144,"mutability":"mutable","name":"result","nameLocation":"9891:6:2","nodeType":"VariableDeclaration","scope":1166,"src":"9883:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1143,"name":"uint256","nodeType":"ElementaryTypeName","src":"9883:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1148,"initialValue":{"arguments":[{"id":1146,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"9905:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1145,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[1132,1168],"referencedDeclaration":1132,"src":"9900:4:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":1147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9900:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9883:28:2"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1149,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1144,"src":"9932:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"id":1153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1150,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1138,"src":"9942:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":1151,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"9954:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$601_$","typeString":"type(enum Math.Rounding)"}},"id":1152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9963:2:2","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":599,"src":"9954:11:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"src":"9942:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":1154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9969:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":1155,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1144,"src":"9974:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9969:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1157,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"9983:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9969:19:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9942:46:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":1161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9995:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9942:54:2","trueExpression":{"hexValue":"31","id":1160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9991:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":1163,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9941:56:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"9932:65:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1142,"id":1165,"nodeType":"Return","src":"9925:72:2"}]}]},"documentation":{"id":1133,"nodeType":"StructuredDocumentation","src":"9622:142:2","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":1168,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"9778:4:2","nodeType":"FunctionDefinition","parameters":{"id":1139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1135,"mutability":"mutable","name":"value","nameLocation":"9791:5:2","nodeType":"VariableDeclaration","scope":1168,"src":"9783:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1134,"name":"uint256","nodeType":"ElementaryTypeName","src":"9783:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1138,"mutability":"mutable","name":"rounding","nameLocation":"9807:8:2","nodeType":"VariableDeclaration","scope":1168,"src":"9798:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"typeName":{"id":1137,"nodeType":"UserDefinedTypeName","pathNode":{"id":1136,"name":"Rounding","nameLocations":["9798:8:2"],"nodeType":"IdentifierPath","referencedDeclaration":601,"src":"9798:8:2"},"referencedDeclaration":601,"src":"9798:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9782:34:2"},"returnParameters":{"id":1142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1141,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1168,"src":"9840:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1140,"name":"uint256","nodeType":"ElementaryTypeName","src":"9840:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9839:9:2"},"scope":1460,"src":"9769:245:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1296,"nodeType":"Block","src":"10201:854:2","statements":[{"assignments":[1177],"declarations":[{"constant":false,"id":1177,"mutability":"mutable","name":"result","nameLocation":"10219:6:2","nodeType":"VariableDeclaration","scope":1296,"src":"10211:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1176,"name":"uint256","nodeType":"ElementaryTypeName","src":"10211:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1179,"initialValue":{"hexValue":"30","id":1178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10228:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10211:18:2"},{"id":1293,"nodeType":"UncheckedBlock","src":"10239:787:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10267:5:2","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":1183,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10276:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":1182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10282:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"10276:8:2","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"10267:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1196,"nodeType":"IfStatement","src":"10263:103:2","trueBody":{"id":1195,"nodeType":"Block","src":"10286:80:2","statements":[{"expression":{"id":1189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1185,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10304:5:2","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":1188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10313:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":1187,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10319:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"10313:8:2","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"10304:17:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1190,"nodeType":"ExpressionStatement","src":"10304:17:2"},{"expression":{"id":1193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1191,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10339:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":1192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10349:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"10339:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1194,"nodeType":"ExpressionStatement","src":"10339:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1197,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10383:5:2","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":1200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10392:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":1199,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10398:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"10392:8:2","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"10383:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1213,"nodeType":"IfStatement","src":"10379:103:2","trueBody":{"id":1212,"nodeType":"Block","src":"10402:80:2","statements":[{"expression":{"id":1206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1202,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10420:5:2","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":1205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10429:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":1204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10435:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"10429:8:2","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"10420:17:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1207,"nodeType":"ExpressionStatement","src":"10420:17:2"},{"expression":{"id":1210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1208,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10455:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":1209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10465:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"10455:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1211,"nodeType":"ExpressionStatement","src":"10455:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1214,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10499:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":1217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10508:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":1216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10514:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"10508:8:2","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"10499:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1230,"nodeType":"IfStatement","src":"10495:103:2","trueBody":{"id":1229,"nodeType":"Block","src":"10518:80:2","statements":[{"expression":{"id":1223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1219,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10536:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":1222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1220,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10545:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":1221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10551:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"10545:8:2","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"10536:17:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1224,"nodeType":"ExpressionStatement","src":"10536:17:2"},{"expression":{"id":1227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1225,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10571:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":1226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10581:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"10571:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1228,"nodeType":"ExpressionStatement","src":"10571:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1231,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10615:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":1234,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10624:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":1233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10630:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10624:7:2","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"10615:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1247,"nodeType":"IfStatement","src":"10611:100:2","trueBody":{"id":1246,"nodeType":"Block","src":"10633:78:2","statements":[{"expression":{"id":1240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1236,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10651:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":1239,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10660:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":1238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10666:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10660:7:2","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"10651:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1241,"nodeType":"ExpressionStatement","src":"10651:16:2"},{"expression":{"id":1244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1242,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10685:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":1243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10695:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10685:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1245,"nodeType":"ExpressionStatement","src":"10685:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1248,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10728:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":1251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10737:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":1250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10743:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"10737:7:2","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"10728:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1264,"nodeType":"IfStatement","src":"10724:100:2","trueBody":{"id":1263,"nodeType":"Block","src":"10746:78:2","statements":[{"expression":{"id":1257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1253,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10764:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":1256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10773:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":1255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10779:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"10773:7:2","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"10764:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1258,"nodeType":"ExpressionStatement","src":"10764:16:2"},{"expression":{"id":1261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1259,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10798:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":1260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10808:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"10798:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1262,"nodeType":"ExpressionStatement","src":"10798:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1265,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10841:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":1268,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10850:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":1267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10856:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"10850:7:2","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"10841:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1281,"nodeType":"IfStatement","src":"10837:100:2","trueBody":{"id":1280,"nodeType":"Block","src":"10859:78:2","statements":[{"expression":{"id":1274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10877:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":1273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10886:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":1272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10892:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"10886:7:2","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"10877:16:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1275,"nodeType":"ExpressionStatement","src":"10877:16:2"},{"expression":{"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1276,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10911:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":1277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10921:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"10911:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1279,"nodeType":"ExpressionStatement","src":"10911:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1282,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1171,"src":"10954:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":1285,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10963:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":1284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10969:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10963:7:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"10954:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1292,"nodeType":"IfStatement","src":"10950:66:2","trueBody":{"id":1291,"nodeType":"Block","src":"10972:44:2","statements":[{"expression":{"id":1289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1287,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"10990:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":1288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11000:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10990:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1290,"nodeType":"ExpressionStatement","src":"10990:11:2"}]}}]},{"expression":{"id":1294,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1177,"src":"11042:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1175,"id":1295,"nodeType":"Return","src":"11035:13:2"}]},"documentation":{"id":1169,"nodeType":"StructuredDocumentation","src":"10020:114:2","text":" @dev Return the log in base 10, rounded down, of a positive value.\n Returns 0 if given 0."},"id":1297,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"10148:5:2","nodeType":"FunctionDefinition","parameters":{"id":1172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1171,"mutability":"mutable","name":"value","nameLocation":"10162:5:2","nodeType":"VariableDeclaration","scope":1297,"src":"10154:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1170,"name":"uint256","nodeType":"ElementaryTypeName","src":"10154:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10153:15:2"},"returnParameters":{"id":1175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1174,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1297,"src":"10192:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1173,"name":"uint256","nodeType":"ElementaryTypeName","src":"10192:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10191:9:2"},"scope":1460,"src":"10139:916:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1332,"nodeType":"Block","src":"11290:167:2","statements":[{"id":1331,"nodeType":"UncheckedBlock","src":"11300:151:2","statements":[{"assignments":[1309],"declarations":[{"constant":false,"id":1309,"mutability":"mutable","name":"result","nameLocation":"11332:6:2","nodeType":"VariableDeclaration","scope":1331,"src":"11324:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1308,"name":"uint256","nodeType":"ElementaryTypeName","src":"11324:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1313,"initialValue":{"arguments":[{"id":1311,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1300,"src":"11347:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1310,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[1297,1333],"referencedDeclaration":1297,"src":"11341:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":1312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11341:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11324:29:2"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1314,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1309,"src":"11374:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"id":1318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1315,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"11384:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":1316,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"11396:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$601_$","typeString":"type(enum Math.Rounding)"}},"id":1317,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11405:2:2","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":599,"src":"11396:11:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"src":"11384:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":1319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11411:2:2","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":1320,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1309,"src":"11417:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11411:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1300,"src":"11426:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11411:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11384:47:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":1326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11438:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":1327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"11384:55:2","trueExpression":{"hexValue":"31","id":1325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11434:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":1328,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11383:57:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11374:66:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1307,"id":1330,"nodeType":"Return","src":"11367:73:2"}]}]},"documentation":{"id":1298,"nodeType":"StructuredDocumentation","src":"11061:143:2","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":1333,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"11218:5:2","nodeType":"FunctionDefinition","parameters":{"id":1304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1300,"mutability":"mutable","name":"value","nameLocation":"11232:5:2","nodeType":"VariableDeclaration","scope":1333,"src":"11224:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1299,"name":"uint256","nodeType":"ElementaryTypeName","src":"11224:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1303,"mutability":"mutable","name":"rounding","nameLocation":"11248:8:2","nodeType":"VariableDeclaration","scope":1333,"src":"11239:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"typeName":{"id":1302,"nodeType":"UserDefinedTypeName","pathNode":{"id":1301,"name":"Rounding","nameLocations":["11239:8:2"],"nodeType":"IdentifierPath","referencedDeclaration":601,"src":"11239:8:2"},"referencedDeclaration":601,"src":"11239:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11223:34:2"},"returnParameters":{"id":1307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1306,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1333,"src":"11281:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1305,"name":"uint256","nodeType":"ElementaryTypeName","src":"11281:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11280:9:2"},"scope":1460,"src":"11209:248:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1419,"nodeType":"Block","src":"11771:600:2","statements":[{"assignments":[1342],"declarations":[{"constant":false,"id":1342,"mutability":"mutable","name":"result","nameLocation":"11789:6:2","nodeType":"VariableDeclaration","scope":1419,"src":"11781:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1341,"name":"uint256","nodeType":"ElementaryTypeName","src":"11781:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1344,"initialValue":{"hexValue":"30","id":1343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11798:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"11781:18:2"},{"id":1416,"nodeType":"UncheckedBlock","src":"11809:533:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"11837:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":1346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11846:3:2","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"11837:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11852:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11837:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1359,"nodeType":"IfStatement","src":"11833:98:2","trueBody":{"id":1358,"nodeType":"Block","src":"11855:76:2","statements":[{"expression":{"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"11873:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":1351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11883:3:2","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"11873:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1353,"nodeType":"ExpressionStatement","src":"11873:13:2"},{"expression":{"id":1356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1354,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1342,"src":"11904:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":1355,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11914:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"11904:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1357,"nodeType":"ExpressionStatement","src":"11904:12:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1360,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"11948:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":1361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11957:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"11948:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11962:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11948:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1374,"nodeType":"IfStatement","src":"11944:95:2","trueBody":{"id":1373,"nodeType":"Block","src":"11965:74:2","statements":[{"expression":{"id":1367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1365,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"11983:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":1366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11993:2:2","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"11983:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1368,"nodeType":"ExpressionStatement","src":"11983:12:2"},{"expression":{"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1369,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1342,"src":"12013:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":1370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12023:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"12013:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1372,"nodeType":"ExpressionStatement","src":"12013:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1375,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"12056:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":1376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12065:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"12056:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12070:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12056:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1389,"nodeType":"IfStatement","src":"12052:95:2","trueBody":{"id":1388,"nodeType":"Block","src":"12073:74:2","statements":[{"expression":{"id":1382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1380,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"12091:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":1381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12101:2:2","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"12091:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1383,"nodeType":"ExpressionStatement","src":"12091:12:2"},{"expression":{"id":1386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1384,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1342,"src":"12121:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":1385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12131:1:2","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"12121:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1387,"nodeType":"ExpressionStatement","src":"12121:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1390,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"12164:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":1391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12173:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12164:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12178:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12164:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1404,"nodeType":"IfStatement","src":"12160:95:2","trueBody":{"id":1403,"nodeType":"Block","src":"12181:74:2","statements":[{"expression":{"id":1397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1395,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"12199:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":1396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12209:2:2","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12199:12:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1398,"nodeType":"ExpressionStatement","src":"12199:12:2"},{"expression":{"id":1401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1399,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1342,"src":"12229:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":1400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12239:1:2","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12229:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1402,"nodeType":"ExpressionStatement","src":"12229:11:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1405,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1336,"src":"12272:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":1406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12281:1:2","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"12272:10:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12285:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12272:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1415,"nodeType":"IfStatement","src":"12268:64:2","trueBody":{"id":1414,"nodeType":"Block","src":"12288:44:2","statements":[{"expression":{"id":1412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1410,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1342,"src":"12306:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":1411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12316:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12306:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1413,"nodeType":"ExpressionStatement","src":"12306:11:2"}]}}]},{"expression":{"id":1417,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1342,"src":"12358:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1340,"id":1418,"nodeType":"Return","src":"12351:13:2"}]},"documentation":{"id":1334,"nodeType":"StructuredDocumentation","src":"11463:240:2","text":" @dev Return the log in base 256, rounded down, of a positive value.\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":1420,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"11717:6:2","nodeType":"FunctionDefinition","parameters":{"id":1337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1336,"mutability":"mutable","name":"value","nameLocation":"11732:5:2","nodeType":"VariableDeclaration","scope":1420,"src":"11724:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1335,"name":"uint256","nodeType":"ElementaryTypeName","src":"11724:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11723:15:2"},"returnParameters":{"id":1340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1339,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1420,"src":"11762:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1338,"name":"uint256","nodeType":"ElementaryTypeName","src":"11762:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11761:9:2"},"scope":1460,"src":"11708:663:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1458,"nodeType":"Block","src":"12608:174:2","statements":[{"id":1457,"nodeType":"UncheckedBlock","src":"12618:158:2","statements":[{"assignments":[1432],"declarations":[{"constant":false,"id":1432,"mutability":"mutable","name":"result","nameLocation":"12650:6:2","nodeType":"VariableDeclaration","scope":1457,"src":"12642:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1431,"name":"uint256","nodeType":"ElementaryTypeName","src":"12642:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1436,"initialValue":{"arguments":[{"id":1434,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1423,"src":"12666:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1433,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[1420,1459],"referencedDeclaration":1420,"src":"12659:6:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":1435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12659:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12642:30:2"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1437,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"12693:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"id":1441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1438,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1426,"src":"12703:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":1439,"name":"Rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"12715:8:2","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$601_$","typeString":"type(enum Math.Rounding)"}},"id":1440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12724:2:2","memberName":"Up","nodeType":"MemberAccess","referencedDeclaration":599,"src":"12715:11:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"src":"12703:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":1442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12730:1:2","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":1445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1443,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"12736:6:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":1444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12746:1:2","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"12736:11:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1446,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12735:13:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12730:18:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1448,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1423,"src":"12751:5:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12730:26:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12703:53:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":1452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12763:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":1453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"12703:61:2","trueExpression":{"hexValue":"31","id":1451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12759:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":1454,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12702:63:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12693:72:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1430,"id":1456,"nodeType":"Return","src":"12686:79:2"}]}]},"documentation":{"id":1421,"nodeType":"StructuredDocumentation","src":"12377:144:2","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":1459,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"12535:6:2","nodeType":"FunctionDefinition","parameters":{"id":1427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1423,"mutability":"mutable","name":"value","nameLocation":"12550:5:2","nodeType":"VariableDeclaration","scope":1459,"src":"12542:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1422,"name":"uint256","nodeType":"ElementaryTypeName","src":"12542:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1426,"mutability":"mutable","name":"rounding","nameLocation":"12566:8:2","nodeType":"VariableDeclaration","scope":1459,"src":"12557:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"},"typeName":{"id":1425,"nodeType":"UserDefinedTypeName","pathNode":{"id":1424,"name":"Rounding","nameLocations":["12557:8:2"],"nodeType":"IdentifierPath","referencedDeclaration":601,"src":"12557:8:2"},"referencedDeclaration":601,"src":"12557:8:2","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$601","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"12541:34:2"},"returnParameters":{"id":1430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1429,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1459,"src":"12599:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1428,"name":"uint256","nodeType":"ElementaryTypeName","src":"12599:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12598:9:2"},"scope":1460,"src":"12526:256:2","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1461,"src":"202:12582:2","usedErrors":[],"usedEvents":[]}],"src":"103:12682:2"},"id":2},"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol":{"ast":{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol","exportedSymbols":{"SignedMath":[1565]},"id":1566,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1462,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"109:23:3"},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":1463,"nodeType":"StructuredDocumentation","src":"134:80:3","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":1565,"linearizedBaseContracts":[1565],"name":"SignedMath","nameLocation":"223:10:3","nodeType":"ContractDefinition","nodes":[{"body":{"id":1480,"nodeType":"Block","src":"375:37:3","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1473,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1466,"src":"392:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1474,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1468,"src":"396:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"392:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":1477,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1468,"src":"404:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":1478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"392:13:3","trueExpression":{"id":1476,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1466,"src":"400:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":1472,"id":1479,"nodeType":"Return","src":"385:20:3"}]},"documentation":{"id":1464,"nodeType":"StructuredDocumentation","src":"240:66:3","text":" @dev Returns the largest of two signed numbers."},"id":1481,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"320:3:3","nodeType":"FunctionDefinition","parameters":{"id":1469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1466,"mutability":"mutable","name":"a","nameLocation":"331:1:3","nodeType":"VariableDeclaration","scope":1481,"src":"324:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1465,"name":"int256","nodeType":"ElementaryTypeName","src":"324:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1468,"mutability":"mutable","name":"b","nameLocation":"341:1:3","nodeType":"VariableDeclaration","scope":1481,"src":"334:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1467,"name":"int256","nodeType":"ElementaryTypeName","src":"334:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"323:20:3"},"returnParameters":{"id":1472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1481,"src":"367:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1470,"name":"int256","nodeType":"ElementaryTypeName","src":"367:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"366:8:3"},"scope":1565,"src":"311:101:3","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1498,"nodeType":"Block","src":"554:37:3","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1491,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1484,"src":"571:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1492,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1486,"src":"575:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"571:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":1495,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1486,"src":"583:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":1496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"571:13:3","trueExpression":{"id":1494,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1484,"src":"579:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":1490,"id":1497,"nodeType":"Return","src":"564:20:3"}]},"documentation":{"id":1482,"nodeType":"StructuredDocumentation","src":"418:67:3","text":" @dev Returns the smallest of two signed numbers."},"id":1499,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"499:3:3","nodeType":"FunctionDefinition","parameters":{"id":1487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1484,"mutability":"mutable","name":"a","nameLocation":"510:1:3","nodeType":"VariableDeclaration","scope":1499,"src":"503:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1483,"name":"int256","nodeType":"ElementaryTypeName","src":"503:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1486,"mutability":"mutable","name":"b","nameLocation":"520:1:3","nodeType":"VariableDeclaration","scope":1499,"src":"513:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1485,"name":"int256","nodeType":"ElementaryTypeName","src":"513:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"502:20:3"},"returnParameters":{"id":1490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1489,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1499,"src":"546:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1488,"name":"int256","nodeType":"ElementaryTypeName","src":"546:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"545:8:3"},"scope":1565,"src":"490:101:3","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1542,"nodeType":"Block","src":"796:162:3","statements":[{"assignments":[1510],"declarations":[{"constant":false,"id":1510,"mutability":"mutable","name":"x","nameLocation":"865:1:3","nodeType":"VariableDeclaration","scope":1542,"src":"858:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1509,"name":"int256","nodeType":"ElementaryTypeName","src":"858:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":1523,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1511,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1502,"src":"870:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":1512,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"874:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"870:5:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":1514,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"869:7:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1515,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1502,"src":"881:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":1516,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"885:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"881:5:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":1518,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"880:7:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":1519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"891:1:3","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"880:12:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":1521,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"879:14:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"869:24:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"858:35:3"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1524,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"910:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1529,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"930:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":1528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"922:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1527,"name":"uint256","nodeType":"ElementaryTypeName","src":"922:7:3","typeDescriptions":{}}},"id":1530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"922:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":1531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"936:3:3","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"922:17:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"915:6:3","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":1525,"name":"int256","nodeType":"ElementaryTypeName","src":"915:6:3","typeDescriptions":{}}},"id":1533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"915:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1534,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1502,"src":"944:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":1535,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"948:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"944:5:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":1537,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"943:7:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"915:35:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":1539,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"914:37:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"910:41:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":1508,"id":1541,"nodeType":"Return","src":"903:48:3"}]},"documentation":{"id":1500,"nodeType":"StructuredDocumentation","src":"597:126:3","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":1543,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"737:7:3","nodeType":"FunctionDefinition","parameters":{"id":1505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1502,"mutability":"mutable","name":"a","nameLocation":"752:1:3","nodeType":"VariableDeclaration","scope":1543,"src":"745:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1501,"name":"int256","nodeType":"ElementaryTypeName","src":"745:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":1504,"mutability":"mutable","name":"b","nameLocation":"762:1:3","nodeType":"VariableDeclaration","scope":1543,"src":"755:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1503,"name":"int256","nodeType":"ElementaryTypeName","src":"755:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"744:20:3"},"returnParameters":{"id":1508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1507,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1543,"src":"788:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1506,"name":"int256","nodeType":"ElementaryTypeName","src":"788:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"787:8:3"},"scope":1565,"src":"728:230:3","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1563,"nodeType":"Block","src":"1102:158:3","statements":[{"id":1562,"nodeType":"UncheckedBlock","src":"1112:142:3","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":1555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1553,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1546,"src":"1227:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":1554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1227:6:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":1558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"1240:2:3","subExpression":{"id":1557,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1546,"src":"1241:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":1559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1227:15:3","trueExpression":{"id":1556,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1546,"src":"1236:1:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":1552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1219:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1551,"name":"uint256","nodeType":"ElementaryTypeName","src":"1219:7:3","typeDescriptions":{}}},"id":1560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1219:24:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1550,"id":1561,"nodeType":"Return","src":"1212:31:3"}]}]},"documentation":{"id":1544,"nodeType":"StructuredDocumentation","src":"964:78:3","text":" @dev Returns the absolute unsigned value of a signed value."},"id":1564,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1056:3:3","nodeType":"FunctionDefinition","parameters":{"id":1547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1546,"mutability":"mutable","name":"n","nameLocation":"1067:1:3","nodeType":"VariableDeclaration","scope":1564,"src":"1060:8:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":1545,"name":"int256","nodeType":"ElementaryTypeName","src":"1060:6:3","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1059:10:3"},"returnParameters":{"id":1550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1549,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1564,"src":"1093:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1548,"name":"uint256","nodeType":"ElementaryTypeName","src":"1093:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1092:9:3"},"scope":1565,"src":"1047:213:3","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1566,"src":"215:1047:3","usedErrors":[],"usedEvents":[]}],"src":"109:1154:3"},"id":3},"project/contracts/ProviderBatchCallAndSponsor.sol":{"ast":{"absolutePath":"project/contracts/ProviderBatchCallAndSponsor.sol","exportedSymbols":{"ECDSA":[594],"IGateway":[1574],"Math":[1460],"ProviderBatchCallAndSponsor":[1814],"SignedMath":[1565],"Strings":[228]},"id":1815,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1567,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"32:24:4"},{"absolutePath":"npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":1568,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1815,"sourceUnit":595,"src":"58:62:4","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGateway","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1574,"linearizedBaseContracts":[1574],"name":"IGateway","nameLocation":"132:8:4","nodeType":"ContractDefinition","nodes":[{"functionSelector":"3ad59dbc","id":1573,"implemented":false,"kind":"function","modifiers":[],"name":"getAggregator","nameLocation":"156:13:4","nodeType":"FunctionDefinition","parameters":{"id":1569,"nodeType":"ParameterList","parameters":[],"src":"169:2:4"},"returnParameters":{"id":1572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1573,"src":"195:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1570,"name":"address","nodeType":"ElementaryTypeName","src":"195:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"194:9:4"},"scope":1574,"src":"147:57:4","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1815,"src":"122:84:4","usedErrors":[],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"ProviderBatchCallAndSponsor","contractDependencies":[],"contractKind":"contract","documentation":{"id":1575,"nodeType":"StructuredDocumentation","src":"207:686:4","text":" @title ProviderBatchCallAndSponsor\n When an EOA upgrades via EIP‑7702, it delegates to this implementation.\n Off‑chain, the account signs a message authorizing a batch of calls. The message is the hash of:\n keccak256(abi.encodePacked(nonce, calls))\n The signature must be generated with the EOA’s private key so that, once upgraded, the recovered signer equals the account’s own address (i.e. address(this)).\n This contract provides just one way to execute a batch:\n 1. With a signature: Any sponsor can submit the batch if it carries a valid signature.\n Replay protection is achieved by using a nonce that is included in the signed message."},"fullyImplemented":true,"id":1814,"linearizedBaseContracts":[1814],"name":"ProviderBatchCallAndSponsor","nameLocation":"903:27:4","nodeType":"ContractDefinition","nodes":[{"global":false,"id":1578,"libraryName":{"id":1576,"name":"ECDSA","nameLocations":["943:5:4"],"nodeType":"IdentifierPath","referencedDeclaration":594,"src":"943:5:4"},"nodeType":"UsingForDirective","src":"937:24:4","typeName":{"id":1577,"name":"bytes32","nodeType":"ElementaryTypeName","src":"953:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"constant":true,"documentation":{"id":1579,"nodeType":"StructuredDocumentation","src":"1054:48:4","text":"@notice The address of the Gateway contract."},"functionSelector":"8b851b95","id":1582,"mutability":"constant","name":"gatewayAddress","nameLocation":"1131:14:4","nodeType":"VariableDeclaration","scope":1814,"src":"1107:83:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1580,"name":"address","nodeType":"ElementaryTypeName","src":"1107:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"hexValue":"307835366441386643453846443634436161453930443830444544353535383762323832626234333033","id":1581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1148:42:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x56dA8fCE8FD64CaaE90D80DED55587b282bb4303"},"visibility":"public"},{"constant":false,"documentation":{"id":1583,"nodeType":"StructuredDocumentation","src":"1196:47:4","text":"@notice A nonce used for replay protection."},"functionSelector":"affed0e0","id":1585,"mutability":"mutable","name":"nonce","nameLocation":"1263:5:4","nodeType":"VariableDeclaration","scope":1814,"src":"1248:20:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1584,"name":"uint256","nodeType":"ElementaryTypeName","src":"1248:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"canonicalName":"ProviderBatchCallAndSponsor.Call","documentation":{"id":1586,"nodeType":"StructuredDocumentation","src":"1275:52:4","text":"@notice Represents a single call within a batch."},"id":1593,"members":[{"constant":false,"id":1588,"mutability":"mutable","name":"to","nameLocation":"1362:2:4","nodeType":"VariableDeclaration","scope":1593,"src":"1354:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1587,"name":"address","nodeType":"ElementaryTypeName","src":"1354:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1590,"mutability":"mutable","name":"value","nameLocation":"1382:5:4","nodeType":"VariableDeclaration","scope":1593,"src":"1374:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1589,"name":"uint256","nodeType":"ElementaryTypeName","src":"1374:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1592,"mutability":"mutable","name":"data","nameLocation":"1403:4:4","nodeType":"VariableDeclaration","scope":1593,"src":"1397:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":1591,"name":"bytes","nodeType":"ElementaryTypeName","src":"1397:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"Call","nameLocation":"1339:4:4","nodeType":"StructDefinition","scope":1814,"src":"1332:82:4","visibility":"public"},{"body":{"id":1608,"nodeType":"Block","src":"1446:94:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1596,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1458:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1462:6:4","memberName":"sender","nodeType":"MemberAccess","src":"1458:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":1599,"name":"gatewayAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"1481:14:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1598,"name":"IGateway","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1574,"src":"1472:8:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGateway_$1574_$","typeString":"type(contract IGateway)"}},"id":1600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1472:24:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IGateway_$1574","typeString":"contract IGateway"}},"id":1601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1497:13:4","memberName":"getAggregator","nodeType":"MemberAccess","referencedDeclaration":1573,"src":"1472:38:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":1602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1472:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1458:54:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c7941676772656761746f72","id":1604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1514:16:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""},"value":"OnlyAggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""}],"id":1595,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1450:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1450:81:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1606,"nodeType":"ExpressionStatement","src":"1450:81:4"},{"id":1607,"nodeType":"PlaceholderStatement","src":"1535:1:4"}]},"id":1609,"name":"onlyAggregator","nameLocation":"1429:14:4","nodeType":"ModifierDefinition","parameters":{"id":1594,"nodeType":"ParameterList","parameters":[],"src":"1443:2:4"},"src":"1420:120:4","virtual":false,"visibility":"internal"},{"anonymous":false,"documentation":{"id":1610,"nodeType":"StructuredDocumentation","src":"1546:55:4","text":"@notice Emitted for every individual call executed."},"eventSelector":"ed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a","id":1620,"name":"CallExecuted","nameLocation":"1612:12:4","nodeType":"EventDefinition","parameters":{"id":1619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1612,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1641:6:4","nodeType":"VariableDeclaration","scope":1620,"src":"1625:22:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1611,"name":"address","nodeType":"ElementaryTypeName","src":"1625:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1614,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"1665:2:4","nodeType":"VariableDeclaration","scope":1620,"src":"1649:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1613,"name":"address","nodeType":"ElementaryTypeName","src":"1649:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1616,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1677:5:4","nodeType":"VariableDeclaration","scope":1620,"src":"1669:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1615,"name":"uint256","nodeType":"ElementaryTypeName","src":"1669:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1618,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"1690:4:4","nodeType":"VariableDeclaration","scope":1620,"src":"1684:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1617,"name":"bytes","nodeType":"ElementaryTypeName","src":"1684:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1624:71:4"},"src":"1606:90:4"},{"anonymous":false,"documentation":{"id":1621,"nodeType":"StructuredDocumentation","src":"1701:50:4","text":"@notice Emitted when a full batch is executed."},"eventSelector":"280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba39","id":1629,"name":"BatchExecuted","nameLocation":"1762:13:4","nodeType":"EventDefinition","parameters":{"id":1628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1623,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"1792:5:4","nodeType":"VariableDeclaration","scope":1629,"src":"1776:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1622,"name":"uint256","nodeType":"ElementaryTypeName","src":"1776:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1627,"indexed":false,"mutability":"mutable","name":"calls","nameLocation":"1806:5:4","nodeType":"VariableDeclaration","scope":1629,"src":"1799:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_memory_ptr_$dyn_memory_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"},"typeName":{"baseType":{"id":1625,"nodeType":"UserDefinedTypeName","pathNode":{"id":1624,"name":"Call","nameLocations":["1799:4:4"],"nodeType":"IdentifierPath","referencedDeclaration":1593,"src":"1799:4:4"},"referencedDeclaration":1593,"src":"1799:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call"}},"id":1626,"nodeType":"ArrayTypeName","src":"1799:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_storage_$dyn_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"}},"visibility":"internal"}],"src":"1775:37:4"},"src":"1756:57:4"},{"body":{"id":1715,"nodeType":"Block","src":"2374:671:4","statements":[{"assignments":[1642],"declarations":[{"constant":false,"id":1642,"mutability":"mutable","name":"encodedCalls","nameLocation":"2466:12:4","nodeType":"VariableDeclaration","scope":1715,"src":"2453:25:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1641,"name":"bytes","nodeType":"ElementaryTypeName","src":"2453:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1643,"nodeType":"VariableDeclarationStatement","src":"2453:25:4"},{"body":{"id":1674,"nodeType":"Block","src":"2531:114:4","statements":[{"expression":{"id":1672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1655,"name":"encodedCalls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"2545:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1658,"name":"encodedCalls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"2577:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"expression":{"baseExpression":{"id":1659,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"2591:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}},"id":1661,"indexExpression":{"id":1660,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1645,"src":"2597:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2591:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2600:2:4","memberName":"to","nodeType":"MemberAccess","referencedDeclaration":1588,"src":"2591:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1663,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"2604:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}},"id":1665,"indexExpression":{"id":1664,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1645,"src":"2610:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2604:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2613:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1590,"src":"2604:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"baseExpression":{"id":1667,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"2620:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}},"id":1669,"indexExpression":{"id":1668,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1645,"src":"2626:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2620:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2629:4:4","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":1592,"src":"2620:13:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":1656,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2560:3:4","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2564:12:4","memberName":"encodePacked","nodeType":"MemberAccess","src":"2560:16:4","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2560:74:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"2545:89:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1673,"nodeType":"ExpressionStatement","src":"2545:89:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1648,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1645,"src":"2508:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1649,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"2512:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}},"id":1650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2518:6:4","memberName":"length","nodeType":"MemberAccess","src":"2512:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2508:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1675,"initializationExpression":{"assignments":[1645],"declarations":[{"constant":false,"id":1645,"mutability":"mutable","name":"i","nameLocation":"2501:1:4","nodeType":"VariableDeclaration","scope":1675,"src":"2493:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1644,"name":"uint256","nodeType":"ElementaryTypeName","src":"2493:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1647,"initialValue":{"hexValue":"30","id":1646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2505:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2493:13:4"},"loopExpression":{"expression":{"id":1653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2526:3:4","subExpression":{"id":1652,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1645,"src":"2526:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1654,"nodeType":"ExpressionStatement","src":"2526:3:4"},"nodeType":"ForStatement","src":"2488:157:4"},{"assignments":[1677],"declarations":[{"constant":false,"id":1677,"mutability":"mutable","name":"digest","nameLocation":"2662:6:4","nodeType":"VariableDeclaration","scope":1715,"src":"2654:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1676,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2654:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1685,"initialValue":{"arguments":[{"arguments":[{"id":1681,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"2698:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1682,"name":"encodedCalls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"2705:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1679,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2681:3:4","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2685:12:4","memberName":"encodePacked","nodeType":"MemberAccess","src":"2681:16:4","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2681:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1678,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2671:9:4","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2671:48:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2654:65:4"},{"assignments":[1687],"declarations":[{"constant":false,"id":1687,"mutability":"mutable","name":"ethSignedMessageHash","nameLocation":"2746:20:4","nodeType":"VariableDeclaration","scope":1715,"src":"2738:28:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1686,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2738:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1692,"initialValue":{"arguments":[{"id":1690,"name":"digest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1677,"src":"2798:6:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1688,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":594,"src":"2769:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$594_$","typeString":"type(library ECDSA)"}},"id":1689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2775:22:4","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":539,"src":"2769:28:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) pure returns (bytes32)"}},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2769:36:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2738:67:4"},{"assignments":[1694],"declarations":[{"constant":false,"id":1694,"mutability":"mutable","name":"recovered","nameLocation":"2883:9:4","nodeType":"VariableDeclaration","scope":1715,"src":"2875:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1693,"name":"address","nodeType":"ElementaryTypeName","src":"2875:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1700,"initialValue":{"arguments":[{"id":1697,"name":"ethSignedMessageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1687,"src":"2909:20:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1698,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1636,"src":"2931:9:4","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":1695,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":594,"src":"2895:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$594_$","typeString":"type(library ECDSA)"}},"id":1696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2901:7:4","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":355,"src":"2895:13:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":1699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2895:46:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2875:66:4"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1702,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"2959:9:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":1705,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2980:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_ProviderBatchCallAndSponsor_$1814","typeString":"contract ProviderBatchCallAndSponsor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ProviderBatchCallAndSponsor_$1814","typeString":"contract ProviderBatchCallAndSponsor"}],"id":1704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2972:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1703,"name":"address","nodeType":"ElementaryTypeName","src":"2972:7:4","typeDescriptions":{}}},"id":1706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2972:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2959:26:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c6964207369676e6174757265","id":1708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2987:19:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_4f2d7dfcb27c0aafa13ae8c400de482c7832204d194018b6e45bd2bf244c74e7","typeString":"literal_string \"Invalid signature\""},"value":"Invalid signature"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_4f2d7dfcb27c0aafa13ae8c400de482c7832204d194018b6e45bd2bf244c74e7","typeString":"literal_string \"Invalid signature\""}],"id":1701,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2951:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2951:56:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1710,"nodeType":"ExpressionStatement","src":"2951:56:4"},{"expression":{"arguments":[{"id":1712,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1634,"src":"3032:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}],"id":1711,"name":"_executeBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"3018:13:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr_$returns$__$","typeString":"function (struct ProviderBatchCallAndSponsor.Call calldata[] calldata)"}},"id":1713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3018:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1714,"nodeType":"ExpressionStatement","src":"3018:20:4"}]},"documentation":{"id":1630,"nodeType":"StructuredDocumentation","src":"1819:452:4","text":" @notice Executes a batch of calls using an off–chain signature.\n @param calls An array of Call structs containing destination, ETH value, and calldata.\n @param signature The ECDSA signature over the current nonce and the call data.\n The signature must be produced off–chain by signing:\n The signing key should be the account’s key (which becomes the smart account’s own identity after upgrade)."},"functionSelector":"6171d1c9","id":1716,"implemented":true,"kind":"function","modifiers":[{"id":1639,"kind":"modifierInvocation","modifierName":{"id":1638,"name":"onlyAggregator","nameLocations":["2359:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":1609,"src":"2359:14:4"},"nodeType":"ModifierInvocation","src":"2359:14:4"}],"name":"execute","nameLocation":"2285:7:4","nodeType":"FunctionDefinition","parameters":{"id":1637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1634,"mutability":"mutable","name":"calls","nameLocation":"2309:5:4","nodeType":"VariableDeclaration","scope":1716,"src":"2293:21:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"},"typeName":{"baseType":{"id":1632,"nodeType":"UserDefinedTypeName","pathNode":{"id":1631,"name":"Call","nameLocations":["2293:4:4"],"nodeType":"IdentifierPath","referencedDeclaration":1593,"src":"2293:4:4"},"referencedDeclaration":1593,"src":"2293:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call"}},"id":1633,"nodeType":"ArrayTypeName","src":"2293:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_storage_$dyn_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"}},"visibility":"internal"},{"constant":false,"id":1636,"mutability":"mutable","name":"signature","nameLocation":"2331:9:4","nodeType":"VariableDeclaration","scope":1716,"src":"2316:24:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1635,"name":"bytes","nodeType":"ElementaryTypeName","src":"2316:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2292:49:4"},"returnParameters":{"id":1640,"nodeType":"ParameterList","parameters":[],"src":"2374:0:4"},"scope":1814,"src":"2276:769:4","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":1728,"nodeType":"Block","src":"3329:88:4","statements":[{"expression":{"arguments":[{"hexValue":"4e6f7420696d706c656d656e746564","id":1725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3346:17:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f5474d7a5849b3f79e8aee7ea2c60bcd36a60a08b4fa41f97e2fccf1c4df98b","typeString":"literal_string \"Not implemented\""},"value":"Not implemented"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9f5474d7a5849b3f79e8aee7ea2c60bcd36a60a08b4fa41f97e2fccf1c4df98b","typeString":"literal_string \"Not implemented\""}],"id":1724,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3339:6:4","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":1726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3339:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1727,"nodeType":"ExpressionStatement","src":"3339:25:4"}]},"documentation":{"id":1717,"nodeType":"StructuredDocumentation","src":"3051:216:4","text":" @notice Executes a batch of calls directly.\n @dev This contract doesnt authorized self execution.\n @param calls An array of Call structs containing destination, ETH value, and calldata."},"functionSelector":"3f707e6b","id":1729,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"3281:7:4","nodeType":"FunctionDefinition","parameters":{"id":1722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1721,"mutability":"mutable","name":"calls","nameLocation":"3305:5:4","nodeType":"VariableDeclaration","scope":1729,"src":"3289:21:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"},"typeName":{"baseType":{"id":1719,"nodeType":"UserDefinedTypeName","pathNode":{"id":1718,"name":"Call","nameLocations":["3289:4:4"],"nodeType":"IdentifierPath","referencedDeclaration":1593,"src":"3289:4:4"},"referencedDeclaration":1593,"src":"3289:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call"}},"id":1720,"nodeType":"ArrayTypeName","src":"3289:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_storage_$dyn_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"}},"visibility":"internal"}],"src":"3288:23:4"},"returnParameters":{"id":1723,"nodeType":"ParameterList","parameters":[],"src":"3329:0:4"},"scope":1814,"src":"3272:145:4","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":1768,"nodeType":"Block","src":"3625:265:4","statements":[{"assignments":[1738],"declarations":[{"constant":false,"id":1738,"mutability":"mutable","name":"currentNonce","nameLocation":"3643:12:4","nodeType":"VariableDeclaration","scope":1768,"src":"3635:20:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1737,"name":"uint256","nodeType":"ElementaryTypeName","src":"3635:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1740,"initialValue":{"id":1739,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"3658:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3635:28:4"},{"expression":{"id":1742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3673:7:4","subExpression":{"id":1741,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"3673:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1743,"nodeType":"ExpressionStatement","src":"3673:7:4"},{"body":{"id":1761,"nodeType":"Block","src":"3787:47:4","statements":[{"expression":{"arguments":[{"baseExpression":{"id":1756,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"3814:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}},"id":1758,"indexExpression":{"id":1757,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"3820:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3814:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}],"id":1755,"name":"_executeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1805,"src":"3801:12:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Call_$1593_calldata_ptr_$returns$__$","typeString":"function (struct ProviderBatchCallAndSponsor.Call calldata)"}},"id":1759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3801:22:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1760,"nodeType":"ExpressionStatement","src":"3801:22:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1748,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"3764:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1749,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"3768:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}},"id":1750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3774:6:4","memberName":"length","nodeType":"MemberAccess","src":"3768:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3764:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1762,"initializationExpression":{"assignments":[1745],"declarations":[{"constant":false,"id":1745,"mutability":"mutable","name":"i","nameLocation":"3757:1:4","nodeType":"VariableDeclaration","scope":1762,"src":"3749:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1744,"name":"uint256","nodeType":"ElementaryTypeName","src":"3749:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1747,"initialValue":{"hexValue":"30","id":1746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3761:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3749:13:4"},"loopExpression":{"expression":{"id":1753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3782:3:4","subExpression":{"id":1752,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"3782:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1754,"nodeType":"ExpressionStatement","src":"3782:3:4"},"nodeType":"ForStatement","src":"3744:90:4"},{"eventCall":{"arguments":[{"id":1764,"name":"currentNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1738,"src":"3863:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1765,"name":"calls","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"3877:5:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata[] calldata"}],"id":1763,"name":"BatchExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"3849:13:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_array$_t_struct$_Call_$1593_memory_ptr_$dyn_memory_ptr_$returns$__$","typeString":"function (uint256,struct ProviderBatchCallAndSponsor.Call memory[] memory)"}},"id":1766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3849:34:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1767,"nodeType":"EmitStatement","src":"3844:39:4"}]},"documentation":{"id":1730,"nodeType":"StructuredDocumentation","src":"3423:142:4","text":" @dev Internal function that handles batch execution and nonce incrementation.\n @param calls An array of Call structs."},"id":1769,"implemented":true,"kind":"function","modifiers":[],"name":"_executeBatch","nameLocation":"3579:13:4","nodeType":"FunctionDefinition","parameters":{"id":1735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1734,"mutability":"mutable","name":"calls","nameLocation":"3609:5:4","nodeType":"VariableDeclaration","scope":1769,"src":"3593:21:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_calldata_ptr_$dyn_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"},"typeName":{"baseType":{"id":1732,"nodeType":"UserDefinedTypeName","pathNode":{"id":1731,"name":"Call","nameLocations":["3593:4:4"],"nodeType":"IdentifierPath","referencedDeclaration":1593,"src":"3593:4:4"},"referencedDeclaration":1593,"src":"3593:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call"}},"id":1733,"nodeType":"ArrayTypeName","src":"3593:6:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Call_$1593_storage_$dyn_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call[]"}},"visibility":"internal"}],"src":"3592:23:4"},"returnParameters":{"id":1736,"nodeType":"ParameterList","parameters":[],"src":"3625:0:4"},"scope":1814,"src":"3570:320:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1804,"nodeType":"Block","src":"4107:215:4","statements":[{"assignments":[1777,null],"declarations":[{"constant":false,"id":1777,"mutability":"mutable","name":"success","nameLocation":"4123:7:4","nodeType":"VariableDeclaration","scope":1804,"src":"4118:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1776,"name":"bool","nodeType":"ElementaryTypeName","src":"4118:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":1787,"initialValue":{"arguments":[{"expression":{"id":1784,"name":"callItem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"4175:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4184:4:4","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":1592,"src":"4175:13:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"expression":{"id":1778,"name":"callItem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"4135:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4144:2:4","memberName":"to","nodeType":"MemberAccess","referencedDeclaration":1588,"src":"4135:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4147:4:4","memberName":"call","nodeType":"MemberAccess","src":"4135:16:4","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":1783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":1781,"name":"callItem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"4159:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4168:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1590,"src":"4159:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4135:39:4","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":1786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4135:54:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4117:72:4"},{"expression":{"arguments":[{"id":1789,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1777,"src":"4207:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43616c6c207265766572746564","id":1790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4216:15:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_f98adb58895f05e03f48b831c1c143b263ff8defb24575454c739da4a24d730b","typeString":"literal_string \"Call reverted\""},"value":"Call reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f98adb58895f05e03f48b831c1c143b263ff8defb24575454c739da4a24d730b","typeString":"literal_string \"Call reverted\""}],"id":1788,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4199:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4199:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1792,"nodeType":"ExpressionStatement","src":"4199:33:4"},{"eventCall":{"arguments":[{"expression":{"id":1794,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4260:3:4","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4264:6:4","memberName":"sender","nodeType":"MemberAccess","src":"4260:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1796,"name":"callItem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"4272:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4281:2:4","memberName":"to","nodeType":"MemberAccess","referencedDeclaration":1588,"src":"4272:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1798,"name":"callItem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"4285:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4294:5:4","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1590,"src":"4285:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1800,"name":"callItem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"4301:8:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call calldata"}},"id":1801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4310:4:4","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":1592,"src":"4301:13:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":1793,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1620,"src":"4247:12:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,bytes memory)"}},"id":1802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4247:68:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1803,"nodeType":"EmitStatement","src":"4242:73:4"}]},"documentation":{"id":1770,"nodeType":"StructuredDocumentation","src":"3896:151:4","text":" @dev Internal function to execute a single call.\n @param callItem The Call struct containing destination, value, and calldata."},"id":1805,"implemented":true,"kind":"function","modifiers":[],"name":"_executeCall","nameLocation":"4061:12:4","nodeType":"FunctionDefinition","parameters":{"id":1774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1773,"mutability":"mutable","name":"callItem","nameLocation":"4088:8:4","nodeType":"VariableDeclaration","scope":1805,"src":"4074:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_calldata_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call"},"typeName":{"id":1772,"nodeType":"UserDefinedTypeName","pathNode":{"id":1771,"name":"Call","nameLocations":["4074:4:4"],"nodeType":"IdentifierPath","referencedDeclaration":1593,"src":"4074:4:4"},"referencedDeclaration":1593,"src":"4074:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_Call_$1593_storage_ptr","typeString":"struct ProviderBatchCallAndSponsor.Call"}},"visibility":"internal"}],"src":"4073:24:4"},"returnParameters":{"id":1775,"nodeType":"ParameterList","parameters":[],"src":"4107:0:4"},"scope":1814,"src":"4052:270:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1808,"nodeType":"Block","src":"4439:2:4","statements":[]},"id":1809,"implemented":true,"kind":"fallback","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1806,"nodeType":"ParameterList","parameters":[],"src":"4419:2:4"},"returnParameters":{"id":1807,"nodeType":"ParameterList","parameters":[],"src":"4439:0:4"},"scope":1814,"src":"4411:30:4","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":1812,"nodeType":"Block","src":"4473:2:4","statements":[]},"id":1813,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1810,"nodeType":"ParameterList","parameters":[],"src":"4453:2:4"},"returnParameters":{"id":1811,"nodeType":"ParameterList","parameters":[],"src":"4473:0:4"},"scope":1814,"src":"4446:29:4","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":1815,"src":"894:3583:4","usedErrors":[],"usedEvents":[1620,1629]}],"src":"32:4445:4"},"id":4}}}} \ No newline at end of file diff --git a/artifacts/contracts/Gateway.sol/Gateway.dbg.json b/artifacts/contracts/Gateway.sol/Gateway.dbg.json deleted file mode 100644 index 8e1cc8f..0000000 --- a/artifacts/contracts/Gateway.sol/Gateway.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../build-info/0fd1142d7618bca75338f2d6daf62308.json" -} diff --git a/artifacts/contracts/Gateway.sol/Gateway.json b/artifacts/contracts/Gateway.sol/Gateway.json index 0eeef9f..586dc7f 100644 --- a/artifacts/contracts/Gateway.sol/Gateway.json +++ b/artifacts/contracts/Gateway.sol/Gateway.json @@ -1,5 +1,5 @@ { - "_format": "hh-sol-artifact-1", + "_format": "hh3-artifact-1", "contractName": "Gateway", "sourceName": "contracts/Gateway.sol", "abi": [ @@ -145,43 +145,6 @@ "name": "OrderRefunded", "type": "event" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "bytes32", - "name": "splitOrderId", - "type": "bytes32" - }, - { - "indexed": true, - "internalType": "bytes32", - "name": "orderId", - "type": "bytes32" - }, - { - "indexed": true, - "internalType": "address", - "name": "liquidityProvider", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint64", - "name": "settlePercent", - "type": "uint64" - }, - { - "indexed": false, - "internalType": "uint64", - "name": "rebatePercent", - "type": "uint64" - } - ], - "name": "OrderSettled", - "type": "event" - }, { "anonymous": false, "inputs": [ @@ -255,6 +218,12 @@ { "anonymous": false, "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, { "indexed": true, "internalType": "address", @@ -309,6 +278,92 @@ "name": "SettingManagerBool", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -415,6 +470,19 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { @@ -686,6 +754,55 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [ { @@ -714,7 +831,7 @@ "type": "uint64" } ], - "name": "settle", + "name": "settleOut", "outputs": [ { "internalType": "bool", @@ -764,8 +881,11 @@ "type": "function" } ], - "bytecode": "0x608060405234801562000010575f80fd5b50620000216200002760201b60201c565b620001c6565b5f60019054906101000a900460ff161562000079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000070906200016e565b60405180910390fd5b60ff80165f8054906101000a900460ff1660ff1614620000e85760ff5f806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000df9190620001ab565b60405180910390a15b565b5f82825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e6974695f8201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b5f62000156602783620000ea565b91506200016382620000fa565b604082019050919050565b5f6020820190508181035f830152620001878162000148565b9050919050565b5f60ff82169050919050565b620001a5816200018e565b82525050565b5f602082019050620001c05f8301846200019a565b92915050565b6148fb80620001d45f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638129fc1c116100a05780638da5cb5b1161006f5780638da5cb5b14610290578063cd992400146102ae578063df51b359146102ca578063e30c3978146102fa578063f2fde38b1461031857610114565b80638129fc1c146102305780638456cb591461023a578063898861b0146102445780638bfa05491461026057610114565b806371eedb88116100e757806371eedb881461016657806375151b6314610196578063768c6ec0146101c657806379ba5097146101f6578063809804f71461020057610114565b80633f4ba83a1461011857806340ebc677146101225780635c975abb1461013e578063715018a61461015c575b5f80fd5b610120610334565b005b61013c6004803603810190610137919061313c565b610346565b005b61014661060a565b6040516101539190613194565b60405180910390f35b61016461061f565b005b610180600480360381019061017b91906131e0565b610632565b60405161018d9190613194565b60405180910390f35b6101b060048036038101906101ab919061321e565b610a8d565b6040516101bd9190613194565b60405180910390f35b6101e060048036038101906101db9190613249565b610ae5565b6040516101ed9190613391565b60405180910390f35b6101fe610cf5565b005b61021a60048036038101906102159190613436565b610d81565b6040516102279190613502565b60405180910390f35b610238611408565b005b610242611552565b005b61025e6004803603810190610259919061351b565b611564565b005b61027a6004803603810190610275919061321e565b6117e2565b60405161028791906135e5565b60405180910390f35b610298611860565b6040516102a5919061360d565b60405180910390f35b6102c860048036038101906102c39190613626565b611888565b005b6102e460048036038101906102df91906136b3565b611a0a565b6040516102f19190613194565b60405180910390f35b6103026120b3565b60405161030f919061360d565b60405180910390f35b610332600480360381019061032d919061321e565b6120db565b005b61033c612187565b610344612205565b565b61034e612187565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b390613784565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036104be578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046b90613812565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506105ba565b7f61676772656761746f720000000000000000000000000000000000000000000083036105b9578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056b906138a0565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610605578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b5f60cd5f9054906101000a900460ff16905090565b610627612187565b6106305f612266565b565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b990613908565b60405180910390fd5b60ff5f8381526020019081526020015f206005015f9054906101000a900460ff1615610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90613970565b60405180910390fd5b60ff5f8381526020019081526020015f2060050160019054906101000a900460ff1615610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906139d8565b60405180910390fd5b8260ff5f8481526020019081526020015f206004015410156107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390613a40565b60405180910390fd5b5f8311156108b65760ff5f8381526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610874929190613a6d565b6020604051808303815f875af1158015610890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b49190613abe565b505b600160ff5f8481526020019081526020015f2060050160016101000a81548160ff0219169083151502179055505f60ff5f8481526020019081526020015f206006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f8360ff5f8581526020019081526020015f20600701546109469190613b16565b905060ff5f8481526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8681526020019081526020015f2060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660ff5f8781526020019081526020015f2060030154846109ec9190613b49565b6040518363ffffffff1660e01b8152600401610a09929190613a6d565b6020604051808303815f875af1158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190613abe565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610a7a9190613b7c565b60405180910390a2600191505092915050565b5f6001609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610adc5760019050610ae0565b5f90505b919050565b610aed612fd0565b60ff5f8381526020019081526020015f20604051806101400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820154815260200160048201548152602001600582015f9054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600682015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b5f610cfe612296565b90508073ffffffffffffffffffffffffffffffffffffffff16610d1f6120b3565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613c05565b60405180910390fd5b610d7e81612266565b50565b5f610d8a61229d565b610d9789898689896122e7565b5f8383905003610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613c6d565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888c610e069190613b49565b6040518463ffffffff1660e01b8152600401610e2493929190613c8b565b6020604051808303815f875af1158015610e40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e649190613abe565b506101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190610eb390613cc0565b9190505550336101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205446604051602001610f0b93929190613d07565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff1660ff5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613d86565b60405180910390fd5b5f6064886bffffffffffffffffffffffff1603611024575f90505f861161101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613dee565b60405180910390fd5b6110fd565b5f609b5f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f8160600151116110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390613e56565b60405180910390fd5b60975481606001518b6110ef9190613e74565b6110f99190613ee2565b9150505b6040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018b73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020015f151581526020015f151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff1681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610100820151816006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a6040516113f3959493929190613f95565b60405180910390a45098975050505050505050565b5f8060019054906101000a900460ff16159050808015611437575060015f8054906101000a900460ff1660ff16105b80611463575061144630612494565b158015611462575060015f8054906101000a900460ff1660ff16145b5b6114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614051565b60405180910390fd5b60015f806101000a81548160ff021916908360ff16021790555080156114dd5760015f60016101000a81548160ff0219169083151502179055505b620186a06097819055506114ef6124b6565b6114f761250e565b801561154f575f8060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161154691906140b4565b60405180910390a15b50565b61155a612187565b611562612566565b565b61156c612187565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390614117565b60405180910390fd5b609754841115611631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611628906141a5565b60405180910390fd5b609754831115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614233565b60405180910390fd5b6097548211156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906142c1565b60405180910390fd5b609754811115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061434f565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516117d3949392919061436d565b60405180910390a25050505050565b6117ea613083565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611890612187565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613784565b60405180910390fd5b600181148061190d5750600281145b61194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906143fa565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611a055780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516119fc9190613b7c565b60405180910390a35b505050565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190613908565b60405180910390fd5b60ff5f8681526020019081526020015f206005015f9054906101000a900460ff1615611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613970565b60405180910390fd5b60ff5f8681526020019081526020015f2060050160019054906101000a900460ff1615611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906139d8565b60405180910390fd5b6097548267ffffffffffffffff161115611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614462565b60405180910390fd5b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f60ff5f8881526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690508467ffffffffffffffff1660ff5f8981526020019081526020015f206006015f8282829054906101000a90046bffffffffffffffffffffffff16611c649190614480565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f60ff5f8981526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d4657600160ff5f8981526020019081526020015f206005015f6101000a81548160ff0219169083151502179055505f60ff5f8981526020019081526020015f206003015414158015611d3657505f60ff5f8981526020019081526020015f206004015414155b15611d4557611d44876125c8565b5b5b5f60ff5f8981526020019081526020015f206003015414158015611d7d57505f60ff5f8981526020019081526020015f2060040154145b15611d8e57611d8d87878761293e565b5b5f818667ffffffffffffffff1660ff5f8b81526020019081526020015f2060070154611dba9190613e74565b611dc49190613ee2565b90508060ff5f8a81526020019081526020015f206007015f828254611de99190613b16565b925050819055505f60ff5f8a81526020019081526020015f206004015414611fd4575f609b5f60ff5f8c81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f609754826060015184611ec49190613e74565b611ece9190613ee2565b90508083611edc9190613b16565b92505f8767ffffffffffffffff1614611f33575f6097548867ffffffffffffffff1683611f099190613e74565b611f139190613ee2565b90508082611f219190613b16565b91508084611f2f9190613b49565b9350505b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611f90929190613a6d565b6020604051808303815f875af1158015611fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd09190613abe565b5050505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb88836040518363ffffffff1660e01b815260040161200f929190613a6d565b6020604051808303815f875af115801561202b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204f9190613abe565b508673ffffffffffffffffffffffffffffffffffffffff16887f57c683de2e7c8263c7f57fd108416b9bdaa7a6e7f2e4e7102c3b6f9e37f1cc378b898960405161209b939291906144ce565b60405180910390a36001935050505095945050505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120e3612187565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16612142611860565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61218f612296565b73ffffffffffffffffffffffffffffffffffffffff166121ad611860565b73ffffffffffffffffffffffffffffffffffffffff1614612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa9061454d565b60405180910390fd5b565b61220d612dfb565b5f60cd5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61224f612296565b60405161225c919061360d565b60405180910390a1565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561229381612e44565b50565b5f33905090565b6122a561060a565b156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906145b5565b60405180910390fd5b565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e9061461d565b60405180910390fd5b5f84036123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614685565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e906146ed565b60405180910390fd5b5f811461248d575f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614755565b60405180910390fd5b5b5050505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f60019054906101000a900460ff16612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb906147e3565b60405180910390fd5b61250c612f07565b565b5f60019054906101000a900460ff1661255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906147e3565b60405180910390fd5b612564612f67565b565b61256e61229d565b600160cd5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125b1612296565b6040516125be919061360d565b60405180910390a1565b5f609b5f60ff5f8581526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8481526020019081526020015f206003015490505f609754836040015160975461269b9190613b16565b836126a69190613e74565b6126b09190613ee2565b90505f81836126bf9190613b16565b90505f8211156127ac5760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8881526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161276a929190613a6d565b6020604051808303815f875af1158015612786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127aa9190613abe565b505b5f8111156128865760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612844929190613a6d565b6020604051808303815f875af1158015612860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128849190613abe565b505b8160ff5f8781526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3847f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a838360405161292f929190614801565b60405180910390a25050505050565b5f609b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8681526020019081526020015f206003015490505f609754835f015183612a0e9190613e74565b612a189190613ee2565b90505f6097548567ffffffffffffffff1683612a349190613e74565b612a3e9190613ee2565b90505f609754856020015183612a549190613e74565b612a5e9190613ee2565b90505f8385612a6d9190613b16565b90505f8114158015612ab757505f60ff5f8b81526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16145b15612b9f5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8c81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612b5d929190613a6d565b6020604051808303815f875af1158015612b79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b9d9190613abe565b505b5f8214612c785760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612c36929190613a6d565b6020604051808303815f875af1158015612c52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c769190613abe565b505b8183612c849190613b16565b92505f8314612d3d5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb89856040518363ffffffff1660e01b8152600401612cfb929190613a6d565b6020604051808303815f875af1158015612d17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d3b9190613abe565b505b8060ff5f8b81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3887f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4828585604051612de893929190614828565b60405180910390a2505050505050505050565b612e0361060a565b612e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e39906148a7565b60405180910390fd5b565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60019054906101000a900460ff16612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c906147e3565b60405180910390fd5b612f65612f60612296565b612266565b565b5f60019054906101000a900460ff16612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac906147e3565b60405180910390fd5b5f60cd5f6101000a81548160ff021916908315150217905550565b6040518061014001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f151581526020015f151581526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f6bffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f819050919050565b6130c1816130af565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61310b826130e2565b9050919050565b61311b81613101565b8114613125575f80fd5b50565b5f8135905061313681613112565b92915050565b5f8060408385031215613152576131516130a7565b5b5f61315f858286016130ce565b925050602061317085828601613128565b9150509250929050565b5f8115159050919050565b61318e8161317a565b82525050565b5f6020820190506131a75f830184613185565b92915050565b5f819050919050565b6131bf816131ad565b81146131c9575f80fd5b50565b5f813590506131da816131b6565b92915050565b5f80604083850312156131f6576131f56130a7565b5b5f613203858286016131cc565b9250506020613214858286016130ce565b9150509250929050565b5f60208284031215613233576132326130a7565b5b5f61324084828501613128565b91505092915050565b5f6020828403121561325e5761325d6130a7565b5b5f61326b848285016130ce565b91505092915050565b61327d81613101565b82525050565b61328c816131ad565b82525050565b61329b8161317a565b82525050565b5f6bffffffffffffffffffffffff82169050919050565b6132c1816132a1565b82525050565b61014082015f8201516132dc5f850182613274565b5060208201516132ef6020850182613274565b5060408201516133026040850182613274565b5060608201516133156060850182613283565b5060808201516133286080850182613283565b5060a082015161333b60a0850182613292565b5060c082015161334e60c0850182613292565b5060e082015161336160e0850182613274565b506101008201516133766101008501826132b8565b5061012082015161338b610120850182613283565b50505050565b5f610140820190506133a55f8301846132c7565b92915050565b6133b4816132a1565b81146133be575f80fd5b50565b5f813590506133cf816133ab565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133f6576133f56133d5565b5b8235905067ffffffffffffffff811115613413576134126133d9565b5b60208301915083600182028301111561342f5761342e6133dd565b5b9250929050565b5f805f805f805f8060e0898b031215613452576134516130a7565b5b5f61345f8b828c01613128565b98505060206134708b828c016131cc565b97505060406134818b828c016133c1565b96505060606134928b828c01613128565b95505060806134a38b828c016131cc565b94505060a06134b48b828c01613128565b93505060c089013567ffffffffffffffff8111156134d5576134d46130ab565b5b6134e18b828c016133e1565b92509250509295985092959890939650565b6134fc816130af565b82525050565b5f6020820190506135155f8301846134f3565b92915050565b5f805f805f60a08688031215613534576135336130a7565b5b5f61354188828901613128565b9550506020613552888289016131cc565b9450506040613563888289016131cc565b9350506060613574888289016131cc565b9250506080613585888289016131cc565b9150509295509295909350565b608082015f8201516135a65f850182613283565b5060208201516135b96020850182613283565b5060408201516135cc6040850182613283565b5060608201516135df6060850182613283565b50505050565b5f6080820190506135f85f830184613592565b92915050565b61360781613101565b82525050565b5f6020820190506136205f8301846135fe565b92915050565b5f805f6060848603121561363d5761363c6130a7565b5b5f61364a868287016130ce565b935050602061365b86828701613128565b925050604061366c868287016131cc565b9150509250925092565b5f67ffffffffffffffff82169050919050565b61369281613676565b811461369c575f80fd5b50565b5f813590506136ad81613689565b92915050565b5f805f805f60a086880312156136cc576136cb6130a7565b5b5f6136d9888289016130ce565b95505060206136ea888289016130ce565b94505060406136fb88828901613128565b935050606061370c8882890161369f565b925050608061371d8882890161369f565b9150509295509295909350565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f61376e60158361372a565b91506137798261373a565b602082019050919050565b5f6020820190508181035f83015261379b81613762565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f6137fc60258361372a565b9150613807826137a2565b604082019050919050565b5f6020820190508181035f830152613829816137f0565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f61388a60278361372a565b915061389582613830565b604082019050919050565b5f6020820190508181035f8301526138b78161387e565b9050919050565b7f4f6e6c7941676772656761746f720000000000000000000000000000000000005f82015250565b5f6138f2600e8361372a565b91506138fd826138be565b602082019050919050565b5f6020820190508181035f83015261391f816138e6565b9050919050565b7f4f7264657246756c66696c6c65640000000000000000000000000000000000005f82015250565b5f61395a600e8361372a565b915061396582613926565b602082019050919050565b5f6020820190508181035f8301526139878161394e565b9050919050565b7f4f72646572526566756e646564000000000000000000000000000000000000005f82015250565b5f6139c2600d8361372a565b91506139cd8261398e565b602082019050919050565b5f6020820190508181035f8301526139ef816139b6565b9050919050565b7f4665654578636565647350726f746f636f6c46656500000000000000000000005f82015250565b5f613a2a60158361372a565b9150613a35826139f6565b602082019050919050565b5f6020820190508181035f830152613a5781613a1e565b9050919050565b613a67816131ad565b82525050565b5f604082019050613a805f8301856135fe565b613a8d6020830184613a5e565b9392505050565b613a9d8161317a565b8114613aa7575f80fd5b50565b5f81519050613ab881613a94565b92915050565b5f60208284031215613ad357613ad26130a7565b5b5f613ae084828501613aaa565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b20826131ad565b9150613b2b836131ad565b9250828203905081811115613b4357613b42613ae9565b5b92915050565b5f613b53826131ad565b9150613b5e836131ad565b9250828201905080821115613b7657613b75613ae9565b5b92915050565b5f602082019050613b8f5f830184613a5e565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613bef60298361372a565b9150613bfa82613b95565b604082019050919050565b5f6020820190508181035f830152613c1c81613be3565b9050919050565b7f496e76616c69644d6573736167654861736800000000000000000000000000005f82015250565b5f613c5760128361372a565b9150613c6282613c23565b602082019050919050565b5f6020820190508181035f830152613c8481613c4b565b9050919050565b5f606082019050613c9e5f8301866135fe565b613cab60208301856135fe565b613cb86040830184613a5e565b949350505050565b5f613cca826131ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cfc57613cfb613ae9565b5b600182019050919050565b5f606082019050613d1a5f8301866135fe565b613d276020830185613a5e565b613d346040830184613a5e565b949350505050565b7f4f72646572416c726561647945786973747300000000000000000000000000005f82015250565b5f613d7060128361372a565b9150613d7b82613d3c565b602082019050919050565b5f6020820190508181035f830152613d9d81613d64565b9050919050565b7f53656e64657246656549735a65726f00000000000000000000000000000000005f82015250565b5f613dd8600f8361372a565b9150613de382613da4565b602082019050919050565b5f6020820190508181035f830152613e0581613dcc565b9050919050565b7f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000005f82015250565b5f613e40601d8361372a565b9150613e4b82613e0c565b602082019050919050565b5f6020820190508181035f830152613e6d81613e34565b9050919050565b5f613e7e826131ad565b9150613e89836131ad565b9250828202613e97816131ad565b91508282048414831517613eae57613ead613ae9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613eec826131ad565b9150613ef7836131ad565b925082613f0757613f06613eb5565b5b828204905092915050565b5f819050919050565b5f613f35613f30613f2b846132a1565b613f12565b6131ad565b9050919050565b613f4581613f1b565b82525050565b828183375f83830152505050565b5f601f19601f8301169050919050565b5f613f74838561372a565b9350613f81838584613f4b565b613f8a83613f59565b840190509392505050565b5f608082019050613fa85f830188613a5e565b613fb560208301876134f3565b613fc26040830186613f3c565b8181036060830152613fd5818486613f69565b90509695505050505050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f61403b602e8361372a565b915061404682613fe1565b604082019050919050565b5f6020820190508181035f8301526140688161402f565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f61409e6140996140948461406f565b613f12565b614078565b9050919050565b6140ae81614084565b82525050565b5f6020820190506140c75f8301846140a5565b92915050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f614101601c8361372a565b915061410c826140cd565b602082019050919050565b5f6020820190508181035f83015261412e816140f5565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f61418f60238361372a565b915061419a82614135565b604082019050919050565b5f6020820190508181035f8301526141bc81614183565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f61421d60278361372a565b9150614228826141c3565b604082019050919050565b5f6020820190508181035f83015261424a81614211565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f6142ab60258361372a565b91506142b682614251565b604082019050919050565b5f6020820190508181035f8301526142d88161429f565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f614339602a8361372a565b9150614344826142df565b604082019050919050565b5f6020820190508181035f8301526143668161432d565b9050919050565b5f6080820190506143805f830187613a5e565b61438d6020830186613a5e565b61439a6040830185613a5e565b6143a76060830184613a5e565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6143e460178361372a565b91506143ef826143b0565b602082019050919050565b5f6020820190508181035f830152614411816143d8565b9050919050565b7f496e76616c696452656261746550657263656e740000000000000000000000005f82015250565b5f61444c60148361372a565b915061445782614418565b602082019050919050565b5f6020820190508181035f83015261447981614440565b9050919050565b5f61448a826132a1565b9150614495836132a1565b925082820390506bffffffffffffffffffffffff8111156144b9576144b8613ae9565b5b92915050565b6144c881613676565b82525050565b5f6060820190506144e15f8301866134f3565b6144ee60208301856144bf565b6144fb60408301846144bf565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61453760208361372a565b915061454282614503565b602082019050919050565b5f6020820190508181035f8301526145648161452b565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61459f60108361372a565b91506145aa8261456b565b602082019050919050565b5f6020820190508181035f8301526145cc81614593565b9050919050565b7f546f6b656e4e6f74537570706f727465640000000000000000000000000000005f82015250565b5f61460760118361372a565b9150614612826145d3565b602082019050919050565b5f6020820190508181035f830152614634816145fb565b9050919050565b7f416d6f756e7449735a65726f00000000000000000000000000000000000000005f82015250565b5f61466f600c8361372a565b915061467a8261463b565b602082019050919050565b5f6020820190508181035f83015261469c81614663565b9050919050565b7f5468726f775a65726f41646472657373000000000000000000000000000000005f82015250565b5f6146d760108361372a565b91506146e2826146a3565b602082019050919050565b5f6020820190508181035f830152614704816146cb565b9050919050565b7f496e76616c696453656e646572466565526563697069656e74000000000000005f82015250565b5f61473f60198361372a565b915061474a8261470b565b602082019050919050565b5f6020820190508181035f83015261476c81614733565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f6147cd602b8361372a565b91506147d882614773565b604082019050919050565b5f6020820190508181035f8301526147fa816147c1565b9050919050565b5f6040820190506148145f830185613a5e565b6148216020830184613a5e565b9392505050565b5f60608201905061483b5f830186613a5e565b6148486020830185613a5e565b6148556040830184613a5e565b949350505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f61489160148361372a565b915061489c8261485d565b602082019050919050565b5f6020820190508181035f8301526148be81614885565b905091905056fea2646970667358221220039a17c0ebb0f09c3837d6bfd7843968f1541a8d63bc2784f173950574c7bec164736f6c63430008140033", - "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638129fc1c116100a05780638da5cb5b1161006f5780638da5cb5b14610290578063cd992400146102ae578063df51b359146102ca578063e30c3978146102fa578063f2fde38b1461031857610114565b80638129fc1c146102305780638456cb591461023a578063898861b0146102445780638bfa05491461026057610114565b806371eedb88116100e757806371eedb881461016657806375151b6314610196578063768c6ec0146101c657806379ba5097146101f6578063809804f71461020057610114565b80633f4ba83a1461011857806340ebc677146101225780635c975abb1461013e578063715018a61461015c575b5f80fd5b610120610334565b005b61013c6004803603810190610137919061313c565b610346565b005b61014661060a565b6040516101539190613194565b60405180910390f35b61016461061f565b005b610180600480360381019061017b91906131e0565b610632565b60405161018d9190613194565b60405180910390f35b6101b060048036038101906101ab919061321e565b610a8d565b6040516101bd9190613194565b60405180910390f35b6101e060048036038101906101db9190613249565b610ae5565b6040516101ed9190613391565b60405180910390f35b6101fe610cf5565b005b61021a60048036038101906102159190613436565b610d81565b6040516102279190613502565b60405180910390f35b610238611408565b005b610242611552565b005b61025e6004803603810190610259919061351b565b611564565b005b61027a6004803603810190610275919061321e565b6117e2565b60405161028791906135e5565b60405180910390f35b610298611860565b6040516102a5919061360d565b60405180910390f35b6102c860048036038101906102c39190613626565b611888565b005b6102e460048036038101906102df91906136b3565b611a0a565b6040516102f19190613194565b60405180910390f35b6103026120b3565b60405161030f919061360d565b60405180910390f35b610332600480360381019061032d919061321e565b6120db565b005b61033c612187565b610344612205565b565b61034e612187565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b390613784565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036104be578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046b90613812565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506105ba565b7f61676772656761746f720000000000000000000000000000000000000000000083036105b9578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056b906138a0565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610605578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b5f60cd5f9054906101000a900460ff16905090565b610627612187565b6106305f612266565b565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b990613908565b60405180910390fd5b60ff5f8381526020019081526020015f206005015f9054906101000a900460ff1615610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90613970565b60405180910390fd5b60ff5f8381526020019081526020015f2060050160019054906101000a900460ff1615610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906139d8565b60405180910390fd5b8260ff5f8481526020019081526020015f206004015410156107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390613a40565b60405180910390fd5b5f8311156108b65760ff5f8381526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610874929190613a6d565b6020604051808303815f875af1158015610890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b49190613abe565b505b600160ff5f8481526020019081526020015f2060050160016101000a81548160ff0219169083151502179055505f60ff5f8481526020019081526020015f206006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f8360ff5f8581526020019081526020015f20600701546109469190613b16565b905060ff5f8481526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8681526020019081526020015f2060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660ff5f8781526020019081526020015f2060030154846109ec9190613b49565b6040518363ffffffff1660e01b8152600401610a09929190613a6d565b6020604051808303815f875af1158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190613abe565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610a7a9190613b7c565b60405180910390a2600191505092915050565b5f6001609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610adc5760019050610ae0565b5f90505b919050565b610aed612fd0565b60ff5f8381526020019081526020015f20604051806101400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820154815260200160048201548152602001600582015f9054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600682015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b5f610cfe612296565b90508073ffffffffffffffffffffffffffffffffffffffff16610d1f6120b3565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613c05565b60405180910390fd5b610d7e81612266565b50565b5f610d8a61229d565b610d9789898689896122e7565b5f8383905003610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613c6d565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888c610e069190613b49565b6040518463ffffffff1660e01b8152600401610e2493929190613c8b565b6020604051808303815f875af1158015610e40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e649190613abe565b506101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190610eb390613cc0565b9190505550336101005f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205446604051602001610f0b93929190613d07565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff1660ff5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613d86565b60405180910390fd5b5f6064886bffffffffffffffffffffffff1603611024575f90505f861161101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613dee565b60405180910390fd5b6110fd565b5f609b5f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f8160600151116110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390613e56565b60405180910390fd5b60975481606001518b6110ef9190613e74565b6110f99190613ee2565b9150505b6040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018b73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020015f151581526020015f151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff1681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610100820151816006015f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a6040516113f3959493929190613f95565b60405180910390a45098975050505050505050565b5f8060019054906101000a900460ff16159050808015611437575060015f8054906101000a900460ff1660ff16105b80611463575061144630612494565b158015611462575060015f8054906101000a900460ff1660ff16145b5b6114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614051565b60405180910390fd5b60015f806101000a81548160ff021916908360ff16021790555080156114dd5760015f60016101000a81548160ff0219169083151502179055505b620186a06097819055506114ef6124b6565b6114f761250e565b801561154f575f8060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161154691906140b4565b60405180910390a15b50565b61155a612187565b611562612566565b565b61156c612187565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390614117565b60405180910390fd5b609754841115611631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611628906141a5565b60405180910390fd5b609754831115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90614233565b60405180910390fd5b6097548211156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906142c1565b60405180910390fd5b609754811115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061434f565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516117d3949392919061436d565b60405180910390a25050505050565b6117ea613083565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611890612187565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613784565b60405180910390fd5b600181148061190d5750600281145b61194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906143fa565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611a055780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516119fc9190613b7c565b60405180910390a35b505050565b5f60995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190613908565b60405180910390fd5b60ff5f8681526020019081526020015f206005015f9054906101000a900460ff1615611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613970565b60405180910390fd5b60ff5f8681526020019081526020015f2060050160019054906101000a900460ff1615611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906139d8565b60405180910390fd5b6097548267ffffffffffffffff161115611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614462565b60405180910390fd5b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f60ff5f8881526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690508467ffffffffffffffff1660ff5f8981526020019081526020015f206006015f8282829054906101000a90046bffffffffffffffffffffffff16611c649190614480565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f60ff5f8981526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d4657600160ff5f8981526020019081526020015f206005015f6101000a81548160ff0219169083151502179055505f60ff5f8981526020019081526020015f206003015414158015611d3657505f60ff5f8981526020019081526020015f206004015414155b15611d4557611d44876125c8565b5b5b5f60ff5f8981526020019081526020015f206003015414158015611d7d57505f60ff5f8981526020019081526020015f2060040154145b15611d8e57611d8d87878761293e565b5b5f818667ffffffffffffffff1660ff5f8b81526020019081526020015f2060070154611dba9190613e74565b611dc49190613ee2565b90508060ff5f8a81526020019081526020015f206007015f828254611de99190613b16565b925050819055505f60ff5f8a81526020019081526020015f206004015414611fd4575f609b5f60ff5f8c81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f609754826060015184611ec49190613e74565b611ece9190613ee2565b90508083611edc9190613b16565b92505f8767ffffffffffffffff1614611f33575f6097548867ffffffffffffffff1683611f099190613e74565b611f139190613ee2565b90508082611f219190613b16565b91508084611f2f9190613b49565b9350505b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611f90929190613a6d565b6020604051808303815f875af1158015611fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd09190613abe565b5050505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb88836040518363ffffffff1660e01b815260040161200f929190613a6d565b6020604051808303815f875af115801561202b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204f9190613abe565b508673ffffffffffffffffffffffffffffffffffffffff16887f57c683de2e7c8263c7f57fd108416b9bdaa7a6e7f2e4e7102c3b6f9e37f1cc378b898960405161209b939291906144ce565b60405180910390a36001935050505095945050505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120e3612187565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16612142611860565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61218f612296565b73ffffffffffffffffffffffffffffffffffffffff166121ad611860565b73ffffffffffffffffffffffffffffffffffffffff1614612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa9061454d565b60405180910390fd5b565b61220d612dfb565b5f60cd5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61224f612296565b60405161225c919061360d565b60405180910390a1565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561229381612e44565b50565b5f33905090565b6122a561060a565b156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906145b5565b60405180910390fd5b565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e9061461d565b60405180910390fd5b5f84036123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614685565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e906146ed565b60405180910390fd5b5f811461248d575f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614755565b60405180910390fd5b5b5050505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f60019054906101000a900460ff16612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb906147e3565b60405180910390fd5b61250c612f07565b565b5f60019054906101000a900460ff1661255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906147e3565b60405180910390fd5b612564612f67565b565b61256e61229d565b600160cd5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125b1612296565b6040516125be919061360d565b60405180910390a1565b5f609b5f60ff5f8581526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8481526020019081526020015f206003015490505f609754836040015160975461269b9190613b16565b836126a69190613e74565b6126b09190613ee2565b90505f81836126bf9190613b16565b90505f8211156127ac5760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8881526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161276a929190613a6d565b6020604051808303815f875af1158015612786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127aa9190613abe565b505b5f8111156128865760ff5f8681526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612844929190613a6d565b6020604051808303815f875af1158015612860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128849190613abe565b505b8160ff5f8781526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3847f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a838360405161292f929190614801565b60405180910390a25050505050565b5f609b5f60ff5f8781526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f8201548152602001600182015481526020016002820154815260200160038201548152505090505f60ff5f8681526020019081526020015f206003015490505f609754835f015183612a0e9190613e74565b612a189190613ee2565b90505f6097548567ffffffffffffffff1683612a349190613e74565b612a3e9190613ee2565b90505f609754856020015183612a549190613e74565b612a5e9190613ee2565b90505f8385612a6d9190613b16565b90505f8114158015612ab757505f60ff5f8b81526020019081526020015f206006015f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16145b15612b9f5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60ff5f8c81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612b5d929190613a6d565b6020604051808303815f875af1158015612b79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b9d9190613abe565b505b5f8214612c785760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612c36929190613a6d565b6020604051808303815f875af1158015612c52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c769190613abe565b505b8183612c849190613b16565b92505f8314612d3d5760ff5f8a81526020019081526020015f206001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb89856040518363ffffffff1660e01b8152600401612cfb929190613a6d565b6020604051808303815f875af1158015612d17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d3b9190613abe565b505b8060ff5f8b81526020019081526020015f206002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a3887f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a4828585604051612de893929190614828565b60405180910390a2505050505050505050565b612e0361060a565b612e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e39906148a7565b60405180910390fd5b565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60019054906101000a900460ff16612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c906147e3565b60405180910390fd5b612f65612f60612296565b612266565b565b5f60019054906101000a900460ff16612fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fac906147e3565b60405180910390fd5b5f60cd5f6101000a81548160ff021916908315150217905550565b6040518061014001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f151581526020015f151581526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f6bffffffffffffffffffffffff1681526020015f81525090565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f80fd5b5f819050919050565b6130c1816130af565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61310b826130e2565b9050919050565b61311b81613101565b8114613125575f80fd5b50565b5f8135905061313681613112565b92915050565b5f8060408385031215613152576131516130a7565b5b5f61315f858286016130ce565b925050602061317085828601613128565b9150509250929050565b5f8115159050919050565b61318e8161317a565b82525050565b5f6020820190506131a75f830184613185565b92915050565b5f819050919050565b6131bf816131ad565b81146131c9575f80fd5b50565b5f813590506131da816131b6565b92915050565b5f80604083850312156131f6576131f56130a7565b5b5f613203858286016131cc565b9250506020613214858286016130ce565b9150509250929050565b5f60208284031215613233576132326130a7565b5b5f61324084828501613128565b91505092915050565b5f6020828403121561325e5761325d6130a7565b5b5f61326b848285016130ce565b91505092915050565b61327d81613101565b82525050565b61328c816131ad565b82525050565b61329b8161317a565b82525050565b5f6bffffffffffffffffffffffff82169050919050565b6132c1816132a1565b82525050565b61014082015f8201516132dc5f850182613274565b5060208201516132ef6020850182613274565b5060408201516133026040850182613274565b5060608201516133156060850182613283565b5060808201516133286080850182613283565b5060a082015161333b60a0850182613292565b5060c082015161334e60c0850182613292565b5060e082015161336160e0850182613274565b506101008201516133766101008501826132b8565b5061012082015161338b610120850182613283565b50505050565b5f610140820190506133a55f8301846132c7565b92915050565b6133b4816132a1565b81146133be575f80fd5b50565b5f813590506133cf816133ab565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133f6576133f56133d5565b5b8235905067ffffffffffffffff811115613413576134126133d9565b5b60208301915083600182028301111561342f5761342e6133dd565b5b9250929050565b5f805f805f805f8060e0898b031215613452576134516130a7565b5b5f61345f8b828c01613128565b98505060206134708b828c016131cc565b97505060406134818b828c016133c1565b96505060606134928b828c01613128565b95505060806134a38b828c016131cc565b94505060a06134b48b828c01613128565b93505060c089013567ffffffffffffffff8111156134d5576134d46130ab565b5b6134e18b828c016133e1565b92509250509295985092959890939650565b6134fc816130af565b82525050565b5f6020820190506135155f8301846134f3565b92915050565b5f805f805f60a08688031215613534576135336130a7565b5b5f61354188828901613128565b9550506020613552888289016131cc565b9450506040613563888289016131cc565b9350506060613574888289016131cc565b9250506080613585888289016131cc565b9150509295509295909350565b608082015f8201516135a65f850182613283565b5060208201516135b96020850182613283565b5060408201516135cc6040850182613283565b5060608201516135df6060850182613283565b50505050565b5f6080820190506135f85f830184613592565b92915050565b61360781613101565b82525050565b5f6020820190506136205f8301846135fe565b92915050565b5f805f6060848603121561363d5761363c6130a7565b5b5f61364a868287016130ce565b935050602061365b86828701613128565b925050604061366c868287016131cc565b9150509250925092565b5f67ffffffffffffffff82169050919050565b61369281613676565b811461369c575f80fd5b50565b5f813590506136ad81613689565b92915050565b5f805f805f60a086880312156136cc576136cb6130a7565b5b5f6136d9888289016130ce565b95505060206136ea888289016130ce565b94505060406136fb88828901613128565b935050606061370c8882890161369f565b925050608061371d8882890161369f565b9150509295509295909350565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f61376e60158361372a565b91506137798261373a565b602082019050919050565b5f6020820190508181035f83015261379b81613762565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f6137fc60258361372a565b9150613807826137a2565b604082019050919050565b5f6020820190508181035f830152613829816137f0565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f61388a60278361372a565b915061389582613830565b604082019050919050565b5f6020820190508181035f8301526138b78161387e565b9050919050565b7f4f6e6c7941676772656761746f720000000000000000000000000000000000005f82015250565b5f6138f2600e8361372a565b91506138fd826138be565b602082019050919050565b5f6020820190508181035f83015261391f816138e6565b9050919050565b7f4f7264657246756c66696c6c65640000000000000000000000000000000000005f82015250565b5f61395a600e8361372a565b915061396582613926565b602082019050919050565b5f6020820190508181035f8301526139878161394e565b9050919050565b7f4f72646572526566756e646564000000000000000000000000000000000000005f82015250565b5f6139c2600d8361372a565b91506139cd8261398e565b602082019050919050565b5f6020820190508181035f8301526139ef816139b6565b9050919050565b7f4665654578636565647350726f746f636f6c46656500000000000000000000005f82015250565b5f613a2a60158361372a565b9150613a35826139f6565b602082019050919050565b5f6020820190508181035f830152613a5781613a1e565b9050919050565b613a67816131ad565b82525050565b5f604082019050613a805f8301856135fe565b613a8d6020830184613a5e565b9392505050565b613a9d8161317a565b8114613aa7575f80fd5b50565b5f81519050613ab881613a94565b92915050565b5f60208284031215613ad357613ad26130a7565b5b5f613ae084828501613aaa565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b20826131ad565b9150613b2b836131ad565b9250828203905081811115613b4357613b42613ae9565b5b92915050565b5f613b53826131ad565b9150613b5e836131ad565b9250828201905080821115613b7657613b75613ae9565b5b92915050565b5f602082019050613b8f5f830184613a5e565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613bef60298361372a565b9150613bfa82613b95565b604082019050919050565b5f6020820190508181035f830152613c1c81613be3565b9050919050565b7f496e76616c69644d6573736167654861736800000000000000000000000000005f82015250565b5f613c5760128361372a565b9150613c6282613c23565b602082019050919050565b5f6020820190508181035f830152613c8481613c4b565b9050919050565b5f606082019050613c9e5f8301866135fe565b613cab60208301856135fe565b613cb86040830184613a5e565b949350505050565b5f613cca826131ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613cfc57613cfb613ae9565b5b600182019050919050565b5f606082019050613d1a5f8301866135fe565b613d276020830185613a5e565b613d346040830184613a5e565b949350505050565b7f4f72646572416c726561647945786973747300000000000000000000000000005f82015250565b5f613d7060128361372a565b9150613d7b82613d3c565b602082019050919050565b5f6020820190508181035f830152613d9d81613d64565b9050919050565b7f53656e64657246656549735a65726f00000000000000000000000000000000005f82015250565b5f613dd8600f8361372a565b9150613de382613da4565b602082019050919050565b5f6020820190508181035f830152613e0581613dcc565b9050919050565b7f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000005f82015250565b5f613e40601d8361372a565b9150613e4b82613e0c565b602082019050919050565b5f6020820190508181035f830152613e6d81613e34565b9050919050565b5f613e7e826131ad565b9150613e89836131ad565b9250828202613e97816131ad565b91508282048414831517613eae57613ead613ae9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613eec826131ad565b9150613ef7836131ad565b925082613f0757613f06613eb5565b5b828204905092915050565b5f819050919050565b5f613f35613f30613f2b846132a1565b613f12565b6131ad565b9050919050565b613f4581613f1b565b82525050565b828183375f83830152505050565b5f601f19601f8301169050919050565b5f613f74838561372a565b9350613f81838584613f4b565b613f8a83613f59565b840190509392505050565b5f608082019050613fa85f830188613a5e565b613fb560208301876134f3565b613fc26040830186613f3c565b8181036060830152613fd5818486613f69565b90509695505050505050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f61403b602e8361372a565b915061404682613fe1565b604082019050919050565b5f6020820190508181035f8301526140688161402f565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f61409e6140996140948461406f565b613f12565b614078565b9050919050565b6140ae81614084565b82525050565b5f6020820190506140c75f8301846140a5565b92915050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f614101601c8361372a565b915061410c826140cd565b602082019050919050565b5f6020820190508181035f83015261412e816140f5565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f61418f60238361372a565b915061419a82614135565b604082019050919050565b5f6020820190508181035f8301526141bc81614183565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f61421d60278361372a565b9150614228826141c3565b604082019050919050565b5f6020820190508181035f83015261424a81614211565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f6142ab60258361372a565b91506142b682614251565b604082019050919050565b5f6020820190508181035f8301526142d88161429f565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f614339602a8361372a565b9150614344826142df565b604082019050919050565b5f6020820190508181035f8301526143668161432d565b9050919050565b5f6080820190506143805f830187613a5e565b61438d6020830186613a5e565b61439a6040830185613a5e565b6143a76060830184613a5e565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6143e460178361372a565b91506143ef826143b0565b602082019050919050565b5f6020820190508181035f830152614411816143d8565b9050919050565b7f496e76616c696452656261746550657263656e740000000000000000000000005f82015250565b5f61444c60148361372a565b915061445782614418565b602082019050919050565b5f6020820190508181035f83015261447981614440565b9050919050565b5f61448a826132a1565b9150614495836132a1565b925082820390506bffffffffffffffffffffffff8111156144b9576144b8613ae9565b5b92915050565b6144c881613676565b82525050565b5f6060820190506144e15f8301866134f3565b6144ee60208301856144bf565b6144fb60408301846144bf565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61453760208361372a565b915061454282614503565b602082019050919050565b5f6020820190508181035f8301526145648161452b565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61459f60108361372a565b91506145aa8261456b565b602082019050919050565b5f6020820190508181035f8301526145cc81614593565b9050919050565b7f546f6b656e4e6f74537570706f727465640000000000000000000000000000005f82015250565b5f61460760118361372a565b9150614612826145d3565b602082019050919050565b5f6020820190508181035f830152614634816145fb565b9050919050565b7f416d6f756e7449735a65726f00000000000000000000000000000000000000005f82015250565b5f61466f600c8361372a565b915061467a8261463b565b602082019050919050565b5f6020820190508181035f83015261469c81614663565b9050919050565b7f5468726f775a65726f41646472657373000000000000000000000000000000005f82015250565b5f6146d760108361372a565b91506146e2826146a3565b602082019050919050565b5f6020820190508181035f830152614704816146cb565b9050919050565b7f496e76616c696453656e646572466565526563697069656e74000000000000005f82015250565b5f61473f60198361372a565b915061474a8261470b565b602082019050919050565b5f6020820190508181035f83015261476c81614733565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f6147cd602b8361372a565b91506147d882614773565b604082019050919050565b5f6020820190508181035f8301526147fa816147c1565b9050919050565b5f6040820190506148145f830185613a5e565b6148216020830184613a5e565b9392505050565b5f60608201905061483b5f830186613a5e565b6148486020830185613a5e565b6148556040830184613a5e565b949350505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f61489160148361372a565b915061489c8261485d565b602082019050919050565b5f6020820190508181035f8301526148be81614885565b905091905056fea2646970667358221220039a17c0ebb0f09c3837d6bfd7843968f1541a8d63bc2784f173950574c7bec164736f6c63430008140033", + "bytecode": "0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033", + "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033", "linkReferences": {}, - "deployedLinkReferences": {} -} + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/Gateway.sol", + "buildInfoId": "solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee" +} \ No newline at end of file diff --git a/artifacts/contracts/Gateway.sol/artifacts.d.ts b/artifacts/contracts/Gateway.sol/artifacts.d.ts new file mode 100644 index 0000000..69ccd10 --- /dev/null +++ b/artifacts/contracts/Gateway.sol/artifacts.d.ts @@ -0,0 +1,27 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface Gateway$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "Gateway"; + readonly sourceName: "contracts/Gateway.sol"; + readonly abi: [{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"aggregatorFee","type":"uint256"},{"indexed":false,"internalType":"uint96","name":"rate","type":"uint96"}],"name":"SettleIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"SettleOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint96","name":"_senderFee","type":"uint96"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint96","name":"_rate","type":"uint96"}],"name":"settleIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settleOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]; + readonly bytecode: "0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033"; + readonly deployedBytecode: "0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "project/contracts/Gateway.sol"; + readonly buildInfoId: "solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["Gateway"]: Gateway$Type; + ["contracts/Gateway.sol:Gateway"]: Gateway$Type; + } +} \ No newline at end of file diff --git a/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json deleted file mode 100644 index 3bbb308..0000000 --- a/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json index 579e58d..f0e1eec 100644 --- a/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json +++ b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json @@ -1,5 +1,5 @@ { - "_format": "hh-sol-artifact-1", + "_format": "hh3-artifact-1", "contractName": "GatewaySettingManager", "sourceName": "contracts/GatewaySettingManager.sol", "abi": [ @@ -317,8 +317,11 @@ "type": "function" } ], - "bytecode": "0x608060405234801561000f575f80fd5b506114c88061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610091575f3560e01c80638bfa0549116100645780638bfa0549146100e15780638da5cb5b14610111578063cd9924001461012f578063e30c39781461014b578063f2fde38b1461016957610091565b806340ebc67714610095578063715018a6146100b157806379ba5097146100bb578063898861b0146100c5575b5f80fd5b6100af60048036038101906100aa9190610c8f565b610185565b005b6100b9610449565b005b6100c361045c565b005b6100df60048036038101906100da9190610d00565b6104e8565b005b6100fb60048036038101906100f69190610d77565b610766565b6040516101089190610e04565b60405180910390f35b6101196107e4565b6040516101269190610e2c565b60405180910390f35b61014960048036038101906101449190610e45565b61080c565b005b61015361098e565b6040516101609190610e2c565b60405180910390f35b610183600480360381019061017e9190610d77565b6109b6565b005b61018d610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f290610eef565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036102fd578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036102b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102aa90610f7d565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506103f9565b7f61676772656761746f720000000000000000000000000000000000000000000083036103f8578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa9061100b565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610444578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b610451610a62565b61045a5f610ae0565b565b5f610465610b10565b90508073ffffffffffffffffffffffffffffffffffffffff1661048661098e565b73ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611099565b60405180910390fd5b6104e581610ae0565b50565b6104f0610a62565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056790611101565b60405180910390fd5b6097548411156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac9061118f565b60405180910390fd5b6097548311156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f19061121d565b60405180910390fd5b60975482111561063f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610636906112ab565b60405180910390fd5b609754811115610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90611339565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516107579493929190611366565b60405180910390a25050505050565b61076e610bda565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610814610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990610eef565b60405180910390fd5b60018114806108915750600281145b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c7906113f3565b60405180910390fd5b7f746f6b656e00000000000000000000000000000000000000000000000000000083036109895780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516109809190611411565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109be610a62565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a1d6107e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a6a610b10565b73ffffffffffffffffffffffffffffffffffffffff16610a886107e4565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611474565b60405180910390fd5b565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610b0d81610b17565b50565b5f33905090565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b610c1481610c02565b8114610c1e575f80fd5b50565b5f81359050610c2f81610c0b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c5e82610c35565b9050919050565b610c6e81610c54565b8114610c78575f80fd5b50565b5f81359050610c8981610c65565b92915050565b5f8060408385031215610ca557610ca4610bfe565b5b5f610cb285828601610c21565b9250506020610cc385828601610c7b565b9150509250929050565b5f819050919050565b610cdf81610ccd565b8114610ce9575f80fd5b50565b5f81359050610cfa81610cd6565b92915050565b5f805f805f60a08688031215610d1957610d18610bfe565b5b5f610d2688828901610c7b565b9550506020610d3788828901610cec565b9450506040610d4888828901610cec565b9350506060610d5988828901610cec565b9250506080610d6a88828901610cec565b9150509295509295909350565b5f60208284031215610d8c57610d8b610bfe565b5b5f610d9984828501610c7b565b91505092915050565b610dab81610ccd565b82525050565b608082015f820151610dc55f850182610da2565b506020820151610dd86020850182610da2565b506040820151610deb6040850182610da2565b506060820151610dfe6060850182610da2565b50505050565b5f608082019050610e175f830184610db1565b92915050565b610e2681610c54565b82525050565b5f602082019050610e3f5f830184610e1d565b92915050565b5f805f60608486031215610e5c57610e5b610bfe565b5b5f610e6986828701610c21565b9350506020610e7a86828701610c7b565b9250506040610e8b86828701610cec565b9150509250925092565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f610ed9601583610e95565b9150610ee482610ea5565b602082019050919050565b5f6020820190508181035f830152610f0681610ecd565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f610f67602583610e95565b9150610f7282610f0d565b604082019050919050565b5f6020820190508181035f830152610f9481610f5b565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f610ff5602783610e95565b915061100082610f9b565b604082019050919050565b5f6020820190508181035f83015261102281610fe9565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f611083602983610e95565b915061108e82611029565b604082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f6110eb601c83610e95565b91506110f6826110b7565b602082019050919050565b5f6020820190508181035f830152611118816110df565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f611179602383610e95565b91506111848261111f565b604082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f611207602783610e95565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f611295602583610e95565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f611323602a83610e95565b915061132e826112c9565b604082019050919050565b5f6020820190508181035f83015261135081611317565b9050919050565b61136081610ccd565b82525050565b5f6080820190506113795f830187611357565b6113866020830186611357565b6113936040830185611357565b6113a06060830184611357565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6113dd601783610e95565b91506113e8826113a9565b602082019050919050565b5f6020820190508181035f83015261140a816113d1565b9050919050565b5f6020820190506114245f830184611357565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61145e602083610e95565b91506114698261142a565b602082019050919050565b5f6020820190508181035f83015261148b81611452565b905091905056fea2646970667358221220501f5547a2da906016cb57c16e745ed8301050ccb83749f526f2c5a06972904864736f6c63430008140033", - "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610091575f3560e01c80638bfa0549116100645780638bfa0549146100e15780638da5cb5b14610111578063cd9924001461012f578063e30c39781461014b578063f2fde38b1461016957610091565b806340ebc67714610095578063715018a6146100b157806379ba5097146100bb578063898861b0146100c5575b5f80fd5b6100af60048036038101906100aa9190610c8f565b610185565b005b6100b9610449565b005b6100c361045c565b005b6100df60048036038101906100da9190610d00565b6104e8565b005b6100fb60048036038101906100f69190610d77565b610766565b6040516101089190610e04565b60405180910390f35b6101196107e4565b6040516101269190610e2c565b60405180910390f35b61014960048036038101906101449190610e45565b61080c565b005b61015361098e565b6040516101609190610e2c565b60405180910390f35b610183600480360381019061017e9190610d77565b6109b6565b005b61018d610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f290610eef565b60405180910390fd5b5f7f747265617375727900000000000000000000000000000000000000000000000083036102fd578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036102b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102aa90610f7d565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190506103f9565b7f61676772656761746f720000000000000000000000000000000000000000000083036103f8578173ffffffffffffffffffffffffffffffffffffffff1660995f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa9061100b565b60405180910390fd5b8160995f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610444578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b610451610a62565b61045a5f610ae0565b565b5f610465610b10565b90508073ffffffffffffffffffffffffffffffffffffffff1661048661098e565b73ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611099565b60405180910390fd5b6104e581610ae0565b50565b6104f0610a62565b6001609a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056790611101565b60405180910390fd5b6097548411156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac9061118f565b60405180910390fd5b6097548311156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f19061121d565b60405180910390fd5b60975482111561063f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610636906112ab565b60405180910390fd5b609754811115610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90611339565b60405180910390fd5b604051806080016040528085815260200184815260200183815260200182815250609b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301559050508473ffffffffffffffffffffffffffffffffffffffff167fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c858585856040516107579493929190611366565b60405180910390a25050505050565b61076e610bda565b609b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060800160405290815f820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610814610a62565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990610eef565b60405180910390fd5b60018114806108915750600281145b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c7906113f3565b60405180910390fd5b7f746f6b656e00000000000000000000000000000000000000000000000000000083036109895780609a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516109809190611411565b60405180910390a35b505050565b5f60655f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109be610a62565b8060655f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610a1d6107e4565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a6a610b10565b73ffffffffffffffffffffffffffffffffffffffff16610a886107e4565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611474565b60405180910390fd5b565b60655f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610b0d81610b17565b50565b5f33905090565b5f60335f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160335f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180608001604052805f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b610c1481610c02565b8114610c1e575f80fd5b50565b5f81359050610c2f81610c0b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c5e82610c35565b9050919050565b610c6e81610c54565b8114610c78575f80fd5b50565b5f81359050610c8981610c65565b92915050565b5f8060408385031215610ca557610ca4610bfe565b5b5f610cb285828601610c21565b9250506020610cc385828601610c7b565b9150509250929050565b5f819050919050565b610cdf81610ccd565b8114610ce9575f80fd5b50565b5f81359050610cfa81610cd6565b92915050565b5f805f805f60a08688031215610d1957610d18610bfe565b5b5f610d2688828901610c7b565b9550506020610d3788828901610cec565b9450506040610d4888828901610cec565b9350506060610d5988828901610cec565b9250506080610d6a88828901610cec565b9150509295509295909350565b5f60208284031215610d8c57610d8b610bfe565b5b5f610d9984828501610c7b565b91505092915050565b610dab81610ccd565b82525050565b608082015f820151610dc55f850182610da2565b506020820151610dd86020850182610da2565b506040820151610deb6040850182610da2565b506060820151610dfe6060850182610da2565b50505050565b5f608082019050610e175f830184610db1565b92915050565b610e2681610c54565b82525050565b5f602082019050610e3f5f830184610e1d565b92915050565b5f805f60608486031215610e5c57610e5b610bfe565b5b5f610e6986828701610c21565b9350506020610e7a86828701610c7b565b9250506040610e8b86828701610cec565b9150509250925092565b5f82825260208201905092915050565b7f476174657761793a207a65726f206164647265737300000000000000000000005f82015250565b5f610ed9601583610e95565b9150610ee482610ea5565b602082019050919050565b5f6020820190508181035f830152610f0681610ecd565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c726561645f8201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b5f610f67602583610e95565b9150610f7282610f0d565b604082019050919050565b5f6020820190508181035f830152610f9481610f5b565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c72655f8201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b5f610ff5602783610e95565b915061100082610f9b565b604082019050919050565b5f6020820190508181035f83015261102281610fe9565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f611083602983610e95565b915061108e82611029565b604082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b7f476174657761793a20746f6b656e206e6f7420737570706f72746564000000005f82015250565b5f6110eb601c83610e95565b91506110f6826110b7565b602082019050919050565b5f6020820190508181035f830152611118816110df565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2070726f76695f8201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b5f611179602383610e95565b91506111848261111f565b604082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7200000000000000000000000000000000000000000000000000602082015250565b5f611207602783610e95565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f476174657761793a20696e76616c69642073656e64657220746f2061676772655f8201527f6761746f72000000000000000000000000000000000000000000000000000000602082015250565b5f611295602583610e95565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b7f476174657761793a20696e76616c69642070726f766964657220746f206167675f8201527f72656761746f7220667800000000000000000000000000000000000000000000602082015250565b5f611323602a83610e95565b915061132e826112c9565b604082019050919050565b5f6020820190508181035f83015261135081611317565b9050919050565b61136081610ccd565b82525050565b5f6080820190506113795f830187611357565b6113866020830186611357565b6113936040830185611357565b6113a06060830184611357565b95945050505050565b7f476174657761793a20696e76616c6964207374617475730000000000000000005f82015250565b5f6113dd601783610e95565b91506113e8826113a9565b602082019050919050565b5f6020820190508181035f83015261140a816113d1565b9050919050565b5f6020820190506114245f830184611357565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61145e602083610e95565b91506114698261142a565b602082019050919050565b5f6020820190508181035f83015261148b81611452565b905091905056fea2646970667358221220501f5547a2da906016cb57c16e745ed8301050ccb83749f526f2c5a06972904864736f6c63430008140033", + "bytecode": "0x608060405234801561000f575f80fd5b50610a538061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033", + "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033", "linkReferences": {}, - "deployedLinkReferences": {} -} + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/GatewaySettingManager.sol", + "buildInfoId": "solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7" +} \ No newline at end of file diff --git a/artifacts/contracts/GatewaySettingManager.sol/artifacts.d.ts b/artifacts/contracts/GatewaySettingManager.sol/artifacts.d.ts new file mode 100644 index 0000000..6dd27bc --- /dev/null +++ b/artifacts/contracts/GatewaySettingManager.sol/artifacts.d.ts @@ -0,0 +1,27 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface GatewaySettingManager$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "GatewaySettingManager"; + readonly sourceName: "contracts/GatewaySettingManager.sol"; + readonly abi: [{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"TokenFeeSettingsUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getTokenFeeSettings","outputs":[{"components":[{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"internalType":"struct GatewaySettingManager.TokenFeeSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"senderToProvider","type":"uint256"},{"internalType":"uint256","name":"providerToAggregator","type":"uint256"},{"internalType":"uint256","name":"senderToAggregator","type":"uint256"},{"internalType":"uint256","name":"providerToAggregatorFx","type":"uint256"}],"name":"setTokenFeeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]; + readonly bytecode: "0x608060405234801561000f575f80fd5b50610a538061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033"; + readonly deployedBytecode: "0x608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "project/contracts/GatewaySettingManager.sol"; + readonly buildInfoId: "solc-0_8_20-30f6338e4a4b8728ca8a0716c9d710a1b26d40b7"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["GatewaySettingManager"]: GatewaySettingManager$Type; + ["contracts/GatewaySettingManager.sol:GatewaySettingManager"]: GatewaySettingManager$Type; + } +} \ No newline at end of file diff --git a/artifacts/contracts/ProviderBatchCallAndSponsor.sol/IGateway.json b/artifacts/contracts/ProviderBatchCallAndSponsor.sol/IGateway.json new file mode 100644 index 0000000..c8a2603 --- /dev/null +++ b/artifacts/contracts/ProviderBatchCallAndSponsor.sol/IGateway.json @@ -0,0 +1,27 @@ +{ + "_format": "hh3-artifact-1", + "contractName": "IGateway", + "sourceName": "contracts/ProviderBatchCallAndSponsor.sol", + "abi": [ + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/ProviderBatchCallAndSponsor.sol", + "buildInfoId": "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82" +} \ No newline at end of file diff --git a/artifacts/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.json b/artifacts/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.json new file mode 100644 index 0000000..3c12703 --- /dev/null +++ b/artifacts/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.json @@ -0,0 +1,180 @@ +{ + "_format": "hh3-artifact-1", + "contractName": "ProviderBatchCallAndSponsor", + "sourceName": "contracts/ProviderBatchCallAndSponsor.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "indexed": false, + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "BatchExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "CallExecuted", + "type": "event" + }, + { + "stateMutability": "payable", + "type": "fallback" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "gatewayAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "nonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033", + "deployedBytecode": "0x60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/ProviderBatchCallAndSponsor.sol", + "buildInfoId": "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82" +} \ No newline at end of file diff --git a/artifacts/contracts/ProviderBatchCallAndSponsor.sol/artifacts.d.ts b/artifacts/contracts/ProviderBatchCallAndSponsor.sol/artifacts.d.ts new file mode 100644 index 0000000..772f553 --- /dev/null +++ b/artifacts/contracts/ProviderBatchCallAndSponsor.sol/artifacts.d.ts @@ -0,0 +1,43 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface IGateway$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "IGateway"; + readonly sourceName: "contracts/ProviderBatchCallAndSponsor.sol"; + readonly abi: [{"inputs":[],"name":"getAggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]; + readonly bytecode: "0x"; + readonly deployedBytecode: "0x"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "project/contracts/ProviderBatchCallAndSponsor.sol"; + readonly buildInfoId: "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82"; +}; + +export interface ProviderBatchCallAndSponsor$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "ProviderBatchCallAndSponsor"; + readonly sourceName: "contracts/ProviderBatchCallAndSponsor.sol"; + readonly abi: [{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"indexed":false,"internalType":"struct ProviderBatchCallAndSponsor.Call[]","name":"calls","type":"tuple[]"}],"name":"BatchExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct ProviderBatchCallAndSponsor.Call[]","name":"calls","type":"tuple[]"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct ProviderBatchCallAndSponsor.Call[]","name":"calls","type":"tuple[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"gatewayAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]; + readonly bytecode: "0x608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033"; + readonly deployedBytecode: "0x60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "project/contracts/ProviderBatchCallAndSponsor.sol"; + readonly buildInfoId: "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["IGateway"]: IGateway$Type + ["ProviderBatchCallAndSponsor"]: ProviderBatchCallAndSponsor$Type; + ["contracts/ProviderBatchCallAndSponsor.sol:IGateway"]: IGateway$Type + ["contracts/ProviderBatchCallAndSponsor.sol:ProviderBatchCallAndSponsor"]: ProviderBatchCallAndSponsor$Type; + } +} \ No newline at end of file diff --git a/artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json b/artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json deleted file mode 100644 index 2afa5d9..0000000 --- a/artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../build-info/0fd1142d7618bca75338f2d6daf62308.json" -} diff --git a/artifacts/contracts/interfaces/IGateway.sol/IGateway.json b/artifacts/contracts/interfaces/IGateway.sol/IGateway.json index d3a949e..375c282 100644 --- a/artifacts/contracts/interfaces/IGateway.sol/IGateway.json +++ b/artifacts/contracts/interfaces/IGateway.sol/IGateway.json @@ -1,5 +1,5 @@ { - "_format": "hh-sol-artifact-1", + "_format": "hh3-artifact-1", "contractName": "IGateway", "sourceName": "contracts/interfaces/IGateway.sol", "abi": [ @@ -131,11 +131,30 @@ "anonymous": false, "inputs": [ { - "indexed": false, + "indexed": true, "internalType": "bytes32", - "name": "splitOrderId", + "name": "orderId", "type": "bytes32" }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ { "indexed": true, "internalType": "bytes32", @@ -148,39 +167,75 @@ "name": "liquidityProvider", "type": "address" }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, { "indexed": false, - "internalType": "uint64", - "name": "settlePercent", - "type": "uint64" + "internalType": "uint256", + "name": "amount", + "type": "uint256" }, { "indexed": false, - "internalType": "uint64", - "name": "rebatePercent", - "type": "uint64" + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" } ], - "name": "OrderSettled", + "name": "SettleIn", "type": "event" }, { "anonymous": false, "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, { "indexed": true, "internalType": "address", - "name": "sender", + "name": "liquidityProvider", "type": "address" }, { - "indexed": true, - "internalType": "uint256", - "name": "amount", - "type": "uint256" + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" } ], - "name": "SenderFeeTransferred", + "name": "SettleOut", "type": "event" }, { @@ -232,6 +287,19 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { @@ -346,6 +414,55 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [ { @@ -374,7 +491,7 @@ "type": "uint64" } ], - "name": "settle", + "name": "settleOut", "outputs": [ { "internalType": "bool", @@ -389,5 +506,8 @@ "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {}, - "deployedLinkReferences": {} -} + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/interfaces/IGateway.sol", + "buildInfoId": "solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005" +} \ No newline at end of file diff --git a/artifacts/contracts/interfaces/IGateway.sol/artifacts.d.ts b/artifacts/contracts/interfaces/IGateway.sol/artifacts.d.ts new file mode 100644 index 0000000..bb13426 --- /dev/null +++ b/artifacts/contracts/interfaces/IGateway.sol/artifacts.d.ts @@ -0,0 +1,27 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface IGateway$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "IGateway"; + readonly sourceName: "contracts/interfaces/IGateway.sol"; + readonly abi: [{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"FxTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"providerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"aggregatorAmount","type":"uint256"}],"name":"LocalTransferFeeSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"aggregatorFee","type":"uint256"},{"indexed":false,"internalType":"uint96","name":"rate","type":"uint96"}],"name":"SettleIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint64","name":"settlePercent","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"rebatePercent","type":"uint64"}],"name":"SettleOut","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint96","name":"_senderFee","type":"uint96"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint96","name":"_rate","type":"uint96"}],"name":"settleIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"},{"internalType":"uint64","name":"_rebatePercent","type":"uint64"}],"name":"settleOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]; + readonly bytecode: "0x"; + readonly deployedBytecode: "0x"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "project/contracts/interfaces/IGateway.sol"; + readonly buildInfoId: "solc-0_8_20-e74879e18fdb8d547b58bcc3fc16ab7854f50005"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["IGateway"]: IGateway$Type; + ["contracts/interfaces/IGateway.sol:IGateway"]: IGateway$Type; + } +} \ No newline at end of file diff --git a/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json deleted file mode 100644 index d6316e2..0000000 --- a/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "_format": "hh-sol-dbg-1", - "buildInfo": "../../../build-info/b310d8456b8a7c6a93c7198e95945bed.json" -} diff --git a/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json index 43a5147..842dc21 100644 --- a/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json +++ b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json @@ -1,5 +1,5 @@ { - "_format": "hh-sol-artifact-1", + "_format": "hh3-artifact-1", "contractName": "MockUSDT", "sourceName": "contracts/mocks/MockUSDC.sol", "abi": [ @@ -312,8 +312,11 @@ "type": "function" } ], - "bytecode": "0x608060405234801562000010575f80fd5b506040518060400160405280600881526020017f4d6f636b554453430000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d5553444300000000000000000000000000000000000000000000000000000081525081600390816200008e919062000498565b508060049081620000a0919062000498565b505050620000bf3369d3c21bcecceda1000000620000c560201b60201c565b6200068d565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012d90620005da565b60405180910390fd5b620001495f83836200022a60201b60201c565b8060025f8282546200015c919062000627565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200020b919062000672565b60405180910390a3620002265f83836200022f60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b057607f821691505b602082108103620002c657620002c56200026b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200032a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ed565b620003368683620002ed565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003806200037a62000374846200034e565b62000357565b6200034e565b9050919050565b5f819050919050565b6200039b8362000360565b620003b3620003aa8262000387565b848454620002f9565b825550505050565b5f90565b620003c9620003bb565b620003d681848462000390565b505050565b5b81811015620003fd57620003f15f82620003bf565b600181019050620003dc565b5050565b601f8211156200044c576200041681620002cc565b6200042184620002de565b8101602085101562000431578190505b620004496200044085620002de565b830182620003db565b50505b505050565b5f82821c905092915050565b5f6200046e5f198460080262000451565b1980831691505092915050565b5f6200048883836200045d565b9150826002028217905092915050565b620004a38262000234565b67ffffffffffffffff811115620004bf57620004be6200023e565b5b620004cb825462000298565b620004d882828562000401565b5f60209050601f8311600181146200050e575f8415620004f9578287015190505b6200050585826200047b565b86555062000574565b601f1984166200051e86620002cc565b5f5b82811015620005475784890151825560018201915060208501945060208101905062000520565b8683101562000567578489015162000563601f8916826200045d565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620005c2601f836200057c565b9150620005cf826200058c565b602082019050919050565b5f6020820190508181035f830152620005f381620005b4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000633826200034e565b915062000640836200034e565b92508282019050808211156200065b576200065a620005fa565b5b92915050565b6200066c816200034e565b82525050565b5f602082019050620006875f83018462000661565b92915050565b6117e3806200069b5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a578063a0712d6811610064578063a0712d681461024a578063a457c2d714610266578063a9059cbb14610296578063dd62ed3e146102c6576100e8565b806370a08231146101f257806395d89b41146102225780639975038c14610240576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f6565b6040516101019190610ee6565b60405180910390f35b610124600480360381019061011f9190610f97565b610386565b6040516101319190610fef565b60405180910390f35b6101426103a8565b60405161014f9190611017565b60405180910390f35b610172600480360381019061016d9190611030565b6103b1565b60405161017f9190610fef565b60405180910390f35b6101906103df565b60405161019d919061109b565b60405180910390f35b6101c060048036038101906101bb9190610f97565b6103e7565b6040516101cd9190610fef565b60405180910390f35b6101f060048036038101906101eb91906110b4565b61041d565b005b61020c600480360381019061020791906110df565b61042a565b6040516102199190611017565b60405180910390f35b61022a61046f565b6040516102379190610ee6565b60405180910390f35b6102486104ff565b005b610264600480360381019061025f91906110b4565b61055a565b005b610280600480360381019061027b9190610f97565b610567565b60405161028d9190610fef565b60405180910390f35b6102b060048036038101906102ab9190610f97565b6105dc565b6040516102bd9190610fef565b60405180910390f35b6102e060048036038101906102db919061110a565b6105fe565b6040516102ed9190611017565b60405180910390f35b60606003805461030590611175565b80601f016020809104026020016040519081016040528092919081815260200182805461033190611175565b801561037c5780601f106103535761010080835404028352916020019161037c565b820191905f5260205f20905b81548152906001019060200180831161035f57829003601f168201915b5050505050905090565b5f80610390610680565b905061039d818585610687565b600191505092915050565b5f600254905090565b5f806103bb610680565b90506103c885828561084a565b6103d38585856108d5565b60019150509392505050565b5f6012905090565b5f806103f1610680565b905061041281858561040385896105fe565b61040d91906111d2565b610687565b600191505092915050565b6104273382610b41565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461047e90611175565b80601f01602080910402602001604051908101604052809291908181526020018280546104aa90611175565b80156104f55780601f106104cc576101008083540402835291602001916104f5565b820191905f5260205f20905b8154815290600101906020018083116104d857829003601f168201915b5050505050905090565b5f6105093361042a565b90505f811161054d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105449061124f565b60405180910390fd5b6105573382610b41565b50565b6105643382610d04565b50565b5f80610571610680565b90505f61057e82866105fe565b9050838110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906112dd565b60405180910390fd5b6105d08286868403610687565b60019250505092915050565b5f806105e6610680565b90506105f38185856108d5565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec9061136b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a906113f9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161083d9190611017565b60405180910390a3505050565b5f61085584846105fe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108cf57818110156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611461565b60405180910390fd5b6108ce8484848403610687565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906114ef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a89061157d565b60405180910390fd5b6109bc838383610e52565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061160b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b289190611017565b60405180910390a3610b3b848484610e57565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690611699565b60405180910390fd5b610bba825f83610e52565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611727565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cec9190611017565b60405180910390a3610cff835f84610e57565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d699061178f565b60405180910390fd5b610d7d5f8383610e52565b8060025f828254610d8e91906111d2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e3b9190611017565b60405180910390a3610e4e5f8383610e57565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e93578082015181840152602081019050610e78565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb882610e5c565b610ec28185610e66565b9350610ed2818560208601610e76565b610edb81610e9e565b840191505092915050565b5f6020820190508181035f830152610efe8184610eae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3382610f0a565b9050919050565b610f4381610f29565b8114610f4d575f80fd5b50565b5f81359050610f5e81610f3a565b92915050565b5f819050919050565b610f7681610f64565b8114610f80575f80fd5b50565b5f81359050610f9181610f6d565b92915050565b5f8060408385031215610fad57610fac610f06565b5b5f610fba85828601610f50565b9250506020610fcb85828601610f83565b9150509250929050565b5f8115159050919050565b610fe981610fd5565b82525050565b5f6020820190506110025f830184610fe0565b92915050565b61101181610f64565b82525050565b5f60208201905061102a5f830184611008565b92915050565b5f805f6060848603121561104757611046610f06565b5b5f61105486828701610f50565b935050602061106586828701610f50565b925050604061107686828701610f83565b9150509250925092565b5f60ff82169050919050565b61109581611080565b82525050565b5f6020820190506110ae5f83018461108c565b92915050565b5f602082840312156110c9576110c8610f06565b5b5f6110d684828501610f83565b91505092915050565b5f602082840312156110f4576110f3610f06565b5b5f61110184828501610f50565b91505092915050565b5f80604083850312156111205761111f610f06565b5b5f61112d85828601610f50565b925050602061113e85828601610f50565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061118c57607f821691505b60208210810361119f5761119e611148565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111dc82610f64565b91506111e783610f64565b92508282019050808211156111ff576111fe6111a5565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e000000000000005f82015250565b5f611239601983610e66565b915061124482611205565b602082019050919050565b5f6020820190508181035f8301526112668161122d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112c7602583610e66565b91506112d28261126d565b604082019050919050565b5f6020820190508181035f8301526112f4816112bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611355602483610e66565b9150611360826112fb565b604082019050919050565b5f6020820190508181035f83015261138281611349565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113e3602283610e66565b91506113ee82611389565b604082019050919050565b5f6020820190508181035f830152611410816113d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61144b601d83610e66565b915061145682611417565b602082019050919050565b5f6020820190508181035f8301526114788161143f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6114d9602583610e66565b91506114e48261147f565b604082019050919050565b5f6020820190508181035f830152611506816114cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611567602383610e66565b91506115728261150d565b604082019050919050565b5f6020820190508181035f8301526115948161155b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6115f5602683610e66565b91506116008261159b565b604082019050919050565b5f6020820190508181035f830152611622816115e9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611683602183610e66565b915061168e82611629565b604082019050919050565b5f6020820190508181035f8301526116b081611677565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611711602283610e66565b915061171c826116b7565b604082019050919050565b5f6020820190508181035f83015261173e81611705565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611779601f83610e66565b915061178482611745565b602082019050919050565b5f6020820190508181035f8301526117a68161176d565b905091905056fea26469706673582212201d6c0a63de180dcbafc7f1d7104448374c63b6bd819bff8f3fff08e0a9233faf64736f6c63430008140033", - "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a578063a0712d6811610064578063a0712d681461024a578063a457c2d714610266578063a9059cbb14610296578063dd62ed3e146102c6576100e8565b806370a08231146101f257806395d89b41146102225780639975038c14610240576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f6565b6040516101019190610ee6565b60405180910390f35b610124600480360381019061011f9190610f97565b610386565b6040516101319190610fef565b60405180910390f35b6101426103a8565b60405161014f9190611017565b60405180910390f35b610172600480360381019061016d9190611030565b6103b1565b60405161017f9190610fef565b60405180910390f35b6101906103df565b60405161019d919061109b565b60405180910390f35b6101c060048036038101906101bb9190610f97565b6103e7565b6040516101cd9190610fef565b60405180910390f35b6101f060048036038101906101eb91906110b4565b61041d565b005b61020c600480360381019061020791906110df565b61042a565b6040516102199190611017565b60405180910390f35b61022a61046f565b6040516102379190610ee6565b60405180910390f35b6102486104ff565b005b610264600480360381019061025f91906110b4565b61055a565b005b610280600480360381019061027b9190610f97565b610567565b60405161028d9190610fef565b60405180910390f35b6102b060048036038101906102ab9190610f97565b6105dc565b6040516102bd9190610fef565b60405180910390f35b6102e060048036038101906102db919061110a565b6105fe565b6040516102ed9190611017565b60405180910390f35b60606003805461030590611175565b80601f016020809104026020016040519081016040528092919081815260200182805461033190611175565b801561037c5780601f106103535761010080835404028352916020019161037c565b820191905f5260205f20905b81548152906001019060200180831161035f57829003601f168201915b5050505050905090565b5f80610390610680565b905061039d818585610687565b600191505092915050565b5f600254905090565b5f806103bb610680565b90506103c885828561084a565b6103d38585856108d5565b60019150509392505050565b5f6012905090565b5f806103f1610680565b905061041281858561040385896105fe565b61040d91906111d2565b610687565b600191505092915050565b6104273382610b41565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461047e90611175565b80601f01602080910402602001604051908101604052809291908181526020018280546104aa90611175565b80156104f55780601f106104cc576101008083540402835291602001916104f5565b820191905f5260205f20905b8154815290600101906020018083116104d857829003601f168201915b5050505050905090565b5f6105093361042a565b90505f811161054d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105449061124f565b60405180910390fd5b6105573382610b41565b50565b6105643382610d04565b50565b5f80610571610680565b90505f61057e82866105fe565b9050838110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906112dd565b60405180910390fd5b6105d08286868403610687565b60019250505092915050565b5f806105e6610680565b90506105f38185856108d5565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec9061136b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a906113f9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161083d9190611017565b60405180910390a3505050565b5f61085584846105fe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108cf57818110156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611461565b60405180910390fd5b6108ce8484848403610687565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906114ef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a89061157d565b60405180910390fd5b6109bc838383610e52565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061160b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b289190611017565b60405180910390a3610b3b848484610e57565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690611699565b60405180910390fd5b610bba825f83610e52565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611727565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cec9190611017565b60405180910390a3610cff835f84610e57565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d699061178f565b60405180910390fd5b610d7d5f8383610e52565b8060025f828254610d8e91906111d2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e3b9190611017565b60405180910390a3610e4e5f8383610e57565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e93578082015181840152602081019050610e78565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb882610e5c565b610ec28185610e66565b9350610ed2818560208601610e76565b610edb81610e9e565b840191505092915050565b5f6020820190508181035f830152610efe8184610eae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3382610f0a565b9050919050565b610f4381610f29565b8114610f4d575f80fd5b50565b5f81359050610f5e81610f3a565b92915050565b5f819050919050565b610f7681610f64565b8114610f80575f80fd5b50565b5f81359050610f9181610f6d565b92915050565b5f8060408385031215610fad57610fac610f06565b5b5f610fba85828601610f50565b9250506020610fcb85828601610f83565b9150509250929050565b5f8115159050919050565b610fe981610fd5565b82525050565b5f6020820190506110025f830184610fe0565b92915050565b61101181610f64565b82525050565b5f60208201905061102a5f830184611008565b92915050565b5f805f6060848603121561104757611046610f06565b5b5f61105486828701610f50565b935050602061106586828701610f50565b925050604061107686828701610f83565b9150509250925092565b5f60ff82169050919050565b61109581611080565b82525050565b5f6020820190506110ae5f83018461108c565b92915050565b5f602082840312156110c9576110c8610f06565b5b5f6110d684828501610f83565b91505092915050565b5f602082840312156110f4576110f3610f06565b5b5f61110184828501610f50565b91505092915050565b5f80604083850312156111205761111f610f06565b5b5f61112d85828601610f50565b925050602061113e85828601610f50565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061118c57607f821691505b60208210810361119f5761119e611148565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111dc82610f64565b91506111e783610f64565b92508282019050808211156111ff576111fe6111a5565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e000000000000005f82015250565b5f611239601983610e66565b915061124482611205565b602082019050919050565b5f6020820190508181035f8301526112668161122d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112c7602583610e66565b91506112d28261126d565b604082019050919050565b5f6020820190508181035f8301526112f4816112bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611355602483610e66565b9150611360826112fb565b604082019050919050565b5f6020820190508181035f83015261138281611349565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113e3602283610e66565b91506113ee82611389565b604082019050919050565b5f6020820190508181035f830152611410816113d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61144b601d83610e66565b915061145682611417565b602082019050919050565b5f6020820190508181035f8301526114788161143f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6114d9602583610e66565b91506114e48261147f565b604082019050919050565b5f6020820190508181035f830152611506816114cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611567602383610e66565b91506115728261150d565b604082019050919050565b5f6020820190508181035f8301526115948161155b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6115f5602683610e66565b91506116008261159b565b604082019050919050565b5f6020820190508181035f830152611622816115e9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611683602183610e66565b915061168e82611629565b604082019050919050565b5f6020820190508181035f8301526116b081611677565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611711602283610e66565b915061171c826116b7565b604082019050919050565b5f6020820190508181035f83015261173e81611705565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611779601f83610e66565b915061178482611745565b602082019050919050565b5f6020820190508181035f8301526117a68161176d565b905091905056fea26469706673582212201d6c0a63de180dcbafc7f1d7104448374c63b6bd819bff8f3fff08e0a9233faf64736f6c63430008140033", + "bytecode": "0x608060405234801562000010575f80fd5b50604051806040016040528060088152602001674d6f636b5544534360c01b815250604051806040016040528060058152602001644d5553444360d81b8152508160039081620000619190620001fd565b506004620000708282620001fd565b5050506200008f3369d3c21bcecceda10000006200009560201b60201c565b620002eb565b6001600160a01b038216620000f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001039190620002c5565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018757607f821691505b602082108103620001a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000159575f81815260208120601f850160051c81016020861015620001d45750805b601f850160051c820191505b81811015620001f557828155600101620001e0565b505050505050565b81516001600160401b038111156200021957620002196200015e565b62000231816200022a845462000172565b84620001ac565b602080601f83116001811462000267575f84156200024f5750858301515b5f19600386901b1c1916600185901b178555620001f5565b5f85815260208120601f198616915b82811015620002975788860151825594840194600190910190840162000276565b5085821015620002b557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620002e557634e487b7160e01b5f52601160045260245ffd5b92915050565b610b0e80620002f95f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033", + "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033", "linkReferences": {}, - "deployedLinkReferences": {} -} + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/mocks/MockUSDC.sol", + "buildInfoId": "solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf" +} \ No newline at end of file diff --git a/artifacts/contracts/mocks/MockUSDC.sol/artifacts.d.ts b/artifacts/contracts/mocks/MockUSDC.sol/artifacts.d.ts new file mode 100644 index 0000000..dd7ef67 --- /dev/null +++ b/artifacts/contracts/mocks/MockUSDC.sol/artifacts.d.ts @@ -0,0 +1,27 @@ +// This file was autogenerated by Hardhat, do not edit it. +// prettier-ignore +// tslint:disable +// eslint-disable +// biome-ignore format: see above + +export interface MockUSDT$Type { + readonly _format: "hh3-artifact-1"; + readonly contractName: "MockUSDT"; + readonly sourceName: "contracts/mocks/MockUSDC.sol"; + readonly abi: [{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]; + readonly bytecode: "0x608060405234801562000010575f80fd5b50604051806040016040528060088152602001674d6f636b5544534360c01b815250604051806040016040528060058152602001644d5553444360d81b8152508160039081620000619190620001fd565b506004620000708282620001fd565b5050506200008f3369d3c21bcecceda10000006200009560201b60201c565b620002eb565b6001600160a01b038216620000f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001039190620002c5565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018757607f821691505b602082108103620001a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000159575f81815260208120601f850160051c81016020861015620001d45750805b601f850160051c820191505b81811015620001f557828155600101620001e0565b505050505050565b81516001600160401b038111156200021957620002196200015e565b62000231816200022a845462000172565b84620001ac565b602080601f83116001811462000267575f84156200024f5750858301515b5f19600386901b1c1916600185901b178555620001f5565b5f85815260208120601f198616915b82811015620002975788860151825594840194600190910190840162000276565b5085821015620002b557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620002e557634e487b7160e01b5f52601160045260245ffd5b92915050565b610b0e80620002f95f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033"; + readonly deployedBytecode: "0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033"; + readonly linkReferences: {}; + readonly deployedLinkReferences: {}; + readonly immutableReferences: {}; + readonly inputSourceName: "project/contracts/mocks/MockUSDC.sol"; + readonly buildInfoId: "solc-0_8_20-32286d087051e35025cad535aaaac947e68287bf"; +}; + +import "hardhat/types/artifacts"; +declare module "hardhat/types/artifacts" { + interface ArtifactMap { + ["MockUSDT"]: MockUSDT$Type; + ["contracts/mocks/MockUSDC.sol:MockUSDT"]: MockUSDT$Type; + } +} \ No newline at end of file diff --git a/contracts/Gateway.sol b/contracts/Gateway.sol index aa7c217..55d589c 100644 --- a/contracts/Gateway.sol +++ b/contracts/Gateway.sol @@ -153,8 +153,8 @@ contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { /* ################################################################## AGGREGATOR FUNCTIONS ################################################################## */ - /** @dev See {settle-IGateway}. */ - function settle( + /** @dev See {settleOut-IGateway}. */ + function settleOut( bytes32 _splitOrderId, bytes32 _orderId, address _liquidityProvider, @@ -179,43 +179,41 @@ contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { order[_orderId].isFulfilled = true; if (order[_orderId].senderFee != 0 && order[_orderId].protocolFee != 0) { - // fx transfer - sender keeps all fee - _handleFxTransferFeeSplitting(_orderId); + // FX transfer - sender keeps all fee + _handleFxTransferFeeSplitting(_orderId, token, order[_orderId].senderFeeRecipient, order[_orderId].senderFee); } } if (order[_orderId].senderFee != 0 && order[_orderId].protocolFee == 0) { // local transfer - split sender fee - _handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, _settlePercent); + _handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, order[_orderId].senderFeeRecipient, _settlePercent); } // transfer to liquidity provider - uint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / - currentOrderBPS; + uint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / currentOrderBPS; order[_orderId].amount -= liquidityProviderAmount; if (order[_orderId].protocolFee != 0) { - // FX transfer - use token-specific providerToAggregatorFx + // FX transfer: use token-specific providerToAggregatorFx TokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token]; - uint256 protocolFee = (liquidityProviderAmount * settings.providerToAggregatorFx) / - MAX_BPS; - liquidityProviderAmount -= protocolFee; + uint256 aggregatorFee = (liquidityProviderAmount * settings.providerToAggregatorFx) / MAX_BPS; + liquidityProviderAmount -= aggregatorFee; if (_rebatePercent != 0) { // calculate rebate amount - uint256 rebateAmount = (protocolFee * _rebatePercent) / MAX_BPS; - protocolFee -= rebateAmount; + uint256 rebateAmount = (aggregatorFee * _rebatePercent) / MAX_BPS; + aggregatorFee -= rebateAmount; liquidityProviderAmount += rebateAmount; } - // transfer protocol fee - IERC20(token).transfer(treasuryAddress, protocolFee); + // transfer aggregator fee + IERC20(token).transfer(treasuryAddress, aggregatorFee); } IERC20(token).transfer(_liquidityProvider, liquidityProviderAmount); // emit settled event - emit OrderSettled( + emit SettleOut( _splitOrderId, _orderId, _liquidityProvider, @@ -226,6 +224,77 @@ contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { return true; } + /** @dev See {settleIn-IGateway}. */ + function settleIn( + bytes32 _orderId, + address _token, + uint256 _amount, + address _senderFeeRecipient, + uint96 _senderFee, + address _recipient, + uint96 _rate + ) external whenNotPaused returns (bool) { + require(order[_orderId].sender == address(0), 'OrderAlreadyExists'); + require(_amount > MAX_BPS, 'InvalidAmount'); + _handler(_token, _amount, _recipient, _senderFeeRecipient, _senderFee); + + IERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee); + + uint256 amountToSettle = _amount; + uint256 aggregatorFee; + + // determine if this is FX or local transfer based on rate + if (_rate == 100) { + // local transfer: no protocol fee from amount + require(_senderFee > 0, 'SenderFeeIsZero'); + } else { + // FX transfer: use token-specific providerToAggregatorFx + TokenFeeSettings memory settings = _tokenFeeSettings[_token]; + require(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured'); + + aggregatorFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS; + + if (aggregatorFee > 0) { + amountToSettle -= aggregatorFee; + IERC20(_token).transfer(treasuryAddress, aggregatorFee); + } + } + + order[_orderId].sender = _recipient; + order[_orderId].token = _token; + order[_orderId].senderFeeRecipient = _senderFeeRecipient; + order[_orderId].senderFee = _senderFee; + order[_orderId].protocolFee = aggregatorFee; + order[_orderId].isFulfilled = true; + order[_orderId].amount = amountToSettle; + + IERC20(_token).transfer(_recipient, amountToSettle); + + // handle fee splitting after order state is recorded + if (_senderFee != 0) { + if (aggregatorFee == 0) { + // local transfer: split sender fee + _handleLocalTransferFeeSplitting(_orderId, msg.sender, _senderFeeRecipient, uint64(MAX_BPS)); + } else { + // FX transfer: split sender fee per senderToAggregator settings + _handleFxTransferFeeSplitting(_orderId, _token, _senderFeeRecipient, _senderFee); + } + } + + // emit settlement event + emit SettleIn( + _orderId, + msg.sender, + _recipient, + amountToSettle, + _token, + aggregatorFee, + _rate + ); + + return true; + } + /** @dev See {refund-IGateway}. */ function refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) { // ensure the transaction has not been fulfilled @@ -271,77 +340,72 @@ contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { return false; } - /** - * @dev Handles fee splitting for local transfers (rate = 1). - * @param _orderId The order ID to process. - * @param _liquidityProvider The address of the liquidity provider who fulfilled the order. - */ + /** @dev See {getAggregator-IGateway}. */ + function getAggregator() external view returns (address) { + return _aggregatorAddress; + } + function _handleLocalTransferFeeSplitting( bytes32 _orderId, address _liquidityProvider, + address _senderFeeRecipient, uint64 _settlePercent ) internal { TokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token]; uint256 senderFee = order[_orderId].senderFee; + address token = order[_orderId].token; // Calculate splits based on config uint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS; uint256 currentProviderAmount = (providerAmount * _settlePercent) / MAX_BPS; - uint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) / - MAX_BPS; + uint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) / MAX_BPS; uint256 senderAmount = senderFee - providerAmount; // Transfer sender portion if (senderAmount != 0 && order[_orderId].currentBPS == 0) { - IERC20(order[_orderId].token).transfer( - order[_orderId].senderFeeRecipient, - senderAmount - ); + IERC20(token).transfer(_senderFeeRecipient, senderAmount); } // Transfer aggregator portion to treasury if (aggregatorAmount != 0) { - IERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount); + IERC20(token).transfer(treasuryAddress, aggregatorAmount); } // Transfer provider portion to the liquidity provider who fulfilled the order currentProviderAmount = currentProviderAmount - aggregatorAmount; if (currentProviderAmount != 0) { - IERC20(order[_orderId].token).transfer(_liquidityProvider, currentProviderAmount); + IERC20(token).transfer(_liquidityProvider, currentProviderAmount); } // Emit events - emit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount); + emit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount); emit LocalTransferFeeSplit(_orderId, senderAmount, currentProviderAmount, aggregatorAmount); } - /** - * @dev Handles fee splitting for FX transfers (rate != 1). - * @param _orderId The order ID to process. - */ - function _handleFxTransferFeeSplitting(bytes32 _orderId) internal { - TokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token]; - uint256 senderFee = order[_orderId].senderFee; + function _handleFxTransferFeeSplitting( + bytes32 _orderId, + address _token, + address _senderFeeRecipient, + uint256 _senderFee + ) internal { + TokenFeeSettings memory settings = _tokenFeeSettings[_token]; - // Calculate sender portion based on senderToAggregator setting - uint256 senderAmount = (senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS; - uint256 aggregatorAmount = senderFee - senderAmount; + // Calculate sender portion based on senderToAggregator setting (similar to settleOut FX) + uint256 senderAmount = (_senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS; + uint256 aggregatorAmount = _senderFee - senderAmount; // Transfer sender portion if (senderAmount > 0) { - IERC20(order[_orderId].token).transfer( - order[_orderId].senderFeeRecipient, - senderAmount - ); + IERC20(_token).transfer(_senderFeeRecipient, senderAmount); } // Transfer aggregator portion to treasury if (aggregatorAmount > 0) { - IERC20(order[_orderId].token).transfer(treasuryAddress, aggregatorAmount); + IERC20(_token).transfer(treasuryAddress, aggregatorAmount); } // Emit events - emit SenderFeeTransferred(order[_orderId].senderFeeRecipient, senderAmount); + emit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount); emit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount); } } diff --git a/contracts/ProviderBatchCallAndSponsor.sol b/contracts/ProviderBatchCallAndSponsor.sol new file mode 100644 index 0000000..435da2e --- /dev/null +++ b/contracts/ProviderBatchCallAndSponsor.sol @@ -0,0 +1,110 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.18; + +import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; + +interface IGateway { + function getAggregator() external view returns (address); +} +/** + * @title ProviderBatchCallAndSponsor + * + * When an EOA upgrades via EIP‑7702, it delegates to this implementation. + * Off‑chain, the account signs a message authorizing a batch of calls. The message is the hash of: + * keccak256(abi.encodePacked(nonce, calls)) + * The signature must be generated with the EOA’s private key so that, once upgraded, the recovered signer equals the account’s own address (i.e. address(this)). + * + * This contract provides just one way to execute a batch: + * 1. With a signature: Any sponsor can submit the batch if it carries a valid signature. + * + * Replay protection is achieved by using a nonce that is included in the signed message. + */ +contract ProviderBatchCallAndSponsor { + using ECDSA for bytes32; + + // constant because when it assigned to eao we want to ensure it never changes + /// @notice The address of the Gateway contract. + address public constant gatewayAddress = 0x56dA8fCE8FD64CaaE90D80DED55587b282bb4303; + /// @notice A nonce used for replay protection. + uint256 public nonce; + + /// @notice Represents a single call within a batch. + struct Call { + address to; + uint256 value; + bytes data; + } + + modifier onlyAggregator() { + require(msg.sender == IGateway(gatewayAddress).getAggregator(), "OnlyAggregator"); + _; + } + + /// @notice Emitted for every individual call executed. + event CallExecuted(address indexed sender, address indexed to, uint256 value, bytes data); + /// @notice Emitted when a full batch is executed. + event BatchExecuted(uint256 indexed nonce, Call[] calls); + + /** + * @notice Executes a batch of calls using an off–chain signature. + * @param calls An array of Call structs containing destination, ETH value, and calldata. + * @param signature The ECDSA signature over the current nonce and the call data. + * + * The signature must be produced off–chain by signing: + * The signing key should be the account’s key (which becomes the smart account’s own identity after upgrade). + */ + function execute(Call[] calldata calls, bytes calldata signature) external payable onlyAggregator { + // Compute the digest that the account was expected to sign. + bytes memory encodedCalls; + for (uint256 i = 0; i < calls.length; i++) { + encodedCalls = abi.encodePacked(encodedCalls, calls[i].to, calls[i].value, calls[i].data); + } + bytes32 digest = keccak256(abi.encodePacked(nonce, encodedCalls)); + + bytes32 ethSignedMessageHash = ECDSA.toEthSignedMessageHash(digest); + + // Recover the signer from the provided signature. + address recovered = ECDSA.recover(ethSignedMessageHash, signature); + require(recovered == address(this), "Invalid signature"); + + _executeBatch(calls); + } + + /** + * @notice Executes a batch of calls directly. + * @dev This contract doesnt authorized self execution. + * @param calls An array of Call structs containing destination, ETH value, and calldata. + */ + function execute(Call[] calldata calls) external payable { + revert("Not implemented"); // we don't expect this to be called directly + } + + /** + * @dev Internal function that handles batch execution and nonce incrementation. + * @param calls An array of Call structs. + */ + function _executeBatch(Call[] calldata calls) internal { + uint256 currentNonce = nonce; + nonce++; // Increment nonce to protect against replay attacks + + for (uint256 i = 0; i < calls.length; i++) { + _executeCall(calls[i]); + } + + emit BatchExecuted(currentNonce, calls); + } + + /** + * @dev Internal function to execute a single call. + * @param callItem The Call struct containing destination, value, and calldata. + */ + function _executeCall(Call calldata callItem) internal { + (bool success,) = callItem.to.call{value: callItem.value}(callItem.data); + require(success, "Call reverted"); + emit CallExecuted(msg.sender, callItem.to, callItem.value, callItem.data); + } + + // Allow the contract to receive ETH (e.g. from DEX swaps or other transfers). + fallback() external payable {} + receive() external payable {} +} \ No newline at end of file diff --git a/contracts/interfaces/IGateway.sol b/contracts/interfaces/IGateway.sol index 3685174..cab46f2 100644 --- a/contracts/interfaces/IGateway.sol +++ b/contracts/interfaces/IGateway.sol @@ -38,7 +38,7 @@ interface IGateway { * @param settlePercent The percentage at which the transaction is settled. * @param rebatePercent The percentage of the aggregator fee that is given back to the provider. */ - event OrderSettled( + event SettleOut( bytes32 splitOrderId, bytes32 indexed orderId, address indexed liquidityProvider, @@ -46,6 +46,19 @@ interface IGateway { uint64 rebatePercent ); + /** + * @dev Emitted when an onramp order is successfully processed + */ + event SettleIn( + bytes32 indexed orderId, + address indexed liquidityProvider, + address indexed recipient, + uint256 amount, + address token, + uint256 aggregatorFee, + uint96 rate + ); + /** * @dev Emitted when an aggregator refunds a transaction. * @param fee The fee deducted from the refund amount. @@ -58,7 +71,7 @@ interface IGateway { * @param sender The address of the sender. * @param amount The amount of the fee transferred. */ - event SenderFeeTransferred(address indexed sender, uint256 indexed amount); + event SenderFeeTransferred(bytes32 indexed orderId, address indexed sender, uint256 indexed amount); /** * @dev Emitted when a local transfer fee is split. @@ -153,7 +166,7 @@ interface IGateway { * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider. * @return bool the settlement is successful. */ - function settle( + function settleOut( bytes32 _splitOrderId, bytes32 _orderId, address _liquidityProvider, @@ -161,6 +174,29 @@ interface IGateway { uint64 _rebatePercent ) external returns (bool); + /** + * @notice Process settleIn order + * @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator + * @dev It process an order and transfers tokens to the recipient after deducting sender fees + * @param _orderId Unique identifier for the order being processed + * @param _token Address of the token to be sent to the user + * @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees + * @param _senderFeeRecipient Address that will receive the sender fee + * @param _senderFee Amount of fee to be paid to the sender fee recipient + * @param _recipient Address of the recipient who will receive the tokens + * @param _rate Rate at which the tokens are being sent + * @return success Boolean indicating if the operation was successful + */ + function settleIn( + bytes32 _orderId, + address _token, + uint256 _amount, + address _senderFeeRecipient, + uint96 _senderFee, + address _recipient, + uint96 _rate + ) external returns (bool); + /** * @notice Refunds to the specified refundable address. * @dev Requirements: @@ -184,4 +220,10 @@ interface IGateway { * @return Order The order details. */ function getOrderInfo(bytes32 _orderId) external view returns (Order memory); + + /** + * @notice Gets the address of the aggregator. + * @return address The address of the aggregator. + */ + function getAggregator() external view returns (address); } diff --git a/flattened/Gateway.sol b/flattened/Gateway.sol index 6e54e45..7e037ae 100644 --- a/flattened/Gateway.sol +++ b/flattened/Gateway.sol @@ -1,9 +1,209 @@ -// SPDX-License-Identifier: UNLICENSED -pragma solidity ^0.8.18; +// Sources flattened with hardhat v3.1.5 https://hardhat.org + +// SPDX-License-Identifier: MIT AND UNLICENSED + +// File npm/@openzeppelin/contracts@4.9.5/utils/Context.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) + +pragma solidity ^0.8.0; + +/** + * @dev 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. + */ +abstract contract Context { + function _msgSender() internal view virtual returns (address) { + return msg.sender; + } + + function _msgData() internal view virtual returns (bytes calldata) { + return msg.data; + } + + function _contextSuffixLength() internal view virtual returns (uint256) { + return 0; + } +} + + +// File npm/@openzeppelin/contracts@4.9.5/access/Ownable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Contract module which provides a basic access control mechanism, where + * there is an account (an owner) that can be granted exclusive access to + * specific functions. + * + * By default, the owner account will be the one that deploys the contract. 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. + */ +abstract contract Ownable is Context { + address private _owner; + + event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); + + /** + * @dev Initializes the contract setting the deployer as the initial owner. + */ + constructor() { + _transferOwnership(_msgSender()); + } + + /** + * @dev Throws if called by any account other than the owner. + */ + modifier onlyOwner() { + _checkOwner(); + _; + } + + /** + * @dev Returns the address of the current owner. + */ + function owner() public view virtual returns (address) { + return _owner; + } + + /** + * @dev Throws if the sender is not the owner. + */ + function _checkOwner() internal view virtual { + require(owner() == _msgSender(), "Ownable: caller is not the owner"); + } + + /** + * @dev 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. + */ + function renounceOwnership() public virtual onlyOwner { + _transferOwnership(address(0)); + } + + /** + * @dev Transfers ownership of the contract to a new account (`newOwner`). + * Can only be called by the current owner. + */ + function transferOwnership(address newOwner) public virtual onlyOwner { + require(newOwner != address(0), "Ownable: new owner is the zero address"); + _transferOwnership(newOwner); + } + + /** + * @dev Transfers ownership of the contract to a new account (`newOwner`). + * Internal function without access restriction. + */ + function _transferOwnership(address newOwner) internal virtual { + address oldOwner = _owner; + _owner = newOwner; + emit OwnershipTransferred(oldOwner, newOwner); + } +} + + +// File npm/@openzeppelin/contracts@4.9.5/interfaces/draft-IERC1822.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol) + +pragma solidity ^0.8.0; + +/** + * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified + * proxy whose upgrades are fully controlled by the current implementation. + */ +interface IERC1822Proxiable { + /** + * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation + * address. + * + * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks + * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this + * function revert if invoked through a proxy. + */ + function proxiableUUID() external view returns (bytes32); +} + + +// File npm/@openzeppelin/contracts@4.9.5/interfaces/IERC1967.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol) + +pragma solidity ^0.8.0; + +/** + * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. + * + * _Available since v4.8.3._ + */ +interface IERC1967 { + /** + * @dev Emitted when the implementation is upgraded. + */ + event Upgraded(address indexed implementation); + + /** + * @dev Emitted when the admin account has changed. + */ + event AdminChanged(address previousAdmin, address newAdmin); + + /** + * @dev Emitted when the beacon is changed. + */ + event BeaconUpgraded(address indexed beacon); +} + + +// File npm/@openzeppelin/contracts@4.9.5/proxy/beacon/IBeacon.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) + +pragma solidity ^0.8.0; + +/** + * @dev This is the interface that {BeaconProxy} expects of its beacon. + */ +interface IBeacon { + /** + * @dev Must return an address that can be used as a delegate call target. + * + * {BeaconProxy} will check that this address is a contract. + */ + function implementation() external view returns (address); +} + + +// File npm/@openzeppelin/contracts@4.9.5/utils/Address.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) + +pragma solidity ^0.8.1; + /** * @dev Collection of functions related to the address type */ -library AddressUpgradeable { +library Address { /** * @dev Returns true if `account` is a contract. * @@ -241,1125 +441,3544 @@ library AddressUpgradeable { } +// File npm/@openzeppelin/contracts@4.9.5/utils/StorageSlot.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) +// This file was procedurally generated from scripts/generate/templates/StorageSlot.js. + +pragma solidity ^0.8.0; + /** - * @dev 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. + * @dev Library for reading and writing primitive types to specific storage slots. * - * 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. + * 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. * - * For example: + * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * - * [.hljs-theme-light.nopadding] + * Example usage to set ERC1967 implementation slot: * ```solidity - * contract MyToken is ERC20Upgradeable { - * function initialize() initializer public { - * __ERC20_init("MyToken", "MTK"); + * contract ERC1967 { + * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; + * + * function _getImplementation() internal view returns (address) { + * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } - * } * - * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { - * function initializeV2() reinitializer(2) public { - * __ERC20Permit_init("MyToken"); + * function _setImplementation(address newImplementation) internal { + * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); + * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * - * 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] - * ``` - * /// @custom:oz-upgrades-unsafe-allow constructor - * constructor() { - * _disableInitializers(); - * } - * ``` - * ==== + * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ + * _Available since v4.9 for `string`, `bytes`._ */ -abstract contract Initializable { +library StorageSlot { + struct AddressSlot { + address value; + } + + struct BooleanSlot { + bool value; + } + + struct Bytes32Slot { + bytes32 value; + } + + struct Uint256Slot { + uint256 value; + } + + struct StringSlot { + string value; + } + + struct BytesSlot { + bytes value; + } + /** - * @dev Indicates that the contract has been initialized. - * @custom:oz-retyped-from bool + * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ - uint8 private _initialized; + function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := slot + } + } /** - * @dev Indicates that the contract is in the process of being initialized. + * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ - bool private _initializing; + function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := slot + } + } /** - * @dev Triggered when the contract has been initialized or reinitialized. + * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ - event Initialized(uint8 version); + function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := slot + } + } /** - * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, - * `onlyInitializing` functions can be used to initialize parent contracts. - * - * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a - * constructor. - * - * Emits an {Initialized} event. + * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ - modifier initializer() { - bool isTopLevelCall = !_initializing; - require( - (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), - "Initializable: contract is already initialized" - ); - _initialized = 1; - if (isTopLevelCall) { - _initializing = true; + function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := slot } - _; - if (isTopLevelCall) { - _initializing = false; - emit Initialized(1); + } + + /** + * @dev Returns an `StringSlot` with member `value` located at `slot`. + */ + function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := slot } } /** - * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the - * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be - * used to initialize parent contracts. - * - * A reinitializer may be used after the original initialization step. This is essential to configure modules that - * are added through upgrades and that require initialization. - * - * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` - * cannot be nested. If one is invoked in the context of another, execution will revert. - * - * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in - * a contract, executing them in the right order is up to the developer or operator. - * - * WARNING: setting the version to 255 will prevent any future reinitialization. - * - * Emits an {Initialized} event. + * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ - modifier reinitializer(uint8 version) { - require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); - _initialized = version; - _initializing = true; - _; - _initializing = false; - emit Initialized(version); + function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := store.slot + } } /** - * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the - * {initializer} and {reinitializer} modifiers, directly or indirectly. + * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ - modifier onlyInitializing() { - require(_initializing, "Initializable: contract is not initializing"); - _; + function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := slot + } } /** - * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. - * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized - * to any version. It is recommended to use this to lock implementation contracts that are designed to be called - * through proxies. - * - * Emits an {Initialized} event the first time it is successfully executed. + * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ - function _disableInitializers() internal virtual { - require(!_initializing, "Initializable: contract is initializing"); - if (_initialized != type(uint8).max) { - _initialized = type(uint8).max; - emit Initialized(type(uint8).max); + function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { + /// @solidity memory-safe-assembly + assembly { + r.slot := store.slot } } +} - /** - * @dev Returns the highest version that has been initialized. See {reinitializer}. - */ - function _getInitializedVersion() internal view returns (uint8) { - return _initialized; - } - /** - * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. - */ - function _isInitializing() internal view returns (bool) { - return _initializing; - } -} +// File npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Upgrade.sol -/** - * @dev 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. - */ -abstract contract ContextUpgradeable is Initializable { - function __Context_init() internal onlyInitializing { - } +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol) + +pragma solidity ^0.8.2; - function __Context_init_unchained() internal onlyInitializing { - } - function _msgSender() internal view virtual returns (address) { - return msg.sender; - } - function _msgData() internal view virtual returns (bytes calldata) { - return msg.data; - } - function _contextSuffixLength() internal view virtual returns (uint256) { - return 0; - } - /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps - */ - uint256[50] private __gap; -} /** - * @dev Contract module which allows children to implement an emergency stop - * mechanism that can be triggered by an authorized account. + * @dev This abstract contract provides getters and event emitting update functions for + * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * - * This module is used through inheritance. It will make available the - * modifiers `whenNotPaused` and `whenPaused`, which can be applied to - * the functions of your contract. Note that they will not be pausable by - * simply including this module, only once the modifiers are put in place. + * _Available since v4.1._ */ -abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { - /** - * @dev Emitted when the pause is triggered by `account`. - */ - event Paused(address account); +abstract contract ERC1967Upgrade is IERC1967 { + // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 + bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** - * @dev Emitted when the pause is lifted by `account`. + * @dev Storage slot with the address of the current implementation. + * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is + * validated in the constructor. */ - event Unpaused(address account); - - bool private _paused; + bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** - * @dev Initializes the contract in unpaused state. + * @dev Returns the current implementation address. */ - function __Pausable_init() internal onlyInitializing { - __Pausable_init_unchained(); + function _getImplementation() internal view returns (address) { + return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } - function __Pausable_init_unchained() internal onlyInitializing { - _paused = false; + /** + * @dev Stores a new address in the EIP1967 implementation slot. + */ + function _setImplementation(address newImplementation) private { + require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); + StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** - * @dev Modifier to make a function callable only when the contract is not paused. - * - * Requirements: + * @dev Perform implementation upgrade * - * - The contract must not be paused. + * Emits an {Upgraded} event. */ - modifier whenNotPaused() { - _requireNotPaused(); - _; + function _upgradeTo(address newImplementation) internal { + _setImplementation(newImplementation); + emit Upgraded(newImplementation); } /** - * @dev Modifier to make a function callable only when the contract is paused. - * - * Requirements: + * @dev Perform implementation upgrade with additional setup call. * - * - The contract must be paused. + * Emits an {Upgraded} event. */ - modifier whenPaused() { - _requirePaused(); - _; + function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal { + _upgradeTo(newImplementation); + if (data.length > 0 || forceCall) { + Address.functionDelegateCall(newImplementation, data); + } } /** - * @dev Returns true if the contract is paused, and false otherwise. + * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. + * + * Emits an {Upgraded} event. */ - function paused() public view virtual returns (bool) { - return _paused; + function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal { + // Upgrades from old implementations will perform a rollback test. This test requires the new + // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing + // this special case will break upgrade paths from old UUPS implementation to new ones. + if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) { + _setImplementation(newImplementation); + } else { + try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { + require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); + } catch { + revert("ERC1967Upgrade: new implementation is not UUPS"); + } + _upgradeToAndCall(newImplementation, data, forceCall); + } } /** - * @dev Throws if the contract is paused. + * @dev Storage slot with the admin of the contract. + * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is + * validated in the constructor. */ - function _requireNotPaused() internal view virtual { - require(!paused(), "Pausable: paused"); - } + bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** - * @dev Throws if the contract is not paused. + * @dev Returns the current admin. */ - function _requirePaused() internal view virtual { - require(paused(), "Pausable: not paused"); + function _getAdmin() internal view returns (address) { + return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** - * @dev Triggers stopped state. - * - * Requirements: - * - * - The contract must not be paused. + * @dev Stores a new address in the EIP1967 admin slot. */ - function _pause() internal virtual whenNotPaused { - _paused = true; - emit Paused(_msgSender()); + function _setAdmin(address newAdmin) private { + require(newAdmin != address(0), "ERC1967: new admin is the zero address"); + StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** - * @dev Returns to normal state. - * - * Requirements: + * @dev Changes the admin of the proxy. * - * - The contract must be paused. + * Emits an {AdminChanged} event. */ - function _unpause() internal virtual whenPaused { - _paused = false; - emit Unpaused(_msgSender()); + function _changeAdmin(address newAdmin) internal { + emit AdminChanged(_getAdmin(), newAdmin); + _setAdmin(newAdmin); } /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. + * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ - uint256[49] private __gap; -} - -/** - * @dev Contract module which provides a basic access control mechanism, where - * there is an account (an owner) that can be granted exclusive access to - * specific functions. - * - * By default, the owner account will be the one that deploys the contract. 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. - */ -abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { - address private _owner; - - event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); + bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** - * @dev Initializes the contract setting the deployer as the initial owner. + * @dev Returns the current beacon. */ - function __Ownable_init() internal onlyInitializing { - __Ownable_init_unchained(); + function _getBeacon() internal view returns (address) { + return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } - function __Ownable_init_unchained() internal onlyInitializing { - _transferOwnership(_msgSender()); + /** + * @dev Stores a new beacon in the EIP1967 beacon slot. + */ + function _setBeacon(address newBeacon) private { + require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); + require( + Address.isContract(IBeacon(newBeacon).implementation()), + "ERC1967: beacon implementation is not a contract" + ); + StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** - * @dev Throws if called by any account other than the owner. + * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does + * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). + * + * Emits a {BeaconUpgraded} event. */ - modifier onlyOwner() { - _checkOwner(); - _; + function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal { + _setBeacon(newBeacon); + emit BeaconUpgraded(newBeacon); + if (data.length > 0 || forceCall) { + Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); + } } +} + +// File npm/@openzeppelin/contracts@4.9.5/proxy/Proxy.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol) + +pragma solidity ^0.8.0; + +/** + * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM + * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to + * be specified by overriding the virtual {_implementation} function. + * + * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a + * different contract through the {_delegate} function. + * + * The success and return data of the delegated call will be returned back to the caller of the proxy. + */ +abstract contract Proxy { /** - * @dev Returns the address of the current owner. + * @dev Delegates the current call to `implementation`. + * + * This function does not return to its internal call site, it will return directly to the external caller. */ - function owner() public view virtual returns (address) { - return _owner; + function _delegate(address implementation) internal virtual { + assembly { + // Copy msg.data. We take full control of memory in this inline assembly + // block because it will not return to Solidity code. We overwrite the + // Solidity scratch pad at memory position 0. + calldatacopy(0, 0, calldatasize()) + + // Call the implementation. + // out and outsize are 0 because we don't know the size yet. + let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) + + // Copy the returned data. + returndatacopy(0, 0, returndatasize()) + + switch result + // delegatecall returns 0 on error. + case 0 { + revert(0, returndatasize()) + } + default { + return(0, returndatasize()) + } + } } /** - * @dev Throws if the sender is not the owner. + * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function + * and {_fallback} should delegate. */ - function _checkOwner() internal view virtual { - require(owner() == _msgSender(), "Ownable: caller is not the owner"); - } + function _implementation() internal view virtual returns (address); /** - * @dev Leaves the contract without owner. It will not be possible to call - * `onlyOwner` functions. Can only be called by the current owner. + * @dev Delegates the current call to the address returned by `_implementation()`. * - * NOTE: Renouncing ownership will leave the contract without an owner, - * thereby disabling any functionality that is only available to the owner. + * This function does not return to its internal call site, it will return directly to the external caller. */ - function renounceOwnership() public virtual onlyOwner { - _transferOwnership(address(0)); + function _fallback() internal virtual { + _beforeFallback(); + _delegate(_implementation()); } /** - * @dev Transfers ownership of the contract to a new account (`newOwner`). - * Can only be called by the current owner. + * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other + * function in the contract matches the call data. */ - function transferOwnership(address newOwner) public virtual onlyOwner { - require(newOwner != address(0), "Ownable: new owner is the zero address"); - _transferOwnership(newOwner); + fallback() external payable virtual { + _fallback(); } /** - * @dev Transfers ownership of the contract to a new account (`newOwner`). - * Internal function without access restriction. + * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data + * is empty. */ - function _transferOwnership(address newOwner) internal virtual { - address oldOwner = _owner; - _owner = newOwner; - emit OwnershipTransferred(oldOwner, newOwner); + receive() external payable virtual { + _fallback(); } /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` + * call, or as part of the Solidity `fallback` or `receive` functions. + * + * If overridden should call `super._beforeFallback()`. */ - uint256[49] private __gap; + function _beforeFallback() internal virtual {} } -/** - * @dev Contract module which provides access control mechanism, where - * there is an account (an owner) that can be granted exclusive access to - * specific functions. - * - * By default, the owner account will be the one that deploys the contract. This - * can later be changed with {transferOwnership} and {acceptOwnership}. - * - * This module is used through inheritance. It will make available all functions - * from parent (Ownable). - */ -abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable { - address private _pendingOwner; - event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); +// File npm/@openzeppelin/contracts@4.9.5/proxy/ERC1967/ERC1967Proxy.sol - function __Ownable2Step_init() internal onlyInitializing { - __Ownable_init_unchained(); - } +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol) - function __Ownable2Step_init_unchained() internal onlyInitializing { - } +pragma solidity ^0.8.0; + + +/** + * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an + * implementation address that can be changed. This address is stored in storage in the location specified by + * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the + * implementation behind the proxy. + */ +contract ERC1967Proxy is Proxy, ERC1967Upgrade { /** - * @dev Returns the address of the pending owner. + * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`. + * + * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded + * function call, and allows initializing the storage of the proxy like a Solidity constructor. */ - function pendingOwner() public view virtual returns (address) { - return _pendingOwner; + constructor(address _logic, bytes memory _data) payable { + _upgradeToAndCall(_logic, _data, false); } /** - * @dev 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. + * @dev Returns the current implementation address. */ - function transferOwnership(address newOwner) public virtual override onlyOwner { - _pendingOwner = newOwner; - emit OwnershipTransferStarted(owner(), newOwner); + function _implementation() internal view virtual override returns (address impl) { + return ERC1967Upgrade._getImplementation(); } +} - /** - * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. - * Internal function without access restriction. + +// File npm/@openzeppelin/contracts@4.9.5/proxy/transparent/TransparentUpgradeableProxy.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (proxy/transparent/TransparentUpgradeableProxy.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy} + * does not implement this interface directly, and some of its functions are implemented by an internal dispatch + * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not + * include them in the ABI so this interface must be used to interact with it. + */ +interface ITransparentUpgradeableProxy is IERC1967 { + function admin() external view returns (address); + + function implementation() external view returns (address); + + function changeAdmin(address) external; + + function upgradeTo(address) external; + + function upgradeToAndCall(address, bytes memory) external payable; +} + +/** + * @dev This contract implements a proxy that is upgradeable by an admin. + * + * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector + * clashing], which can potentially be used in an attack, this contract uses the + * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two + * things that go hand in hand: + * + * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if + * that call matches one of the admin functions exposed by the proxy itself. + * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the + * implementation. If the admin tries to call a function on the implementation it will fail with an error that says + * "admin cannot fallback to proxy target". + * + * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing + * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due + * to sudden errors when trying to call a function from the proxy implementation. + * + * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, + * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. + * + * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not + * inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch + * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to + * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the + * implementation. + * + * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler + * will not check that there are no selector conflicts, due to the note above. A selector clash between any new function + * and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could + * render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised. + */ +contract TransparentUpgradeableProxy is ERC1967Proxy { + /** + * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and + * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ - function _transferOwnership(address newOwner) internal virtual override { - delete _pendingOwner; - super._transferOwnership(newOwner); + constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) { + _changeAdmin(admin_); } /** - * @dev The new owner accepts the ownership transfer. + * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. + * + * CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the + * implementation provides a function with the same selector. */ - function acceptOwnership() public virtual { - address sender = _msgSender(); - require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); - _transferOwnership(sender); + modifier ifAdmin() { + if (msg.sender == _getAdmin()) { + _; + } else { + _fallback(); + } } /** - * @dev This empty reserved space is put in place to allow future versions to add new - * variables without shifting down storage in the inheritance chain. - * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior */ - uint256[49] private __gap; -} + function _fallback() internal virtual override { + if (msg.sender == _getAdmin()) { + bytes memory ret; + bytes4 selector = msg.sig; + if (selector == ITransparentUpgradeableProxy.upgradeTo.selector) { + ret = _dispatchUpgradeTo(); + } else if (selector == ITransparentUpgradeableProxy.upgradeToAndCall.selector) { + ret = _dispatchUpgradeToAndCall(); + } else if (selector == ITransparentUpgradeableProxy.changeAdmin.selector) { + ret = _dispatchChangeAdmin(); + } else if (selector == ITransparentUpgradeableProxy.admin.selector) { + ret = _dispatchAdmin(); + } else if (selector == ITransparentUpgradeableProxy.implementation.selector) { + ret = _dispatchImplementation(); + } else { + revert("TransparentUpgradeableProxy: admin cannot fallback to proxy target"); + } + assembly { + return(add(ret, 0x20), mload(ret)) + } + } else { + super._fallback(); + } + } -library SharedStructs { /** - * @dev Struct representing an institution. - * @param code The code of the institution. - * @param name The name of the institution. + * @dev Returns the current admin. + * + * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the + * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. + * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ - struct Institution { - bytes32 code; - bytes32 name; + function _dispatchAdmin() private returns (bytes memory) { + _requireZeroValue(); + + address admin = _getAdmin(); + return abi.encode(admin); } /** - * @dev Struct representing an institution by code. - * @param name The name of the institution. - * @param currency The currency of the institution. + * @dev Returns the current implementation. + * + * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the + * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. + * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ - struct InstitutionByCode { - bytes32 name; - bytes32 currency; - } -} + function _dispatchImplementation() private returns (bytes memory) { + _requireZeroValue(); -/** - * @title GatewaySettingManager - * @dev This contract manages the settings and configurations for the Gateway protocol. - */ + address implementation = _implementation(); + return abi.encode(implementation); + } -contract GatewaySettingManager is Ownable2StepUpgradeable { - uint256 internal MAX_BPS; - uint64 internal protocolFeePercent; - address internal treasuryAddress; - address internal _aggregatorAddress; + /** + * @dev Changes the admin of the proxy. + * + * Emits an {AdminChanged} event. + */ + function _dispatchChangeAdmin() private returns (bytes memory) { + _requireZeroValue(); - // this should decrease if more slots are needed on this contract to avoid collisions with base contract - uint256[50] private __gap; + address newAdmin = abi.decode(msg.data[4:], (address)); + _changeAdmin(newAdmin); - mapping(address => uint256) internal _isTokenSupported; + return ""; + } - mapping(bytes32 => SharedStructs.Institution[]) internal supportedInstitutions; - mapping(bytes32 => SharedStructs.InstitutionByCode) internal supportedInstitutionsByCode; + /** + * @dev Upgrade the implementation of the proxy. + */ + function _dispatchUpgradeTo() private returns (bytes memory) { + _requireZeroValue(); - event SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status); - event SupportedInstitutionsUpdated( - bytes32 indexed currency, - SharedStructs.Institution[] institutions - ); - event ProtocolFeeUpdated(uint64 protocolFee); - event ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress); - event SetFeeRecipient(address indexed treasuryAddress); + address newImplementation = abi.decode(msg.data[4:], (address)); + _upgradeToAndCall(newImplementation, bytes(""), false); - /* ################################################################## - OWNER FUNCTIONS - ################################################################## */ + return ""; + } - /** - * @dev Sets the boolean value for a specific setting. - * @param what The setting to be updated. - * @param value The address or value associated with the setting. - * @param status The boolean value to be set. - * Requirements: - * - The value must not be a zero address. - */ - function settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner { - require(value != address(0), 'Gateway: zero address'); - require(status == 1 || status == 2, 'Gateway: invalid status'); - if (what == 'token') { - _isTokenSupported[value] = status; - emit SettingManagerBool(what, value, status); - } - } + /** + * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified + * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the + * proxied contract. + */ + function _dispatchUpgradeToAndCall() private returns (bytes memory) { + (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes)); + _upgradeToAndCall(newImplementation, data, true); - /** - * @dev Sets the supported institutions for a specific currency. - * @param currency The currency for which the institutions are being set. - * @param institutions The array of institutions to be set. - */ - function setSupportedInstitutions( - bytes32 currency, - SharedStructs.Institution[] memory institutions - ) external onlyOwner { - delete supportedInstitutions[currency]; - for (uint i; i < institutions.length; ) { - supportedInstitutions[currency].push(institutions[i]); - supportedInstitutionsByCode[institutions[i].code] = SharedStructs.InstitutionByCode({ - name: institutions[i].name, - currency: currency - }); - unchecked { - ++i; - } - } - emit SupportedInstitutionsUpdated(currency, supportedInstitutions[currency]); - } + return ""; + } - /** - * @dev Updates the protocol fee percentage. - * @param _protocolFeePercent The new protocol fee percentage to be set. - */ - function updateProtocolFee(uint64 _protocolFeePercent) external onlyOwner { - protocolFeePercent = _protocolFeePercent; - emit ProtocolFeeUpdated(_protocolFeePercent); - } + /** + * @dev Returns the current admin. + * + * CAUTION: This function is deprecated. Use {ERC1967Upgrade-_getAdmin} instead. + */ + function _admin() internal view virtual returns (address) { + return _getAdmin(); + } - /** - * @dev Updates a protocol address. - * @param what The address type to be updated (treasury or aggregator). - * @param value The new address to be set. - * Requirements: - * - The value must not be a zero address. - */ - function updateProtocolAddress(bytes32 what, address value) external onlyOwner { - require(value != address(0), 'Gateway: zero address'); - bool updated; - if (what == 'treasury') { - require(treasuryAddress != value, 'Gateway: treasury address already set'); - treasuryAddress = value; - updated = true; - } else if (what == 'aggregator') { - require(_aggregatorAddress != value, 'Gateway: aggregator address already set'); - _aggregatorAddress = value; - updated = true; - } - if (updated) { - emit ProtocolAddressUpdated(what, value); - } - } + /** + * @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to + * emulate some proxy functions being non-payable while still allowing value to pass through. + */ + function _requireZeroValue() private { + require(msg.value == 0); + } } + +// File npm/@openzeppelin/contracts@4.9.5/proxy/transparent/ProxyAdmin.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/ProxyAdmin.sol) + +pragma solidity ^0.8.0; + + /** - * @dev Interface of the ERC20 standard as defined in the EIP. + * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an + * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}. */ -interface IERC20 { +contract ProxyAdmin is Ownable { /** - * @dev Emitted when `value` tokens are moved from one account (`from`) to - * another (`to`). + * @dev Returns the current implementation of `proxy`. * - * Note that `value` may be zero. + * Requirements: + * + * - This contract must be the admin of `proxy`. */ - event Transfer(address indexed from, address indexed to, uint256 value); + function getProxyImplementation(ITransparentUpgradeableProxy proxy) public view virtual returns (address) { + // We need to manually run the static call since the getter cannot be flagged as view + // bytes4(keccak256("implementation()")) == 0x5c60da1b + (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b"); + require(success); + return abi.decode(returndata, (address)); + } /** - * @dev Emitted when the allowance of a `spender` for an `owner` is set by - * a call to {approve}. `value` is the new allowance. + * @dev Returns the current admin of `proxy`. + * + * Requirements: + * + * - This contract must be the admin of `proxy`. */ - event Approval(address indexed owner, address indexed spender, uint256 value); + function getProxyAdmin(ITransparentUpgradeableProxy proxy) public view virtual returns (address) { + // We need to manually run the static call since the getter cannot be flagged as view + // bytes4(keccak256("admin()")) == 0xf851a440 + (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440"); + require(success); + return abi.decode(returndata, (address)); + } /** - * @dev Returns the amount of tokens in existence. + * @dev Changes the admin of `proxy` to `newAdmin`. + * + * Requirements: + * + * - This contract must be the current admin of `proxy`. */ - function totalSupply() external view returns (uint256); + function changeProxyAdmin(ITransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner { + proxy.changeAdmin(newAdmin); + } /** - * @dev Returns the amount of tokens owned by `account`. + * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}. + * + * Requirements: + * + * - This contract must be the admin of `proxy`. */ - function balanceOf(address account) external view returns (uint256); + function upgrade(ITransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner { + proxy.upgradeTo(implementation); + } /** - * @dev Moves `amount` tokens from the caller's account to `to`. + * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See + * {TransparentUpgradeableProxy-upgradeToAndCall}. * - * Returns a boolean value indicating whether the operation succeeded. + * Requirements: * - * Emits a {Transfer} event. + * - This contract must be the admin of `proxy`. */ - function transfer(address to, uint256 amount) external returns (bool); + function upgradeAndCall( + ITransparentUpgradeableProxy proxy, + address implementation, + bytes memory data + ) public payable virtual onlyOwner { + proxy.upgradeToAndCall{value: msg.value}(implementation, data); + } +} + +// File npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) + +pragma solidity ^0.8.1; + +/** + * @dev Collection of functions related to the address type + */ +library AddressUpgradeable { /** - * @dev Returns the remaining number of tokens that `spender` will be - * allowed to spend on behalf of `owner` through {transferFrom}. This is - * zero by default. + * @dev Returns true if `account` is a contract. * - * This value changes when {approve} or {transferFrom} are called. + * [IMPORTANT] + * ==== + * It is unsafe to assume that an address for which this function returns + * false is an externally-owned account (EOA) and not a contract. + * + * Among others, `isContract` will return false for the following + * types of addresses: + * + * - an externally-owned account + * - a contract in construction + * - an address where a contract will be created + * - an address where a contract lived, but was destroyed + * + * Furthermore, `isContract` will also return true if the target contract within + * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, + * which only has an effect at the end of a transaction. + * ==== + * + * [IMPORTANT] + * ==== + * You shouldn't rely on `isContract` to protect against flash loan attacks! + * + * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets + * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract + * constructor. + * ==== */ - function allowance(address owner, address spender) external view returns (uint256); + function isContract(address account) internal view returns (bool) { + // This method relies on extcodesize/address.code.length, which returns 0 + // for contracts in construction, since the code is only stored at the end + // of the constructor execution. + + return account.code.length > 0; + } /** - * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. + * @dev Replacement for Solidity's `transfer`: sends `amount` wei to + * `recipient`, forwarding all available gas and reverting on errors. * - * Returns a boolean value indicating whether the operation succeeded. + * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost + * of certain opcodes, possibly making contracts go over the 2300 gas limit + * imposed by `transfer`, making them unable to receive funds via + * `transfer`. {sendValue} removes this limitation. * - * 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 + * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * - * Emits an {Approval} event. + * IMPORTANT: because control is transferred to `recipient`, care must be + * taken to not create reentrancy vulnerabilities. Consider using + * {ReentrancyGuard} or the + * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ - function approve(address spender, uint256 amount) external returns (bool); + function sendValue(address payable recipient, uint256 amount) internal { + require(address(this).balance >= amount, "Address: insufficient balance"); + + (bool success, ) = recipient.call{value: amount}(""); + require(success, "Address: unable to send value, recipient may have reverted"); + } /** - * @dev Moves `amount` tokens from `from` to `to` using the - * allowance mechanism. `amount` is then deducted from the caller's - * allowance. + * @dev Performs a Solidity function call using a low level `call`. A + * plain `call` is an unsafe replacement for a function call: use this + * function instead. * - * Returns a boolean value indicating whether the operation succeeded. + * If `target` reverts with a revert reason, it is bubbled up by this + * function (like regular Solidity function calls). * - * Emits a {Transfer} event. - */ + * Returns the raw returned data. To convert to the expected return value, + * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. + * + * Requirements: + * + * - `target` must be a contract. + * - calling `target` with `data` must not revert. + * + * _Available since v3.1._ + */ + function functionCall(address target, bytes memory data) internal returns (bytes memory) { + return functionCallWithValue(target, data, 0, "Address: low-level call failed"); + } + + /** + * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with + * `errorMessage` as a fallback revert reason when `target` reverts. + * + * _Available since v3.1._ + */ + function functionCall( + address target, + bytes memory data, + string memory errorMessage + ) internal returns (bytes memory) { + return functionCallWithValue(target, data, 0, errorMessage); + } + + /** + * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], + * but also transferring `value` wei to `target`. + * + * Requirements: + * + * - the calling contract must have an ETH balance of at least `value`. + * - the called Solidity function must be `payable`. + * + * _Available since v3.1._ + */ + function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { + return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); + } + + /** + * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but + * with `errorMessage` as a fallback revert reason when `target` reverts. + * + * _Available since v3.1._ + */ + function functionCallWithValue( + address target, + bytes memory data, + uint256 value, + string memory errorMessage + ) internal returns (bytes memory) { + require(address(this).balance >= value, "Address: insufficient balance for call"); + (bool success, bytes memory returndata) = target.call{value: value}(data); + return verifyCallResultFromTarget(target, success, returndata, errorMessage); + } + + /** + * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], + * but performing a static call. + * + * _Available since v3.3._ + */ + function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { + return functionStaticCall(target, data, "Address: low-level static call failed"); + } + + /** + * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], + * but performing a static call. + * + * _Available since v3.3._ + */ + function functionStaticCall( + address target, + bytes memory data, + string memory errorMessage + ) internal view returns (bytes memory) { + (bool success, bytes memory returndata) = target.staticcall(data); + return verifyCallResultFromTarget(target, success, returndata, errorMessage); + } + + /** + * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], + * but performing a delegate call. + * + * _Available since v3.4._ + */ + function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { + return functionDelegateCall(target, data, "Address: low-level delegate call failed"); + } + + /** + * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], + * but performing a delegate call. + * + * _Available since v3.4._ + */ + function functionDelegateCall( + address target, + bytes memory data, + string memory errorMessage + ) internal returns (bytes memory) { + (bool success, bytes memory returndata) = target.delegatecall(data); + return verifyCallResultFromTarget(target, success, returndata, errorMessage); + } + + /** + * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling + * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. + * + * _Available since v4.8._ + */ + function verifyCallResultFromTarget( + address target, + bool success, + bytes memory returndata, + string memory errorMessage + ) internal view returns (bytes memory) { + if (success) { + if (returndata.length == 0) { + // only check isContract if the call was successful and the return data is empty + // otherwise we already know that it was a contract + require(isContract(target), "Address: call to non-contract"); + } + return returndata; + } else { + _revert(returndata, errorMessage); + } + } + + /** + * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the + * revert reason or using the provided one. + * + * _Available since v4.3._ + */ + function verifyCallResult( + bool success, + bytes memory returndata, + string memory errorMessage + ) internal pure returns (bytes memory) { + if (success) { + return returndata; + } else { + _revert(returndata, errorMessage); + } + } + + function _revert(bytes memory returndata, string memory errorMessage) private pure { + // Look for revert reason and bubble it up if present + if (returndata.length > 0) { + // The easiest way to bubble the revert reason is using memory via assembly + /// @solidity memory-safe-assembly + assembly { + let returndata_size := mload(returndata) + revert(add(32, returndata), returndata_size) + } + } else { + revert(errorMessage); + } + } +} + + +// File npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) + +pragma solidity ^0.8.2; + +/** + * @dev 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] + * ``` + * /// @custom:oz-upgrades-unsafe-allow constructor + * constructor() { + * _disableInitializers(); + * } + * ``` + * ==== + */ +abstract contract Initializable { + /** + * @dev Indicates that the contract has been initialized. + * @custom:oz-retyped-from bool + */ + uint8 private _initialized; + + /** + * @dev Indicates that the contract is in the process of being initialized. + */ + bool private _initializing; + + /** + * @dev Triggered when the contract has been initialized or reinitialized. + */ + event Initialized(uint8 version); + + /** + * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, + * `onlyInitializing` functions can be used to initialize parent contracts. + * + * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a + * constructor. + * + * Emits an {Initialized} event. + */ + modifier initializer() { + bool isTopLevelCall = !_initializing; + require( + (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), + "Initializable: contract is already initialized" + ); + _initialized = 1; + if (isTopLevelCall) { + _initializing = true; + } + _; + if (isTopLevelCall) { + _initializing = false; + emit Initialized(1); + } + } + + /** + * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the + * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be + * used to initialize parent contracts. + * + * A reinitializer may be used after the original initialization step. This is essential to configure modules that + * are added through upgrades and that require initialization. + * + * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` + * cannot be nested. If one is invoked in the context of another, execution will revert. + * + * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in + * a contract, executing them in the right order is up to the developer or operator. + * + * WARNING: setting the version to 255 will prevent any future reinitialization. + * + * Emits an {Initialized} event. + */ + modifier reinitializer(uint8 version) { + require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); + _initialized = version; + _initializing = true; + _; + _initializing = false; + emit Initialized(version); + } + + /** + * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the + * {initializer} and {reinitializer} modifiers, directly or indirectly. + */ + modifier onlyInitializing() { + require(_initializing, "Initializable: contract is not initializing"); + _; + } + + /** + * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. + * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized + * to any version. It is recommended to use this to lock implementation contracts that are designed to be called + * through proxies. + * + * Emits an {Initialized} event the first time it is successfully executed. + */ + function _disableInitializers() internal virtual { + require(!_initializing, "Initializable: contract is initializing"); + if (_initialized != type(uint8).max) { + _initialized = type(uint8).max; + emit Initialized(type(uint8).max); + } + } + + /** + * @dev Returns the highest version that has been initialized. See {reinitializer}. + */ + function _getInitializedVersion() internal view returns (uint8) { + return _initialized; + } + + /** + * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. + */ + function _isInitializing() internal view returns (bool) { + return _initializing; + } +} + + +// File npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) + +pragma solidity ^0.8.0; + +/** + * @dev 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. + */ +abstract contract ContextUpgradeable is Initializable { + function __Context_init() internal onlyInitializing { + } + + function __Context_init_unchained() internal onlyInitializing { + } + function _msgSender() internal view virtual returns (address) { + return msg.sender; + } + + function _msgData() internal view virtual returns (bytes calldata) { + return msg.data; + } + + function _contextSuffixLength() internal view virtual returns (uint256) { + return 0; + } + + /** + * @dev This empty reserved space is put in place to allow future versions to add new + * variables without shifting down storage in the inheritance chain. + * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + */ + uint256[50] private __gap; +} + + +// File npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) + +pragma solidity ^0.8.0; + + +/** + * @dev Contract module which allows children to implement an emergency stop + * mechanism that can be triggered by an authorized account. + * + * This module is used through inheritance. It will make available the + * modifiers `whenNotPaused` and `whenPaused`, which can be applied to + * the functions of your contract. Note that they will not be pausable by + * simply including this module, only once the modifiers are put in place. + */ +abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { + /** + * @dev Emitted when the pause is triggered by `account`. + */ + event Paused(address account); + + /** + * @dev Emitted when the pause is lifted by `account`. + */ + event Unpaused(address account); + + bool private _paused; + + /** + * @dev Initializes the contract in unpaused state. + */ + function __Pausable_init() internal onlyInitializing { + __Pausable_init_unchained(); + } + + function __Pausable_init_unchained() internal onlyInitializing { + _paused = false; + } + + /** + * @dev Modifier to make a function callable only when the contract is not paused. + * + * Requirements: + * + * - The contract must not be paused. + */ + modifier whenNotPaused() { + _requireNotPaused(); + _; + } + + /** + * @dev Modifier to make a function callable only when the contract is paused. + * + * Requirements: + * + * - The contract must be paused. + */ + modifier whenPaused() { + _requirePaused(); + _; + } + + /** + * @dev Returns true if the contract is paused, and false otherwise. + */ + function paused() public view virtual returns (bool) { + return _paused; + } + + /** + * @dev Throws if the contract is paused. + */ + function _requireNotPaused() internal view virtual { + require(!paused(), "Pausable: paused"); + } + + /** + * @dev Throws if the contract is not paused. + */ + function _requirePaused() internal view virtual { + require(paused(), "Pausable: not paused"); + } + + /** + * @dev Triggers stopped state. + * + * Requirements: + * + * - The contract must not be paused. + */ + function _pause() internal virtual whenNotPaused { + _paused = true; + emit Paused(_msgSender()); + } + + /** + * @dev Returns to normal state. + * + * Requirements: + * + * - The contract must be paused. + */ + function _unpause() internal virtual whenPaused { + _paused = false; + emit Unpaused(_msgSender()); + } + + /** + * @dev This empty reserved space is put in place to allow future versions to add new + * variables without shifting down storage in the inheritance chain. + * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + */ + uint256[49] private __gap; +} + + +// File npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) + +pragma solidity ^0.8.0; + + +/** + * @dev Contract module which provides a basic access control mechanism, where + * there is an account (an owner) that can be granted exclusive access to + * specific functions. + * + * By default, the owner account will be the one that deploys the contract. 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. + */ +abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { + address private _owner; + + event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); + + /** + * @dev Initializes the contract setting the deployer as the initial owner. + */ + function __Ownable_init() internal onlyInitializing { + __Ownable_init_unchained(); + } + + function __Ownable_init_unchained() internal onlyInitializing { + _transferOwnership(_msgSender()); + } + + /** + * @dev Throws if called by any account other than the owner. + */ + modifier onlyOwner() { + _checkOwner(); + _; + } + + /** + * @dev Returns the address of the current owner. + */ + function owner() public view virtual returns (address) { + return _owner; + } + + /** + * @dev Throws if the sender is not the owner. + */ + function _checkOwner() internal view virtual { + require(owner() == _msgSender(), "Ownable: caller is not the owner"); + } + + /** + * @dev 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. + */ + function renounceOwnership() public virtual onlyOwner { + _transferOwnership(address(0)); + } + + /** + * @dev Transfers ownership of the contract to a new account (`newOwner`). + * Can only be called by the current owner. + */ + function transferOwnership(address newOwner) public virtual onlyOwner { + require(newOwner != address(0), "Ownable: new owner is the zero address"); + _transferOwnership(newOwner); + } + + /** + * @dev Transfers ownership of the contract to a new account (`newOwner`). + * Internal function without access restriction. + */ + function _transferOwnership(address newOwner) internal virtual { + address oldOwner = _owner; + _owner = newOwner; + emit OwnershipTransferred(oldOwner, newOwner); + } + + /** + * @dev This empty reserved space is put in place to allow future versions to add new + * variables without shifting down storage in the inheritance chain. + * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + */ + uint256[49] private __gap; +} + + +// File npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) + +pragma solidity ^0.8.0; + + +/** + * @dev Contract module which provides access control mechanism, where + * there is an account (an owner) that can be granted exclusive access to + * specific functions. + * + * By default, the owner account will be the one that deploys the contract. This + * can later be changed with {transferOwnership} and {acceptOwnership}. + * + * This module is used through inheritance. It will make available all functions + * from parent (Ownable). + */ +abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable { + address private _pendingOwner; + + event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); + + function __Ownable2Step_init() internal onlyInitializing { + __Ownable_init_unchained(); + } + + function __Ownable2Step_init_unchained() internal onlyInitializing { + } + /** + * @dev Returns the address of the pending owner. + */ + function pendingOwner() public view virtual returns (address) { + return _pendingOwner; + } + + /** + * @dev 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. + */ + function transferOwnership(address newOwner) public virtual override onlyOwner { + _pendingOwner = newOwner; + emit OwnershipTransferStarted(owner(), newOwner); + } + + /** + * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. + * Internal function without access restriction. + */ + function _transferOwnership(address newOwner) internal virtual override { + delete _pendingOwner; + super._transferOwnership(newOwner); + } + + /** + * @dev The new owner accepts the ownership transfer. + */ + function acceptOwnership() public virtual { + address sender = _msgSender(); + require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); + _transferOwnership(sender); + } + + /** + * @dev This empty reserved space is put in place to allow future versions to add new + * variables without shifting down storage in the inheritance chain. + * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps + */ + uint256[49] private __gap; +} + + +// File contracts/GatewaySettingManager.sol + +// Original license: SPDX_License_Identifier: UNLICENSED + +/** + * @title GatewaySettingManager + * @dev This contract manages the settings and configurations for the Gateway protocol. + */ +pragma solidity ^0.8.18; + +contract GatewaySettingManager is Ownable2StepUpgradeable { + uint256 internal MAX_BPS; + uint64 internal protocolFeePercent; // DEPRECATED — kept for proxy storage compatibility (do not remove) + address internal treasuryAddress; + address internal _aggregatorAddress; + mapping(address => uint256) internal _isTokenSupported; + + // Token-specific fee settings + struct TokenFeeSettings { + uint256 senderToProvider; // % of sender fee that goes to provider (local mode) + uint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode) + uint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode) + uint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode) + } + + mapping(address => TokenFeeSettings) internal _tokenFeeSettings; + + uint256[49] private __gap; + + event SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status); + event ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress); + event SetFeeRecipient(address indexed treasuryAddress); + event TokenFeeSettingsUpdated( + address indexed token, + uint256 senderToProvider, + uint256 providerToAggregator, + uint256 senderToAggregator, + uint256 providerToAggregatorFx + ); + + /* ################################################################## + OWNER FUNCTIONS + ################################################################## */ + + /** + * @dev Sets the boolean value for a specific setting. + * @param what The setting to be updated. + * @param value The address or value associated with the setting. + * @param status The boolean value to be set. + * Requirements: + * - The value must not be a zero address. + */ + function settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner { + require(value != address(0), 'Gateway: zero address'); + require(status == 1 || status == 2, 'Gateway: invalid status'); + if (what == 'token') { + _isTokenSupported[value] = status; + emit SettingManagerBool(what, value, status); + } + } + + /** + * @dev Updates a protocol address. + * @param what The address type to be updated (treasury or aggregator). + * @param value The new address to be set. + * Requirements: + * - The value must not be a zero address. + */ + function updateProtocolAddress(bytes32 what, address value) external onlyOwner { + require(value != address(0), 'Gateway: zero address'); + bool updated; + if (what == 'treasury') { + require(treasuryAddress != value, 'Gateway: treasury address already set'); + treasuryAddress = value; + updated = true; + } else if (what == 'aggregator') { + require(_aggregatorAddress != value, 'Gateway: aggregator address already set'); + _aggregatorAddress = value; + updated = true; + } + if (updated) { + emit ProtocolAddressUpdated(what, value); + } + } + + /** + * @dev Sets token-specific fee settings for stablecoins. + * @param token The token address to configure. + * @param senderToProvider Percentage of sender fee that goes to provider (local mode). + * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode). + * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode). + * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode). + * Requirements: + * - The token must be supported. + * - Fee percentages must be within valid ranges. + */ + function setTokenFeeSettings( + address token, + uint256 senderToProvider, + uint256 providerToAggregator, + uint256 senderToAggregator, + uint256 providerToAggregatorFx + ) external onlyOwner { + require(_isTokenSupported[token] == 1, 'Gateway: token not supported'); + require(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider'); + require(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator'); + require(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator'); + require(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx'); + + _tokenFeeSettings[token] = TokenFeeSettings({ + senderToProvider: senderToProvider, + providerToAggregator: providerToAggregator, + senderToAggregator: senderToAggregator, + providerToAggregatorFx: providerToAggregatorFx + }); + + emit TokenFeeSettingsUpdated( + token, + senderToProvider, + providerToAggregator, + senderToAggregator, + providerToAggregatorFx + ); + } + + /** + * @dev Gets token-specific fee settings. + * @param token The token address to query. + * @return TokenFeeSettings struct containing all fee settings for the token. + */ + function getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) { + return _tokenFeeSettings[token]; + } +} + + +// File npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Interface of the ERC20 standard as defined in the EIP. + */ +interface IERC20 { + /** + * @dev Emitted when `value` tokens are moved from one account (`from`) to + * another (`to`). + * + * Note that `value` may be zero. + */ + event Transfer(address indexed from, address indexed to, uint256 value); + + /** + * @dev Emitted when the allowance of a `spender` for an `owner` is set by + * a call to {approve}. `value` is the new allowance. + */ + event Approval(address indexed owner, address indexed spender, uint256 value); + + /** + * @dev Returns the amount of tokens in existence. + */ + function totalSupply() external view returns (uint256); + + /** + * @dev Returns the amount of tokens owned by `account`. + */ + function balanceOf(address account) external view returns (uint256); + + /** + * @dev Moves `amount` tokens from the caller's account to `to`. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * Emits a {Transfer} event. + */ + function transfer(address to, uint256 amount) external returns (bool); + + /** + * @dev 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. + */ + function allowance(address owner, address spender) external view returns (uint256); + + /** + * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * IMPORTANT: Beware that changing an allowance with this method brings the risk + * that someone may use both the old and the new allowance by unfortunate + * transaction ordering. One possible solution to mitigate this race + * condition is to first reduce the spender's allowance to 0 and set the + * desired value afterwards: + * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 + * + * Emits an {Approval} event. + */ + function approve(address spender, uint256 amount) external returns (bool); + + /** + * @dev Moves `amount` tokens from `from` to `to` using the + * allowance mechanism. `amount` is then deducted from the caller's + * allowance. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * Emits a {Transfer} event. + */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } -/** - * @title IGateway - * @notice Interface for the Gateway contract. - */ -interface IGateway { - /* ################################################################## - EVENTS - ################################################################## */ - /** - * @dev Emitted when a deposit is made. - * @param sender The address of the sender. - * @param token The address of the deposited token. - * @param amount The amount of the deposit. - * @param orderId The ID of the order. - * @param rate The rate at which the deposit is made. - * @param institutionCode The code of the institution. - * @param messageHash The hash of the message. - */ - event OrderCreated( - address indexed sender, - address indexed token, - uint256 indexed amount, - uint256 protocolFee, - bytes32 orderId, - uint256 rate, - bytes32 institutionCode, - string messageHash - ); - /** - * @dev Emitted when an aggregator settles a transaction. - * @param splitOrderId The ID of the split order. - * @param orderId The ID of the order. - * @param liquidityProvider The address of the liquidity provider. - * @param settlePercent The percentage at which the transaction is settled. - */ - event OrderSettled( - bytes32 splitOrderId, - bytes32 indexed orderId, - address indexed liquidityProvider, - uint96 settlePercent - ); +// File contracts/interfaces/IGateway.sol + +// Original license: SPDX_License_Identifier: UNLICENSED +pragma solidity ^0.8.18; + +/** + * @title IGateway + * @notice Interface for the Gateway contract. + */ +interface IGateway { + /* ################################################################## + EVENTS + ################################################################## */ + /** + * @dev Emitted when a deposit is made. + * @param sender The address of the sender. + * @param token The address of the deposited token. + * @param amount The amount of the deposit. + * @param orderId The ID of the order. + * @param rate The rate at which the deposit is made. + * @param messageHash The hash of the message. + */ + event OrderCreated( + address indexed sender, + address indexed token, + uint256 indexed amount, + uint256 protocolFee, + bytes32 orderId, + uint256 rate, + string messageHash + ); + + /** + * @dev Emitted when an aggregator settles a transaction. + * @param splitOrderId The ID of the split order. + * @param orderId The ID of the order. + * @param liquidityProvider The address of the liquidity provider. + * @param settlePercent The percentage at which the transaction is settled. + * @param rebatePercent The percentage of the aggregator fee that is given back to the provider. + */ + event SettleOut( + bytes32 splitOrderId, + bytes32 indexed orderId, + address indexed liquidityProvider, + uint64 settlePercent, + uint64 rebatePercent + ); + + /** + * @dev Emitted when an onramp order is successfully processed + */ + event SettleIn( + bytes32 indexed orderId, + address indexed liquidityProvider, + address indexed recipient, + uint256 amount, + address token, + uint256 aggregatorFee, + uint96 rate + ); + + /** + * @dev Emitted when an aggregator refunds a transaction. + * @param fee The fee deducted from the refund amount. + * @param orderId The ID of the order. + */ + event OrderRefunded(uint256 fee, bytes32 indexed orderId); + + /** + * @dev Emitted when the sender's fee is transferred. + * @param sender The address of the sender. + * @param amount The amount of the fee transferred. + */ + event SenderFeeTransferred(bytes32 indexed orderId, address indexed sender, uint256 indexed amount); + + /** + * @dev Emitted when a local transfer fee is split. + * @param orderId The ID of the order. + * @param senderAmount The amount that goes to the sender. + * @param providerAmount The amount that goes to the provider. + * @param aggregatorAmount The amount that goes to the aggregator. + */ + event LocalTransferFeeSplit( + bytes32 indexed orderId, + uint256 senderAmount, + uint256 providerAmount, + uint256 aggregatorAmount + ); + + /** + * @dev Emitted when an FX transfer fee is split. + * @param orderId The ID of the order. + * @param senderAmount The amount that goes to the sender. + * @param aggregatorAmount The amount that goes to the aggregator. + */ + event FxTransferFeeSplit( + bytes32 indexed orderId, + uint256 senderAmount, + uint256 aggregatorAmount + ); + + /* ################################################################## + STRUCTS + ################################################################## */ + /** + * @dev Struct representing an order. + * @param sender The address of the sender. + * @param token The address of the token. + * @param senderFeeRecipient The address of the sender fee recipient. + * @param senderFee The fee to be paid to the sender fee recipient. + * @param protocolFee The protocol fee to be paid. + * @param isFulfilled Whether the order is fulfilled. + * @param isRefunded Whether the order is refunded. + * @param refundAddress The address to which the refund is made. + * @param currentBPS The current basis points. + * @param amount The amount of the order. + */ + struct Order { + address sender; + address token; + address senderFeeRecipient; + uint256 senderFee; + uint256 protocolFee; + bool isFulfilled; + bool isRefunded; + address refundAddress; + uint96 currentBPS; + uint256 amount; + } + + /* ################################################################## + EXTERNAL CALLS + ################################################################## */ + /** + * @notice Locks the sender's amount of token into Gateway. + * @dev Requirements: + * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. + * - `_token` must be an acceptable token. See {isTokenSupported}. + * - `amount` must be greater than minimum. + * - `_refundAddress` refund address must not be zero address. + * @param _token The address of the token. + * @param _amount The amount in the decimal of `_token` to be locked. + * @param _rate The rate at which the sender intends to sell `_amount` of `_token`. + * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`. + * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`. + * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund. + * @param messageHash The hash of the message. + * @return _orderId The ID of the order. + */ + function createOrder( + address _token, + uint256 _amount, + uint96 _rate, + address _senderFeeRecipient, + uint256 _senderFee, + address _refundAddress, + string calldata messageHash + ) external returns (bytes32 _orderId); + + /** + * @notice Settles a transaction and distributes rewards accordingly. + * @param _splitOrderId The ID of the split order. + * @param _orderId The ID of the transaction. + * @param _liquidityProvider The address of the liquidity provider. + * @param _settlePercent The rate at which the transaction is settled. + * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider. + * @return bool the settlement is successful. + */ + function settleOut( + bytes32 _splitOrderId, + bytes32 _orderId, + address _liquidityProvider, + uint64 _settlePercent, + uint64 _rebatePercent + ) external returns (bool); + + /** + * @notice Process settleIn order + * @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator + * @dev It process an order and transfers tokens to the recipient after deducting sender fees + * @param _orderId Unique identifier for the order being processed + * @param _token Address of the token to be sent to the user + * @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees + * @param _senderFeeRecipient Address that will receive the sender fee + * @param _senderFee Amount of fee to be paid to the sender fee recipient + * @param _recipient Address of the recipient who will receive the tokens + * @param _rate Rate at which the tokens are being sent + * @return success Boolean indicating if the operation was successful + */ + function settleIn( + bytes32 _orderId, + address _token, + uint256 _amount, + address _senderFeeRecipient, + uint96 _senderFee, + address _recipient, + uint96 _rate + ) external returns (bool); + + /** + * @notice Refunds to the specified refundable address. + * @dev Requirements: + * - Only aggregators can call this function. + * @param _fee The amount to be deducted from the amount to be refunded. + * @param _orderId The ID of the transaction. + * @return bool the refund is successful. + */ + function refund(uint256 _fee, bytes32 _orderId) external returns (bool); + + /** + * @notice Checks if a token is supported by Gateway. + * @param _token The address of the token to check. + * @return bool the token is supported. + */ + function isTokenSupported(address _token) external view returns (bool); + + /** + * @notice Gets the details of an order. + * @param _orderId The ID of the order. + * @return Order The order details. + */ + function getOrderInfo(bytes32 _orderId) external view returns (Order memory); + + /** + * @notice Gets the address of the aggregator. + * @return address The address of the aggregator. + */ + function getAggregator() external view returns (address); +} + + +// File contracts/Gateway.sol + +// Original license: SPDX_License_Identifier: UNLICENSED +pragma solidity ^0.8.18; + + +/** + * @title Gateway + * @notice This contract serves as a gateway for creating orders and managing settlements. + */ +contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { + struct fee { + uint256 protocolFee; + uint256 liquidityProviderAmount; + } + + mapping(bytes32 => Order) private order; + mapping(address => uint256) private _nonce; + uint256[50] private __gap; + + /// @custom:oz-upgrades-unsafe-allow constructor + constructor() { + _disableInitializers(); + } + + /** + * @dev Initialize function. + */ + function initialize() external initializer { + MAX_BPS = 100_000; + __Ownable2Step_init(); + __Pausable_init(); + } + + /** + * @dev Modifier that allows only the aggregator to call a function. + */ + modifier onlyAggregator() { + require(msg.sender == _aggregatorAddress, 'OnlyAggregator'); + _; + } + + /* ################################################################## + OWNER FUNCTIONS + ################################################################## */ + /** + * @dev Pause the contract. + */ + function pause() external onlyOwner { + _pause(); + } + + /** + * @dev Unpause the contract. + */ + function unpause() external onlyOwner { + _unpause(); + } + + /* ################################################################## + USER CALLS + ################################################################## */ + /** @dev See {createOrder-IGateway}. */ + function createOrder( + address _token, + uint256 _amount, + uint96 _rate, + address _senderFeeRecipient, + uint256 _senderFee, + address _refundAddress, + string calldata messageHash + ) external whenNotPaused returns (bytes32 orderId) { + // checks that are required + _handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee); + + // validate messageHash + require(bytes(messageHash).length != 0, 'InvalidMessageHash'); + + // transfer token from msg.sender to contract + IERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee); + + // increase users nonce to avoid replay attacks + _nonce[msg.sender]++; + + // generate transaction id for the transaction with chain id + orderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid)); + + require(order[orderId].sender == address(0), 'OrderAlreadyExists'); + + // update transaction + uint256 _protocolFee; + if (_rate == 100) { + // local transfer (rate = 1) + _protocolFee = 0; + require(_senderFee > 0, 'SenderFeeIsZero'); + } else { + // fx transfer (rate != 1) - use token-specific providerToAggregatorFx + TokenFeeSettings memory settings = _tokenFeeSettings[_token]; + require(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured'); + _protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS; + } + order[orderId] = Order({ + sender: msg.sender, + token: _token, + senderFeeRecipient: _senderFeeRecipient, + senderFee: _senderFee, + protocolFee: _protocolFee, + isFulfilled: false, + isRefunded: false, + refundAddress: _refundAddress, + currentBPS: uint64(MAX_BPS), + amount: _amount + }); + + // emit order created event + emit OrderCreated( + _refundAddress, + _token, + order[orderId].amount, + _protocolFee, + orderId, + _rate, + messageHash + ); + } + + /** + * @dev Internal function to handle order creation. + * @param _token The address of the token being traded. + * @param _amount The amount of tokens being traded. + * @param _refundAddress The address to refund the tokens in case of cancellation. + * @param _senderFeeRecipient The address of the recipient for the sender fee. + * @param _senderFee The amount of the sender fee. + */ + function _handler( + address _token, + uint256 _amount, + address _refundAddress, + address _senderFeeRecipient, + uint256 _senderFee + ) internal view { + require(_isTokenSupported[_token] == 1, 'TokenNotSupported'); + require(_amount != 0, 'AmountIsZero'); + require(_refundAddress != address(0), 'ThrowZeroAddress'); + + if (_senderFee != 0) { + require(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient'); + } + } + + /* ################################################################## + AGGREGATOR FUNCTIONS + ################################################################## */ + /** @dev See {settleOut-IGateway}. */ + function settleOut( + bytes32 _splitOrderId, + bytes32 _orderId, + address _liquidityProvider, + uint64 _settlePercent, + uint64 _rebatePercent + ) external onlyAggregator returns (bool) { + // ensure the transaction has not been fulfilled + require(!order[_orderId].isFulfilled, 'OrderFulfilled'); + require(!order[_orderId].isRefunded, 'OrderRefunded'); + require(_rebatePercent <= MAX_BPS, 'InvalidRebatePercent'); + + // load the token into memory + address token = order[_orderId].token; + + // subtract sum of amount based on the input _settlePercent + uint256 currentOrderBPS = order[_orderId].currentBPS; + require(_settlePercent > 0 && _settlePercent <= currentOrderBPS, "InvalidSettlePercent"); + order[_orderId].currentBPS -= _settlePercent; + + if (order[_orderId].currentBPS == 0) { + // update the transaction to be fulfilled + order[_orderId].isFulfilled = true; + + if (order[_orderId].senderFee != 0 && order[_orderId].protocolFee != 0) { + // FX transfer - sender keeps all fee + _handleFxTransferFeeSplitting(_orderId, token, order[_orderId].senderFeeRecipient, order[_orderId].senderFee); + } + } + + if (order[_orderId].senderFee != 0 && order[_orderId].protocolFee == 0) { + // local transfer - split sender fee + _handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, order[_orderId].senderFeeRecipient, _settlePercent); + } + + // transfer to liquidity provider + uint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / currentOrderBPS; + order[_orderId].amount -= liquidityProviderAmount; + + if (order[_orderId].protocolFee != 0) { + // FX transfer: use token-specific providerToAggregatorFx + TokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token]; + uint256 aggregatorFee = (liquidityProviderAmount * settings.providerToAggregatorFx) / MAX_BPS; + liquidityProviderAmount -= aggregatorFee; + + if (_rebatePercent != 0) { + // calculate rebate amount + uint256 rebateAmount = (aggregatorFee * _rebatePercent) / MAX_BPS; + aggregatorFee -= rebateAmount; + liquidityProviderAmount += rebateAmount; + } + + // transfer aggregator fee + IERC20(token).transfer(treasuryAddress, aggregatorFee); + } + + IERC20(token).transfer(_liquidityProvider, liquidityProviderAmount); + + // emit settled event + emit SettleOut( + _splitOrderId, + _orderId, + _liquidityProvider, + _settlePercent, + _rebatePercent + ); + + return true; + } + + /** @dev See {settleIn-IGateway}. */ + function settleIn( + bytes32 _orderId, + address _token, + uint256 _amount, + address _senderFeeRecipient, + uint96 _senderFee, + address _recipient, + uint96 _rate + ) external whenNotPaused returns (bool) { + require(order[_orderId].sender == address(0), 'OrderAlreadyExists'); + require(_amount > MAX_BPS, 'InvalidAmount'); + _handler(_token, _amount, _recipient, _senderFeeRecipient, _senderFee); + + IERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee); + + uint256 amountToSettle = _amount; + uint256 aggregatorFee; + + // determine if this is FX or local transfer based on rate + if (_rate == 100) { + // local transfer: no protocol fee from amount + require(_senderFee > 0, 'SenderFeeIsZero'); + } else { + // FX transfer: use token-specific providerToAggregatorFx + TokenFeeSettings memory settings = _tokenFeeSettings[_token]; + require(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured'); + + aggregatorFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS; + + if (aggregatorFee > 0) { + amountToSettle -= aggregatorFee; + IERC20(_token).transfer(treasuryAddress, aggregatorFee); + } + } + + order[_orderId].sender = _recipient; + order[_orderId].token = _token; + order[_orderId].senderFeeRecipient = _senderFeeRecipient; + order[_orderId].senderFee = _senderFee; + order[_orderId].protocolFee = aggregatorFee; + order[_orderId].isFulfilled = true; + order[_orderId].amount = amountToSettle; + + IERC20(_token).transfer(_recipient, amountToSettle); + + // handle fee splitting after order state is recorded + if (_senderFee != 0) { + if (aggregatorFee == 0) { + // local transfer: split sender fee + _handleLocalTransferFeeSplitting(_orderId, msg.sender, _senderFeeRecipient, uint64(MAX_BPS)); + } else { + // FX transfer: split sender fee per senderToAggregator settings + _handleFxTransferFeeSplitting(_orderId, _token, _senderFeeRecipient, _senderFee); + } + } + + // emit settlement event + emit SettleIn( + _orderId, + msg.sender, + _recipient, + amountToSettle, + _token, + aggregatorFee, + _rate + ); + + return true; + } + + /** @dev See {refund-IGateway}. */ + function refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) { + // ensure the transaction has not been fulfilled + require(!order[_orderId].isFulfilled, 'OrderFulfilled'); + require(!order[_orderId].isRefunded, 'OrderRefunded'); + require(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee'); + + if (_fee > 0) { + // transfer refund fee to the treasury + IERC20(order[_orderId].token).transfer(treasuryAddress, _fee); + } + + // reset state values + order[_orderId].isRefunded = true; + order[_orderId].currentBPS = 0; + + // deduct fee from order amount + uint256 refundAmount = order[_orderId].amount - _fee; + + // transfer refund amount and sender fee to the refund address + IERC20(order[_orderId].token).transfer( + order[_orderId].refundAddress, + refundAmount + order[_orderId].senderFee + ); + + // emit refunded event + emit OrderRefunded(_fee, _orderId); + + return true; + } + + /* ################################################################## + VIEW CALLS + ################################################################## */ + /** @dev See {getOrderInfo-IGateway}. */ + function getOrderInfo(bytes32 _orderId) external view returns (Order memory) { + return order[_orderId]; + } + + /** @dev See {isTokenSupported-IGateway}. */ + function isTokenSupported(address _token) external view returns (bool) { + if (_isTokenSupported[_token] == 1) return true; + return false; + } + + /** @dev See {getAggregator-IGateway}. */ + function getAggregator() external view returns (address) { + return _aggregatorAddress; + } + + function _handleLocalTransferFeeSplitting( + bytes32 _orderId, + address _liquidityProvider, + address _senderFeeRecipient, + uint64 _settlePercent + ) internal { + TokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token]; + uint256 senderFee = order[_orderId].senderFee; + address token = order[_orderId].token; + + // Calculate splits based on config + uint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS; + uint256 currentProviderAmount = (providerAmount * _settlePercent) / MAX_BPS; + uint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) / MAX_BPS; + uint256 senderAmount = senderFee - providerAmount; + + // Transfer sender portion + if (senderAmount != 0 && order[_orderId].currentBPS == 0) { + IERC20(token).transfer(_senderFeeRecipient, senderAmount); + } + + // Transfer aggregator portion to treasury + if (aggregatorAmount != 0) { + IERC20(token).transfer(treasuryAddress, aggregatorAmount); + } + + // Transfer provider portion to the liquidity provider who fulfilled the order + currentProviderAmount = currentProviderAmount - aggregatorAmount; + if (currentProviderAmount != 0) { + IERC20(token).transfer(_liquidityProvider, currentProviderAmount); + } + + // Emit events + emit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount); + emit LocalTransferFeeSplit(_orderId, senderAmount, currentProviderAmount, aggregatorAmount); + } + + function _handleFxTransferFeeSplitting( + bytes32 _orderId, + address _token, + address _senderFeeRecipient, + uint256 _senderFee + ) internal { + TokenFeeSettings memory settings = _tokenFeeSettings[_token]; + + // Calculate sender portion based on senderToAggregator setting (similar to settleOut FX) + uint256 senderAmount = (_senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS; + uint256 aggregatorAmount = _senderFee - senderAmount; + + // Transfer sender portion + if (senderAmount > 0) { + IERC20(_token).transfer(_senderFeeRecipient, senderAmount); + } + + // Transfer aggregator portion to treasury + if (aggregatorAmount > 0) { + IERC20(_token).transfer(treasuryAddress, aggregatorAmount); + } + + // Emit events + emit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount); + emit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount); + } +} + + +// File npm/@openzeppelin/contracts@4.9.5/token/ERC20/extensions/IERC20Metadata.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Interface for the optional metadata functions from the ERC20 standard. + * + * _Available since v4.1._ + */ +interface IERC20Metadata is IERC20 { + /** + * @dev Returns the name of the token. + */ + function name() external view returns (string memory); + + /** + * @dev Returns the symbol of the token. + */ + function symbol() external view returns (string memory); + + /** + * @dev Returns the decimals places of the token. + */ + function decimals() external view returns (uint8); +} + + +// File npm/@openzeppelin/contracts@4.9.5/token/ERC20/ERC20.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) + +pragma solidity ^0.8.0; + + + +/** + * @dev Implementation of the {IERC20} interface. + * + * This implementation is agnostic to the way tokens are created. This means + * that a supply mechanism has to be added in a derived contract using {_mint}. + * For a generic mechanism see {ERC20PresetMinterPauser}. + * + * TIP: For a detailed writeup see our guide + * https://forum.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 ERC20 + * applications. + * + * Additionally, an {Approval} event is emitted on calls to {transferFrom}. + * This allows applications to reconstruct the allowance for all accounts just + * by listening to said events. Other implementations of the EIP may not emit + * these events, as it isn't required by the specification. + * + * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} + * functions have been added to mitigate the well-known issues around setting + * allowances. See {IERC20-approve}. + */ +contract ERC20 is Context, IERC20, IERC20Metadata { + mapping(address => uint256) private _balances; + + mapping(address => mapping(address => uint256)) private _allowances; + + uint256 private _totalSupply; + + string private _name; + string private _symbol; + + /** + * @dev Sets the values for {name} and {symbol}. + * + * All two of these values are immutable: they can only be set once during + * construction. + */ + constructor(string memory name_, string memory symbol_) { + _name = name_; + _symbol = symbol_; + } + + /** + * @dev Returns the name of the token. + */ + function name() public view virtual override returns (string memory) { + return _name; + } + + /** + * @dev Returns the symbol of the token, usually a shorter version of the + * name. + */ + function symbol() public view virtual override returns (string memory) { + return _symbol; + } + + /** + * @dev 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}. + */ + function decimals() public view virtual override returns (uint8) { + return 18; + } + + /** + * @dev See {IERC20-totalSupply}. + */ + function totalSupply() public view virtual override returns (uint256) { + return _totalSupply; + } + + /** + * @dev See {IERC20-balanceOf}. + */ + function balanceOf(address account) public view virtual override returns (uint256) { + return _balances[account]; + } + + /** + * @dev See {IERC20-transfer}. + * + * Requirements: + * + * - `to` cannot be the zero address. + * - the caller must have a balance of at least `amount`. + */ + function transfer(address to, uint256 amount) public virtual override returns (bool) { + address owner = _msgSender(); + _transfer(owner, to, amount); + return true; + } + + /** + * @dev See {IERC20-allowance}. + */ + function allowance(address owner, address spender) public view virtual override returns (uint256) { + return _allowances[owner][spender]; + } + + /** + * @dev See {IERC20-approve}. + * + * NOTE: If `amount` 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. + */ + function approve(address spender, uint256 amount) public virtual override returns (bool) { + address owner = _msgSender(); + _approve(owner, spender, amount); + return true; + } + + /** + * @dev See {IERC20-transferFrom}. + * + * Emits an {Approval} event indicating the updated allowance. This is not + * required by the EIP. See the note at the beginning of {ERC20}. + * + * 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 `amount`. + * - the caller must have allowance for ``from``'s tokens of at least + * `amount`. + */ + function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { + address spender = _msgSender(); + _spendAllowance(from, spender, amount); + _transfer(from, to, amount); + return true; + } + + /** + * @dev Atomically increases the allowance granted to `spender` by the caller. + * + * This is an alternative to {approve} that can be used as a mitigation for + * problems described in {IERC20-approve}. + * + * Emits an {Approval} event indicating the updated allowance. + * + * Requirements: + * + * - `spender` cannot be the zero address. + */ + function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { + address owner = _msgSender(); + _approve(owner, spender, allowance(owner, spender) + addedValue); + return true; + } + + /** + * @dev Atomically decreases the allowance granted to `spender` by the caller. + * + * This is an alternative to {approve} that can be used as a mitigation for + * problems described in {IERC20-approve}. + * + * Emits an {Approval} event indicating the updated allowance. + * + * Requirements: + * + * - `spender` cannot be the zero address. + * - `spender` must have allowance for the caller of at least + * `subtractedValue`. + */ + function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { + address owner = _msgSender(); + uint256 currentAllowance = allowance(owner, spender); + require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); + unchecked { + _approve(owner, spender, currentAllowance - subtractedValue); + } + + return true; + } + + /** + * @dev Moves `amount` of tokens from `from` to `to`. + * + * This internal function is equivalent to {transfer}, and can be used to + * e.g. implement automatic token fees, slashing mechanisms, etc. + * + * Emits a {Transfer} event. + * + * Requirements: + * + * - `from` cannot be the zero address. + * - `to` cannot be the zero address. + * - `from` must have a balance of at least `amount`. + */ + function _transfer(address from, address to, uint256 amount) internal virtual { + require(from != address(0), "ERC20: transfer from the zero address"); + require(to != address(0), "ERC20: transfer to the zero address"); + + _beforeTokenTransfer(from, to, amount); + + uint256 fromBalance = _balances[from]; + require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); + unchecked { + _balances[from] = fromBalance - amount; + // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by + // decrementing then incrementing. + _balances[to] += amount; + } + + emit Transfer(from, to, amount); + + _afterTokenTransfer(from, to, amount); + } + + /** @dev Creates `amount` tokens and assigns them to `account`, increasing + * the total supply. + * + * Emits a {Transfer} event with `from` set to the zero address. + * + * Requirements: + * + * - `account` cannot be the zero address. + */ + function _mint(address account, uint256 amount) internal virtual { + require(account != address(0), "ERC20: mint to the zero address"); + + _beforeTokenTransfer(address(0), account, amount); + + _totalSupply += amount; + unchecked { + // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. + _balances[account] += amount; + } + emit Transfer(address(0), account, amount); + + _afterTokenTransfer(address(0), account, amount); + } + + /** + * @dev Destroys `amount` tokens from `account`, reducing the + * total supply. + * + * Emits a {Transfer} event with `to` set to the zero address. + * + * Requirements: + * + * - `account` cannot be the zero address. + * - `account` must have at least `amount` tokens. + */ + function _burn(address account, uint256 amount) internal virtual { + require(account != address(0), "ERC20: burn from the zero address"); + + _beforeTokenTransfer(account, address(0), amount); + + uint256 accountBalance = _balances[account]; + require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); + unchecked { + _balances[account] = accountBalance - amount; + // Overflow not possible: amount <= accountBalance <= totalSupply. + _totalSupply -= amount; + } + + emit Transfer(account, address(0), amount); + + _afterTokenTransfer(account, address(0), amount); + } + + /** + * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. + * + * This internal function is equivalent to `approve`, and can be used to + * e.g. set automatic allowances for certain subsystems, etc. + * + * Emits an {Approval} event. + * + * Requirements: + * + * - `owner` cannot be the zero address. + * - `spender` cannot be the zero address. + */ + function _approve(address owner, address spender, uint256 amount) internal virtual { + require(owner != address(0), "ERC20: approve from the zero address"); + require(spender != address(0), "ERC20: approve to the zero address"); + + _allowances[owner][spender] = amount; + emit Approval(owner, spender, amount); + } + + /** + * @dev Updates `owner` s allowance for `spender` based on spent `amount`. + * + * Does not update the allowance amount in case of infinite allowance. + * Revert if not enough allowance is available. + * + * Might emit an {Approval} event. + */ + function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { + uint256 currentAllowance = allowance(owner, spender); + if (currentAllowance != type(uint256).max) { + require(currentAllowance >= amount, "ERC20: insufficient allowance"); + unchecked { + _approve(owner, spender, currentAllowance - amount); + } + } + } + + /** + * @dev Hook that is called before any transfer of tokens. This includes + * minting and burning. + * + * Calling conditions: + * + * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens + * will be transferred to `to`. + * - when `from` is zero, `amount` tokens will be minted for `to`. + * - when `to` is zero, `amount` of ``from``'s tokens will be burned. + * - `from` and `to` are never both zero. + * + * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. + */ + function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} + + /** + * @dev Hook that is called after any transfer of tokens. This includes + * minting and burning. + * + * Calling conditions: + * + * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens + * has been transferred to `to`. + * - when `from` is zero, `amount` tokens have been minted for `to`. + * - when `to` is zero, `amount` of ``from``'s tokens have been burned. + * - `from` and `to` are never both zero. + * + * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. + */ + function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} +} + + +// File contracts/mocks/MockUSDC.sol + +// Original license: SPDX_License_Identifier: UNLICENSED +pragma solidity ^0.8.18; + +/// @dev Mock mintable USDC +contract MockUSDT is ERC20 { + constructor() ERC20("MockUDSC", "MUSDC") { + _mint(msg.sender, 1_000_000E18); + } + + function mint(uint256 _amount) external { + _mint(msg.sender, _amount); + } + + function burn(uint256 _amount) external { + _burn(msg.sender, _amount); + } + + function burnAll() external { + uint256 _balanceOf = balanceOf(msg.sender); + require(_balanceOf > 0, "MockUSDT: Nothing to burn"); + _burn(msg.sender, _balanceOf); + } +} + + +// File npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Standard math utilities missing in the Solidity language. + */ +library Math { + enum Rounding { + Down, // Toward negative infinity + Up, // Toward infinity + Zero // Toward zero + } + + /** + * @dev Returns the largest of two numbers. + */ + function max(uint256 a, uint256 b) internal pure returns (uint256) { + return a > b ? a : b; + } + + /** + * @dev Returns the smallest of two numbers. + */ + function min(uint256 a, uint256 b) internal pure returns (uint256) { + return a < b ? a : b; + } + + /** + * @dev Returns the average of two numbers. The result is rounded towards + * zero. + */ + function average(uint256 a, uint256 b) internal pure returns (uint256) { + // (a + b) / 2 can overflow. + return (a & b) + (a ^ b) / 2; + } + + /** + * @dev Returns the ceiling of the division of two numbers. + * + * This differs from standard division with `/` in that it rounds up instead + * of rounding down. + */ + function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { + // (a + b - 1) / b can overflow on addition, so we distribute. + return a == 0 ? 0 : (a - 1) / b + 1; + } + + /** + * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 + * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) + * with further edits by Uniswap Labs also under MIT license. + */ + function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { + unchecked { + // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use + // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 + // variables such that product = prod1 * 2^256 + prod0. + uint256 prod0; // Least significant 256 bits of the product + uint256 prod1; // Most significant 256 bits of the product + assembly { + let mm := mulmod(x, y, not(0)) + prod0 := mul(x, y) + prod1 := sub(sub(mm, prod0), lt(mm, prod0)) + } + + // Handle non-overflow cases, 256 by 256 division. + if (prod1 == 0) { + // Solidity will revert if denominator == 0, unlike the div opcode on its own. + // The surrounding unchecked block does not change this fact. + // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. + return prod0 / denominator; + } + + // Make sure the result is less than 2^256. Also prevents denominator == 0. + require(denominator > prod1, "Math: mulDiv overflow"); + + /////////////////////////////////////////////// + // 512 by 256 division. + /////////////////////////////////////////////// + + // Make division exact by subtracting the remainder from [prod1 prod0]. + uint256 remainder; + assembly { + // Compute remainder using mulmod. + remainder := mulmod(x, y, denominator) + + // Subtract 256 bit number from 512 bit number. + prod1 := sub(prod1, gt(remainder, prod0)) + prod0 := sub(prod0, remainder) + } + + // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. + // See https://cs.stackexchange.com/q/138556/92363. + + // Does not overflow because the denominator cannot be zero at this stage in the function. + uint256 twos = denominator & (~denominator + 1); + assembly { + // Divide denominator by twos. + denominator := div(denominator, twos) + + // Divide [prod1 prod0] by twos. + prod0 := div(prod0, twos) + + // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. + twos := add(div(sub(0, twos), twos), 1) + } + + // Shift in bits from prod1 into prod0. + prod0 |= prod1 * twos; + + // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such + // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for + // four bits. That is, denominator * inv = 1 mod 2^4. + uint256 inverse = (3 * denominator) ^ 2; + + // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works + // in modular arithmetic, doubling the correct bits in each step. + inverse *= 2 - denominator * inverse; // inverse mod 2^8 + inverse *= 2 - denominator * inverse; // inverse mod 2^16 + inverse *= 2 - denominator * inverse; // inverse mod 2^32 + inverse *= 2 - denominator * inverse; // inverse mod 2^64 + inverse *= 2 - denominator * inverse; // inverse mod 2^128 + inverse *= 2 - denominator * inverse; // inverse mod 2^256 + + // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. + // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is + // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 + // is no longer required. + result = prod0 * inverse; + return result; + } + } + + /** + * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. + */ + function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { + uint256 result = mulDiv(x, y, denominator); + if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { + result += 1; + } + return result; + } + + /** + * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. + * + * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). + */ + function sqrt(uint256 a) internal pure returns (uint256) { + if (a == 0) { + return 0; + } + + // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. + // + // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have + // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. + // + // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` + // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` + // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` + // + // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. + uint256 result = 1 << (log2(a) >> 1); + + // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, + // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at + // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision + // into the expected uint128 result. + unchecked { + result = (result + a / result) >> 1; + result = (result + a / result) >> 1; + result = (result + a / result) >> 1; + result = (result + a / result) >> 1; + result = (result + a / result) >> 1; + result = (result + a / result) >> 1; + result = (result + a / result) >> 1; + return min(result, a / result); + } + } + + /** + * @notice Calculates sqrt(a), following the selected rounding direction. + */ + function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { + unchecked { + uint256 result = sqrt(a); + return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); + } + } + + /** + * @dev Return the log in base 2, rounded down, of a positive value. + * Returns 0 if given 0. + */ + function log2(uint256 value) internal pure returns (uint256) { + uint256 result = 0; + unchecked { + if (value >> 128 > 0) { + value >>= 128; + result += 128; + } + if (value >> 64 > 0) { + value >>= 64; + result += 64; + } + if (value >> 32 > 0) { + value >>= 32; + result += 32; + } + if (value >> 16 > 0) { + value >>= 16; + result += 16; + } + if (value >> 8 > 0) { + value >>= 8; + result += 8; + } + if (value >> 4 > 0) { + value >>= 4; + result += 4; + } + if (value >> 2 > 0) { + value >>= 2; + result += 2; + } + if (value >> 1 > 0) { + result += 1; + } + } + return result; + } - /** - * @dev Emitted when an aggregator refunds a transaction. - * @param fee The fee deducted from the refund amount. - * @param orderId The ID of the order. - */ - event OrderRefunded(uint256 fee, bytes32 indexed orderId); + /** + * @dev Return the log in base 2, following the selected rounding direction, of a positive value. + * Returns 0 if given 0. + */ + function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { + unchecked { + uint256 result = log2(value); + return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); + } + } - /** - * @dev Emitted when the sender's fee is transferred. - * @param sender The address of the sender. - * @param amount The amount of the fee transferred. - */ - event SenderFeeTransferred(address indexed sender, uint256 indexed amount); + /** + * @dev Return the log in base 10, rounded down, of a positive value. + * Returns 0 if given 0. + */ + function log10(uint256 value) internal pure returns (uint256) { + uint256 result = 0; + unchecked { + if (value >= 10 ** 64) { + value /= 10 ** 64; + result += 64; + } + if (value >= 10 ** 32) { + value /= 10 ** 32; + result += 32; + } + if (value >= 10 ** 16) { + value /= 10 ** 16; + result += 16; + } + if (value >= 10 ** 8) { + value /= 10 ** 8; + result += 8; + } + if (value >= 10 ** 4) { + value /= 10 ** 4; + result += 4; + } + if (value >= 10 ** 2) { + value /= 10 ** 2; + result += 2; + } + if (value >= 10 ** 1) { + result += 1; + } + } + return result; + } - /* ################################################################## - STRUCTS - ################################################################## */ - /** - * @dev Struct representing transaction metadata. - * @param identifier The identifier of the transaction. - * @param institution The institution of the transaction. - * @param name The name of the transaction. - * @param currency The currency of the transaction. - * @param liquidityProviderID The ID of the liquidity provider. - */ - struct TransactionMetadata { - bytes8 identifier; - bytes8 institution; - bytes8 name; - bytes8 currency; - uint256 liquidityProviderID; - } + /** + * @dev Return the log in base 10, following the selected rounding direction, of a positive value. + * Returns 0 if given 0. + */ + function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { + unchecked { + uint256 result = log10(value); + return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); + } + } - /** - * @dev Struct representing an order. - * @param sender The address of the sender. - * @param token The address of the token. - * @param senderFeeRecipient The address of the sender fee recipient. - * @param senderFee The fee to be paid to the sender fee recipient. - * @param protocolFee The protocol fee to be paid. - * @param isFulfilled Whether the order is fulfilled. - * @param isRefunded Whether the order is refunded. - * @param refundAddress The address to which the refund is made. - * @param currentBPS The current basis points. - * @param amount The amount of the order. - */ - struct Order { - address sender; - address token; - address senderFeeRecipient; - uint256 senderFee; - uint256 protocolFee; - bool isFulfilled; - bool isRefunded; - address refundAddress; - uint96 currentBPS; - uint256 amount; - } + /** + * @dev Return the log in base 256, rounded down, of a positive value. + * Returns 0 if given 0. + * + * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. + */ + function log256(uint256 value) internal pure returns (uint256) { + uint256 result = 0; + unchecked { + if (value >> 128 > 0) { + value >>= 128; + result += 16; + } + if (value >> 64 > 0) { + value >>= 64; + result += 8; + } + if (value >> 32 > 0) { + value >>= 32; + result += 4; + } + if (value >> 16 > 0) { + value >>= 16; + result += 2; + } + if (value >> 8 > 0) { + result += 1; + } + } + return result; + } - /* ################################################################## - EXTERNAL CALLS - ################################################################## */ - /** - * @notice Locks the sender's amount of token into Gateway. - * @dev Requirements: - * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - * - `_token` must be an acceptable token. See {isTokenSupported}. - * - `amount` must be greater than minimum. - * - `_refundAddress` refund address must not be zero address. - * @param _token The address of the token. - * @param _amount The amount in the decimal of `_token` to be locked. - * @param _institutionCode The institution code of the sender. - * @param _rate The rate at which the sender intends to sell `_amount` of `_token`. - * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`. - * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`. - * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund. - * @param messageHash The hash of the message. - * @return _orderId The ID of the order. - */ - function createOrder( - address _token, - uint256 _amount, - bytes32 _institutionCode, - uint96 _rate, - address _senderFeeRecipient, - uint256 _senderFee, - address _refundAddress, - string calldata messageHash - ) external returns (bytes32 _orderId); + /** + * @dev Return the log in base 256, following the selected rounding direction, of a positive value. + * Returns 0 if given 0. + */ + function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { + unchecked { + uint256 result = log256(value); + return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); + } + } +} - /** - * @notice Settles a transaction and distributes rewards accordingly. - * @param _splitOrderId The ID of the split order. - * @param _orderId The ID of the transaction. - * @param _liquidityProvider The address of the liquidity provider. - * @param _settlePercent The rate at which the transaction is settled. - * @return bool the settlement is successful. - */ - function settle( - bytes32 _splitOrderId, - bytes32 _orderId, - address _liquidityProvider, - uint64 _settlePercent - ) external returns (bool); - /** - * @notice Refunds to the specified refundable address. - * @dev Requirements: - * - Only aggregators can call this function. - * @param _fee The amount to be deducted from the amount to be refunded. - * @param _orderId The ID of the transaction. - * @return bool the refund is successful. - */ - function refund(uint256 _fee, bytes32 _orderId) external returns (bool); +// File npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol - /** - * @notice Checks if a token is supported by Gateway. - * @param _token The address of the token to check. - * @return bool the token is supported. - */ - function isTokenSupported(address _token) external view returns (bool); +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) - /** - * @notice Gets the details of an order. - * @param _orderId The ID of the order. - * @return Order The order details. - */ - function getOrderInfo(bytes32 _orderId) external view returns (Order memory); +pragma solidity ^0.8.0; - /** - * @notice Gets the fee details of Gateway. - * @return protocolReward The protocol reward amount. - * @return max_bps The maximum basis points. - */ - function getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps); +/** + * @dev Standard signed math utilities missing in the Solidity language. + */ +library SignedMath { + /** + * @dev Returns the largest of two signed numbers. + */ + function max(int256 a, int256 b) internal pure returns (int256) { + return a > b ? a : b; + } - /** - * @notice Gets the details of a supported institution by code. - * @param _code The institution code. - * @return InstitutionByCode The institution details. - */ - function getSupportedInstitutionByCode( - bytes32 _code - ) external view returns (SharedStructs.InstitutionByCode memory); + /** + * @dev Returns the smallest of two signed numbers. + */ + function min(int256 a, int256 b) internal pure returns (int256) { + return a < b ? a : b; + } - /** - * @notice Gets the details of supported institutions by currency. - * @param _currency The currency code. - * @return Institutions An array of institutions. - */ - function getSupportedInstitutions( - bytes32 _currency - ) external view returns (SharedStructs.Institution[] memory); + /** + * @dev Returns the average of two signed numbers without overflow. + * The result is rounded towards zero. + */ + function average(int256 a, int256 b) internal pure returns (int256) { + // Formula from the book "Hacker's Delight" + int256 x = (a & b) + ((a ^ b) >> 1); + return x + (int256(uint256(x) >> 255) & (a ^ b)); + } + + /** + * @dev Returns the absolute unsigned value of a signed value. + */ + function abs(int256 n) internal pure returns (uint256) { + unchecked { + // must be unchecked in order to support `n = type(int256).min` + return uint256(n >= 0 ? n : -n); + } + } } + +// File npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol + +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) + +pragma solidity ^0.8.0; + + /** - * @title Gateway - * @notice This contract serves as a gateway for creating orders and managing settlements. + * @dev String operations. */ -contract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable { - struct fee { - uint256 protocolFee; - uint256 liquidityProviderAmount; - } +library Strings { + bytes16 private constant _SYMBOLS = "0123456789abcdef"; + uint8 private constant _ADDRESS_LENGTH = 20; - mapping(bytes32 => Order) private order; - mapping(address => uint256) private _nonce; - uint256[50] private __gap; + /** + * @dev Converts a `uint256` to its ASCII `string` decimal representation. + */ + function toString(uint256 value) internal pure returns (string memory) { + unchecked { + uint256 length = Math.log10(value) + 1; + string memory buffer = new string(length); + uint256 ptr; + /// @solidity memory-safe-assembly + assembly { + ptr := add(buffer, add(32, length)) + } + while (true) { + ptr--; + /// @solidity memory-safe-assembly + assembly { + mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) + } + value /= 10; + if (value == 0) break; + } + return buffer; + } + } - /// @custom:oz-upgrades-unsafe-allow constructor - constructor() { - _disableInitializers(); - } + /** + * @dev Converts a `int256` to its ASCII `string` decimal representation. + */ + function toString(int256 value) internal pure returns (string memory) { + return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); + } + + /** + * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. + */ + function toHexString(uint256 value) internal pure returns (string memory) { + unchecked { + return toHexString(value, Math.log256(value) + 1); + } + } + + /** + * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. + */ + function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { + bytes memory buffer = new bytes(2 * length + 2); + buffer[0] = "0"; + buffer[1] = "x"; + for (uint256 i = 2 * length + 1; i > 1; --i) { + buffer[i] = _SYMBOLS[value & 0xf]; + value >>= 4; + } + require(value == 0, "Strings: hex length insufficient"); + return string(buffer); + } + + /** + * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. + */ + function toHexString(address addr) internal pure returns (string memory) { + return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); + } - /** - * @dev Initialize function. - */ - function initialize() external initializer { - MAX_BPS = 100_000; - __Ownable2Step_init(); - __Pausable_init(); - } + /** + * @dev Returns true if the two strings are equal. + */ + function equal(string memory a, string memory b) internal pure returns (bool) { + return keccak256(bytes(a)) == keccak256(bytes(b)); + } +} - /** - * @dev Modifier that allows only the aggregator to call a function. - */ - modifier onlyAggregator() { - require(msg.sender == _aggregatorAddress, 'OnlyAggregator'); - _; - } - /* ################################################################## - OWNER FUNCTIONS - ################################################################## */ - /** - * @dev Pause the contract. - */ - function pause() external onlyOwner { - _pause(); - } +// File npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol - /** - * @dev Unpause the contract. - */ - function unpause() external onlyOwner { - _unpause(); - } +// Original license: SPDX_License_Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) - /* ################################################################## - USER CALLS - ################################################################## */ - /** @dev See {createOrder-IGateway}. */ - function createOrder( - address _token, - uint256 _amount, - bytes32 _institutionCode, - uint96 _rate, - address _senderFeeRecipient, - uint256 _senderFee, - address _refundAddress, - string calldata messageHash - ) external whenNotPaused returns (bytes32 orderId) { - // checks that are required - _handler( - _token, - _amount, - _refundAddress, - _senderFeeRecipient, - _senderFee, - _institutionCode - ); +pragma solidity ^0.8.0; - // validate messageHash - require(bytes(messageHash).length != 0, 'InvalidMessageHash'); +/** + * @dev 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. + */ +library ECDSA { + enum RecoverError { + NoError, + InvalidSignature, + InvalidSignatureLength, + InvalidSignatureS, + InvalidSignatureV // Deprecated in v4.8 + } - // transfer token from msg.sender to contract - IERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee); + function _throwError(RecoverError error) private pure { + if (error == RecoverError.NoError) { + return; // no error: do nothing + } else if (error == RecoverError.InvalidSignature) { + revert("ECDSA: invalid signature"); + } else if (error == RecoverError.InvalidSignatureLength) { + revert("ECDSA: invalid signature length"); + } else if (error == RecoverError.InvalidSignatureS) { + revert("ECDSA: invalid signature 's' value"); + } + } - // increase users nonce to avoid replay attacks - _nonce[msg.sender]++; + /** + * @dev Returns the address that signed a hashed message (`hash`) with + * `signature` or error string. This address can then be used for verification purposes. + * + * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: + * this function rejects them by requiring the `s` value to be in the lower + * half order, and the `v` value to be either 27 or 28. + * + * IMPORTANT: `hash` _must_ be the result of a hash operation for the + * verification to be secure: it is possible to craft signatures that + * recover to arbitrary addresses for non-hashed data. A safe way to ensure + * this is by receiving a hash of the original message (which may otherwise + * be too long), and then calling {toEthSignedMessageHash} on it. + * + * Documentation for signature generation: + * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] + * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] + * + * _Available since v4.3._ + */ + function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { + if (signature.length == 65) { + bytes32 r; + bytes32 s; + uint8 v; + // ecrecover takes the signature parameters, and the only way to get them + // currently is to use assembly. + /// @solidity memory-safe-assembly + assembly { + r := mload(add(signature, 0x20)) + s := mload(add(signature, 0x40)) + v := byte(0, mload(add(signature, 0x60))) + } + return tryRecover(hash, v, r, s); + } else { + return (address(0), RecoverError.InvalidSignatureLength); + } + } - // generate transaction id for the transaction - orderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender])); + /** + * @dev Returns the address that signed a hashed message (`hash`) with + * `signature`. This address can then be used for verification purposes. + * + * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: + * this function rejects them by requiring the `s` value to be in the lower + * half order, and the `v` value to be either 27 or 28. + * + * IMPORTANT: `hash` _must_ be the result of a hash operation for the + * verification to be secure: it is possible to craft signatures that + * recover to arbitrary addresses for non-hashed data. A safe way to ensure + * this is by receiving a hash of the original message (which may otherwise + * be too long), and then calling {toEthSignedMessageHash} on it. + */ + function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { + (address recovered, RecoverError error) = tryRecover(hash, signature); + _throwError(error); + return recovered; + } - // update transaction - uint256 _protocolFee = (_amount * protocolFeePercent) / MAX_BPS; - order[orderId] = Order({ - sender: msg.sender, - token: _token, - senderFeeRecipient: _senderFeeRecipient, - senderFee: _senderFee, - protocolFee: _protocolFee, - isFulfilled: false, - isRefunded: false, - refundAddress: _refundAddress, - currentBPS: uint64(MAX_BPS), - amount: _amount - _protocolFee - }); + /** + * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. + * + * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] + * + * _Available since v4.3._ + */ + function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { + bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); + uint8 v = uint8((uint256(vs) >> 255) + 27); + return tryRecover(hash, v, r, s); + } - // emit order created event - emit OrderCreated( - order[orderId].sender, - _token, - order[orderId].amount, - _protocolFee, - orderId, - _rate, - _institutionCode, - messageHash - ); - } + /** + * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. + * + * _Available since v4.2._ + */ + function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { + (address recovered, RecoverError error) = tryRecover(hash, r, vs); + _throwError(error); + return recovered; + } - /** - * @dev Internal function to handle order creation. - * @param _token The address of the token being traded. - * @param _amount The amount of tokens being traded. - * @param _refundAddress The address to refund the tokens in case of cancellation. - * @param _senderFeeRecipient The address of the recipient for the sender fee. - * @param _senderFee The amount of the sender fee. - * @param _institutionCode The code of the institution associated with the order. - */ - function _handler( - address _token, - uint256 _amount, - address _refundAddress, - address _senderFeeRecipient, - uint256 _senderFee, - bytes32 _institutionCode - ) internal view { - require(_isTokenSupported[_token] == 1, 'TokenNotSupported'); - require(_amount != 0, 'AmountIsZero'); - require(_refundAddress != address(0), 'ThrowZeroAddress'); - require( - supportedInstitutionsByCode[_institutionCode].name != bytes32(0), - 'InvalidInstitutionCode' - ); + /** + * @dev Overload of {ECDSA-tryRecover} that receives the `v`, + * `r` and `s` signature fields separately. + * + * _Available since v4.3._ + */ + function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { + // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature + // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines + // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most + // signatures from current libraries generate a unique signature with an s-value in the lower half order. + // + // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value + // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or + // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept + // these malleable signatures as well. + if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { + return (address(0), RecoverError.InvalidSignatureS); + } - if (_senderFee != 0) { - require(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient'); - } - } + // If the signature is valid (and not malleable), return the signer address + address signer = ecrecover(hash, v, r, s); + if (signer == address(0)) { + return (address(0), RecoverError.InvalidSignature); + } - /* ################################################################## - AGGREGATOR FUNCTIONS - ################################################################## */ - /** @dev See {settle-IGateway}. */ - function settle( - bytes32 _splitOrderId, - bytes32 _orderId, - address _liquidityProvider, - uint64 _settlePercent - ) external onlyAggregator returns (bool) { - // ensure the transaction has not been fulfilled - require(!order[_orderId].isFulfilled, 'OrderFulfilled'); - require(!order[_orderId].isRefunded, 'OrderRefunded'); + return (signer, RecoverError.NoError); + } - // load the token into memory - address token = order[_orderId].token; + /** + * @dev Overload of {ECDSA-recover} that receives the `v`, + * `r` and `s` signature fields separately. + */ + function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { + (address recovered, RecoverError error) = tryRecover(hash, v, r, s); + _throwError(error); + return recovered; + } - // subtract sum of amount based on the input _settlePercent - order[_orderId].currentBPS -= _settlePercent; + /** + * @dev Returns an Ethereum Signed Message, created from a `hash`. This + * produces hash corresponding to the one signed with the + * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] + * JSON-RPC method as part of EIP-191. + * + * See {recover}. + */ + function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { + // 32 is the length in bytes of hash, + // enforced by the type signature above + /// @solidity memory-safe-assembly + assembly { + mstore(0x00, "\x19Ethereum Signed Message:\n32") + mstore(0x1c, hash) + message := keccak256(0x00, 0x3c) + } + } - if (order[_orderId].currentBPS == 0) { - // update the transaction to be fulfilled - order[_orderId].isFulfilled = true; + /** + * @dev Returns an Ethereum Signed Message, created from `s`. This + * produces hash corresponding to the one signed with the + * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] + * JSON-RPC method as part of EIP-191. + * + * See {recover}. + */ + function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { + return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); + } - if (order[_orderId].senderFee != 0) { - // transfer sender fee - IERC20(order[_orderId].token).transfer( - order[_orderId].senderFeeRecipient, - order[_orderId].senderFee - ); - - // emit event - emit SenderFeeTransferred( - order[_orderId].senderFeeRecipient, - order[_orderId].senderFee - ); - } + /** + * @dev Returns an Ethereum Signed Typed Data, created from a + * `domainSeparator` and a `structHash`. This produces hash corresponding + * to the one signed with the + * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] + * JSON-RPC method as part of EIP-712. + * + * See {recover}. + */ + function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { + /// @solidity memory-safe-assembly + assembly { + let ptr := mload(0x40) + mstore(ptr, "\x19\x01") + mstore(add(ptr, 0x02), domainSeparator) + mstore(add(ptr, 0x22), structHash) + data := keccak256(ptr, 0x42) + } + } - if (order[_orderId].protocolFee != 0) { - // transfer protocol fee - IERC20(token).transfer(treasuryAddress, order[_orderId].protocolFee); - } - } + /** + * @dev Returns an Ethereum Signed Data with intended validator, created from a + * `validator` and `data` according to the version 0 of EIP-191. + * + * See {recover}. + */ + function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { + return keccak256(abi.encodePacked("\x19\x00", validator, data)); + } +} - // transfer to liquidity provider - uint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / MAX_BPS; - order[_orderId].amount -= liquidityProviderAmount; - IERC20(token).transfer(_liquidityProvider, liquidityProviderAmount); - // emit settled event - emit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent); +// File contracts/ProviderBatchCallAndSponsor.sol - return true; - } +// Original license: SPDX_License_Identifier: MIT +pragma solidity ^0.8.18; - /** @dev See {refund-IGateway}. */ - function refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) { - // ensure the transaction has not been fulfilled - require(!order[_orderId].isFulfilled, 'OrderFulfilled'); - require(!order[_orderId].isRefunded, 'OrderRefunded'); - require(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee'); +interface IGateway { + function getAggregator() external view returns (address); +} +/** + * @title ProviderBatchCallAndSponsor + * + * When an EOA upgrades via EIP‑7702, it delegates to this implementation. + * Off‑chain, the account signs a message authorizing a batch of calls. The message is the hash of: + * keccak256(abi.encodePacked(nonce, calls)) + * The signature must be generated with the EOA’s private key so that, once upgraded, the recovered signer equals the account’s own address (i.e. address(this)). + * + * This contract provides just one way to execute a batch: + * 1. With a signature: Any sponsor can submit the batch if it carries a valid signature. + * + * Replay protection is achieved by using a nonce that is included in the signed message. + */ +contract ProviderBatchCallAndSponsor { + using ECDSA for bytes32; + + // constant because when it assigned to eao we want to ensure it never changes + /// @notice The address of the Gateway contract. + address public constant gatewayAddress = 0x56dA8fCE8FD64CaaE90D80DED55587b282bb4303; + /// @notice A nonce used for replay protection. + uint256 public nonce; + + /// @notice Represents a single call within a batch. + struct Call { + address to; + uint256 value; + bytes data; + } - // transfer refund fee to the treasury - IERC20(order[_orderId].token).transfer(treasuryAddress, _fee); + modifier onlyAggregator() { + require(msg.sender == IGateway(gatewayAddress).getAggregator(), "OnlyAggregator"); + _; + } - // reset state values - order[_orderId].isRefunded = true; - order[_orderId].currentBPS = 0; + /// @notice Emitted for every individual call executed. + event CallExecuted(address indexed sender, address indexed to, uint256 value, bytes data); + /// @notice Emitted when a full batch is executed. + event BatchExecuted(uint256 indexed nonce, Call[] calls); - // deduct fee from order amount - uint256 refundAmount = order[_orderId].amount + order[_orderId].protocolFee - _fee; + /** + * @notice Executes a batch of calls using an off–chain signature. + * @param calls An array of Call structs containing destination, ETH value, and calldata. + * @param signature The ECDSA signature over the current nonce and the call data. + * + * The signature must be produced off–chain by signing: + * The signing key should be the account’s key (which becomes the smart account’s own identity after upgrade). + */ + function execute(Call[] calldata calls, bytes calldata signature) external payable onlyAggregator { + // Compute the digest that the account was expected to sign. + bytes memory encodedCalls; + for (uint256 i = 0; i < calls.length; i++) { + encodedCalls = abi.encodePacked(encodedCalls, calls[i].to, calls[i].value, calls[i].data); + } + bytes32 digest = keccak256(abi.encodePacked(nonce, encodedCalls)); + + bytes32 ethSignedMessageHash = ECDSA.toEthSignedMessageHash(digest); - // transfer refund amount and sender fee to the refund address - IERC20(order[_orderId].token).transfer( - order[_orderId].refundAddress, - refundAmount + order[_orderId].senderFee - ); + // Recover the signer from the provided signature. + address recovered = ECDSA.recover(ethSignedMessageHash, signature); + require(recovered == address(this), "Invalid signature"); - // emit refunded event - emit OrderRefunded(_fee, _orderId); + _executeBatch(calls); + } - return true; - } + /** + * @notice Executes a batch of calls directly. + * @dev This contract doesnt authorized self execution. + * @param calls An array of Call structs containing destination, ETH value, and calldata. + */ + function execute(Call[] calldata calls) external payable { + revert("Not implemented"); // we don't expect this to be called directly + } - /* ################################################################## - VIEW CALLS - ################################################################## */ - /** @dev See {getOrderInfo-IGateway}. */ - function getOrderInfo(bytes32 _orderId) external view returns (Order memory) { - return order[_orderId]; - } + /** + * @dev Internal function that handles batch execution and nonce incrementation. + * @param calls An array of Call structs. + */ + function _executeBatch(Call[] calldata calls) internal { + uint256 currentNonce = nonce; + nonce++; // Increment nonce to protect against replay attacks - /** @dev See {isTokenSupported-IGateway}. */ - function isTokenSupported(address _token) external view returns (bool) { - if (_isTokenSupported[_token] == 1) return true; - return false; - } + for (uint256 i = 0; i < calls.length; i++) { + _executeCall(calls[i]); + } - /** @dev See {getSupportedInstitutionByCode-IGateway}. */ - function getSupportedInstitutionByCode( - bytes32 _code - ) external view returns (SharedStructs.InstitutionByCode memory) { - return supportedInstitutionsByCode[_code]; - } + emit BatchExecuted(currentNonce, calls); + } - /** @dev See {getSupportedInstitutions-IGateway}. */ - function getSupportedInstitutions( - bytes32 _currency - ) external view returns (SharedStructs.Institution[] memory) { - return supportedInstitutions[_currency]; - } + /** + * @dev Internal function to execute a single call. + * @param callItem The Call struct containing destination, value, and calldata. + */ + function _executeCall(Call calldata callItem) internal { + (bool success,) = callItem.to.call{value: callItem.value}(callItem.data); + require(success, "Call reverted"); + emit CallExecuted(msg.sender, callItem.to, callItem.value, callItem.data); + } - /** @dev See {getFeeDetails-IGateway}. */ - function getFeeDetails() external view returns (uint64, uint256) { - return (protocolFeePercent, MAX_BPS); - } + // Allow the contract to receive ETH (e.g. from DEX swaps or other transfers). + fallback() external payable {} + receive() external payable {} } + diff --git a/hardhat.config.ts b/hardhat.config.ts index ac842d7..db6ee91 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -1,268 +1,165 @@ -import "hardhat-deploy"; -import "@nomicfoundation/hardhat-toolbox"; -import "@nomiclabs/hardhat-ethers"; -import "@nomiclabs/hardhat-etherscan"; -import "@openzeppelin/hardhat-upgrades"; -import "@typechain/hardhat"; -import { task, types } from "hardhat/config"; -import type { HardhatUserConfig } from "hardhat/types"; +import { defineConfig, task } from "hardhat/config"; +import hardhatToolboxMochaEthers from "@nomicfoundation/hardhat-toolbox-mocha-ethers"; +import hardhatVerify from "@nomicfoundation/hardhat-verify"; +import hardhatEthers from "@nomicfoundation/hardhat-ethers"; +import hardhatTypechain from "@nomicfoundation/hardhat-typechain"; +import hardhatMocha from "@nomicfoundation/hardhat-mocha"; +import hardhatEthersChaiMatchers from "@nomicfoundation/hardhat-ethers-chai-matchers"; +import hardhatNetworkHelpers from "@nomicfoundation/hardhat-network-helpers"; import dotenv from "dotenv"; +const dotEnvResult = dotenv.config(); +const env = (dotEnvResult.parsed ?? {}) as Record; -dotenv.config(); +const testPrivateKey = "0000000000000000000000000000000000000000000000000000000000000001" -let { - DEPLOYER_PRIVATE_KEY, - SHIELD3_API_KEY, - ETHERSCAN_API_KEY, - BASESCAN_API_KEY, - ARBISCAN_API_KEY, - BSCSCAN_API_KEY, - POLYGONSCAN_API_KEY, - OPTIMISM_API, - SCROLL_API, - CELO_API, -} = process.env; +const printAccounts = task("accounts", "Print the accounts") + .setAction(() => import("./tasks/accounts.js")) + .build(); -const testPrivateKey = "0000000000000000000000000000000000000000000000000000000000000001" +const flattenContracts = task("flat", "Flattens and prints contracts and their dependencies (Resolves licenses)") + .setAction(() => import("./tasks/flatten.js")) + .build(); -const config: HardhatUserConfig = { - namedAccounts: { - deployer: { - default: 0, // here this will by default take the first account as deployer - }, - }, + +export default defineConfig({ + plugins: [hardhatToolboxMochaEthers, hardhatVerify, hardhatEthers, hardhatTypechain, hardhatMocha, hardhatEthersChaiMatchers, hardhatNetworkHelpers], + tasks: [printAccounts, flattenContracts], networks: { // Mainnets arbitrumOne: { - url: `https://rpc.shield3.com/v3/0xa4b1/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 42161, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0xa4b1/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, base: { - url: `https://rpc.shield3.com/v3/0x2105/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 8453, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0x2105/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, bsc: { - url: `https://rpc.shield3.com/v3/0x38/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 56, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0x38/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, polygon: { - url: `https://rpc.shield3.com/v3/0x89/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 137, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0x89/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, mainnet: { - url: `https://rpc.shield3.com/v3/0x1/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 1, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0x1/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, optimisticEthereum: { - url: `https://rpc.shield3.com/v3/0x0a/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 10, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0x0a/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, scroll: { + type: "http", url: "https://scroll.drpc.org", // @note this is a public rpc - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 534352, - saveDeployments: true, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, celo: { + type: "http", url: "https://forno.celo.org", // @note this is a public rpc - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 42220, - saveDeployments: true, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, assetChain: { + type: "http", url: "https://mainnet-rpc.assetchain.org", // @note this is a public rpc - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 42420, - saveDeployments: true, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, lisk: { + type: "http", url: "https://rpc.api.lisk.com", // @note this is a public rpc - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 1135, - saveDeployments: true, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, // Testnets - arbitrumSepolia: { - url: `https://rpc.shield3.com/v3/0x66eee/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 421614, - gasPrice: "auto", - saveDeployments: true, - }, - amoy: { - url: `https://rpc.shield3.com/v3/0x13882/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 80002, - saveDeployments: true, - }, baseSepolia: { - url: `https://rpc.shield3.com/v3/0x14a34/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 84532, - saveDeployments: true, - }, - sepolia: { - url: `https://rpc.shield3.com/v3/0xaa36a7/${SHIELD3_API_KEY}/rpc`, - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 11155111, - saveDeployments: true, - }, - assetchainTestnet: { - url: "https://enugu-rpc.assetchain.org/", // @note this is a public rpc - accounts: [DEPLOYER_PRIVATE_KEY || testPrivateKey], - chainId: 42421, - saveDeployments: true, + type: "http", + url: `https://rpc.shield3.com/v3/0x14a34/${env.SHIELD3_API_KEY}/rpc`, + accounts: [env.DEPLOYER_PRIVATE_KEY || testPrivateKey], }, }, solidity: { - settings: { - optimizer: { - enabled: true, - runs: 200, - }, - viaIR: true, - }, - + npmFilesToBuild: [ + "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol", + "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol", + ], compilers: [ { version: "0.8.18", + settings: { + optimizer: { + enabled: false, + runs: 200, + }, + }, }, { version: "0.8.9", + settings: { + optimizer: { + enabled: false, + runs: 200, + }, + }, }, { version: "0.8.20", + settings: { + optimizer: { + enabled: true, + runs: 200, + }, + }, }, ], }, - etherscan: { - apiKey: { - base: BASESCAN_API_KEY!, - baseSepolia: BASESCAN_API_KEY!, - arbitrumOne: ARBISCAN_API_KEY!, - arbitrumSepolia: ARBISCAN_API_KEY!, - bsc: BSCSCAN_API_KEY!, - polygon: POLYGONSCAN_API_KEY!, - amoy: POLYGONSCAN_API_KEY!, - mainnet: ETHERSCAN_API_KEY!, - sepolia: ETHERSCAN_API_KEY!, - optimisticEthereum: OPTIMISM_API!, - scroll: SCROLL_API!, - celo: CELO_API!, - lisk: "Paycrest", // @note https://docs.blockscout.com/devs/verification/hardhat-verification-plugin#config-file-and-unsupported-networks - assetChain: "Paycrest", - }, - customChains: [ - { - network: "base", - chainId: 8453, - urls: { - apiURL: "https://api.basescan.org/api", - browserURL: "https://basescan.org", - }, - }, - { - network: "scroll", - chainId: 534352, - urls: { - apiURL: "https://api.scrollscan.com/api", - browserURL: "https://scrollscan.com/", - }, - }, - { - network: "lisk", - chainId: 1135, - urls: { - apiURL: "https://blockscout.lisk.com/api", - browserURL: "https://blockscout.lisk.com/", - }, - }, - { - network: "assetChain", - chainId: 42421, - urls: { - apiURL: "https://scan.assetchain.org/api", - browserURL: "https://scan.assetchain.org/", - }, - }, - { - network: "baseSepolia", - chainId: 84532, - urls: { - apiURL: "https://api-sepolia.basescan.org/api", - browserURL: "https://sepolia.basescan.org", - }, - }, - { - network: "arbitrumSepolia", - chainId: 421614, - urls: { - apiURL: "https://api-sepolia.arbiscan.io/api", - browserURL: "https://sepolia.arbiscan.io", + verify: { + etherscan: { + apiKey: env.BASESCAN_API_KEY || env.ETHERSCAN_API_KEY || "", + } + }, + chainDescriptors: { + 42220: { + name: "celo", + blockExplorers: { + etherscan: { + name: "celoscan", + url: "https://api.celoscan.io/api", + apiUrl: "https://celoscan.io/", }, }, - { - network: "amoy", - chainId: 80002, - urls: { - apiURL: "https://api-amoy.polygonscan.com/api", - browserURL: "https://amoy.polygonscan.com", + }, + 534352: { + name: "scroll", + blockExplorers: { + etherscan: { + name: "Scroll Explorer", + url: "https://api.scrollscan.com/api", + apiUrl: "https://scrollscan.com/", }, }, - { - network: "celo", - chainId: 42220, - urls: { - apiURL: "https://api.celoscan.io/api", - browserURL: "https://celoscan.io/", + }, + 1135: { + name: "lisk", + blockExplorers: { + etherscan: { + name: "Lisk Explorer", + url: "https://explorer.lisk.com/api", + apiUrl: "https://explorer.lisk.com", }, }, - ], + }, }, -}; - -task("flat", "Flattens and prints contracts and their dependencies (Resolves licenses)") - .addOptionalVariadicPositionalParam("files", "The files to flatten", undefined, types.inputFile) - .setAction(async ({ files }, hre) => { - let flattened = await hre.run("flatten:get-flattened-sources", { files }); - - // Remove every line started with "// SPDX-License-Identifier:" - flattened = flattened.replace(/SPDX-License-Identifier:/gm, "License-Identifier:"); - flattened = `// SPDX-License-Identifier: MIXED\n\n${flattened}`; - - // Remove every line started with "pragma experimental ABIEncoderV2;" except the first one - flattened = flattened.replace(/pragma experimental ABIEncoderV2;\n/gm, ((i) => (m: any) => (!i++ ? m : ""))(0)); - console.log(flattened); - }); - -task("accounts", "Prints the list of accounts", async (taskArgs, hre) => { - const accounts = await hre.ethers.getSigners(); - const provider = hre.ethers.provider; - - for (const account of accounts) { - console.log( - "%s (%i ETH)", - account.address, - // hre.ethers.utils.formatEther( - // getBalance returns wei amount, format to ETH amount - await provider.getBalance(account.address) - // ) - ); - } -}); - -export default config; \ No newline at end of file + test: { + solidity: { + timeout: 40000, + }, + }, +}); \ No newline at end of file diff --git a/ignition/deployments/chain-8453/artifacts/Gateway#Gateway.json b/ignition/deployments/chain-8453/artifacts/Gateway#Gateway.json new file mode 100644 index 0000000..586dc7f --- /dev/null +++ b/ignition/deployments/chain-8453/artifacts/Gateway#Gateway.json @@ -0,0 +1,891 @@ +{ + "_format": "hh3-artifact-1", + "contractName": "Gateway", + "sourceName": "contracts/Gateway.sol", + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "FxTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "LocalTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "TokenFeeSettingsUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getTokenFeeSettings", + "outputs": [ + { + "components": [ + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "internalType": "struct GatewaySettingManager.TokenFeeSettings", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "setTokenFeeSettings", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "_rebatePercent", + "type": "uint64" + } + ], + "name": "settleOut", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033", + "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/Gateway.sol", + "buildInfoId": "solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee" +} \ No newline at end of file diff --git a/ignition/deployments/chain-8453/artifacts/ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor.json b/ignition/deployments/chain-8453/artifacts/ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor.json new file mode 100644 index 0000000..3c12703 --- /dev/null +++ b/ignition/deployments/chain-8453/artifacts/ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor.json @@ -0,0 +1,180 @@ +{ + "_format": "hh3-artifact-1", + "contractName": "ProviderBatchCallAndSponsor", + "sourceName": "contracts/ProviderBatchCallAndSponsor.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "indexed": false, + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "BatchExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "CallExecuted", + "type": "event" + }, + { + "stateMutability": "payable", + "type": "fallback" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "gatewayAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "nonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033", + "deployedBytecode": "0x60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {}, + "immutableReferences": {}, + "inputSourceName": "project/contracts/ProviderBatchCallAndSponsor.sol", + "buildInfoId": "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82" +} \ No newline at end of file diff --git a/ignition/deployments/chain-8453/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.json b/ignition/deployments/chain-8453/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.json new file mode 100644 index 0000000..179591b --- /dev/null +++ b/ignition/deployments/chain-8453/build-info/solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee.json @@ -0,0 +1,70 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-1e1b2ab3dfa6f00ba07e0874b06f5ce0ab4262ee", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/Gateway.sol": "project/contracts/Gateway.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/", + "project/:@openzeppelin/contracts-upgradeable/=npm/@openzeppelin/contracts-upgradeable@4.9.5/", + "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts-upgradeable@4.9.5/access/Ownable2StepUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./OwnableUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. 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 Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\n address private _pendingOwner;\n\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n function __Ownable2Step_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable2Step_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the address of the pending owner.\n */\n function pendingOwner() public view virtual returns (address) {\n return _pendingOwner;\n }\n\n /**\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual override onlyOwner {\n _pendingOwner = newOwner;\n emit OwnershipTransferStarted(owner(), newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual override {\n delete _pendingOwner;\n super._transferOwnership(newOwner);\n }\n\n /**\n * @dev The new owner accepts the ownership transfer.\n */\n function acceptOwnership() public virtual {\n address sender = _msgSender();\n require(pendingOwner() == sender, \"Ownable2Step: caller is not the new owner\");\n _transferOwnership(sender);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/access/OwnableUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * By default, the owner account will be the one that deploys the contract. This\n * can 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal onlyInitializing {\n _transferOwnership(_msgSender());\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 require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\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 require(newOwner != address(0), \"Ownable: new owner is the zero address\");\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/proxy/utils/Initializable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\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 Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\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 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\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 require(_initializing, \"Initializable: contract is not initializing\");\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 require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _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 _initializing;\n }\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/security/PausableUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n function __Pausable_init() internal onlyInitializing {\n __Pausable_init_unchained();\n }\n\n function __Pausable_init_unchained() internal onlyInitializing {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/AddressUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts-upgradeable@4.9.5/utils/ContextUpgradeable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\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 /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/token/ERC20/IERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev 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 amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `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 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" + }, + "project/contracts/Gateway.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\n\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\n\n/**\n * @title Gateway\n * @notice This contract serves as a gateway for creating orders and managing settlements.\n */\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\n\tstruct fee {\n\t\tuint256 protocolFee;\n\t\tuint256 liquidityProviderAmount;\n\t}\n\n\tmapping(bytes32 => Order) private order;\n\tmapping(address => uint256) private _nonce;\n\tuint256[50] private __gap;\n\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @dev Initialize function.\n\t */\n\tfunction initialize() external initializer {\n\t\tMAX_BPS = 100_000;\n\t\t__Ownable2Step_init();\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @dev Modifier that allows only the aggregator to call a function.\n\t */\n\tmodifier onlyAggregator() {\n\t\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\n\t\t_;\n\t}\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\t/**\n\t * @dev Pause the contract.\n\t */\n\tfunction pause() external onlyOwner {\n\t\t_pause();\n\t}\n\n\t/**\n\t * @dev Unpause the contract.\n\t */\n\tfunction unpause() external onlyOwner {\n\t\t_unpause();\n\t}\n\n\t/* ##################################################################\n USER CALLS\n ################################################################## */\n\t/** @dev See {createOrder-IGateway}. */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external whenNotPaused returns (bytes32 orderId) {\n\t\t// checks that are required\n\t\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\n\n\t\t// validate messageHash\n\t\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\n\n\t\t// transfer token from msg.sender to contract\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\t// increase users nonce to avoid replay attacks\n\t\t_nonce[msg.sender]++;\n\n\t\t// generate transaction id for the transaction with chain id\n\t\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender], block.chainid));\n\n\t\trequire(order[orderId].sender == address(0), 'OrderAlreadyExists');\n\n\t\t// update transaction\n\t\tuint256 _protocolFee;\n\t\tif (_rate == 100) {\n\t\t\t// local transfer (rate = 1)\n\t\t\t_protocolFee = 0;\n\t\t\trequire(_senderFee > 0, 'SenderFeeIsZero');\n\t\t} else {\n\t\t\t// fx transfer (rate != 1) - use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\t\t\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\n\t\t\t_protocolFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\n\t\t}\n\t\torder[orderId] = Order({\n\t\t\tsender: msg.sender,\n\t\t\ttoken: _token,\n\t\t\tsenderFeeRecipient: _senderFeeRecipient,\n\t\t\tsenderFee: _senderFee,\n\t\t\tprotocolFee: _protocolFee,\n\t\t\tisFulfilled: false,\n\t\t\tisRefunded: false,\n\t\t\trefundAddress: _refundAddress,\n\t\t\tcurrentBPS: uint64(MAX_BPS),\n\t\t\tamount: _amount\n\t\t});\n\n\t\t// emit order created event\n\t\temit OrderCreated(\n\t\t\t_refundAddress,\n\t\t\t_token,\n\t\t\torder[orderId].amount,\n\t\t\t_protocolFee,\n\t\t\torderId,\n\t\t\t_rate,\n\t\t\tmessageHash\n\t\t);\n\t}\n\n\t/**\n\t * @dev Internal function to handle order creation.\n\t * @param _token The address of the token being traded.\n\t * @param _amount The amount of tokens being traded.\n\t * @param _refundAddress The address to refund the tokens in case of cancellation.\n\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\n\t * @param _senderFee The amount of the sender fee.\n\t */\n\tfunction _handler(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _refundAddress,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal view {\n\t\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\n\t\trequire(_amount != 0, 'AmountIsZero');\n\t\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\n\n\t\tif (_senderFee != 0) {\n\t\t\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\n\t\t}\n\t}\n\n\t/* ##################################################################\n AGGREGATOR FUNCTIONS\n ################################################################## */\n\t/** @dev See {settleOut-IGateway}. */\n\tfunction settleOut(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(_rebatePercent <= MAX_BPS, 'InvalidRebatePercent');\n\n\t\t// load the token into memory\n\t\taddress token = order[_orderId].token;\n\n\t\t// subtract sum of amount based on the input _settlePercent\n\t\tuint256 currentOrderBPS = order[_orderId].currentBPS;\n\t\trequire(_settlePercent > 0 && _settlePercent <= currentOrderBPS, \"InvalidSettlePercent\");\n\t\torder[_orderId].currentBPS -= _settlePercent;\n\n\t\tif (order[_orderId].currentBPS == 0) {\n\t\t\t// update the transaction to be fulfilled\n\t\t\torder[_orderId].isFulfilled = true;\n\n\t\t\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee != 0) {\n\t\t\t\t// FX transfer - sender keeps all fee\n\t\t\t\t_handleFxTransferFeeSplitting(_orderId, token, order[_orderId].senderFeeRecipient, order[_orderId].senderFee);\n\t\t\t}\n\t\t}\n\n\t\tif (order[_orderId].senderFee != 0 && order[_orderId].protocolFee == 0) {\n\t\t\t// local transfer - split sender fee\n\t\t\t_handleLocalTransferFeeSplitting(_orderId, _liquidityProvider, order[_orderId].senderFeeRecipient, _settlePercent);\n\t\t}\n\n\t\t// transfer to liquidity provider\n\t\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / currentOrderBPS;\n\t\torder[_orderId].amount -= liquidityProviderAmount;\n\n\t\tif (order[_orderId].protocolFee != 0) {\n\t\t\t// FX transfer: use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\t\tuint256 aggregatorFee = (liquidityProviderAmount * settings.providerToAggregatorFx) /\tMAX_BPS;\n\t\t\tliquidityProviderAmount -= aggregatorFee;\n\n\t\t\tif (_rebatePercent != 0) {\n\t\t\t\t// calculate rebate amount\n\t\t\t\tuint256 rebateAmount = (aggregatorFee * _rebatePercent) / MAX_BPS;\n\t\t\t\taggregatorFee -= rebateAmount;\n\t\t\t\tliquidityProviderAmount += rebateAmount;\n\t\t\t}\n\n\t\t\t// transfer aggregator fee\n\t\t\tIERC20(token).transfer(treasuryAddress, aggregatorFee);\n\t\t}\n\n\t\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\n\n\t\t// emit settled event\n\t\temit SettleOut(\n\t\t\t_splitOrderId,\n\t\t\t_orderId,\n\t\t\t_liquidityProvider,\n\t\t\t_settlePercent,\n\t\t\t_rebatePercent\n\t\t);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {settleIn-IGateway}. */\n\tfunction settleIn(\n\t\tbytes32 _orderId,\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _senderFeeRecipient,\n\t\tuint96 _senderFee,\n\t\taddress _recipient,\n\t\tuint96 _rate\n\t) external whenNotPaused returns (bool) {\n\t\trequire(order[_orderId].sender == address(0), 'OrderAlreadyExists');\n\t\trequire(_amount > MAX_BPS, 'InvalidAmount');\n\t\t_handler(_token, _amount, _recipient, _senderFeeRecipient, _senderFee);\n\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\tuint256 amountToSettle = _amount;\n\t\tuint256 aggregatorFee;\n\n\t\t// determine if this is FX or local transfer based on rate\n\t\tif (_rate == 100) {\n\t\t\t// local transfer: no protocol fee from amount\n\t\t\trequire(_senderFee > 0, 'SenderFeeIsZero');\n\t\t} else {\n\t\t\t// FX transfer: use token-specific providerToAggregatorFx\n\t\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\t\t\trequire(settings.providerToAggregatorFx > 0, 'TokenFeeSettingsNotConfigured');\n\t\t\t\n\t\t\taggregatorFee = (_amount * settings.providerToAggregatorFx) / MAX_BPS;\n\t\t\t\n\t\t\tif (aggregatorFee > 0) {\n\t\t\t\tamountToSettle -= aggregatorFee;\n\t\t\t\tIERC20(_token).transfer(treasuryAddress, aggregatorFee);\n\t\t\t}\n\t\t}\n\n\t\torder[_orderId].sender = _recipient;\n\t\torder[_orderId].token = _token;\n\t\torder[_orderId].senderFeeRecipient = _senderFeeRecipient;\n\t\torder[_orderId].senderFee = _senderFee;\n\t\torder[_orderId].protocolFee = aggregatorFee;\n\t\torder[_orderId].isFulfilled = true;\n\t\torder[_orderId].amount = amountToSettle;\n\n\t\tIERC20(_token).transfer(_recipient, amountToSettle);\n\n\t\t// handle fee splitting after order state is recorded\n\t\tif (_senderFee != 0) {\n\t\t\tif (aggregatorFee == 0) {\n\t\t\t\t// local transfer: split sender fee\n\t\t\t\t_handleLocalTransferFeeSplitting(_orderId, msg.sender, _senderFeeRecipient, uint64(MAX_BPS));\n\t\t\t} else {\n\t\t\t\t// FX transfer: split sender fee per senderToAggregator settings\n\t\t\t\t_handleFxTransferFeeSplitting(_orderId, _token, _senderFeeRecipient, _senderFee);\n\t\t\t}\n\t\t}\n\n\t\t// emit settlement event\n\t\temit SettleIn(\n\t\t\t_orderId,\n\t\t\tmsg.sender,\n\t\t\t_recipient,\n\t\t\tamountToSettle,\n\t\t\t_token,\n\t\t\taggregatorFee,\n\t\t\t_rate\n\t\t);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {refund-IGateway}. */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\n\n\t\tif (_fee > 0) {\n\t\t\t// transfer refund fee to the treasury\n\t\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\n\t\t}\n\n\t\t// reset state values\n\t\torder[_orderId].isRefunded = true;\n\t\torder[_orderId].currentBPS = 0;\n\n\t\t// deduct fee from order amount\n\t\tuint256 refundAmount = order[_orderId].amount - _fee;\n\n\t\t// transfer refund amount and sender fee to the refund address\n\t\tIERC20(order[_orderId].token).transfer(\n\t\t\torder[_orderId].refundAddress,\n\t\t\trefundAmount + order[_orderId].senderFee\n\t\t);\n\n\t\t// emit refunded event\n\t\temit OrderRefunded(_fee, _orderId);\n\n\t\treturn true;\n\t}\n\n\t/* ##################################################################\n VIEW CALLS\n ################################################################## */\n\t/** @dev See {getOrderInfo-IGateway}. */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\n\t\treturn order[_orderId];\n\t}\n\n\t/** @dev See {isTokenSupported-IGateway}. */\n\tfunction isTokenSupported(address _token) external view returns (bool) {\n\t\tif (_isTokenSupported[_token] == 1) return true;\n\t\treturn false;\n\t}\n\n\t/** @dev See {getAggregator-IGateway}. */\n\tfunction getAggregator() external view returns (address) {\n\t\treturn _aggregatorAddress;\n\t}\n\n\tfunction _handleLocalTransferFeeSplitting(\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\taddress _senderFeeRecipient,\n\t\tuint64 _settlePercent\n\t) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[order[_orderId].token];\n\t\tuint256 senderFee = order[_orderId].senderFee;\n\t\taddress token = order[_orderId].token;\n\n\t\t// Calculate splits based on config\n\t\tuint256 providerAmount = (senderFee * settings.senderToProvider) / MAX_BPS;\n\t\tuint256 currentProviderAmount = (providerAmount * _settlePercent) / MAX_BPS;\n\t\tuint256 aggregatorAmount = (currentProviderAmount * settings.providerToAggregator) / MAX_BPS;\n\t\tuint256 senderAmount = senderFee - providerAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount != 0 && order[_orderId].currentBPS == 0) {\n\t\t\tIERC20(token).transfer(_senderFeeRecipient, senderAmount);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount != 0) {\n\t\t\tIERC20(token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Transfer provider portion to the liquidity provider who fulfilled the order\n\t\tcurrentProviderAmount = currentProviderAmount - aggregatorAmount;\n\t\tif (currentProviderAmount != 0) {\n\t\t\tIERC20(token).transfer(_liquidityProvider, currentProviderAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount);\n\t\temit LocalTransferFeeSplit(_orderId, senderAmount, currentProviderAmount, aggregatorAmount);\n\t}\n\n\tfunction _handleFxTransferFeeSplitting(\n\t\tbytes32 _orderId,\n\t\taddress _token,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal {\n\t\tTokenFeeSettings memory settings = _tokenFeeSettings[_token];\n\n\t\t// Calculate sender portion based on senderToAggregator setting (similar to settleOut FX)\n\t\tuint256 senderAmount = (_senderFee * (MAX_BPS - settings.senderToAggregator)) / MAX_BPS;\n\t\tuint256 aggregatorAmount = _senderFee - senderAmount;\n\n\t\t// Transfer sender portion\n\t\tif (senderAmount > 0) {\n\t\t\tIERC20(_token).transfer(_senderFeeRecipient, senderAmount);\n\t\t}\n\n\t\t// Transfer aggregator portion to treasury\n\t\tif (aggregatorAmount > 0) {\n\t\t\tIERC20(_token).transfer(treasuryAddress, aggregatorAmount);\n\t\t}\n\n\t\t// Emit events\n\t\temit SenderFeeTransferred(_orderId, _senderFeeRecipient, senderAmount);\n\t\temit FxTransferFeeSplit(_orderId, senderAmount, aggregatorAmount);\n\t}\n}\n" + }, + "project/contracts/GatewaySettingManager.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\n\n/**\n * @title GatewaySettingManager\n * @dev This contract manages the settings and configurations for the Gateway protocol.\n */\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\n\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\n\tuint256 internal MAX_BPS;\n\tuint64 internal protocolFeePercent; // DEPRECATED — kept for proxy storage compatibility (do not remove)\n\taddress internal treasuryAddress;\n\taddress internal _aggregatorAddress;\n\tmapping(address => uint256) internal _isTokenSupported;\n\n\t// Token-specific fee settings\n\tstruct TokenFeeSettings {\n\t\tuint256 senderToProvider; // % of sender fee that goes to provider (local mode)\n\t\tuint256 providerToAggregator; // % of provider's share that goes to aggregator (local mode)\n\t\tuint256 senderToAggregator; // % of sender fee that goes to aggregator (fx mode)\n\t\tuint256 providerToAggregatorFx; // % of transaction amount provider pays to aggregator (fx mode)\n\t}\n\n\tmapping(address => TokenFeeSettings) internal _tokenFeeSettings;\n\n\tuint256[49] private __gap;\n\n\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\n\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\n\tevent SetFeeRecipient(address indexed treasuryAddress);\n\tevent TokenFeeSettingsUpdated(\n\t\taddress indexed token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t);\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\n\t/**\n\t * @dev Sets the boolean value for a specific setting.\n\t * @param what The setting to be updated.\n\t * @param value The address or value associated with the setting.\n\t * @param status The boolean value to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\trequire(status == 1 || status == 2, 'Gateway: invalid status');\n\t\tif (what == 'token') {\n\t\t\t_isTokenSupported[value] = status;\n\t\t\temit SettingManagerBool(what, value, status);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Updates a protocol address.\n\t * @param what The address type to be updated (treasury or aggregator).\n\t * @param value The new address to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\tbool updated;\n\t\tif (what == 'treasury') {\n\t\t\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\n\t\t\ttreasuryAddress = value;\n\t\t\tupdated = true;\n\t\t} else if (what == 'aggregator') {\n\t\t\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\n\t\t\t_aggregatorAddress = value;\n\t\t\tupdated = true;\n\t\t}\n\t\tif (updated) {\n\t\t\temit ProtocolAddressUpdated(what, value);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Sets token-specific fee settings for stablecoins.\n\t * @param token The token address to configure.\n\t * @param senderToProvider Percentage of sender fee that goes to provider (local mode).\n\t * @param providerToAggregator Percentage of provider's share that goes to aggregator (local mode).\n\t * @param senderToAggregator Percentage of sender fee that goes to aggregator (fx mode).\n\t * @param providerToAggregatorFx Percentage of transaction amount provider pays to aggregator (fx mode).\n\t * Requirements:\n\t * - The token must be supported.\n\t * - Fee percentages must be within valid ranges.\n\t */\n\tfunction setTokenFeeSettings(\n\t\taddress token,\n\t\tuint256 senderToProvider,\n\t\tuint256 providerToAggregator,\n\t\tuint256 senderToAggregator,\n\t\tuint256 providerToAggregatorFx\n\t) external onlyOwner {\n\t\trequire(_isTokenSupported[token] == 1, 'Gateway: token not supported');\n\t\trequire(senderToProvider <= MAX_BPS, 'Gateway: invalid sender to provider');\n\t\trequire(providerToAggregator <= MAX_BPS, 'Gateway: invalid provider to aggregator');\n\t\trequire(senderToAggregator <= MAX_BPS, 'Gateway: invalid sender to aggregator');\n\t\trequire(providerToAggregatorFx <= MAX_BPS, 'Gateway: invalid provider to aggregator fx');\n\n\t\t_tokenFeeSettings[token] = TokenFeeSettings({\n\t\t\tsenderToProvider: senderToProvider,\n\t\t\tproviderToAggregator: providerToAggregator,\n\t\t\tsenderToAggregator: senderToAggregator,\n\t\t\tproviderToAggregatorFx: providerToAggregatorFx\n\t\t});\n\n\t\temit TokenFeeSettingsUpdated(\n\t\t\ttoken,\n\t\t\tsenderToProvider,\n\t\t\tproviderToAggregator,\n\t\t\tsenderToAggregator,\n\t\t\tproviderToAggregatorFx\n\t\t);\n\t}\n\n\t/**\n\t * @dev Gets token-specific fee settings.\n\t * @param token The token address to query.\n\t * @return TokenFeeSettings struct containing all fee settings for the token.\n\t */\n\tfunction getTokenFeeSettings(address token) external view returns (TokenFeeSettings memory) {\n\t\treturn _tokenFeeSettings[token];\n\t}\n}\n" + }, + "project/contracts/interfaces/IGateway.sol": { + "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGateway {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t * @param rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t */\n\tevent SettleOut(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint64 settlePercent,\n\t\tuint64 rebatePercent\n\t);\n\n\t/**\n * @dev Emitted when an onramp order is successfully processed\n */\n event SettleIn(\n bytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n address indexed recipient,\n uint256 amount,\n address token,\n uint256 aggregatorFee,\n\t\tuint96 rate\n );\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(bytes32 indexed orderId, address indexed sender, uint256 indexed amount);\n\n\t/**\n\t * @dev Emitted when a local transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param providerAmount The amount that goes to the provider.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent LocalTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 providerAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/**\n\t * @dev Emitted when an FX transfer fee is split.\n\t * @param orderId The ID of the order.\n\t * @param senderAmount The amount that goes to the sender.\n\t * @param aggregatorAmount The amount that goes to the aggregator.\n\t */\n\tevent FxTransferFeeSplit(\n\t\tbytes32 indexed orderId,\n\t\tuint256 senderAmount,\n\t\tuint256 aggregatorAmount\n\t);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @param _rebatePercent The percentage of the aggregator fee that is given back to the provider.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settleOut(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent,\n\t\tuint64 _rebatePercent\n\t) external returns (bool);\n\n\t/**\n * @notice Process settleIn order\n * @dev Intended for order in-flows where the caller provides tokens via transferFrom; not restricted to onlyAggregator\n * @dev It process an order and transfers tokens to the recipient after deducting sender fees\n * @param _orderId Unique identifier for the order being processed\n * @param _token Address of the token to be sent to the user\n * @param _amount Total amount transferred in (includes sender fee and, for FX, protocol fee); recipient receives _amount minus applicable fees\n * @param _senderFeeRecipient Address that will receive the sender fee\n * @param _senderFee Amount of fee to be paid to the sender fee recipient\n * @param _recipient Address of the recipient who will receive the tokens\n * @param _rate Rate at which the tokens are being sent\n * @return success Boolean indicating if the operation was successful\n */\n function settleIn(\n bytes32 _orderId,\n address _token,\n uint256 _amount,\n address _senderFeeRecipient,\n uint96 _senderFee,\n address _recipient,\n uint96 _rate\n ) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n\n\t/**\n\t * @notice Gets the address of the aggregator.\n\t * @return address The address of the aggregator.\n\t */\n\tfunction getAggregator() external view returns (address);\n}\n" + } + } + } +} \ No newline at end of file diff --git a/ignition/deployments/chain-8453/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.json b/ignition/deployments/chain-8453/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.json new file mode 100644 index 0000000..c7d1652 --- /dev/null +++ b/ignition/deployments/chain-8453/build-info/solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82.json @@ -0,0 +1,53 @@ +{ + "_format": "hh3-sol-build-info-1", + "id": "solc-0_8_20-fca8cc730a3cef896a4a57d6ce6a72d2a65b5d82", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "userSourceNameMap": { + "contracts/ProviderBatchCallAndSponsor.sol": "project/contracts/ProviderBatchCallAndSponsor.sol" + }, + "input": { + "language": "Solidity", + "settings": { + "evmVersion": "shanghai", + "optimizer": { + "enabled": true, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ] + } + }, + "remappings": [ + "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.5/" + ] + }, + "sources": { + "npm/@openzeppelin/contracts@4.9.5/utils/cryptography/ECDSA.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Strings.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS,\n InvalidSignatureV // Deprecated in v4.8\n }\n\n function _throwError(RecoverError error) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert(\"ECDSA: invalid signature\");\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert(\"ECDSA: invalid signature length\");\n } else if (error == RecoverError.InvalidSignatureS) {\n revert(\"ECDSA: invalid signature 's' value\");\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature` or error string. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n /// @solidity memory-safe-assembly\n assembly {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength);\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, signature);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n *\n * _Available since v4.2._\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature);\n }\n\n return (signer, RecoverError.NoError);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n // 32 is the length in bytes of hash,\n // enforced by the type signature above\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n mstore(0x1c, hash)\n message := keccak256(0x00, 0x3c)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from `s`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", Strings.toString(s.length), s));\n }\n\n /**\n * @dev Returns an Ethereum Signed Typed Data, created from a\n * `domainSeparator` and a `structHash`. This produces hash corresponding\n * to the one signed with the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n * JSON-RPC method as part of EIP-712.\n *\n * See {recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n /// @solidity memory-safe-assembly\n assembly {\n let ptr := mload(0x40)\n mstore(ptr, \"\\x19\\x01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n data := keccak256(ptr, 0x42)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Data with intended validator, created from a\n * `validator` and `data` according to the version 0 of EIP-191.\n *\n * See {recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/math/Math.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/math/SignedMath.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n" + }, + "npm/@openzeppelin/contracts@4.9.5/utils/Strings.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\nimport \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\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 toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(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 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] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\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 representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n" + }, + "project/contracts/ProviderBatchCallAndSponsor.sol": { + "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.18;\n\nimport \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\n\ninterface IGateway {\n function getAggregator() external view returns (address);\n}\n/**\n * @title ProviderBatchCallAndSponsor\n *\n * When an EOA upgrades via EIP‑7702, it delegates to this implementation.\n * Off‑chain, the account signs a message authorizing a batch of calls. The message is the hash of:\n * keccak256(abi.encodePacked(nonce, calls))\n * The signature must be generated with the EOA’s private key so that, once upgraded, the recovered signer equals the account’s own address (i.e. address(this)).\n *\n * This contract provides just one way to execute a batch:\n * 1. With a signature: Any sponsor can submit the batch if it carries a valid signature.\n *\n * Replay protection is achieved by using a nonce that is included in the signed message.\n */\ncontract ProviderBatchCallAndSponsor {\n using ECDSA for bytes32;\n \n // constant because when it assigned to eao we want to ensure it never changes\n /// @notice The address of the Gateway contract.\n address public constant gatewayAddress = 0x56dA8fCE8FD64CaaE90D80DED55587b282bb4303;\n /// @notice A nonce used for replay protection.\n uint256 public nonce;\n\n /// @notice Represents a single call within a batch.\n struct Call {\n address to;\n uint256 value;\n bytes data;\n }\n\n modifier onlyAggregator() {\n\t\trequire(msg.sender == IGateway(gatewayAddress).getAggregator(), \"OnlyAggregator\");\n\t\t_;\n\t}\n\n /// @notice Emitted for every individual call executed.\n event CallExecuted(address indexed sender, address indexed to, uint256 value, bytes data);\n /// @notice Emitted when a full batch is executed.\n event BatchExecuted(uint256 indexed nonce, Call[] calls);\n\n /**\n * @notice Executes a batch of calls using an off–chain signature.\n * @param calls An array of Call structs containing destination, ETH value, and calldata.\n * @param signature The ECDSA signature over the current nonce and the call data.\n *\n * The signature must be produced off–chain by signing:\n * The signing key should be the account’s key (which becomes the smart account’s own identity after upgrade).\n */\n function execute(Call[] calldata calls, bytes calldata signature) external payable onlyAggregator {\n // Compute the digest that the account was expected to sign.\n bytes memory encodedCalls;\n for (uint256 i = 0; i < calls.length; i++) {\n encodedCalls = abi.encodePacked(encodedCalls, calls[i].to, calls[i].value, calls[i].data);\n }\n bytes32 digest = keccak256(abi.encodePacked(nonce, encodedCalls));\n \n bytes32 ethSignedMessageHash = ECDSA.toEthSignedMessageHash(digest);\n\n // Recover the signer from the provided signature.\n address recovered = ECDSA.recover(ethSignedMessageHash, signature);\n require(recovered == address(this), \"Invalid signature\");\n\n _executeBatch(calls);\n }\n\n /**\n * @notice Executes a batch of calls directly.\n * @dev This contract doesnt authorized self execution.\n * @param calls An array of Call structs containing destination, ETH value, and calldata.\n */\n function execute(Call[] calldata calls) external payable {\n revert(\"Not implemented\"); // we don't expect this to be called directly\n }\n\n /**\n * @dev Internal function that handles batch execution and nonce incrementation.\n * @param calls An array of Call structs.\n */\n function _executeBatch(Call[] calldata calls) internal {\n uint256 currentNonce = nonce;\n nonce++; // Increment nonce to protect against replay attacks\n\n for (uint256 i = 0; i < calls.length; i++) {\n _executeCall(calls[i]);\n }\n\n emit BatchExecuted(currentNonce, calls);\n }\n\n /**\n * @dev Internal function to execute a single call.\n * @param callItem The Call struct containing destination, value, and calldata.\n */\n function _executeCall(Call calldata callItem) internal {\n (bool success,) = callItem.to.call{value: callItem.value}(callItem.data);\n require(success, \"Call reverted\");\n emit CallExecuted(msg.sender, callItem.to, callItem.value, callItem.data);\n }\n\n // Allow the contract to receive ETH (e.g. from DEX swaps or other transfers).\n fallback() external payable {}\n receive() external payable {}\n}" + } + } + } +} \ No newline at end of file diff --git a/ignition/deployments/chain-8453/deployed_addresses.json b/ignition/deployments/chain-8453/deployed_addresses.json new file mode 100644 index 0000000..3c8a06c --- /dev/null +++ b/ignition/deployments/chain-8453/deployed_addresses.json @@ -0,0 +1,4 @@ +{ + "Gateway#Gateway": "0x11319c4b2E0625ADb2B2274b35527e6308d4D2Cb", + "ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor": "0xaa98a1a4dbA369Fec6Df6b4698D4063F9A13D2fA" +} \ No newline at end of file diff --git a/ignition/deployments/chain-8453/journal.jsonl b/ignition/deployments/chain-8453/journal.jsonl new file mode 100644 index 0000000..17fe04c --- /dev/null +++ b/ignition/deployments/chain-8453/journal.jsonl @@ -0,0 +1,14 @@ + +{"chainId":8453,"type":"DEPLOYMENT_INITIALIZE"} +{"artifactId":"Gateway#Gateway","constructorArgs":[],"contractName":"Gateway","dependencies":[],"from":"0xeaaebeb57dc88fd25adee72711538af0c6a9ac6e","futureId":"Gateway#Gateway","futureType":"NAMED_ARTIFACT_CONTRACT_DEPLOYMENT","libraries":{},"strategy":"basic","strategyConfig":{},"type":"DEPLOYMENT_EXECUTION_STATE_INITIALIZE","value":{"_kind":"bigint","value":"0"}} +{"futureId":"Gateway#Gateway","networkInteraction":{"data":"0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033","id":1,"type":"ONCHAIN_INTERACTION","value":{"_kind":"bigint","value":"0"}},"type":"NETWORK_INTERACTION_REQUEST"} +{"futureId":"Gateway#Gateway","networkInteractionId":1,"nonce":64,"type":"TRANSACTION_PREPARE_SEND"} +{"futureId":"Gateway#Gateway","networkInteractionId":1,"nonce":64,"transaction":{"fees":{"maxFeePerGas":{"_kind":"bigint","value":"7506612"},"maxPriorityFeePerGas":{"_kind":"bigint","value":"1000000"}},"hash":"0x079b6aed27e8793f4e2edb77b281db02a1e19dab51acb8f6ba78adf1cbe33c1a"},"type":"TRANSACTION_SEND"} +{"futureId":"Gateway#Gateway","hash":"0x079b6aed27e8793f4e2edb77b281db02a1e19dab51acb8f6ba78adf1cbe33c1a","networkInteractionId":1,"receipt":{"blockHash":"0x62bf1fdf4c72a6fc48da4c3c6fe3d5ba3b9f3d8721fe4369500ac068e6cea568","blockNumber":41623896,"contractAddress":"0x11319c4b2E0625ADb2B2274b35527e6308d4D2Cb","logs":[{"address":"0x11319c4b2E0625ADb2B2274b35527e6308d4D2Cb","data":"0x00000000000000000000000000000000000000000000000000000000000000ff","logIndex":370,"topics":["0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"]}],"status":"SUCCESS"},"type":"TRANSACTION_CONFIRM"} +{"futureId":"Gateway#Gateway","result":{"address":"0x11319c4b2E0625ADb2B2274b35527e6308d4D2Cb","type":"SUCCESS"},"type":"DEPLOYMENT_EXECUTION_STATE_COMPLETE"} +{"artifactId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","constructorArgs":[],"contractName":"ProviderBatchCallAndSponsor","dependencies":[],"from":"0xeaaebeb57dc88fd25adee72711538af0c6a9ac6e","futureId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","futureType":"NAMED_ARTIFACT_CONTRACT_DEPLOYMENT","libraries":{},"strategy":"basic","strategyConfig":{},"type":"DEPLOYMENT_EXECUTION_STATE_INITIALIZE","value":{"_kind":"bigint","value":"0"}} +{"futureId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","networkInteraction":{"data":"0x608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033","id":1,"type":"ONCHAIN_INTERACTION","value":{"_kind":"bigint","value":"0"}},"type":"NETWORK_INTERACTION_REQUEST"} +{"futureId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","networkInteractionId":1,"nonce":66,"type":"TRANSACTION_PREPARE_SEND"} +{"futureId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","networkInteractionId":1,"nonce":66,"transaction":{"fees":{"maxFeePerGas":{"_kind":"bigint","value":"6035718"},"maxPriorityFeePerGas":{"_kind":"bigint","value":"1000000"}},"hash":"0x2dd7ecab848eb3b3fa8ec57f32677b9ccb15427e33a36efe8e6cb8285d88f346"},"type":"TRANSACTION_SEND"} +{"futureId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","hash":"0x2dd7ecab848eb3b3fa8ec57f32677b9ccb15427e33a36efe8e6cb8285d88f346","networkInteractionId":1,"receipt":{"blockHash":"0x01d47b94caffa49cd62894bec5c76c6fa18e109b297f6f188c6716dce0556432","blockNumber":41624392,"contractAddress":"0xaa98a1a4dbA369Fec6Df6b4698D4063F9A13D2fA","logs":[],"status":"SUCCESS"},"type":"TRANSACTION_CONFIRM"} +{"futureId":"ProviderBatchCallAndSponsor#ProviderBatchCallAndSponsor","result":{"address":"0xaa98a1a4dbA369Fec6Df6b4698D4063F9A13D2fA","type":"SUCCESS"},"type":"DEPLOYMENT_EXECUTION_STATE_COMPLETE"} \ No newline at end of file diff --git a/ignition/modules/Gateway.ts b/ignition/modules/Gateway.ts new file mode 100644 index 0000000..43b26cf --- /dev/null +++ b/ignition/modules/Gateway.ts @@ -0,0 +1,7 @@ +import { buildModule } from "@nomicfoundation/hardhat-ignition/modules"; + +export default buildModule("Gateway", (m: { contract: (arg0: string) => any; }) => { + const Gateway = m.contract("Gateway"); + + return { Gateway }; +}); \ No newline at end of file diff --git a/ignition/modules/GatewayDeployProxy.ts b/ignition/modules/GatewayDeployProxy.ts new file mode 100644 index 0000000..3bd6c64 --- /dev/null +++ b/ignition/modules/GatewayDeployProxy.ts @@ -0,0 +1,38 @@ +import { buildModule } from "@nomicfoundation/hardhat-ignition/modules"; + +const proxyModule = buildModule("GatewayProxyModule", (m) => { + const proxyAdminOwner = m.getAccount(0); + + // Deploy the Gateway implementation contract + const gateway = m.contract("Gateway"); + + // Deploy the TransparentUpgradeableProxy + const proxy = m.contract("TransparentUpgradeableProxy", [ + gateway, + proxyAdminOwner, + "0x", // Empty initialization data + ]); + + // Get the ProxyAdmin address from the AdminChanged event + const proxyAdminAddress = m.readEventArgument( + proxy, + "AdminChanged", + "newAdmin" + ); + + // Get a contract instance for the ProxyAdmin + const proxyAdmin = m.contractAt("ProxyAdmin", proxyAdminAddress); + + return { proxyAdmin, proxy }; +}); + +const gatewayModule = buildModule("GatewayModule", (m) => { + const { proxy, proxyAdmin } = m.useModule(proxyModule); + + // Create a Gateway contract instance at the proxy address + const gateway = m.contractAt("Gateway", proxy); + + return { gateway, proxy, proxyAdmin }; +}); + +export default gatewayModule; \ No newline at end of file diff --git a/ignition/modules/GatewayUpgrade.ts b/ignition/modules/GatewayUpgrade.ts new file mode 100644 index 0000000..d34dfff --- /dev/null +++ b/ignition/modules/GatewayUpgrade.ts @@ -0,0 +1,64 @@ +import { buildModule } from "@nomicfoundation/hardhat-ignition/modules"; +import { NETWORKS } from "../../scripts/config"; + + +const GatewayUpgradeModule = buildModule("GatewayUpgradeModule", (m) => { + // Get the chain ID from parameters + const chainId = m.getParameter("chainId"); + + if (!chainId) { + throw new Error( + "Chain ID parameter is required.\n" + + "Create a parameters file with: { \"GatewayUpgradeModule\": { \"chainId\": } }\n" + + "Then use: --parameters ignition/parameters/.json" + ); + } + + // Get the existing proxy contract address from config + const networkConfig = NETWORKS[chainId as unknown as keyof typeof NETWORKS]; + if (!networkConfig) { + throw new Error(`Network configuration not found for chainId: ${chainId}`); + } + + const existingProxyAddress = networkConfig.gatewayContract; + if (!existingProxyAddress) { + throw new Error(`Gateway contract address not found for chainId: ${chainId}`); + } + + console.log(`Upgrading Gateway proxy at: ${existingProxyAddress} on chain ${chainId}`); + + // Deploy the new Gateway implementation contract + const newImplementation = m.contract("Gateway"); + + // Get the existing proxy contract + const proxy = m.contractAt("ITransparentUpgradeableProxy", existingProxyAddress); + + // Get the ProxyAdmin address by reading the ERC1967 admin storage slot + // The admin slot is: bytes32(uint256(keccak256('eip1967.proxy.admin')) - 1) + const proxyAdminAddress = m.staticCall(proxy, "admin", [], "getProxyAdmin"); + + console.log(`Retrieved ProxyAdmin from proxy contract`); + + // Get the ProxyAdmin contract instance + const proxyAdmin = m.contractAt("ProxyAdmin", proxyAdminAddress); + + // Upgrade the proxy to the new implementation + m.call(proxyAdmin, "upgradeAndCall", [ + existingProxyAddress, + newImplementation, + "0x" // No initialization call needed + ]); + + console.log(`Upgraded proxy to new implementation`); + + // Get the upgraded gateway instance at the proxy address + const upgradedGateway = m.contractAt("Gateway", existingProxyAddress); + + return { + newImplementation, + proxyAdmin, + upgradedGateway + }; +}); + +export default GatewayUpgradeModule; \ No newline at end of file diff --git a/ignition/modules/ProviderBatchCallAndSponsor.ts b/ignition/modules/ProviderBatchCallAndSponsor.ts new file mode 100644 index 0000000..302aac1 --- /dev/null +++ b/ignition/modules/ProviderBatchCallAndSponsor.ts @@ -0,0 +1,7 @@ +import { buildModule } from "@nomicfoundation/hardhat-ignition/modules"; + +export default buildModule("ProviderBatchCallAndSponsor", (m: { contract: (arg0: string) => any; }) => { + const ProviderBatchCallAndSponsor = m.contract("ProviderBatchCallAndSponsor"); + + return { ProviderBatchCallAndSponsor }; +}); \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5fe439b..7966915 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,42 +16,31 @@ }, "devDependencies": { "@daochild/tronweb-typescript": "^1.1.2", - "@ethersproject/abi": "^5.7.0", "@ethersproject/providers": "^5.7.2", - "@nomicfoundation/hardhat-chai-matchers": "^1.0.6", - "@nomicfoundation/hardhat-network-helpers": "^1.0.8", - "@nomicfoundation/hardhat-toolbox": "^2.0.2", - "@nomiclabs/hardhat-ethers": "^2.2.3", - "@nomiclabs/hardhat-etherscan": "^3.1.7", - "@openzeppelin/hardhat-upgrades": "^1.27.0", + "@nomicfoundation/hardhat-ethers": "^4.0.4", + "@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.2", + "@nomicfoundation/hardhat-mocha": "^3.0.9", + "@nomicfoundation/hardhat-network-helpers": "^3.0.3", + "@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.2", + "@nomicfoundation/hardhat-typechain": "^3.0.1", + "@nomicfoundation/hardhat-verify": "^3.0.8", "@openzeppelin/truffle-upgrades": "^1.21.0", - "@typechain/ethers-v5": "^10.2.0", - "@typechain/hardhat": "^6.1.5", - "chai": "^4.3.7", + "@types/chai": "^5.2.3", + "@types/mocha": "^10.0.10", + "chai": "^6.2.2", "dotenv": "^16.0.2", - "ethers": "^5.7.2", - "hardhat": "^2.14.0", - "hardhat-deploy": "^0.11.34", - "hardhat-gas-reporter": "^1.0.9", - "solidity-coverage": "^0.8.2", + "ethers": "^6.16.0", + "hardhat": "^3.0.12", + "mocha": "^11.3.0", "ts-node": "^10.9.2", "typechain": "^8.1.1", "typescript": "^5.3.3" } }, - ".api/apis/tron": { - "version": "0.0.0", - "extraneous": true, - "dependencies": { - "api": "^6.1.1", - "json-schema-to-ts": "^2.8.0-beta.0", - "oas": "^20.10.3" - } - }, "node_modules/@adraffy/ens-normalize": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz", - "integrity": "sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==" + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz", + "integrity": "sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==" }, "node_modules/@apollo/protobufjs": { "version": "1.2.7", @@ -243,99 +232,14 @@ "xss": "^1.0.8" } }, - "node_modules/@aws-crypto/sha256-js": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-1.2.2.tgz", - "integrity": "sha512-Nr1QJIbW/afYYGzYvrF70LtaHrIRtd4TNAglX8BvlfxJLZ45SAmueIKYl5tWoNBPzp65ymXGFK0Bb1vZUpuc9g==", - "dev": true, - "dependencies": { - "@aws-crypto/util": "^1.2.2", - "@aws-sdk/types": "^3.1.0", - "tslib": "^1.11.1" - } - }, - "node_modules/@aws-crypto/util": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-1.2.2.tgz", - "integrity": "sha512-H8PjG5WJ4wz0UXAFXeJjWCW1vkvIJ3qUUD+rGRwJ2/hj+xT58Qle2MTql/2MGzkU+1JLAFuR6aJpLAjHwhmwwg==", - "dev": true, - "dependencies": { - "@aws-sdk/types": "^3.1.0", - "@aws-sdk/util-utf8-browser": "^3.0.0", - "tslib": "^1.11.1" - } - }, - "node_modules/@aws-sdk/types": { - "version": "3.387.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.387.0.tgz", - "integrity": "sha512-YTjFabNwjTF+6yl88f0/tWff018qmmgMmjlw45s6sdVKueWxdxV68U7gepNLF2nhaQPZa6FDOBoA51NaviVs0Q==", - "dev": true, - "dependencies": { - "@smithy/types": "^2.1.0", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/types/node_modules/tslib": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", - "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==", - "dev": true - }, - "node_modules/@aws-sdk/util-utf8-browser": { - "version": "3.259.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz", - "integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==", - "dev": true, - "dependencies": { - "tslib": "^2.3.1" - } - }, - "node_modules/@aws-sdk/util-utf8-browser/node_modules/tslib": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", - "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==", - "dev": true - }, "node_modules/@babel/runtime": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", - "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz", + "integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==", "engines": { "node": ">=6.9.0" } }, - "node_modules/@chainsafe/as-sha256": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@chainsafe/as-sha256/-/as-sha256-0.3.1.tgz", - "integrity": "sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==", - "dev": true - }, - "node_modules/@chainsafe/persistent-merkle-tree": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.4.2.tgz", - "integrity": "sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==", - "dev": true, - "dependencies": { - "@chainsafe/as-sha256": "^0.3.1" - } - }, - "node_modules/@chainsafe/ssz": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.9.4.tgz", - "integrity": "sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==", - "dev": true, - "dependencies": { - "@chainsafe/as-sha256": "^0.3.1", - "@chainsafe/persistent-merkle-tree": "^0.4.2", - "case": "^1.6.3" - } - }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", @@ -392,229 +296,492 @@ "web3-utils": "^1.0.0-beta.31" } }, - "node_modules/@ensdomains/ens/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "node_modules/@ensdomains/ensjs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@ensdomains/ensjs/-/ensjs-2.1.0.tgz", + "integrity": "sha512-GRbGPT8Z/OJMDuxs75U/jUNEC0tbL0aj7/L/QQznGYKm/tiasp+ndLOaoULy9kKJFC0TBByqfFliEHDgoLhyog==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/runtime": "^7.4.4", + "@ensdomains/address-encoder": "^0.1.7", + "@ensdomains/ens": "0.4.5", + "@ensdomains/resolver": "0.2.4", + "content-hash": "^2.5.2", + "eth-ens-namehash": "^2.0.8", + "ethers": "^5.0.13", + "js-sha3": "^0.8.0" } }, - "node_modules/@ensdomains/ens/node_modules/camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "node_modules/@ensdomains/ensjs/node_modules/ethers": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.8.0.tgz", + "integrity": "sha512-DUq+7fHrCg1aPDFCHx6UIPb3nmt2XMpM7Y/g2gLhsl3lIBqeAfOJIl1qEvRf2uq3BiKxmh6Fh5pfp2ieyek7Kg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "dependencies": { + "@ethersproject/abi": "5.8.0", + "@ethersproject/abstract-provider": "5.8.0", + "@ethersproject/abstract-signer": "5.8.0", + "@ethersproject/address": "5.8.0", + "@ethersproject/base64": "5.8.0", + "@ethersproject/basex": "5.8.0", + "@ethersproject/bignumber": "5.8.0", + "@ethersproject/bytes": "5.8.0", + "@ethersproject/constants": "5.8.0", + "@ethersproject/contracts": "5.8.0", + "@ethersproject/hash": "5.8.0", + "@ethersproject/hdnode": "5.8.0", + "@ethersproject/json-wallets": "5.8.0", + "@ethersproject/keccak256": "5.8.0", + "@ethersproject/logger": "5.8.0", + "@ethersproject/networks": "5.8.0", + "@ethersproject/pbkdf2": "5.8.0", + "@ethersproject/properties": "5.8.0", + "@ethersproject/providers": "5.8.0", + "@ethersproject/random": "5.8.0", + "@ethersproject/rlp": "5.8.0", + "@ethersproject/sha2": "5.8.0", + "@ethersproject/signing-key": "5.8.0", + "@ethersproject/solidity": "5.8.0", + "@ethersproject/strings": "5.8.0", + "@ethersproject/transactions": "5.8.0", + "@ethersproject/units": "5.8.0", + "@ethersproject/wallet": "5.8.0", + "@ethersproject/web": "5.8.0", + "@ethersproject/wordlists": "5.8.0" } }, - "node_modules/@ensdomains/ens/node_modules/cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "node_modules/@ensdomains/resolver": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@ensdomains/resolver/-/resolver-0.2.4.tgz", + "integrity": "sha512-bvaTH34PMCbv6anRa9I/0zjLJgY4EuznbEMgbV77JBCQ9KNC46rzi0avuxpOfu+xDjPEtSFGqVEOr5GlUSGudA==", + "deprecated": "Please use @ensdomains/ens-contracts", + "dev": true + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz", + "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "node_modules/@esbuild/android-arm": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz", + "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==", + "cpu": [ + "arm" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==", + "node_modules/@esbuild/android-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz", + "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "node_modules/@ensdomains/ens/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "node_modules/@esbuild/android-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz", + "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz", + "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==", + "cpu": [ + "arm64" + ], "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/require-from-string": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", - "integrity": "sha512-H7AkJWMobeskkttHyhTVtS0fxpFLjxhbfMa6Bk3wimP7sdPRGL3EyCg3sAQenFfAe+xQ+oAc85Nmtvq0ROM83Q==", + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz", + "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true - }, - "node_modules/@ensdomains/ens/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz", + "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==", + "cpu": [ + "arm64" + ], "dev": true, - "bin": { - "semver": "bin/semver" + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/solc": { - "version": "0.4.26", - "resolved": "https://registry.npmjs.org/solc/-/solc-0.4.26.tgz", - "integrity": "sha512-o+c6FpkiHd+HPjmjEVpQgH7fqZ14tJpXhho+/bQXlXbliLIS/xjXb42Vxh+qQY1WCSTMQ0+a5vR9vi0MfhU6mA==", + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz", + "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "fs-extra": "^0.30.0", - "memorystream": "^0.3.1", - "require-from-string": "^1.1.0", - "semver": "^5.3.0", - "yargs": "^4.7.1" - }, - "bin": { - "solcjs": "solcjs" + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "node_modules/@esbuild/linux-arm": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz", + "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz", + "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", - "dev": true - }, - "node_modules/@ensdomains/ens/node_modules/wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz", + "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz", + "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } }, - "node_modules/@ensdomains/ens/node_modules/yargs": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz", - "integrity": "sha512-LqodLrnIDM3IFT+Hf/5sxBnEGECrfdC1uIbgZeJmESCSo4HoCAaKEus8MylXHAkdacGc0ye+Qa+dpkuom8uVYA==", + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz", + "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==", + "cpu": [ + "mips64el" + ], "dev": true, - "dependencies": { - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "lodash.assign": "^4.0.3", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.1", - "which-module": "^1.0.0", - "window-size": "^0.2.0", - "y18n": "^3.2.1", - "yargs-parser": "^2.4.1" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ens/node_modules/yargs-parser": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", - "integrity": "sha512-9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==", + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz", + "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "camelcase": "^3.0.0", - "lodash.assign": "^4.0.6" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/ensjs": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@ensdomains/ensjs/-/ensjs-2.1.0.tgz", - "integrity": "sha512-GRbGPT8Z/OJMDuxs75U/jUNEC0tbL0aj7/L/QQznGYKm/tiasp+ndLOaoULy9kKJFC0TBByqfFliEHDgoLhyog==", + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz", + "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "@babel/runtime": "^7.4.4", - "@ensdomains/address-encoder": "^0.1.7", - "@ensdomains/ens": "0.4.5", - "@ensdomains/resolver": "0.2.4", - "content-hash": "^2.5.2", - "eth-ens-namehash": "^2.0.8", - "ethers": "^5.0.13", - "js-sha3": "^0.8.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@ensdomains/resolver": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/@ensdomains/resolver/-/resolver-0.2.4.tgz", - "integrity": "sha512-bvaTH34PMCbv6anRa9I/0zjLJgY4EuznbEMgbV77JBCQ9KNC46rzi0avuxpOfu+xDjPEtSFGqVEOr5GlUSGudA==", - "deprecated": "Please use @ensdomains/ens-contracts", - "dev": true + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz", + "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz", + "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz", + "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz", + "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz", + "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz", + "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz", + "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz", + "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz", + "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz", + "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz", + "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } }, "node_modules/@ethereumjs/common": { "version": "2.5.0", @@ -637,9 +804,9 @@ } }, "node_modules/@ethersproject/abi": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz", - "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.8.0.tgz", + "integrity": "sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q==", "funding": [ { "type": "individual", @@ -651,21 +818,21 @@ } ], "dependencies": { - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" + "@ethersproject/address": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/constants": "^5.8.0", + "@ethersproject/hash": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/strings": "^5.8.0" } }, "node_modules/@ethersproject/abstract-provider": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz", - "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.8.0.tgz", + "integrity": "sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg==", "funding": [ { "type": "individual", @@ -677,19 +844,19 @@ } ], "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0" + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/networks": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/transactions": "^5.8.0", + "@ethersproject/web": "^5.8.0" } }, "node_modules/@ethersproject/abstract-signer": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz", - "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.8.0.tgz", + "integrity": "sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA==", "funding": [ { "type": "individual", @@ -701,17 +868,17 @@ } ], "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0" + "@ethersproject/abstract-provider": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0" } }, "node_modules/@ethersproject/address": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz", - "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.8.0.tgz", + "integrity": "sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA==", "funding": [ { "type": "individual", @@ -723,17 +890,17 @@ } ], "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/rlp": "^5.7.0" + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/rlp": "^5.8.0" } }, "node_modules/@ethersproject/base64": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz", - "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.8.0.tgz", + "integrity": "sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ==", "funding": [ { "type": "individual", @@ -745,13 +912,13 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0" + "@ethersproject/bytes": "^5.8.0" } }, "node_modules/@ethersproject/basex": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz", - "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.8.0.tgz", + "integrity": "sha512-PIgTszMlDRmNwW9nhS6iqtVfdTAKosA7llYXNmGPw4YAI1PUyMv28988wAb41/gHF/WqGdoLv0erHaRcHRKW2Q==", "dev": true, "funding": [ { @@ -764,14 +931,14 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/properties": "^5.7.0" + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/properties": "^5.8.0" } }, "node_modules/@ethersproject/bignumber": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", - "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.8.0.tgz", + "integrity": "sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==", "funding": [ { "type": "individual", @@ -783,15 +950,15 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", "bn.js": "^5.2.1" } }, "node_modules/@ethersproject/bytes": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", - "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.8.0.tgz", + "integrity": "sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==", "funding": [ { "type": "individual", @@ -803,13 +970,13 @@ } ], "dependencies": { - "@ethersproject/logger": "^5.7.0" + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/constants": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz", - "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.8.0.tgz", + "integrity": "sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==", "funding": [ { "type": "individual", @@ -821,13 +988,13 @@ } ], "dependencies": { - "@ethersproject/bignumber": "^5.7.0" + "@ethersproject/bignumber": "^5.8.0" } }, "node_modules/@ethersproject/contracts": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz", - "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.8.0.tgz", + "integrity": "sha512-0eFjGz9GtuAi6MZwhb4uvUM216F38xiuR0yYCjKJpNfSEy4HUM8hvqqBj9Jmm0IUz8l0xKEhWwLIhPgxNY0yvQ==", "dev": true, "funding": [ { @@ -840,22 +1007,22 @@ } ], "dependencies": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0" + "@ethersproject/abi": "^5.8.0", + "@ethersproject/abstract-provider": "^5.8.0", + "@ethersproject/abstract-signer": "^5.8.0", + "@ethersproject/address": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/constants": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/transactions": "^5.8.0" } }, "node_modules/@ethersproject/hash": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz", - "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.8.0.tgz", + "integrity": "sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA==", "funding": [ { "type": "individual", @@ -867,21 +1034,21 @@ } ], "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" + "@ethersproject/abstract-signer": "^5.8.0", + "@ethersproject/address": "^5.8.0", + "@ethersproject/base64": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/strings": "^5.8.0" } }, "node_modules/@ethersproject/hdnode": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz", - "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.8.0.tgz", + "integrity": "sha512-4bK1VF6E83/3/Im0ERnnUeWOY3P1BZml4ZD3wcH8Ys0/d1h1xaFt6Zc+Dh9zXf9TapGro0T4wvO71UTCp3/uoA==", "dev": true, "funding": [ { @@ -894,24 +1061,24 @@ } ], "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" + "@ethersproject/abstract-signer": "^5.8.0", + "@ethersproject/basex": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/pbkdf2": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/sha2": "^5.8.0", + "@ethersproject/signing-key": "^5.8.0", + "@ethersproject/strings": "^5.8.0", + "@ethersproject/transactions": "^5.8.0", + "@ethersproject/wordlists": "^5.8.0" } }, "node_modules/@ethersproject/json-wallets": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz", - "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.8.0.tgz", + "integrity": "sha512-HxblNck8FVUtNxS3VTEYJAcwiKYsBIF77W15HufqlBF9gGfhmYOJtYZp8fSDZtn9y5EaXTE87zDwzxRoTFk11w==", "dev": true, "funding": [ { @@ -924,25 +1091,31 @@ } ], "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", + "@ethersproject/abstract-signer": "^5.8.0", + "@ethersproject/address": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/hdnode": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/pbkdf2": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/random": "^5.8.0", + "@ethersproject/strings": "^5.8.0", + "@ethersproject/transactions": "^5.8.0", "aes-js": "3.0.0", "scrypt-js": "3.0.1" } }, + "node_modules/@ethersproject/json-wallets/node_modules/aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", + "dev": true + }, "node_modules/@ethersproject/keccak256": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz", - "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.8.0.tgz", + "integrity": "sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng==", "funding": [ { "type": "individual", @@ -954,14 +1127,14 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", + "@ethersproject/bytes": "^5.8.0", "js-sha3": "0.8.0" } }, "node_modules/@ethersproject/logger": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", - "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.8.0.tgz", + "integrity": "sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==", "funding": [ { "type": "individual", @@ -974,9 +1147,9 @@ ] }, "node_modules/@ethersproject/networks": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz", - "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.8.0.tgz", + "integrity": "sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg==", "funding": [ { "type": "individual", @@ -988,13 +1161,13 @@ } ], "dependencies": { - "@ethersproject/logger": "^5.7.0" + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/pbkdf2": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz", - "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.8.0.tgz", + "integrity": "sha512-wuHiv97BrzCmfEaPbUFpMjlVg/IDkZThp9Ri88BpjRleg4iePJaj2SW8AIyE8cXn5V1tuAaMj6lzvsGJkGWskg==", "dev": true, "funding": [ { @@ -1007,14 +1180,14 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/sha2": "^5.7.0" + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/sha2": "^5.8.0" } }, "node_modules/@ethersproject/properties": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz", - "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.8.0.tgz", + "integrity": "sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw==", "funding": [ { "type": "individual", @@ -1026,13 +1199,13 @@ } ], "dependencies": { - "@ethersproject/logger": "^5.7.0" + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/providers": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz", - "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.8.0.tgz", + "integrity": "sha512-3Il3oTzEx3o6kzcg9ZzbE+oCZYyY+3Zh83sKkn4s1DZfTUjIegHnN2Cm0kbn9YFy45FDVcuCLLONhU7ny0SsCw==", "dev": true, "funding": [ { @@ -1045,32 +1218,32 @@ } ], "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0", + "@ethersproject/abstract-provider": "^5.8.0", + "@ethersproject/abstract-signer": "^5.8.0", + "@ethersproject/address": "^5.8.0", + "@ethersproject/base64": "^5.8.0", + "@ethersproject/basex": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/constants": "^5.8.0", + "@ethersproject/hash": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/networks": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/random": "^5.8.0", + "@ethersproject/rlp": "^5.8.0", + "@ethersproject/sha2": "^5.8.0", + "@ethersproject/strings": "^5.8.0", + "@ethersproject/transactions": "^5.8.0", + "@ethersproject/web": "^5.8.0", "bech32": "1.1.4", - "ws": "7.4.6" + "ws": "8.18.0" } }, "node_modules/@ethersproject/random": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz", - "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.8.0.tgz", + "integrity": "sha512-E4I5TDl7SVqyg4/kkA/qTfuLWAQGXmSOgYyO01So8hLfwgKvYK5snIlzxJMk72IFdG/7oh8yuSqY2KX7MMwg+A==", "dev": true, "funding": [ { @@ -1083,14 +1256,14 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/rlp": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz", - "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.8.0.tgz", + "integrity": "sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q==", "funding": [ { "type": "individual", @@ -1102,14 +1275,14 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/sha2": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz", - "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.8.0.tgz", + "integrity": "sha512-dDOUrXr9wF/YFltgTBYS0tKslPEKr6AekjqDW2dbn1L1xmjGR+9GiKu4ajxovnrDbwxAKdHjW8jNcwfz8PAz4A==", "dev": true, "funding": [ { @@ -1122,15 +1295,15 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", "hash.js": "1.1.7" } }, "node_modules/@ethersproject/signing-key": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz", - "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.8.0.tgz", + "integrity": "sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w==", "funding": [ { "type": "individual", @@ -1142,18 +1315,18 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", "bn.js": "^5.2.1", - "elliptic": "6.5.4", + "elliptic": "6.6.1", "hash.js": "1.1.7" } }, "node_modules/@ethersproject/solidity": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz", - "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.8.0.tgz", + "integrity": "sha512-4CxFeCgmIWamOHwYN9d+QWGxye9qQLilpgTU0XhYs1OahkclF+ewO+3V1U0mvpiuQxm5EHHmv8f7ClVII8EHsA==", "dev": true, "funding": [ { @@ -1166,18 +1339,18 @@ } ], "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0" + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/sha2": "^5.8.0", + "@ethersproject/strings": "^5.8.0" } }, "node_modules/@ethersproject/strings": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", - "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.8.0.tgz", + "integrity": "sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg==", "funding": [ { "type": "individual", @@ -1189,15 +1362,15 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/constants": "^5.8.0", + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/transactions": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz", - "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.8.0.tgz", + "integrity": "sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg==", "funding": [ { "type": "individual", @@ -1209,21 +1382,21 @@ } ], "dependencies": { - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0" + "@ethersproject/address": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/constants": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/rlp": "^5.8.0", + "@ethersproject/signing-key": "^5.8.0" } }, "node_modules/@ethersproject/units": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz", - "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.8.0.tgz", + "integrity": "sha512-lxq0CAnc5kMGIiWW4Mr041VT8IhNM+Pn5T3haO74XZWFulk7wH1Gv64HqE96hT4a7iiNMdOCFEBgaxWuk8ETKQ==", "dev": true, "funding": [ { @@ -1236,15 +1409,15 @@ } ], "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/constants": "^5.8.0", + "@ethersproject/logger": "^5.8.0" } }, "node_modules/@ethersproject/wallet": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz", - "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.8.0.tgz", + "integrity": "sha512-G+jnzmgg6UxurVKRKvw27h0kvG75YKXZKdlLYmAHeF32TGUzHkOFd7Zn6QHOTYRFWnfjtSSFjBowKo7vfrXzPA==", "dev": true, "funding": [ { @@ -1257,27 +1430,27 @@ } ], "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/json-wallets": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" + "@ethersproject/abstract-provider": "^5.8.0", + "@ethersproject/abstract-signer": "^5.8.0", + "@ethersproject/address": "^5.8.0", + "@ethersproject/bignumber": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/hash": "^5.8.0", + "@ethersproject/hdnode": "^5.8.0", + "@ethersproject/json-wallets": "^5.8.0", + "@ethersproject/keccak256": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/random": "^5.8.0", + "@ethersproject/signing-key": "^5.8.0", + "@ethersproject/transactions": "^5.8.0", + "@ethersproject/wordlists": "^5.8.0" } }, "node_modules/@ethersproject/web": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz", - "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.8.0.tgz", + "integrity": "sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw==", "funding": [ { "type": "individual", @@ -1289,17 +1462,17 @@ } ], "dependencies": { - "@ethersproject/base64": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" + "@ethersproject/base64": "^5.8.0", + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/strings": "^5.8.0" } }, "node_modules/@ethersproject/wordlists": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz", - "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.8.0.tgz", + "integrity": "sha512-2df9bbXicZws2Sb5S6ET493uJ0Z84Fjr3pC4tu/qlnZERibZCeUVuqdtt+7Tv9xxhUxHoIekIA7avrKUWHrezg==", "dev": true, "funding": [ { @@ -1312,11 +1485,11 @@ } ], "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" + "@ethersproject/bytes": "^5.8.0", + "@ethersproject/hash": "^5.8.0", + "@ethersproject/logger": "^5.8.0", + "@ethersproject/properties": "^5.8.0", + "@ethersproject/strings": "^5.8.0" } }, "node_modules/@graphql-tools/batch-execute": { @@ -1336,14 +1509,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/batch-execute/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true, - "peer": true - }, "node_modules/@graphql-tools/delegate": { "version": "8.8.1", "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.8.1.tgz", @@ -1386,14 +1551,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/merge/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true, - "peer": true - }, "node_modules/@graphql-tools/mock": { "version": "8.7.20", "resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.20.tgz", @@ -1458,14 +1615,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/mock/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true, - "peer": true - }, "node_modules/@graphql-tools/mock/node_modules/value-or-promise": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz", @@ -1494,14 +1643,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/schema/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true, - "peer": true - }, "node_modules/@graphql-tools/utils": { "version": "8.9.0", "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz", @@ -1516,14 +1657,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/utils/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true, - "peer": true - }, "node_modules/@graphql-typed-document-node/core": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", @@ -1535,9 +1668,53 @@ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@josephg/resolvable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz", + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@josephg/resolvable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz", "integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==", "dev": true, "optional": true, @@ -1568,52 +1745,6 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, - "node_modules/@metamask/eth-sig-util": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz", - "integrity": "sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==", - "dev": true, - "dependencies": { - "ethereumjs-abi": "^0.6.8", - "ethereumjs-util": "^6.2.1", - "ethjs-util": "^0.1.6", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@metamask/eth-sig-util/node_modules/@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@metamask/eth-sig-util/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/@metamask/eth-sig-util/node_modules/ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", - "dev": true, - "dependencies": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" - } - }, "node_modules/@morgan-stanley/ts-mocking-bird": { "version": "0.6.4", "resolved": "https://registry.npmjs.org/@morgan-stanley/ts-mocking-bird/-/ts-mocking-bird-0.6.4.tgz", @@ -1646,21 +1777,34 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/@noble/ciphers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.2.1.tgz", + "integrity": "sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==", + "dev": true, + "peer": true, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/@noble/curves": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.3.0.tgz", - "integrity": "sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", + "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==", "dependencies": { - "@noble/hashes": "1.3.3" + "@noble/hashes": "1.4.0" }, "funding": { "url": "https://paulmillr.com/funding/" } }, "node_modules/@noble/curves/node_modules/@noble/hashes": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz", - "integrity": "sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", "engines": { "node": ">= 16" }, @@ -1669,326 +1813,380 @@ } }, "node_modules/@noble/hashes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.2.0.tgz", - "integrity": "sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] - }, - "node_modules/@noble/secp256k1": { "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz", - "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.1.tgz", + "integrity": "sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] + "peer": true, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@nomicfoundation/edr": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.12.0-next.22.tgz", + "integrity": "sha512-JigYWf2stjpDxSndBsxRoobQHK8kz4SAVaHtTIKQLIHbsBwymE8i120Ejne6Jk+Ndc5CsNINXB8/bK6vLPe9jA==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@nomicfoundation/edr-darwin-arm64": "0.12.0-next.22", + "@nomicfoundation/edr-darwin-x64": "0.12.0-next.22", + "@nomicfoundation/edr-linux-arm64-gnu": "0.12.0-next.22", + "@nomicfoundation/edr-linux-arm64-musl": "0.12.0-next.22", + "@nomicfoundation/edr-linux-x64-gnu": "0.12.0-next.22", + "@nomicfoundation/edr-linux-x64-musl": "0.12.0-next.22", + "@nomicfoundation/edr-win32-x64-msvc": "0.12.0-next.22" }, "engines": { - "node": ">= 8" + "node": ">= 20" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/@nomicfoundation/edr-darwin-arm64": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.12.0-next.22.tgz", + "integrity": "sha512-TpEBSKyMZJEPvYwBPYclC2b+qobKjn1YhVa7aJ1R7RMPy5dJ/PqsrUK5UuUFFybBqoIorru5NTcsyCMWP5T/Fg==", "dev": true, "engines": { - "node": ">= 8" + "node": ">= 20" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@nomicfoundation/edr-darwin-x64": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.12.0-next.22.tgz", + "integrity": "sha512-aK/+m8xUkR4u+czTVGU06nSFVH43AY6XCBoR2YjO8SglAAjCSTWK3WAfVb6FcsriMmKv4PrvoyHLMbMP+fXcGA==", "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, "engines": { - "node": ">= 8" + "node": ">= 20" } }, - "node_modules/@nomicfoundation/ethereumjs-block": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz", - "integrity": "sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw==", + "node_modules/@nomicfoundation/edr-linux-arm64-gnu": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.12.0-next.22.tgz", + "integrity": "sha512-W5vXMleG14hVzRYGPEwlHLJ6iiQE8Qh63Uj538nAz4YUI6wWSgUOZE7K2Gt1EdujZGnrt7kfDslgJ96n4nKQZw==", "dev": true, - "dependencies": { - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "ethereum-cryptography": "0.1.3", - "ethers": "^5.7.1" - }, "engines": { - "node": ">=14" + "node": ">= 20" } }, - "node_modules/@nomicfoundation/ethereumjs-blockchain": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz", - "integrity": "sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A==", + "node_modules/@nomicfoundation/edr-linux-arm64-musl": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.12.0-next.22.tgz", + "integrity": "sha512-VDp7EB3iY8MH/fFVcgEzLDGYmtS6j2honNc0RNUCFECKPrdsngGrTG8p+YFxyVjq2m5GEsdyKo4e+BKhaUNPdg==", "dev": true, - "dependencies": { - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-ethash": "3.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "abstract-level": "^1.0.3", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "level": "^8.0.0", - "lru-cache": "^5.1.1", - "memory-level": "^1.0.0" - }, "engines": { - "node": ">=14" + "node": ">= 20" } }, - "node_modules/@nomicfoundation/ethereumjs-common": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz", - "integrity": "sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g==", + "node_modules/@nomicfoundation/edr-linux-x64-gnu": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.12.0-next.22.tgz", + "integrity": "sha512-XL6oA3ymRSQYyvg6hF1KIax6V/9vlWr5gJ8GPHVVODk1a/YfuEEY1osN5Zmo6aztUkSGKwSuac/3Ax7rfDDiSg==", + "dev": true, + "engines": { + "node": ">= 20" + } + }, + "node_modules/@nomicfoundation/edr-linux-x64-musl": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.12.0-next.22.tgz", + "integrity": "sha512-hmkRIXxWa9P0PwfXOAO6WUw11GyV5gpxcMunqWBTkwZ4QW/hi/CkXmlLo6VHd6ceCwpUNLhCGndBtrOPrNRi4A==", + "dev": true, + "engines": { + "node": ">= 20" + } + }, + "node_modules/@nomicfoundation/edr-win32-x64-msvc": { + "version": "0.12.0-next.22", + "resolved": "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.12.0-next.22.tgz", + "integrity": "sha512-X7f+7KUMm00trsXAHCHJa+x1fc3QAbk2sBctyOgpET+GLrfCXbxqrccKi7op8f0zTweAVGg1Hsc8SjjC7kwFLw==", + "dev": true, + "engines": { + "node": ">= 20" + } + }, + "node_modules/@nomicfoundation/hardhat-errors": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-errors/-/hardhat-errors-3.0.6.tgz", + "integrity": "sha512-3x+OVdZv7Rgy3z6os9pB6kiHLxs6q0PCXHRu+WLZflr44PG9zW+7V9o+ehrUqmmivlHcIFr3Qh4M2wZVuoCYww==", "dev": true, "dependencies": { - "@nomicfoundation/ethereumjs-util": "9.0.1", - "crc-32": "^1.2.0" + "@nomicfoundation/hardhat-utils": "^3.0.1" } }, - "node_modules/@nomicfoundation/ethereumjs-ethash": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz", - "integrity": "sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w==", + "node_modules/@nomicfoundation/hardhat-ethers": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers/-/hardhat-ethers-4.0.4.tgz", + "integrity": "sha512-UTw3iM7AMZ1kZlzgJbtAEfWWDYjcnT0EZkRUZd1wIVtMOXIE4nc6Ya4veodAt/KpBhG+6W06g50W+Z/0wTm62g==", "dev": true, "dependencies": { - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "abstract-level": "^1.0.3", - "bigint-crypto-utils": "^3.0.23", - "ethereum-cryptography": "0.1.3" + "@nomicfoundation/hardhat-errors": "^3.0.2", + "@nomicfoundation/hardhat-utils": "^3.0.5", + "debug": "^4.3.2", + "ethereum-cryptography": "^2.2.1", + "ethers": "^6.14.0" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "hardhat": "^3.0.7" } }, - "node_modules/@nomicfoundation/ethereumjs-evm": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz", - "integrity": "sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ==", + "node_modules/@nomicfoundation/hardhat-ethers-chai-matchers": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers-chai-matchers/-/hardhat-ethers-chai-matchers-3.0.2.tgz", + "integrity": "sha512-nkg+z+fq5PXcRxS/zadyosAA+oPp3sdWrKpuOcASDf0RjqsN2LsNymML0VNNkZF8TF+hYa36fbV+QOas2Fm2BQ==", "dev": true, "dependencies": { - "@ethersproject/providers": "^5.7.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "mcl-wasm": "^0.7.1", - "rustbn.js": "~0.2.0" + "@nomicfoundation/hardhat-errors": "^3.0.5", + "@nomicfoundation/hardhat-utils": "^3.0.5", + "@types/chai-as-promised": "^8.0.1", + "chai-as-promised": "^8.0.0", + "deep-eql": "^5.0.1" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "@nomicfoundation/hardhat-ethers": "^4.0.0", + "chai": "^5.1.2", + "ethers": "^6.14.0", + "hardhat": "^3.0.0" } }, - "node_modules/@nomicfoundation/ethereumjs-rlp": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz", - "integrity": "sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ==", + "node_modules/@nomicfoundation/hardhat-ignition": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition/-/hardhat-ignition-3.0.7.tgz", + "integrity": "sha512-yzVXNHoEanOGRFMkpgvGaWw4Kev5ragxFFyrKITKtiJMdChdGNAPlbsk8QJzn4028aSAnjRfqKTOAeeBlsqFig==", "dev": true, - "bin": { - "rlp": "bin/rlp" + "peer": true, + "dependencies": { + "@nomicfoundation/hardhat-errors": "^3.0.2", + "@nomicfoundation/hardhat-utils": "^3.0.6", + "@nomicfoundation/ignition-core": "^3.0.7", + "@nomicfoundation/ignition-ui": "^3.0.7", + "chalk": "^5.3.0", + "debug": "^4.3.2", + "json5": "^2.2.3", + "prompts": "^2.4.2" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "@nomicfoundation/hardhat-verify": "^3.0.0", + "hardhat": "^3.1.5" } }, - "node_modules/@nomicfoundation/ethereumjs-statemanager": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz", - "integrity": "sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ==", + "node_modules/@nomicfoundation/hardhat-ignition-ethers": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition-ethers/-/hardhat-ignition-ethers-3.0.7.tgz", + "integrity": "sha512-WNVm1vKSl+CU8MvLDR/iERe+ZABy6h+MflJqrPw6TgKgrCJPlDzfZo++FC1dPKdPRJKFWC+/bw8uQCfET8LJQQ==", "dev": true, + "peer": true, "dependencies": { - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "ethers": "^5.7.1", - "js-sdsl": "^4.1.4" + "@nomicfoundation/hardhat-errors": "^3.0.2" + }, + "peerDependencies": { + "@nomicfoundation/hardhat-ethers": "^4.0.0", + "@nomicfoundation/hardhat-ignition": "^3.0.7", + "@nomicfoundation/hardhat-verify": "^3.0.0", + "@nomicfoundation/ignition-core": "^3.0.7", + "ethers": "^6.14.0", + "hardhat": "^3.1.5" } }, - "node_modules/@nomicfoundation/ethereumjs-trie": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz", - "integrity": "sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA==", + "node_modules/@nomicfoundation/hardhat-keystore": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-keystore/-/hardhat-keystore-3.0.3.tgz", + "integrity": "sha512-rkwfdy/GsX/2SV49RGBvMsCuR+SYGJQGD3wcrS5m2Cyap5eQFEgKZbqpua6YQRA2raxRmVVH6antIIftgBFXAQ==", "dev": true, + "peer": true, "dependencies": { - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "@types/readable-stream": "^2.3.13", - "ethereum-cryptography": "0.1.3", - "readable-stream": "^3.6.0" + "@noble/ciphers": "1.2.1", + "@noble/hashes": "1.7.1", + "@nomicfoundation/hardhat-errors": "^3.0.0", + "@nomicfoundation/hardhat-utils": "^3.0.5", + "@nomicfoundation/hardhat-zod-utils": "^3.0.0", + "chalk": "^5.3.0", + "debug": "^4.3.2", + "zod": "^3.23.8" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "hardhat": "^3.0.0" } }, - "node_modules/@nomicfoundation/ethereumjs-tx": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz", - "integrity": "sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w==", + "node_modules/@nomicfoundation/hardhat-mocha": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-mocha/-/hardhat-mocha-3.0.9.tgz", + "integrity": "sha512-9hsl1TcRMudN/gUPsRjx0iGLEkl8IU9BBQ5wT5bf8N4RTSHbVwqVL+mADzpt+Dmd5nkdItynhrAJnXjwTvy5DQ==", "dev": true, "dependencies": { - "@chainsafe/ssz": "^0.9.2", - "@ethersproject/providers": "^5.7.2", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "ethereum-cryptography": "0.1.3" + "@nomicfoundation/hardhat-errors": "^3.0.3", + "@nomicfoundation/hardhat-utils": "^3.0.5", + "@nomicfoundation/hardhat-zod-utils": "^3.0.0", + "chalk": "^5.3.0", + "tsx": "^4.19.3", + "zod": "^3.23.8" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "hardhat": "^3.0.12", + "mocha": "^11.0.0" } }, - "node_modules/@nomicfoundation/ethereumjs-util": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz", - "integrity": "sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA==", + "node_modules/@nomicfoundation/hardhat-network-helpers": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-3.0.3.tgz", + "integrity": "sha512-FqXD8CPFNdluEhELqNV/Q0grOQtlwRWr28LW+/NTas3rrDAXpNOIPCCq3RIXJIqsdbNPQsG2FpnfKj9myqIsKQ==", "dev": true, "dependencies": { - "@chainsafe/ssz": "^0.10.0", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "ethereum-cryptography": "0.1.3" + "@nomicfoundation/hardhat-errors": "^3.0.5", + "@nomicfoundation/hardhat-utils": "^3.0.5" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "hardhat": "^3.0.0" } }, - "node_modules/@nomicfoundation/ethereumjs-util/node_modules/@chainsafe/persistent-merkle-tree": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.5.0.tgz", - "integrity": "sha512-l0V1b5clxA3iwQLXP40zYjyZYospQLZXzBVIhhr9kDg/1qHZfzzHw0jj4VPBijfYCArZDlPkRi1wZaV2POKeuw==", + "node_modules/@nomicfoundation/hardhat-toolbox-mocha-ethers": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox-mocha-ethers/-/hardhat-toolbox-mocha-ethers-3.0.2.tgz", + "integrity": "sha512-45EZqxWtQxlvwDZilxOI+tSNFn/J+1ITtyqpUQgNhXhYA9+LUdbUx+PmiCWPrtEXzBVANYka6mhNvBr2ZwNBUg==", + "dev": true, + "peerDependencies": { + "@nomicfoundation/hardhat-ethers": "^4.0.0", + "@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.0", + "@nomicfoundation/hardhat-ignition": "^3.0.0", + "@nomicfoundation/hardhat-ignition-ethers": "^3.0.0", + "@nomicfoundation/hardhat-keystore": "^3.0.0", + "@nomicfoundation/hardhat-mocha": "^3.0.0", + "@nomicfoundation/hardhat-network-helpers": "^3.0.0", + "@nomicfoundation/hardhat-typechain": "^3.0.0", + "@nomicfoundation/hardhat-verify": "^3.0.0", + "@nomicfoundation/ignition-core": "^3.0.0", + "chai": "^5.1.2", + "ethers": "^6.14.0", + "hardhat": "^3.0.0", + "mocha": "^11.0.0" + } + }, + "node_modules/@nomicfoundation/hardhat-typechain": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-typechain/-/hardhat-typechain-3.0.1.tgz", + "integrity": "sha512-TkeMQhf+/4gZLMIWLxzzyVruNuLz5xW5BZdu4Clic3HFqBJRG+U2fQGWxAknMMLGONhxiZaUipE0Z+JkOugrmg==", "dev": true, "dependencies": { - "@chainsafe/as-sha256": "^0.3.1" + "@nomicfoundation/hardhat-errors": "^3.0.0", + "@nomicfoundation/hardhat-utils": "^3.0.5", + "@nomicfoundation/hardhat-zod-utils": "^3.0.0", + "@typechain/ethers-v6": "^0.5.0", + "debug": "^4.3.2", + "typechain": "^8.3.1", + "zod": "^3.23.8" + }, + "peerDependencies": { + "@nomicfoundation/hardhat-ethers": "^4.0.0", + "ethers": "^6.14.0", + "hardhat": "^3.0.0" } }, - "node_modules/@nomicfoundation/ethereumjs-util/node_modules/@chainsafe/ssz": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.10.2.tgz", - "integrity": "sha512-/NL3Lh8K+0q7A3LsiFq09YXS9fPE+ead2rr7vM2QK8PLzrNsw3uqrif9bpRX5UxgeRjM+vYi+boCM3+GM4ovXg==", + "node_modules/@nomicfoundation/hardhat-utils": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-utils/-/hardhat-utils-3.0.6.tgz", + "integrity": "sha512-AD/LPNdjXNFRrZcaAAewgJpdnHpPppZxo5p+x6wGMm5Hz4B3+oLf/LUzVn8qb4DDy9RE2c24l2F8vmL/w6ZuXg==", "dev": true, "dependencies": { - "@chainsafe/as-sha256": "^0.3.1", - "@chainsafe/persistent-merkle-tree": "^0.5.0" + "@streamparser/json-node": "^0.0.22", + "debug": "^4.3.2", + "env-paths": "^2.2.0", + "ethereum-cryptography": "^2.2.1", + "fast-equals": "^5.4.0", + "json-stream-stringify": "^3.1.6", + "rfdc": "^1.3.1", + "undici": "^6.16.1" } }, - "node_modules/@nomicfoundation/ethereumjs-vm": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.1.tgz", - "integrity": "sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ==", + "node_modules/@nomicfoundation/hardhat-vendored": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-vendored/-/hardhat-vendored-3.0.1.tgz", + "integrity": "sha512-jBOAqmEAMJ8zdfiQmTLV+c0IaSyySqkDSJ9spTy8Ts/m/mO8w364TClyfn+p4ZpxBjyX4LMa3NfC402hoDtwCg==", + "dev": true + }, + "node_modules/@nomicfoundation/hardhat-verify": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-3.0.9.tgz", + "integrity": "sha512-iBvfTHQO37UEJ4ogmWWhKo8zAPRo1I2tHjcFhypjq4gwSz7wH3L8vZ1t7/8QJDqmEdI4je1KKdxkvGWXCQW3Xw==", "dev": true, "dependencies": { - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-blockchain": "7.0.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-evm": "2.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-statemanager": "2.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "mcl-wasm": "^0.7.1", - "rustbn.js": "~0.2.0" + "@ethersproject/abi": "^5.8.0", + "@nomicfoundation/hardhat-errors": "^3.0.3", + "@nomicfoundation/hardhat-utils": "^3.0.5", + "@nomicfoundation/hardhat-zod-utils": "^3.0.0", + "cbor2": "^1.9.0", + "chalk": "^5.3.0", + "debug": "^4.3.2", + "semver": "^7.6.3", + "zod": "^3.23.8" }, - "engines": { - "node": ">=14" + "peerDependencies": { + "hardhat": "^3.1.6" } }, - "node_modules/@nomicfoundation/hardhat-chai-matchers": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-1.0.6.tgz", - "integrity": "sha512-f5ZMNmabZeZegEfuxn/0kW+mm7+yV7VNDxLpMOMGXWFJ2l/Ct3QShujzDRF9cOkK9Ui/hbDeOWGZqyQALDXVCQ==", + "node_modules/@nomicfoundation/hardhat-zod-utils": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-zod-utils/-/hardhat-zod-utils-3.0.1.tgz", + "integrity": "sha512-I6/pyYiS9p2lLkzQuedr1ScMocH+ew8l233xTi+LP92gjEiviJDxselpkzgU01MUM0t6BPpfP8yMO958LDEJVg==", "dev": true, "dependencies": { - "@ethersproject/abi": "^5.1.2", - "@types/chai-as-promised": "^7.1.3", - "chai-as-promised": "^7.1.1", - "deep-eql": "^4.0.1", - "ordinal": "^1.0.3" + "@nomicfoundation/hardhat-errors": "^3.0.0", + "@nomicfoundation/hardhat-utils": "^3.0.2" }, "peerDependencies": { - "@nomiclabs/hardhat-ethers": "^2.0.0", - "chai": "^4.2.0", - "ethers": "^5.0.0", - "hardhat": "^2.9.4" + "zod": "^3.23.8" } }, - "node_modules/@nomicfoundation/hardhat-network-helpers": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-1.0.8.tgz", - "integrity": "sha512-MNqQbzUJZnCMIYvlniC3U+kcavz/PhhQSsY90tbEtUyMj/IQqsLwIRZa4ctjABh3Bz0KCh9OXUZ7Yk/d9hr45Q==", + "node_modules/@nomicfoundation/ignition-core": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-core/-/ignition-core-3.0.7.tgz", + "integrity": "sha512-zlwXshSZIQQ4LfZBnirETQ/eNfEcxk9sRkPCYoeaGBEC8QPtt7KBj+rP7YYWM+IPVQNU4OjIVfQs004unpXB4w==", "dev": true, + "peer": true, "dependencies": { - "ethereumjs-util": "^7.1.4" - }, - "peerDependencies": { - "hardhat": "^2.9.5" + "@ethersproject/address": "5.6.1", + "@nomicfoundation/hardhat-errors": "^3.0.2", + "@nomicfoundation/hardhat-utils": "^3.0.6", + "@nomicfoundation/solidity-analyzer": "^0.1.1", + "cbor2": "^1.9.0", + "debug": "^4.3.2", + "ethers": "^6.14.0", + "immer": "10.0.2", + "lodash-es": "4.17.21", + "ndjson": "2.0.0" } }, - "node_modules/@nomicfoundation/hardhat-toolbox": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox/-/hardhat-toolbox-2.0.2.tgz", - "integrity": "sha512-vnN1AzxbvpSx9pfdRHbUzTRIXpMLPXnUlkW855VaDk6N1pwRaQ2gNzEmFAABk4lWf11E00PKwFd/q27HuwYrYg==", + "node_modules/@nomicfoundation/ignition-core/node_modules/@ethersproject/address": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.6.1.tgz", + "integrity": "sha512-uOgF0kS5MJv9ZvCz7x6T2EXJSzotiybApn4XlOgoTX0xdtyVIJ7pF+6cGPxiEq/dpBiTfMiw7Yc81JcwhSYA0Q==", "dev": true, - "peerDependencies": { - "@ethersproject/abi": "^5.4.7", - "@ethersproject/providers": "^5.4.7", - "@nomicfoundation/hardhat-chai-matchers": "^1.0.0", - "@nomicfoundation/hardhat-network-helpers": "^1.0.0", - "@nomiclabs/hardhat-ethers": "^2.0.0", - "@nomiclabs/hardhat-etherscan": "^3.0.0", - "@typechain/ethers-v5": "^10.1.0", - "@typechain/hardhat": "^6.1.2", - "@types/chai": "^4.2.0", - "@types/mocha": ">=9.1.0", - "@types/node": ">=12.0.0", - "chai": "^4.2.0", - "ethers": "^5.4.7", - "hardhat": "^2.11.0", - "hardhat-gas-reporter": "^1.0.8", - "solidity-coverage": "^0.8.1", - "ts-node": ">=8.0.0", - "typechain": "^8.1.0", - "typescript": ">=4.5.0" + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "peer": true, + "dependencies": { + "@ethersproject/bignumber": "^5.6.2", + "@ethersproject/bytes": "^5.6.1", + "@ethersproject/keccak256": "^5.6.1", + "@ethersproject/logger": "^5.6.0", + "@ethersproject/rlp": "^5.6.1" } }, + "node_modules/@nomicfoundation/ignition-ui": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-ui/-/ignition-ui-3.0.7.tgz", + "integrity": "sha512-K7bL7V1cEh7nccAiWD1L15QdtNiPoM37IJdvBhgxV4sa25//r9yIxHf/DHI52qxQXqQuXKWdiBZBcbldtStM1Q==", + "dev": true, + "peer": true + }, "node_modules/@nomicfoundation/solidity-analyzer": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.1.tgz", @@ -2170,90 +2368,37 @@ "node": ">= 10" } }, - "node_modules/@nomiclabs/hardhat-ethers": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@nomiclabs/hardhat-ethers/-/hardhat-ethers-2.2.3.tgz", - "integrity": "sha512-YhzPdzb612X591FOe68q+qXVXGG2ANZRvDo0RRUtimev85rCrAlv/TLMEZw5c+kq9AbzocLTVX/h2jVIFPL9Xg==", - "dev": true, - "peerDependencies": { - "ethers": "^5.0.0", - "hardhat": "^2.0.0" - } - }, - "node_modules/@nomiclabs/hardhat-etherscan": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@nomiclabs/hardhat-etherscan/-/hardhat-etherscan-3.1.7.tgz", - "integrity": "sha512-tZ3TvSgpvsQ6B6OGmo1/Au6u8BrAkvs1mIC/eURA3xgIfznUZBhmpne8hv7BXUzw9xNL3fXdpOYgOQlVMTcoHQ==", - "deprecated": "The @nomiclabs/hardhat-etherscan package is deprecated, please use @nomicfoundation/hardhat-verify instead", - "dev": true, - "dependencies": { - "@ethersproject/abi": "^5.1.2", - "@ethersproject/address": "^5.0.2", - "cbor": "^8.1.0", - "chalk": "^2.4.2", - "debug": "^4.1.1", - "fs-extra": "^7.0.1", - "lodash": "^4.17.11", - "semver": "^6.3.0", - "table": "^6.8.0", - "undici": "^5.14.0" - }, - "peerDependencies": { - "hardhat": "^2.0.4" - } - }, "node_modules/@openzeppelin/contracts": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.5.tgz", - "integrity": "sha512-ZK+W5mVhRppff9BE6YdR8CC52C8zAvsVAiWhEtQ5+oNxFE6h1WdeWo+FJSF8KKvtxxVYZ7MTP/5KoVpAU3aSWg==" + "version": "4.9.6", + "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.6.tgz", + "integrity": "sha512-xSmezSupL+y9VkHZJGDoCBpmnB2ogM13ccaYDWqJTfS3dbuHkgjuwDFUmaFauBCboQMGB/S5UqUl2y54X99BmA==" }, "node_modules/@openzeppelin/contracts-upgradeable": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-4.9.5.tgz", - "integrity": "sha512-f7L1//4sLlflAN7fVzJLoRedrf5Na3Oal5PZfIq55NFcVZ90EpV1q5xOvL4lFvg3MNICSDr2hH0JUBxwlxcoPg==" - }, - "node_modules/@openzeppelin/defender-base-client": { - "version": "1.48.0", - "resolved": "https://registry.npmjs.org/@openzeppelin/defender-base-client/-/defender-base-client-1.48.0.tgz", - "integrity": "sha512-HFO87s010hRrMjyh2xYOCEAkLe21BfIbho7n5/kikA6A1ZgXi7MsEiqnQv1zP4bxMJgxGZ5b3t4tt6fWrakbag==", - "dev": true, - "dependencies": { - "amazon-cognito-identity-js": "^6.0.1", - "async-retry": "^1.3.3", - "axios": "^1.4.0", - "lodash": "^4.17.19", - "node-fetch": "^2.6.0" - } + "version": "4.9.6", + "resolved": "https://registry.npmjs.org/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-4.9.6.tgz", + "integrity": "sha512-m4iHazOsOCv1DgM7eD7GupTJ+NFVujRZt1wzddDPSVGpWdKq1SKkla5htKG7+IS4d2XOCtzkUNwRZ7Vq5aEUMA==" }, - "node_modules/@openzeppelin/hardhat-upgrades": { - "version": "1.28.0", - "resolved": "https://registry.npmjs.org/@openzeppelin/hardhat-upgrades/-/hardhat-upgrades-1.28.0.tgz", - "integrity": "sha512-7sb/Jf+X+uIufOBnmHR0FJVWuxEs2lpxjJnLNN6eCJCP8nD0v+Ot5lTOW2Qb/GFnh+fLvJtEkhkowz4ZQ57+zQ==", + "node_modules/@openzeppelin/truffle-upgrades": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@openzeppelin/truffle-upgrades/-/truffle-upgrades-1.21.0.tgz", + "integrity": "sha512-MKl0mSCLio4wNvKvSpXou0SEclbWfgLVJB1S2QXEP9bv55BB7+C+Iytc10Cx4JoKA+5Dup7c9C8g8H43yBD+lg==", + "deprecated": "@openzeppelin/truffle-upgrades is deprecated. Use Hardhat along with @openzeppelin/hardhat-upgrades", "dev": true, "dependencies": { - "@openzeppelin/defender-base-client": "^1.46.0", - "@openzeppelin/platform-deploy-client": "^0.8.0", - "@openzeppelin/upgrades-core": "^1.27.0", + "@openzeppelin/upgrades-core": "^1.30.0", + "@truffle/contract": "^4.3.26", "chalk": "^4.1.0", "debug": "^4.1.1", - "proper-lockfile": "^4.1.1" + "solidity-ast": "^0.4.26" }, "bin": { "migrate-oz-cli-project": "dist/scripts/migrate-oz-cli-project.js" }, "peerDependencies": { - "@nomiclabs/hardhat-ethers": "^2.0.0", - "@nomiclabs/hardhat-etherscan": "^3.1.0", - "ethers": "^5.0.5", - "hardhat": "^2.0.2" - }, - "peerDependenciesMeta": { - "@nomiclabs/harhdat-etherscan": { - "optional": true - } + "truffle": "^5.1.35" } }, - "node_modules/@openzeppelin/hardhat-upgrades/node_modules/ansi-styles": { + "node_modules/@openzeppelin/truffle-upgrades/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -2268,7 +2413,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@openzeppelin/hardhat-upgrades/node_modules/chalk": { + "node_modules/@openzeppelin/truffle-upgrades/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -2284,156 +2429,16 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@openzeppelin/hardhat-upgrades/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@openzeppelin/truffle-upgrades/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@openzeppelin/hardhat-upgrades/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@openzeppelin/hardhat-upgrades/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@openzeppelin/hardhat-upgrades/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@openzeppelin/platform-deploy-client": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@openzeppelin/platform-deploy-client/-/platform-deploy-client-0.8.0.tgz", - "integrity": "sha512-POx3AsnKwKSV/ZLOU/gheksj0Lq7Is1q2F3pKmcFjGZiibf+4kjGxr4eSMrT+2qgKYZQH1ZLQZ+SkbguD8fTvA==", - "deprecated": "@openzeppelin/platform-deploy-client is deprecated. Please use @openzeppelin/defender-sdk-deploy-client", - "dev": true, - "dependencies": { - "@ethersproject/abi": "^5.6.3", - "@openzeppelin/defender-base-client": "^1.46.0", - "axios": "^0.21.2", - "lodash": "^4.17.19", - "node-fetch": "^2.6.0" - } - }, - "node_modules/@openzeppelin/platform-deploy-client/node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/@openzeppelin/truffle-upgrades": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/@openzeppelin/truffle-upgrades/-/truffle-upgrades-1.21.0.tgz", - "integrity": "sha512-MKl0mSCLio4wNvKvSpXou0SEclbWfgLVJB1S2QXEP9bv55BB7+C+Iytc10Cx4JoKA+5Dup7c9C8g8H43yBD+lg==", - "deprecated": "@openzeppelin/truffle-upgrades is deprecated. Use Hardhat along with @openzeppelin/hardhat-upgrades", - "dev": true, - "dependencies": { - "@openzeppelin/upgrades-core": "^1.30.0", - "@truffle/contract": "^4.3.26", - "chalk": "^4.1.0", - "debug": "^4.1.1", - "solidity-ast": "^0.4.26" - }, - "bin": { - "migrate-oz-cli-project": "dist/scripts/migrate-oz-cli-project.js" - }, - "peerDependencies": { - "truffle": "^5.1.35" - } - }, - "node_modules/@openzeppelin/truffle-upgrades/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@openzeppelin/truffle-upgrades/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@openzeppelin/truffle-upgrades/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@openzeppelin/truffle-upgrades/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@openzeppelin/truffle-upgrades/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@openzeppelin/truffle-upgrades/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "node": ">=8" } }, "node_modules/@openzeppelin/upgrades-core": { @@ -2470,18 +2475,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@openzeppelin/upgrades-core/node_modules/cbor": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/cbor/-/cbor-9.0.1.tgz", - "integrity": "sha512-/TQOWyamDxvVIv+DY9cOLNuABkoyz8K/F3QE56539pGVYohx0+MEA1f4lChFTX79dBTBS7R1PF6ovH7G+VtBfQ==", - "dev": true, - "dependencies": { - "nofilter": "^3.1.0" - }, - "engines": { - "node": ">=16" - } - }, "node_modules/@openzeppelin/upgrades-core/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -2498,33 +2491,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@openzeppelin/upgrades-core/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@openzeppelin/upgrades-core/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@openzeppelin/upgrades-core/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@openzeppelin/upgrades-core/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -2537,6 +2503,16 @@ "node": ">=8" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@protobufjs/aspromise": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", @@ -2622,18 +2598,18 @@ "peer": true }, "node_modules/@redux-saga/core": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@redux-saga/core/-/core-1.3.0.tgz", - "integrity": "sha512-L+i+qIGuyWn7CIg7k1MteHGfttKPmxwZR5E7OsGikCL2LzYA0RERlaUY00Y3P3ZV2EYgrsYlBrGs6cJP5OKKqA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@redux-saga/core/-/core-1.4.2.tgz", + "integrity": "sha512-nIMLGKo6jV6Wc1sqtVQs1iqbB3Kq20udB/u9XEaZQisT6YZ0NRB8+4L6WqD/E+YziYutd27NJbG8EWUPkb7c6Q==", "dev": true, "peer": true, "dependencies": { - "@babel/runtime": "^7.6.3", - "@redux-saga/deferred": "^1.2.1", - "@redux-saga/delay-p": "^1.2.1", - "@redux-saga/is": "^1.1.3", - "@redux-saga/symbols": "^1.1.3", - "@redux-saga/types": "^1.2.1", + "@babel/runtime": "^7.28.4", + "@redux-saga/deferred": "^1.3.1", + "@redux-saga/delay-p": "^1.3.1", + "@redux-saga/is": "^1.2.1", + "@redux-saga/symbols": "^1.2.1", + "@redux-saga/types": "^1.3.1", "typescript-tuple": "^2.2.1" }, "funding": { @@ -2642,188 +2618,109 @@ } }, "node_modules/@redux-saga/deferred": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@redux-saga/deferred/-/deferred-1.2.1.tgz", - "integrity": "sha512-cmin3IuuzMdfQjA0lG4B+jX+9HdTgHZZ+6u3jRAOwGUxy77GSlTi4Qp2d6PM1PUoTmQUR5aijlA39scWWPF31g==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@redux-saga/deferred/-/deferred-1.3.1.tgz", + "integrity": "sha512-0YZ4DUivWojXBqLB/TmuRRpDDz7tyq1I0AuDV7qi01XlLhM5m51W7+xYtIckH5U2cMlv9eAuicsfRAi1XHpXIg==", "dev": true, "peer": true }, "node_modules/@redux-saga/delay-p": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@redux-saga/delay-p/-/delay-p-1.2.1.tgz", - "integrity": "sha512-MdiDxZdvb1m+Y0s4/hgdcAXntpUytr9g0hpcOO1XFVyyzkrDu3SKPgBFOtHn7lhu7n24ZKIAT1qtKyQjHqRd+w==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@redux-saga/delay-p/-/delay-p-1.3.1.tgz", + "integrity": "sha512-597I7L5MXbD/1i3EmcaOOjL/5suxJD7p5tnbV1PiWnE28c2cYiIHqmSMK2s7us2/UrhOL2KTNBiD0qBg6KnImg==", "dev": true, "peer": true, "dependencies": { - "@redux-saga/symbols": "^1.1.3" + "@redux-saga/symbols": "^1.2.1" } }, "node_modules/@redux-saga/is": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@redux-saga/is/-/is-1.1.3.tgz", - "integrity": "sha512-naXrkETG1jLRfVfhOx/ZdLj0EyAzHYbgJWkXbB3qFliPcHKiWbv/ULQryOAEKyjrhiclmr6AMdgsXFyx7/yE6Q==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@redux-saga/is/-/is-1.2.1.tgz", + "integrity": "sha512-x3aWtX3GmQfEvn8dh0ovPbsXgK9JjpiR24wKztpGbZP8JZUWWvUgKrvnWZ/T/4iphOBftyVc9VrIwhAnsM+OFA==", "dev": true, "peer": true, "dependencies": { - "@redux-saga/symbols": "^1.1.3", - "@redux-saga/types": "^1.2.1" + "@redux-saga/symbols": "^1.2.1", + "@redux-saga/types": "^1.3.1" } }, "node_modules/@redux-saga/symbols": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@redux-saga/symbols/-/symbols-1.1.3.tgz", - "integrity": "sha512-hCx6ZvU4QAEUojETnX8EVg4ubNLBFl1Lps4j2tX7o45x/2qg37m3c6v+kSp8xjDJY+2tJw4QB3j8o8dsl1FDXg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@redux-saga/symbols/-/symbols-1.2.1.tgz", + "integrity": "sha512-3dh+uDvpBXi7EUp/eO+N7eFM4xKaU4yuGBXc50KnZGzIrR/vlvkTFQsX13zsY8PB6sCFYAgROfPSRUj8331QSA==", "dev": true, "peer": true }, "node_modules/@redux-saga/types": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@redux-saga/types/-/types-1.2.1.tgz", - "integrity": "sha512-1dgmkh+3so0+LlBWRhGA33ua4MYr7tUOj+a9Si28vUi0IUFNbff1T3sgpeDJI/LaC75bBYnQ0A3wXjn0OrRNBA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@redux-saga/types/-/types-1.3.1.tgz", + "integrity": "sha512-YRCrJdhQLobGIQ8Cj1sta3nn6DrZDTSUnrIYhS2e5V590BmfVDleKoAquclAiKSBKWJwmuXTb+b4BL6rSHnahw==", "dev": true, "peer": true }, "node_modules/@scure/base": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.5.tgz", - "integrity": "sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ==", + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==", "funding": { "url": "https://paulmillr.com/funding/" } }, "node_modules/@scure/bip32": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.5.tgz", - "integrity": "sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "@noble/hashes": "~1.2.0", - "@noble/secp256k1": "~1.7.0", - "@scure/base": "~1.1.0" - } - }, - "node_modules/@scure/bip39": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.1.tgz", - "integrity": "sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "@noble/hashes": "~1.2.0", - "@scure/base": "~1.1.0" - } - }, - "node_modules/@sentry/core": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-5.30.0.tgz", - "integrity": "sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==", - "dev": true, - "dependencies": { - "@sentry/hub": "5.30.0", - "@sentry/minimal": "5.30.0", - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "tslib": "^1.9.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@sentry/hub": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-5.30.0.tgz", - "integrity": "sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==", - "dev": true, + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", + "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==", "dependencies": { - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "tslib": "^1.9.3" + "@noble/curves": "~1.4.0", + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@sentry/minimal": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.30.0.tgz", - "integrity": "sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==", - "dev": true, - "dependencies": { - "@sentry/hub": "5.30.0", - "@sentry/types": "5.30.0", - "tslib": "^1.9.3" - }, + "node_modules/@scure/bip32/node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", "engines": { - "node": ">=6" - } - }, - "node_modules/@sentry/node": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/node/-/node-5.30.0.tgz", - "integrity": "sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==", - "dev": true, - "dependencies": { - "@sentry/core": "5.30.0", - "@sentry/hub": "5.30.0", - "@sentry/tracing": "5.30.0", - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "cookie": "^0.4.1", - "https-proxy-agent": "^5.0.0", - "lru_map": "^0.3.3", - "tslib": "^1.9.3" + "node": ">= 16" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@sentry/tracing": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.30.0.tgz", - "integrity": "sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==", - "dev": true, + "node_modules/@scure/bip39": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", + "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==", "dependencies": { - "@sentry/hub": "5.30.0", - "@sentry/minimal": "5.30.0", - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "tslib": "^1.9.3" + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@sentry/types": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-5.30.0.tgz", - "integrity": "sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==", - "dev": true, + "node_modules/@scure/bip39/node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", "engines": { - "node": ">=6" + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@sentry/utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-5.30.0.tgz", - "integrity": "sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==", + "node_modules/@sentry/core": { + "version": "9.47.1", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-9.47.1.tgz", + "integrity": "sha512-KX62+qIt4xgy8eHKHiikfhz2p5fOciXd0Cl+dNzhgPFq8klq4MGMNaf148GB3M/vBqP4nw/eFvRMAayFCgdRQw==", "dev": true, - "dependencies": { - "@sentry/types": "5.30.0", - "tslib": "^1.9.3" - }, "engines": { - "node": ">=6" + "node": ">=18" } }, "node_modules/@sindresorhus/is": { @@ -2838,31 +2735,19 @@ "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@smithy/types": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.1.0.tgz", - "integrity": "sha512-KLsCsqxX0j2l99iP8s0f7LBlcsp7a7ceXGn0LPYPyVOsqmIKvSaPQajq0YevlL4T9Bm+DtcyXfBTbtBcLX1I7A==", - "dev": true, - "dependencies": { - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@smithy/types/node_modules/tslib": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", - "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==", + "node_modules/@streamparser/json": { + "version": "0.0.22", + "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.22.tgz", + "integrity": "sha512-b6gTSBjJ8G8SuO3Gbbj+zXbVx8NSs1EbpbMKpzGLWMdkR+98McH9bEjSz3+0mPJf68c5nxa3CrJHp5EQNXM6zQ==", "dev": true }, - "node_modules/@solidity-parser/parser": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.5.tgz", - "integrity": "sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg==", + "node_modules/@streamparser/json-node": { + "version": "0.0.22", + "resolved": "https://registry.npmjs.org/@streamparser/json-node/-/json-node-0.0.22.tgz", + "integrity": "sha512-sJT2ptNRwqB1lIsQrQlCoWk5rF4tif9wDh+7yluAGijJamAhrHGYpFB/Zg3hJeceoZypi74ftXk8DHzwYpbZSg==", "dev": true, "dependencies": { - "antlr4ts": "^0.5.0-alpha.4" + "@streamparser/json": "^0.0.22" } }, "node_modules/@szmarczak/http-timer": { @@ -2880,7 +2765,8 @@ "node_modules/@tronweb3/google-protobuf": { "version": "3.21.2", "resolved": "https://registry.npmjs.org/@tronweb3/google-protobuf/-/google-protobuf-3.21.2.tgz", - "integrity": "sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==" + "integrity": "sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==", + "deprecated": "This package is deprecated. Please use the official package google-protobuf instead." }, "node_modules/@truffle/abi-utils": { "version": "1.0.3", @@ -2989,18 +2875,6 @@ "node": ">=8" } }, - "node_modules/@truffle/codec/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@truffle/compile-common": { "version": "0.9.8", "resolved": "https://registry.npmjs.org/@truffle/compile-common/-/compile-common-0.9.8.tgz", @@ -3037,6 +2911,74 @@ "node": "^16.20 || ^18.16 || >=20" } }, + "node_modules/@truffle/config/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/config/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/config/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/config/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/config/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, "node_modules/@truffle/contract": { "version": "4.6.31", "resolved": "https://registry.npmjs.org/@truffle/contract/-/contract-4.6.31.tgz", @@ -3077,6 +3019,12 @@ "node": "^16.20 || ^18.16 || >=20" } }, + "node_modules/@truffle/contract/node_modules/aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", + "dev": true + }, "node_modules/@truffle/contract/node_modules/bignumber.js": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz", @@ -3092,6 +3040,21 @@ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true }, + "node_modules/@truffle/contract/node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, "node_modules/@truffle/contract/node_modules/ethers": { "version": "4.0.49", "resolved": "https://registry.npmjs.org/ethers/-/ethers-4.0.49.tgz", @@ -3167,6 +3130,29 @@ "node": "^16.20 || ^18.16 || >=20" } }, + "node_modules/@truffle/dashboard-message-bus-client/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/@truffle/dashboard-message-bus-common": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/@truffle/dashboard-message-bus-common/-/dashboard-message-bus-common-0.1.7.tgz", @@ -3244,9 +3230,9 @@ } }, "node_modules/@truffle/db/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", "dev": true, "optional": true, "peer": true, @@ -3257,17 +3243,6 @@ "graceful-fs": "^4.1.6" } }, - "node_modules/@truffle/db/node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@truffle/debug-utils": { "version": "6.0.57", "resolved": "https://registry.npmjs.org/@truffle/debug-utils/-/debug-utils-6.0.57.tgz", @@ -3286,6 +3261,77 @@ "node": "^16.20 || ^18.16 || >=20" } }, + "node_modules/@truffle/debug-utils/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/debug-utils/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/debug-utils/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@truffle/debug-utils/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@truffle/debug-utils/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@truffle/debug-utils/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@truffle/debug-utils/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@truffle/debugger": { "version": "12.1.5", "resolved": "https://registry.npmjs.org/@truffle/debugger/-/debugger-12.1.5.tgz", @@ -3314,19 +3360,6 @@ "node": "^16.20 || ^18.16 || >=20" } }, - "node_modules/@truffle/debugger/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "peer": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@truffle/error": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/@truffle/error/-/error-0.2.2.tgz", @@ -3371,6 +3404,33 @@ "node": "^16.20 || ^18.16 || >=20" } }, + "node_modules/@truffle/interface-adapter/node_modules/aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", + "dev": true + }, + "node_modules/@truffle/interface-adapter/node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/@truffle/interface-adapter/node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, "node_modules/@truffle/interface-adapter/node_modules/ethers": { "version": "4.0.49", "resolved": "https://registry.npmjs.org/ethers/-/ethers-4.0.49.tgz", @@ -3509,42 +3569,104 @@ "strip-indent": "^2.0.0" } }, - "node_modules/@trufflesuite/chromafi/node_modules/camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", + "node_modules/@trufflesuite/chromafi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, "engines": { "node": ">=4" } }, - "node_modules/@trufflesuite/spinnies": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@trufflesuite/spinnies/-/spinnies-0.1.1.tgz", - "integrity": "sha512-jltEtmFJj6xmQqr85gP8OqBHCEiId+zw+uAsb3DyLLRD17O6sySW6Afa2Z/jpzSafj+32ssDfLJ+c0of1NLqcA==", + "node_modules/@trufflesuite/chromafi/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "chalk": "^4.1.2", - "cli-cursor": "^3.1.0", - "strip-ansi": "^6.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@trufflesuite/spinnies/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@trufflesuite/chromafi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=8" + "dependencies": { + "color-name": "1.1.3" } }, - "node_modules/@trufflesuite/spinnies/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "node_modules/@trufflesuite/chromafi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@trufflesuite/chromafi/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@trufflesuite/chromafi/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@trufflesuite/chromafi/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@trufflesuite/spinnies": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@trufflesuite/spinnies/-/spinnies-0.1.1.tgz", + "integrity": "sha512-jltEtmFJj6xmQqr85gP8OqBHCEiId+zw+uAsb3DyLLRD17O6sySW6Afa2Z/jpzSafj+32ssDfLJ+c0of1NLqcA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.1.2", + "cli-cursor": "^3.1.0", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/@trufflesuite/spinnies/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@trufflesuite/spinnies/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "optional": true, @@ -3577,39 +3699,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@trufflesuite/spinnies/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@trufflesuite/spinnies/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/@trufflesuite/spinnies/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@trufflesuite/spinnies/node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -3662,75 +3751,19 @@ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true }, - "node_modules/@typechain/ethers-v5": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@typechain/ethers-v5/-/ethers-v5-10.2.0.tgz", - "integrity": "sha512-ikaq0N/w9fABM+G01OFmU3U3dNnyRwEahkdvi9mqy1a3XwKiPZaF/lu54OcNaEWnpvEYyhhS0N7buCtLQqC92w==", + "node_modules/@typechain/ethers-v6": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@typechain/ethers-v6/-/ethers-v6-0.5.1.tgz", + "integrity": "sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==", "dev": true, "dependencies": { "lodash": "^4.17.15", "ts-essentials": "^7.0.1" }, "peerDependencies": { - "@ethersproject/abi": "^5.0.0", - "@ethersproject/bytes": "^5.0.0", - "@ethersproject/providers": "^5.0.0", - "ethers": "^5.1.3", - "typechain": "^8.1.1", - "typescript": ">=4.3.0" - } - }, - "node_modules/@typechain/hardhat": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/@typechain/hardhat/-/hardhat-6.1.5.tgz", - "integrity": "sha512-lg7LW4qDZpxFMknp3Xool61Fg6Lays8F8TXdFGBG+MxyYcYU5795P1U2XdStuzGq9S2Dzdgh+1jGww9wvZ6r4Q==", - "dev": true, - "dependencies": { - "fs-extra": "^9.1.0" - }, - "peerDependencies": { - "@ethersproject/abi": "^5.4.7", - "@ethersproject/providers": "^5.4.7", - "@typechain/ethers-v5": "^10.2.0", - "ethers": "^5.4.7", - "hardhat": "^2.9.9", - "typechain": "^8.1.1" - } - }, - "node_modules/@typechain/hardhat/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typechain/hardhat/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@typechain/hardhat/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" + "ethers": "6.x", + "typechain": "^8.3.2", + "typescript": ">=4.7.0" } }, "node_modules/@types/accepts": { @@ -3754,9 +3787,9 @@ } }, "node_modules/@types/body-parser": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", - "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", "dev": true, "optional": true, "peer": true, @@ -3778,27 +3811,22 @@ } }, "node_modules/@types/chai": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.4.tgz", - "integrity": "sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==", - "dev": true - }, - "node_modules/@types/chai-as-promised": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.5.tgz", - "integrity": "sha512-jStwss93SITGBwt/niYrkf2C+/1KTeZCZl1LaeezTlqppAKeoQC7jxyqYuP72sxBGKCIbw7oHgbYssIRzT5FCQ==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", "dev": true, "dependencies": { - "@types/chai": "*" + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" } }, - "node_modules/@types/concat-stream": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz", - "integrity": "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==", + "node_modules/@types/chai-as-promised": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-8.0.2.tgz", + "integrity": "sha512-meQ1wDr1K5KRCSvG2lX7n7/5wf70BeptTKst0axGvnN6zqaVpRqegoIbugiAPSqOW9K9aL8gDVrm7a2LXOtn2Q==", "dev": true, "dependencies": { - "@types/node": "*" + "@types/chai": "*" } }, "node_modules/@types/connect": { @@ -3820,6 +3848,12 @@ "optional": true, "peer": true }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true + }, "node_modules/@types/express": { "version": "4.17.14", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", @@ -3835,9 +3869,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.0", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz", - "integrity": "sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==", + "version": "4.19.8", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz", + "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==", "dev": true, "optional": true, "peer": true, @@ -3848,25 +3882,6 @@ "@types/send": "*" } }, - "node_modules/@types/form-data": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-0.0.33.tgz", - "integrity": "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, "node_modules/@types/http-cache-semantics": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", @@ -3874,9 +3889,9 @@ "dev": true }, "node_modules/@types/http-errors": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", "dev": true, "optional": true, "peer": true @@ -3898,37 +3913,19 @@ "optional": true, "peer": true }, - "node_modules/@types/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==", - "dev": true - }, - "node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, "node_modules/@types/mocha": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.1.tgz", - "integrity": "sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==", - "dev": true, - "peer": true + "version": "10.0.10", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.10.tgz", + "integrity": "sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==", + "dev": true }, "node_modules/@types/node": { - "version": "18.15.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz", - "integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==" + "version": "22.7.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz", + "integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==", + "dependencies": { + "undici-types": "~6.19.2" + } }, "node_modules/@types/pbkdf2": { "version": "3.1.0", @@ -3949,7 +3946,9 @@ "version": "6.9.7", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "node_modules/@types/range-parser": { "version": "1.2.7", @@ -3959,22 +3958,6 @@ "optional": true, "peer": true }, - "node_modules/@types/readable-stream": { - "version": "2.3.15", - "resolved": "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.15.tgz", - "integrity": "sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ==", - "dev": true, - "dependencies": { - "@types/node": "*", - "safe-buffer": "~5.1.1" - } - }, - "node_modules/@types/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, "node_modules/@types/responselike": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", @@ -3994,41 +3977,35 @@ } }, "node_modules/@types/send": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", - "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", + "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", "dev": true, "optional": true, "peer": true, "dependencies": { - "@types/mime": "^1", "@types/node": "*" } }, "node_modules/@types/serve-static": { - "version": "1.15.7", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", - "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz", + "integrity": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==", "dev": true, "optional": true, "peer": true, "dependencies": { "@types/http-errors": "*", - "@types/node": "*", - "@types/send": "*" + "@types/node": "*" } }, - "node_modules/abbrev": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", - "integrity": "sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==", - "dev": true - }, "node_modules/abort-controller": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { "event-target-shim": "^5.0.0" }, @@ -4042,52 +4019,11 @@ "integrity": "sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==", "dev": true }, - "node_modules/abstract-level": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", - "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", - "dev": true, - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/abstract-level/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, "node_modules/abstract-leveldown": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-7.2.0.tgz", "integrity": "sha512-DnhQwcFEaYsvYDnACLZhMmCWd3rkOeEvglpa4q5i/5Jlm3UIsWaxVzuXvDLFCSCWRO3yy2/+V/G7FusFgejnfQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -4129,17 +4065,6 @@ "ieee754": "^1.2.1" } }, - "node_modules/abstract-leveldown/node_modules/level-supports": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-2.1.0.tgz", - "integrity": "sha512-E486g1NCjW5cF78KGPrMDRBYzPuueMZ6VBXHT6gC7A8UYWGiM14fGgp+s/L1oFfDWSPV/+SFkYCmZ0SiESkRKA==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=10" - } - }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", @@ -4174,15 +4099,6 @@ "node": ">=0.4.0" } }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/adm-zip": { "version": "0.4.16", "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", @@ -4193,35 +4109,9 @@ } }, "node_modules/aes-js": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", - "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", - "dev": true - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "version": "4.0.0-beta.5", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz", + "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==" }, "node_modules/ajv": { "version": "6.12.6", @@ -4259,17 +4149,17 @@ } }, "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "optional": true, "peer": true, "dependencies": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -4284,27 +4174,15 @@ "optional": true, "peer": true }, - "node_modules/amazon-cognito-identity-js": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/amazon-cognito-identity-js/-/amazon-cognito-identity-js-6.3.2.tgz", - "integrity": "sha512-g1MqdAuvIsUtzI4b9gqusk/J5hH93XVlTV4/pjWb2cKnsWJfyMo/52EKWJL5dI2cp37dZhXt/xS1l9me42ENDg==", - "dev": true, - "dependencies": { - "@aws-crypto/sha256-js": "1.2.2", - "buffer": "4.9.2", - "fast-base64-decode": "^1.0.0", - "isomorphic-unfetch": "^3.0.0", - "js-cookie": "^2.2.1" - } - }, - "node_modules/amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", + "node_modules/ajv-formats/node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "optional": true, + "peer": true, "engines": { - "node": ">=0.4.2" + "node": ">=0.10.0" } }, "node_modules/ansi-colors": { @@ -4316,21 +4194,6 @@ "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/ansi-regex": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", @@ -4341,28 +4204,23 @@ } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/antlr4ts": { - "version": "0.5.0-alpha.4", - "resolved": "https://registry.npmjs.org/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz", - "integrity": "sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==", - "dev": true - }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, + "peer": true, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -4375,7 +4233,7 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.2.tgz", "integrity": "sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==", - "deprecated": "The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", + "deprecated": "The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4391,7 +4249,7 @@ "version": "3.4.0", "resolved": "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.4.0.tgz", "integrity": "sha512-h0u3EbC/9RpihWOmcSsvTW2O6RXVaD/mPEjfrPkxRPTEPWqncsgOoRJw+wih4OqfH3PvTJvoEIf4LwKrUaqWog==", - "deprecated": "The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", + "deprecated": "The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4439,6 +4297,7 @@ "version": "3.13.0", "resolved": "https://registry.npmjs.org/apollo-server/-/apollo-server-3.13.0.tgz", "integrity": "sha512-hgT/MswNB5G1r+oBhggVX4Fjw53CFLqG15yB5sN+OrYkCVWF5YwPbJWHfSWa7699JMEXJGaoVfFzcvLZK0UlDg==", + "deprecated": "The `apollo-server` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4456,6 +4315,7 @@ "version": "3.13.0", "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.13.0.tgz", "integrity": "sha512-v/g6DR6KuHn9DYSdtQijz8dLOkP78I5JSVJzPkARhDbhpH74QNwrQ2PP2URAPPEDJ2EeZNQDX8PvbYkAKqg+kg==", + "deprecated": "The `apollo-server-core` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4505,21 +4365,6 @@ "node": ">=10" } }, - "node_modules/apollo-server-core/node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "optional": true, - "peer": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/apollo-server-core/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -4532,7 +4377,7 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.1.tgz", "integrity": "sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==", - "deprecated": "The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", + "deprecated": "The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4547,7 +4392,7 @@ "version": "3.3.1", "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz", "integrity": "sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==", - "deprecated": "The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", + "deprecated": "The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4562,6 +4407,7 @@ "version": "3.13.0", "resolved": "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.13.0.tgz", "integrity": "sha512-iSxICNbDUyebOuM8EKb3xOrpIwOQgKxGbR2diSr4HP3IW8T3njKFOoMce50vr+moOCe1ev8BnLcw9SNbuUtf7g==", + "deprecated": "The `apollo-server-express` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4615,7 +4461,7 @@ "version": "3.7.2", "resolved": "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.7.2.tgz", "integrity": "sha512-wE8dwGDvBOGehSsPTRZ8P/33Jan6/PmL0y0aN/1Z5a5GcbFhDaaJCjK5cav6npbbGL2DPKK0r6MPXi3k3N45aw==", - "deprecated": "The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", + "deprecated": "The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4633,7 +4479,7 @@ "version": "3.8.0", "resolved": "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.8.0.tgz", "integrity": "sha512-ZI/8rTE4ww8BHktsVpb91Sdq7Cb71rdSkXELSwdSR0eXu600/sY+1UXhTWdiJvk+Eq5ljqoHLwLbY2+Clq2b9A==", - "deprecated": "The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", + "deprecated": "The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.", "dev": true, "optional": true, "peer": true, @@ -4708,24 +4554,6 @@ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/array.prototype.findlast": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", @@ -4746,25 +4574,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.reduce": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", - "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/arraybuffer.prototype.slice": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", @@ -4787,12 +4596,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true - }, "node_modules/asn1": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", @@ -4812,29 +4615,14 @@ } }, "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", - "dev": true - }, "node_modules/async-limiter": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", @@ -4846,21 +4634,35 @@ "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { "retry": "0.13.1" } }, + "node_modules/async-retry/node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">= 4" + } + }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "node_modules/at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, + "optional": true, + "peer": true, "engines": { "node": ">= 4.0.0" } @@ -4911,12 +4713,32 @@ "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.0.tgz", "integrity": "sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { "follow-redirects": "^1.15.0", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -4924,9 +4746,9 @@ "dev": true }, "node_modules/base-x": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz", - "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==", + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.11.tgz", + "integrity": "sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==", "dev": true, "dependencies": { "safe-buffer": "^5.0.1" @@ -4961,12 +4783,6 @@ "tweetnacl": "^0.14.3" } }, - "node_modules/bcrypt-pbkdf/node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, "node_modules/bech32": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", @@ -4995,27 +4811,6 @@ "url": "https://opencollective.com/bigjs" } }, - "node_modules/bigint-crypto-utils": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/bigint-crypto-utils/-/bigint-crypto-utils-3.1.8.tgz", - "integrity": "sha512-+VMV9Laq8pXLBKKKK49nOoq9bfR3j7NNQAtbA617a4nw9bVLo8rsqkKMBgM2AJWlNX9fEIyYaYX+d0laqYV4tw==", - "dev": true, - "dependencies": { - "bigint-mod-arith": "^3.1.0" - }, - "engines": { - "node": ">=10.4.0" - } - }, - "node_modules/bigint-mod-arith": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bigint-mod-arith/-/bigint-mod-arith-3.1.2.tgz", - "integrity": "sha512-nx8J8bBeiRR+NlsROFH9jHswW5HO8mgfOSqW0AmjicMMvaONDa8AO+5ViKDUUNytBPWiwfvZP4/Bj4Y3lUfvgQ==", - "dev": true, - "engines": { - "node": ">=10.4.0" - } - }, "node_modules/bignumber.js": { "version": "9.1.1", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz", @@ -5029,6 +4824,7 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, + "peer": true, "engines": { "node": ">=8" } @@ -5051,23 +4847,23 @@ "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" }, "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "version": "1.20.4", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz", + "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==", "dev": true, "dependencies": { - "bytes": "3.1.2", + "bytes": "~3.1.2", "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.14.0", + "raw-body": "~2.5.3", "type-is": "~1.6.18", - "unpipe": "1.0.0" + "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8", @@ -5089,21 +4885,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", @@ -5111,22 +4892,22 @@ "dev": true }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "peer": true, "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -5137,18 +4918,6 @@ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" }, - "node_modules/browser-level": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browser-level/-/browser-level-1.0.1.tgz", - "integrity": "sha512-XECYKJ+Dbzw0lbydyQuJzwNXtOpbMSq737qxJN11sIRTErOMShvDpbzTlgju7orJKvx4epULolZAuJGLzCmWRQ==", - "dev": true, - "dependencies": { - "abstract-level": "^1.0.2", - "catering": "^2.1.1", - "module-error": "^1.0.2", - "run-parallel-limit": "^1.1.0" - } - }, "node_modules/browser-stdout": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", @@ -5190,21 +4959,36 @@ } }, "node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "node_modules/buffer-to-arraybuffer": { "version": "0.0.5", @@ -5231,16 +5015,15 @@ "node": ">=6.14.2" } }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dev": true, - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" + "node_modules/bufferutil/node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "devOptional": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, "node_modules/bytes": { @@ -5304,16 +5087,43 @@ } }, "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, "dependencies": { + "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { "node": ">= 0.4" @@ -5333,24 +5143,12 @@ } }, "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/case": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", - "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, "node_modules/caseless": { @@ -5364,64 +5162,64 @@ "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", "dev": true, + "optional": true, + "peer": true, "engines": { "node": ">=6" } }, "node_modules/cbor": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz", - "integrity": "sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/cbor/-/cbor-9.0.1.tgz", + "integrity": "sha512-/TQOWyamDxvVIv+DY9cOLNuABkoyz8K/F3QE56539pGVYohx0+MEA1f4lChFTX79dBTBS7R1PF6ovH7G+VtBfQ==", "dev": true, "dependencies": { "nofilter": "^3.1.0" }, "engines": { - "node": ">=12.19" + "node": ">=16" + } + }, + "node_modules/cbor2": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/cbor2/-/cbor2-1.12.0.tgz", + "integrity": "sha512-3Cco8XQhi27DogSp9Ri6LYNZLi/TBY/JVnDe+mj06NkBjW/ZYOtekaEU4wZ4xcRMNrFkDv8KNtOAqHyDfz3lYg==", + "dev": true, + "engines": { + "node": ">=18.7" } }, "node_modules/chai": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", - "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz", + "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==", "dev": true, - "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.2", - "deep-eql": "^4.1.2", - "get-func-name": "^2.0.0", - "loupe": "^2.3.1", - "pathval": "^1.1.1", - "type-detect": "^4.0.5" - }, "engines": { - "node": ">=4" + "node": ">=18" } }, "node_modules/chai-as-promised": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz", - "integrity": "sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-8.0.2.tgz", + "integrity": "sha512-1GadL+sEJVLzDjcawPM4kjfnL+p/9vrxiEUonowKOAzvVg0PixJUdtuDzdkDeQhK3zfOE76GqGkZIQ7/Adcrqw==", "dev": true, "dependencies": { - "check-error": "^1.0.2" + "check-error": "^2.1.1" }, "peerDependencies": { - "chai": ">= 2.1.2 < 5" + "chai": ">= 2.1.2 < 7" } }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, "engines": { - "node": ">=4" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/change-case": { @@ -5450,22 +5248,13 @@ "upper-case-first": "^1.1.0" } }, - "node_modules/charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/check-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", - "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", "dev": true, "engines": { - "node": "*" + "node": ">= 16" } }, "node_modules/cheerio": { @@ -5507,30 +5296,18 @@ } }, "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "readdirp": "^4.0.1" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 14.16.0" }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "funding": { + "url": "https://paulmillr.com/funding/" } }, "node_modules/chownr": { @@ -5539,12 +5316,6 @@ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", "dev": true }, - "node_modules/ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, "node_modules/cids": { "version": "0.7.5", "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", @@ -5563,30 +5334,6 @@ "npm": ">=3.0.0" } }, - "node_modules/cids/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/cids/node_modules/multicodec": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", @@ -5599,13 +5346,17 @@ } }, "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.7.tgz", + "integrity": "sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==", "dev": true, "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" } }, "node_modules/class-is": { @@ -5614,32 +5365,6 @@ "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==", "dev": true }, - "node_modules/classic-level": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/classic-level/-/classic-level-1.2.0.tgz", - "integrity": "sha512-qw5B31ANxSluWz9xBzklRWTUAJ1SXIdaVKTVS7HcTGKOAmExx65Wo5BUICW+YGORe2FOUaDghoI9ZDxj82QcFg==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "abstract-level": "^1.0.2", - "catering": "^2.1.0", - "module-error": "^1.0.1", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", @@ -5654,31 +5379,18 @@ "node": ">=8" } }, - "node_modules/cli-table3": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz", - "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==", - "dev": true, - "dependencies": { - "object-assign": "^4.1.0", - "string-width": "^2.1.1" - }, - "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "colors": "^1.1.2" - } - }, "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, "node_modules/cliui/node_modules/ansi-regex": { @@ -5690,15 +5402,27 @@ "node": ">=8" } }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "node_modules/cliui/node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -5725,6 +5449,23 @@ "node": ">=8" } }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/clone-buffer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", @@ -5758,18 +5499,21 @@ } }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/colors": { @@ -5785,7 +5529,6 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, "dependencies": { "delayed-stream": "~1.0.0" }, @@ -5793,12 +5536,6 @@ "node": ">= 0.8" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", - "dev": true - }, "node_modules/command-line-args": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", @@ -5829,6 +5566,18 @@ "node": ">=8.0.0" } }, + "node_modules/command-line-usage/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/command-line-usage/node_modules/array-back": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", @@ -5838,78 +5587,94 @@ "node": ">=8" } }, - "node_modules/command-line-usage/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "node_modules/command-line-usage/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/commander": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", - "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==", - "dev": true - }, - "node_modules/compare-versions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-6.1.0.tgz", - "integrity": "sha512-LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "node_modules/command-line-usage/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "engines": [ - "node >= 0.8" - ], "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "color-name": "1.1.3" } }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "node_modules/command-line-usage/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/command-line-usage/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" } }, - "node_modules/concat-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "node_modules/command-line-usage/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/command-line-usage/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "safe-buffer": "~5.1.0" + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/command-line-usage/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "dev": true, + "engines": { + "node": ">=8" } }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/compare-versions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-6.1.0.tgz", + "integrity": "sha512-LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, "node_modules/conf": { "version": "10.2.0", "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz", @@ -5937,17 +5702,17 @@ } }, "node_modules/conf/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "optional": true, "peer": true, "dependencies": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -5962,18 +5727,15 @@ "optional": true, "peer": true }, - "node_modules/conf/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "node_modules/conf/node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "optional": true, "peer": true, - "bin": { - "semver": "bin/semver.js" - }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, "node_modules/constant-case": { @@ -6019,9 +5781,9 @@ } }, "node_modules/cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", "dev": true, "engines": { "node": ">= 0.6" @@ -6106,13 +5868,18 @@ "node-fetch": "^2.6.12" } }, - "node_modules/crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": "*" + "node": ">= 8" } }, "node_modules/crypto-addr-codec": { @@ -6131,9 +5898,9 @@ } }, "node_modules/crypto-js": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", - "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" }, "node_modules/css-select": { "version": "5.1.0", @@ -6255,12 +6022,6 @@ "optional": true, "peer": true }, - "node_modules/death": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/death/-/death-1.1.0.tgz", - "integrity": "sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w==", - "dev": true - }, "node_modules/debounce-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz", @@ -6279,12 +6040,12 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -6344,13 +6105,10 @@ } }, "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", "dev": true, - "dependencies": { - "type-detect": "^4.0.0" - }, "engines": { "node": ">=6" } @@ -6364,12 +6122,6 @@ "node": ">=4.0.0" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, "node_modules/defer-to-connect": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", @@ -6383,6 +6135,7 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz", "integrity": "sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -6398,6 +6151,7 @@ "version": "6.2.3", "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz", "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -6412,36 +6166,11 @@ "node": ">=6" } }, - "node_modules/deferred-leveldown/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true, - "peer": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/deferred-leveldown/node_modules/level-concat-iterator": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz", "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -6515,7 +6244,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, "engines": { "node": ">=0.4.0" } @@ -6548,53 +6276,15 @@ "node": ">=4" } }, - "node_modules/detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", - "dev": true, - "dependencies": { - "address": "^1.0.1", - "debug": "4" - }, - "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" - } - }, "node_modules/diff": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz", + "integrity": "sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==", "dev": true, "engines": { "node": ">=0.3.1" } }, - "node_modules/difflib": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/difflib/-/difflib-0.2.4.tgz", - "integrity": "sha512-9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w==", - "dev": true, - "dependencies": { - "heap": ">= 0.2.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", @@ -6699,6 +6389,25 @@ "optional": true, "peer": true }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -6716,9 +6425,9 @@ "dev": true }, "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", + "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -6746,21 +6455,15 @@ } }, "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/encode-utf8": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", - "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==", + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true, "engines": { "node": ">= 0.8" @@ -6770,6 +6473,7 @@ "version": "6.3.0", "resolved": "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz", "integrity": "sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -6787,6 +6491,7 @@ "version": "6.3.0", "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.3.0.tgz", "integrity": "sha512-TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -6801,36 +6506,11 @@ "node": ">=6" } }, - "node_modules/encoding-down/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true, - "peer": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/encoding-down/node_modules/level-concat-iterator": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz", "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, @@ -6988,38 +6668,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-abstract/node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true - }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "engines": { "node": ">= 0.4" } @@ -7028,16 +6680,14 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, "engines": { "node": ">= 0.4" } }, "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", - "dev": true, + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dependencies": { "es-errors": "^1.3.0" }, @@ -7046,14 +6696,14 @@ } }, "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dev": true, + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dependencies": { - "get-intrinsic": "^1.2.4", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -7131,6 +6781,47 @@ "node": ">=0.12" } }, + "node_modules/esbuild": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz", + "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.2", + "@esbuild/android-arm": "0.27.2", + "@esbuild/android-arm64": "0.27.2", + "@esbuild/android-x64": "0.27.2", + "@esbuild/darwin-arm64": "0.27.2", + "@esbuild/darwin-x64": "0.27.2", + "@esbuild/freebsd-arm64": "0.27.2", + "@esbuild/freebsd-x64": "0.27.2", + "@esbuild/linux-arm": "0.27.2", + "@esbuild/linux-arm64": "0.27.2", + "@esbuild/linux-ia32": "0.27.2", + "@esbuild/linux-loong64": "0.27.2", + "@esbuild/linux-mips64el": "0.27.2", + "@esbuild/linux-ppc64": "0.27.2", + "@esbuild/linux-riscv64": "0.27.2", + "@esbuild/linux-s390x": "0.27.2", + "@esbuild/linux-x64": "0.27.2", + "@esbuild/netbsd-arm64": "0.27.2", + "@esbuild/netbsd-x64": "0.27.2", + "@esbuild/openbsd-arm64": "0.27.2", + "@esbuild/openbsd-x64": "0.27.2", + "@esbuild/openharmony-arm64": "0.27.2", + "@esbuild/sunos-x64": "0.27.2", + "@esbuild/win32-arm64": "0.27.2", + "@esbuild/win32-ia32": "0.27.2", + "@esbuild/win32-x64": "0.27.2" + } + }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", @@ -7147,34 +6838,15 @@ "dev": true }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escodegen": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", - "integrity": "sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==", - "dev": true, - "dependencies": { - "esprima": "^2.7.1", - "estraverse": "^1.9.1", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=0.12.0" + "node": ">=10" }, - "optionalDependencies": { - "source-map": "~0.2.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/esniff": { @@ -7192,37 +6864,6 @@ "node": ">=0.10" } }, - "node_modules/esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/estraverse": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", - "integrity": "sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", @@ -7248,6755 +6889,4656 @@ "integrity": "sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==", "dev": true }, - "node_modules/eth-gas-reporter": { - "version": "0.2.25", - "resolved": "https://registry.npmjs.org/eth-gas-reporter/-/eth-gas-reporter-0.2.25.tgz", - "integrity": "sha512-1fRgyE4xUB8SoqLgN3eDfpDfwEfRxh2Sz1b7wzFbyQA+9TekMmvSjjoRu9SKcSVyK+vLkLIsVbJDsTWjw195OQ==", - "dev": true, - "dependencies": { - "@ethersproject/abi": "^5.0.0-beta.146", - "@solidity-parser/parser": "^0.14.0", - "cli-table3": "^0.5.0", - "colors": "1.4.0", - "ethereum-cryptography": "^1.0.3", - "ethers": "^4.0.40", - "fs-readdir-recursive": "^1.1.0", - "lodash": "^4.17.14", - "markdown-table": "^1.1.3", - "mocha": "^7.1.1", - "req-cwd": "^2.0.0", - "request": "^2.88.0", - "request-promise-native": "^1.0.5", - "sha1": "^1.1.1", - "sync-request": "^6.0.0" - }, - "peerDependencies": { - "@codechecks/client": "^0.1.0" - }, - "peerDependenciesMeta": { - "@codechecks/client": { - "optional": true - } - } - }, - "node_modules/eth-gas-reporter/node_modules/ansi-colors": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", - "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/eth-gas-reporter/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/eth-gas-reporter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/eth-lib": { + "version": "0.1.29", + "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", + "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "bn.js": "^4.11.6", + "elliptic": "^6.4.0", + "nano-json-stream-parser": "^0.1.2", + "servify": "^0.1.12", + "ws": "^3.0.0", + "xhr-request-promise": "^0.1.2" } }, - "node_modules/eth-gas-reporter/node_modules/bn.js": { + "node_modules/eth-lib/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true }, - "node_modules/eth-gas-reporter/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } + "node_modules/eth-lib/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, - "node_modules/eth-gas-reporter/node_modules/chokidar": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.0.tgz", - "integrity": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==", + "node_modules/eth-lib/node_modules/ws": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", + "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", "dev": true, "dependencies": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.2.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.1.1" + "async-limiter": "~1.0.0", + "safe-buffer": "~5.1.0", + "ultron": "~1.1.0" } }, - "node_modules/eth-gas-reporter/node_modules/cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "node_modules/ethereum-bloom-filters": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.10.tgz", + "integrity": "sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==", "dev": true, "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" + "js-sha3": "^0.8.0" } }, - "node_modules/eth-gas-reporter/node_modules/debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", - "dev": true, + "node_modules/ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eth-gas-reporter/node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" } }, - "node_modules/eth-gas-reporter/node_modules/diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", - "dev": true, + "node_modules/ethereum-cryptography/node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", "engines": { - "node": ">=0.3.1" + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/eth-gas-reporter/node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "node_modules/eth-gas-reporter/node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/ethereumjs-util": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", + "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "@types/bn.js": "^5.1.0", + "bn.js": "^5.1.2", + "create-hash": "^1.1.2", + "ethereum-cryptography": "^0.1.3", + "rlp": "^2.2.4" }, "engines": { - "node": ">=4" + "node": ">=10.0.0" } }, - "node_modules/eth-gas-reporter/node_modules/ethereum-cryptography": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.2.0.tgz", - "integrity": "sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==", + "node_modules/ethereumjs-util/node_modules/ethereum-cryptography": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", + "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", "dev": true, "dependencies": { - "@noble/hashes": "1.2.0", - "@noble/secp256k1": "1.7.1", - "@scure/bip32": "1.1.5", - "@scure/bip39": "1.1.1" + "@types/pbkdf2": "^3.0.0", + "@types/secp256k1": "^4.0.1", + "blakejs": "^1.1.0", + "browserify-aes": "^1.2.0", + "bs58check": "^2.1.2", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "hash.js": "^1.1.7", + "keccak": "^3.0.0", + "pbkdf2": "^3.0.17", + "randombytes": "^2.1.0", + "safe-buffer": "^5.1.2", + "scrypt-js": "^3.0.0", + "secp256k1": "^4.0.1", + "setimmediate": "^1.0.5" } }, - "node_modules/eth-gas-reporter/node_modules/ethers": { - "version": "4.0.49", - "resolved": "https://registry.npmjs.org/ethers/-/ethers-4.0.49.tgz", - "integrity": "sha512-kPltTvWiyu+OktYy1IStSO16i2e7cS9D9OxZ81q2UUaiNPVrm/RTcbxamCXF9VUSKzJIdJV68EAIhTEVBalRWg==", - "dev": true, + "node_modules/ethers": { + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.16.0.tgz", + "integrity": "sha512-U1wulmetNymijEhpSEQ7Ct/P/Jw9/e7R1j5XIbPRydgV2DjLVMsULDlNksq3RQnFgKoLlZf88ijYtWEXcPa07A==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/ethers-io/" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], "dependencies": { - "aes-js": "3.0.0", - "bn.js": "^4.11.9", - "elliptic": "6.5.4", - "hash.js": "1.1.3", - "js-sha3": "0.5.7", - "scrypt-js": "2.0.4", - "setimmediate": "1.0.4", - "uuid": "2.0.1", - "xmlhttprequest": "1.8.0" + "@adraffy/ens-normalize": "1.10.1", + "@noble/curves": "1.2.0", + "@noble/hashes": "1.3.2", + "@types/node": "22.7.5", + "aes-js": "4.0.0-beta.5", + "tslib": "2.7.0", + "ws": "8.17.1" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/eth-gas-reporter/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, + "node_modules/ethers/node_modules/@noble/curves": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz", + "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==", "dependencies": { - "locate-path": "^3.0.0" + "@noble/hashes": "1.3.2" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/eth-gas-reporter/node_modules/flat": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz", - "integrity": "sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==", - "dev": true, - "dependencies": { - "is-buffer": "~2.0.3" + "node_modules/ethers/node_modules/@noble/hashes": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz", + "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==", + "engines": { + "node": ">= 16" }, - "bin": { - "flat": "cli.js" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/eth-gas-reporter/node_modules/fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", - "deprecated": "\"Please update to latest v2.3 or v2.2\"", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], + "node_modules/ethers/node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/eth-gas-reporter/node_modules/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "node_modules/ethjs-unit": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", + "integrity": "sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "bn.js": "4.11.6", + "number-to-bn": "1.7.0" }, "engines": { - "node": "*" + "node": ">=6.5.0", + "npm": ">=3" } }, - "node_modules/eth-gas-reporter/node_modules/hash.js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz", - "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", + "node_modules/ethjs-unit/node_modules/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==", + "dev": true + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/eth-gas-reporter/node_modules/js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==", - "dev": true - }, - "node_modules/eth-gas-reporter/node_modules/js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "d": "1", + "es5-ext": "~0.10.14" } }, - "node_modules/eth-gas-reporter/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, + "optional": true, + "peer": true, "engines": { "node": ">=6" } }, - "node_modules/eth-gas-reporter/node_modules/log-symbols": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "node_modules/eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "dev": true, "dependencies": { - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=8" + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, - "node_modules/eth-gas-reporter/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/express": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz", + "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.3", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.14.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "engines": { - "node": "*" + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/eth-gas-reporter/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" + "ms": "2.0.0" } }, - "node_modules/eth-gas-reporter/node_modules/mocha": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-7.2.0.tgz", - "integrity": "sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==", + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dev": true, "dependencies": { - "ansi-colors": "3.2.3", - "browser-stdout": "1.3.1", - "chokidar": "3.3.0", - "debug": "3.2.6", - "diff": "3.5.0", - "escape-string-regexp": "1.0.5", - "find-up": "3.0.0", - "glob": "7.1.3", - "growl": "1.10.5", - "he": "1.2.0", - "js-yaml": "3.13.1", - "log-symbols": "3.0.0", - "minimatch": "3.0.4", - "mkdirp": "0.5.5", - "ms": "2.1.1", - "node-environment-flags": "1.0.6", - "object.assign": "4.1.0", - "strip-json-comments": "2.0.1", - "supports-color": "6.0.0", - "which": "1.3.1", - "wide-align": "1.1.3", - "yargs": "13.3.2", - "yargs-parser": "13.1.2", - "yargs-unparser": "1.6.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mochajs" + "type": "^2.7.2" } }, - "node_modules/eth-gas-reporter/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "node_modules/eth-gas-reporter/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "engines": [ + "node >=0.6.0" + ] }, - "node_modules/eth-gas-reporter/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/fast-check": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-check/-/fast-check-3.1.1.tgz", + "integrity": "sha512-3vtXinVyuUKCKFKYcwXhGE6NtGWkqF8Yh3rvMZNzmwz8EPrgoc/v4pDdLHyLnCyCI5MZpZZkDEwFyXyEONOxpA==", "dev": true, "dependencies": { - "p-limit": "^2.0.0" + "pure-rand": "^5.0.1" }, "engines": { - "node": ">=6" + "node": ">=8.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" } }, - "node_modules/eth-gas-reporter/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true }, - "node_modules/eth-gas-reporter/node_modules/readdirp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz", - "integrity": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==", + "node_modules/fast-equals": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.4.0.tgz", + "integrity": "sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw==", "dev": true, - "dependencies": { - "picomatch": "^2.0.4" - }, "engines": { - "node": ">= 8" + "node": ">=6.0.0" } }, - "node_modules/eth-gas-reporter/node_modules/scrypt-js": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-2.0.4.tgz", - "integrity": "sha512-4KsaGcPnuhtCZQCxFxN3GVYIhKFPTdLd8PLC552XwbMndtD0cjRFAhDuuydXQ0h08ZfPgzqe6EKHozpuH74iDw==", - "dev": true - }, - "node_modules/eth-gas-reporter/node_modules/setimmediate": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.4.tgz", - "integrity": "sha512-/TjEmXQVEzdod/FFskf3o7oOAsGhHf2j1dZqRFbDzq4F3mvvxflIIi4Hd3bLQE9y/CpwqfSQam5JakI/mi3Pog==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "node_modules/eth-gas-reporter/node_modules/string-width": { + "node_modules/fast-uri": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "optional": true, + "peer": true + }, + "node_modules/fetch-cookie": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.11.0.tgz", + "integrity": "sha512-BQm7iZLFhMWFy5CZ/162sAGjBfdNWb7a8LEqqnzsHFhxT/X/SVj/z2t2nu3aJvjlbQkrAlTUApplPRjWyH4mhA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "tough-cookie": "^2.3.3 || ^3.0.1 || ^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/eth-gas-reporter/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "peer": true, "dependencies": { - "ansi-regex": "^4.1.0" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/eth-gas-reporter/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "node_modules/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/eth-gas-reporter/node_modules/supports-color": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", - "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" + "ms": "2.0.0" } }, - "node_modules/eth-gas-reporter/node_modules/uuid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz", - "integrity": "sha512-nWg9+Oa3qD2CQzHIP4qKUqwNfzKn8P0LtFhotaCTFchsV7ZfDhAybeip/HZVeMIpZi9JgY1E3nUlwaCmZT1sEg==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/eth-gas-reporter/node_modules/wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "node_modules/find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" + "array-back": "^3.0.1" }, "engines": { - "node": ">=6" + "node": ">=4.0.0" } }, - "node_modules/eth-gas-reporter/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "node_modules/eth-gas-reporter/node_modules/yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eth-gas-reporter/node_modules/yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "bin": { + "flat": "cli.js" } }, - "node_modules/eth-gas-reporter/node_modules/yargs-unparser": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", - "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", - "dev": true, - "dependencies": { - "flat": "^4.1.0", - "lodash": "^4.17.15", - "yargs": "^13.3.0" - }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "engines": { - "node": ">=6" + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/eth-lib": { - "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "dev": true, "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "nano-json-stream-parser": "^0.1.2", - "servify": "^0.1.12", - "ws": "^3.0.0", - "xhr-request-promise": "^0.1.2" + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eth-lib/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/eth-lib/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "node_modules/foreach": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", + "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", + "dev": true, + "peer": true }, - "node_modules/eth-lib/node_modules/ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", "dev": true, "dependencies": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/ethereum-bloom-filters": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.10.tgz", - "integrity": "sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==", + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true, - "dependencies": { - "js-sha3": "^0.8.0" + "engines": { + "node": "*" } }, - "node_modules/ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, "dependencies": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" } }, - "node_modules/ethereumjs-abi": { - "version": "0.6.8", - "resolved": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz", - "integrity": "sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==", + "node_modules/form-data-encoder": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.1.tgz", + "integrity": "sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg==", + "dev": true + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, - "dependencies": { - "bn.js": "^4.11.8", - "ethereumjs-util": "^6.0.0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/ethereumjs-abi/node_modules/@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">= 0.6" } }, - "node_modules/ethereumjs-abi/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - }, - "node_modules/ethereumjs-abi/node_modules/ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", + "node_modules/fs-extra": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", + "integrity": "sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==", "dev": true, "dependencies": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" } }, - "node_modules/ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", + "node_modules/fs-minipass": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", "dev": true, "dependencies": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - }, - "engines": { - "node": ">=10.0.0" + "minipass": "^2.6.0" } }, - "node_modules/ethers": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz", - "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==", + "node_modules/fs-minipass/node_modules/minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], "dependencies": { - "@ethersproject/abi": "5.7.0", - "@ethersproject/abstract-provider": "5.7.0", - "@ethersproject/abstract-signer": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/base64": "5.7.0", - "@ethersproject/basex": "5.7.0", - "@ethersproject/bignumber": "5.7.0", - "@ethersproject/bytes": "5.7.0", - "@ethersproject/constants": "5.7.0", - "@ethersproject/contracts": "5.7.0", - "@ethersproject/hash": "5.7.0", - "@ethersproject/hdnode": "5.7.0", - "@ethersproject/json-wallets": "5.7.0", - "@ethersproject/keccak256": "5.7.0", - "@ethersproject/logger": "5.7.0", - "@ethersproject/networks": "5.7.1", - "@ethersproject/pbkdf2": "5.7.0", - "@ethersproject/properties": "5.7.0", - "@ethersproject/providers": "5.7.2", - "@ethersproject/random": "5.7.0", - "@ethersproject/rlp": "5.7.0", - "@ethersproject/sha2": "5.7.0", - "@ethersproject/signing-key": "5.7.0", - "@ethersproject/solidity": "5.7.0", - "@ethersproject/strings": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@ethersproject/units": "5.7.0", - "@ethersproject/wallet": "5.7.0", - "@ethersproject/web": "5.7.1", - "@ethersproject/wordlists": "5.7.0" + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" } }, - "node_modules/ethjs-unit": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, - "dependencies": { - "bn.js": "4.11.6", - "number-to-bn": "1.7.0" - }, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6.5.0", - "npm": ">=3" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/ethjs-unit/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==", - "dev": true + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/ethjs-util": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, "dependencies": { - "is-hex-prefixed": "1.0.0", - "strip-hex-prefix": "1.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { - "node": ">=6.5.0", - "npm": ">=3" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } + "optional": true, + "peer": true }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/eventemitter3": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", - "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - "dev": true, - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.2", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/express/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "dev": true, - "dependencies": { - "type": "^2.7.2" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true, - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-base64-decode": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz", - "integrity": "sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==", - "dev": true - }, - "node_modules/fast-check": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-check/-/fast-check-3.1.1.tgz", - "integrity": "sha512-3vtXinVyuUKCKFKYcwXhGE6NtGWkqF8Yh3rvMZNzmwz8EPrgoc/v4pDdLHyLnCyCI5MZpZZkDEwFyXyEONOxpA==", - "dev": true, - "dependencies": { - "pure-rand": "^5.0.1" - }, - "engines": { - "node": ">=8.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fetch-cookie": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.11.0.tgz", - "integrity": "sha512-BQm7iZLFhMWFy5CZ/162sAGjBfdNWb7a8LEqqnzsHFhxT/X/SVj/z2t2nu3aJvjlbQkrAlTUApplPRjWyH4mhA==", + "node_modules/ganache": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/ganache/-/ganache-7.9.1.tgz", + "integrity": "sha512-Tqhd4J3cpiLeYTD6ek/zlchSB107IVPMIm4ypyg+xz1sdkeALUnYYZnmY4Bdjqj3i6QwtlZPCu7U4qKy7HlWTA==", + "bundleDependencies": [ + "@trufflesuite/bigint-buffer", + "keccak", + "leveldown", + "secp256k1" + ], "dev": true, - "optional": true, + "hasShrinkwrap": true, "peer": true, "dependencies": { - "tough-cookie": "^2.3.3 || ^3.0.1 || ^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "dev": true, - "dependencies": { - "array-back": "^3.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dev": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "dev": true, - "bin": { - "flat": "cli.js" - } - }, - "node_modules/fmix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/fmix/-/fmix-0.1.0.tgz", - "integrity": "sha512-Y6hyofImk9JdzU8k5INtTXX1cu8LDlePWDFU5sftm9H+zKCr5SGrVjdhkvsim646cw5zD0nADj8oHyXMZmCZ9w==", - "dev": true, - "dependencies": { - "imul": "^1.0.0" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/foreach": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", - "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", - "dev": true, - "peer": true - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/form-data-encoder": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.1.tgz", - "integrity": "sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg==", - "dev": true - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fp-ts": { - "version": "1.19.3", - "resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-1.19.3.tgz", - "integrity": "sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==", - "dev": true - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "dev": true, - "dependencies": { - "minipass": "^2.6.0" - } - }, - "node_modules/fs-readdir-recursive": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", - "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ganache": { - "version": "7.9.1", - "resolved": "https://registry.npmjs.org/ganache/-/ganache-7.9.1.tgz", - "integrity": "sha512-Tqhd4J3cpiLeYTD6ek/zlchSB107IVPMIm4ypyg+xz1sdkeALUnYYZnmY4Bdjqj3i6QwtlZPCu7U4qKy7HlWTA==", - "bundleDependencies": [ - "@trufflesuite/bigint-buffer", - "keccak", - "leveldown", - "secp256k1" - ], - "dev": true, - "hasShrinkwrap": true, - "peer": true, - "dependencies": { - "@trufflesuite/bigint-buffer": "1.1.10", - "@trufflesuite/uws-js-unofficial": "20.30.0-unofficial.0", - "@types/bn.js": "^5.1.0", - "@types/lru-cache": "5.1.1", - "@types/seedrandom": "3.0.1", - "abstract-level": "1.0.3", - "abstract-leveldown": "7.2.0", - "async-eventemitter": "0.2.4", - "emittery": "0.10.0", - "keccak": "3.0.2", - "leveldown": "6.1.0", - "secp256k1": "4.0.3" + "@trufflesuite/bigint-buffer": "1.1.10", + "@trufflesuite/uws-js-unofficial": "20.30.0-unofficial.0", + "@types/bn.js": "^5.1.0", + "@types/lru-cache": "5.1.1", + "@types/seedrandom": "3.0.1", + "abstract-level": "1.0.3", + "abstract-leveldown": "7.2.0", + "async-eventemitter": "0.2.4", + "emittery": "0.10.0", + "keccak": "3.0.2", + "leveldown": "6.1.0", + "secp256k1": "4.0.3" }, "bin": { "ganache": "dist/node/cli.js", "ganache-cli": "dist/node/cli.js" - }, - "optionalDependencies": { - "bufferutil": "4.0.5", - "utf-8-validate": "5.0.7" - } - }, - "node_modules/ganache/node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "extraneous": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/ganache/node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "extraneous": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/ganache/node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "extraneous": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/ganache/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "extraneous": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/ganache/node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "extraneous": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/ganache/node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "extraneous": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/ganache/node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "extraneous": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/ganache/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "extraneous": true, - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/ganache/node_modules/@microsoft/api-extractor": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.20.1.tgz", - "integrity": "sha512-T7cqcK+JpvHGOj7cD2ZCCWS7Xgru1uOqZwrV/FSUdyKVs5fopZcbBSuetwD/akst3O7Ypryg3UOLP54S/vnVmA==", - "extraneous": true, - "dependencies": { - "@microsoft/api-extractor-model": "7.16.0", - "@microsoft/tsdoc": "0.13.2", - "@microsoft/tsdoc-config": "~0.15.2", - "@rushstack/node-core-library": "3.45.1", - "@rushstack/rig-package": "0.3.8", - "@rushstack/ts-command-line": "4.10.7", - "colors": "~1.2.1", - "lodash": "~4.17.15", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "source-map": "~0.6.1", - "typescript": "~4.5.2" - }, - "bin": { - "api-extractor": "bin/api-extractor" - } - }, - "node_modules/ganache/node_modules/@microsoft/api-extractor-model": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.16.0.tgz", - "integrity": "sha512-0FOrbNIny8mzBrzQnSIkEjAXk0JMSnPmWYxt3ZDTPVg9S8xIPzB6lfgTg9+Mimu0RKCpGKBpd+v2WcR5vGzyUQ==", - "extraneous": true, - "dependencies": { - "@microsoft/tsdoc": "0.13.2", - "@microsoft/tsdoc-config": "~0.15.2", - "@rushstack/node-core-library": "3.45.1" - } - }, - "node_modules/ganache/node_modules/@microsoft/api-extractor/node_modules/typescript": { - "version": "4.5.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz", - "integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==", - "extraneous": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/ganache/node_modules/@microsoft/tsdoc": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", - "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@microsoft/tsdoc-config": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.15.2.tgz", - "integrity": "sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==", - "extraneous": true, - "dependencies": { - "@microsoft/tsdoc": "0.13.2", - "ajv": "~6.12.6", - "jju": "~1.4.0", - "resolve": "~1.19.0" - } - }, - "node_modules/ganache/node_modules/@microsoft/tsdoc-config/node_modules/resolve": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", - "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", - "extraneous": true, - "dependencies": { - "is-core-module": "^2.1.0", - "path-parse": "^1.0.6" - } - }, - "node_modules/ganache/node_modules/@rushstack/node-core-library": { - "version": "3.45.1", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.45.1.tgz", - "integrity": "sha512-BwdssTNe007DNjDBxJgInHg8ePytIPyT0La7ZZSQZF9+rSkT42AygXPGvbGsyFfEntjr4X37zZSJI7yGzL16cQ==", - "extraneous": true, - "dependencies": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "timsort": "~0.3.0", - "z-schema": "~5.0.2" - } - }, - "node_modules/ganache/node_modules/@rushstack/node-core-library/node_modules/@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@rushstack/rig-package": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.8.tgz", - "integrity": "sha512-MDWg1xovea99PWloSiYMjFcCLsrdjFtYt6aOyHNs5ojn5mxrzR6U9F83hvbQjTWnKPMvZtr0vcek+4n+OQOp3Q==", - "extraneous": true, - "dependencies": { - "resolve": "~1.17.0", - "strip-json-comments": "~3.1.1" - } - }, - "node_modules/ganache/node_modules/@rushstack/ts-command-line": { - "version": "4.10.7", - "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.10.7.tgz", - "integrity": "sha512-CjS+DfNXUSO5Ab2wD1GBGtUTnB02OglRWGqfaTcac9Jn45V5MeUOsq/wA8wEeS5Y/3TZ2P1k+IWdVDiuOFP9Og==", - "extraneous": true, - "dependencies": { - "@types/argparse": "1.0.38", - "argparse": "~1.0.9", - "colors": "~1.2.1", - "string-argv": "~0.3.1" - } - }, - "node_modules/ganache/node_modules/@trufflesuite/bigint-buffer": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/@trufflesuite/bigint-buffer/-/bigint-buffer-1.1.10.tgz", - "integrity": "sha512-pYIQC5EcMmID74t26GCC67946mgTJFiLXOT/BYozgrd4UEY2JHEGLhWi9cMiQCt5BSqFEvKkCHNnoj82SRjiEw==", - "dev": true, - "hasInstallScript": true, - "inBundle": true, - "license": "Apache-2.0", - "peer": true, - "dependencies": { - "node-gyp-build": "4.4.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/ganache/node_modules/@trufflesuite/bigint-buffer/node_modules/node-gyp-build": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", - "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial": { - "version": "20.30.0-unofficial.0", - "resolved": "https://registry.npmjs.org/@trufflesuite/uws-js-unofficial/-/uws-js-unofficial-20.30.0-unofficial.0.tgz", - "integrity": "sha512-r5X0aOQcuT6pLwTRLD+mPnAM/nlKtvIK4Z+My++A8tTOR0qTjNRx8UB8jzRj3D+p9PMAp5LnpCUUGmz7/TppwA==", - "dev": true, - "peer": true, - "dependencies": { - "ws": "8.13.0" - }, - "optionalDependencies": { - "bufferutil": "4.0.7", - "utf-8-validate": "6.0.3" - } - }, - "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial/node_modules/bufferutil": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz", - "integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "peer": true, - "dependencies": { - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=6.14.2" - } - }, - "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial/node_modules/utf-8-validate": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz", - "integrity": "sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "peer": true, - "dependencies": { - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=6.14.2" - } - }, - "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial/node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/ganache/node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@types/abstract-leveldown": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/abstract-leveldown/-/abstract-leveldown-7.2.0.tgz", - "integrity": "sha512-q5veSX6zjUy/DlDhR4Y4cU0k2Ar+DT2LUraP00T19WLmTO6Se1djepCCaqU6nQrwcJ5Hyo/CWqxTzrrFg8eqbQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@types/argparse": { - "version": "1.0.38", - "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", - "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@types/bn.js": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.0.tgz", - "integrity": "sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA==", - "dev": true, - "peer": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/ganache/node_modules/@types/eslint": { - "version": "8.4.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", - "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", - "extraneous": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/ganache/node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "extraneous": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/ganache/node_modules/@types/estree": { - "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@types/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==", - "dev": true, - "peer": true - }, - "node_modules/ganache/node_modules/@types/mocha": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-9.0.0.tgz", - "integrity": "sha512-scN0hAWyLVAvLR9AyW7HoFF5sJZglyBsbPuHO4fv7JRvfmPBMfp1ozWqOf/e4wwPNxezBZXRfWzMb6iFLgEVRA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@types/node": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.0.tgz", - "integrity": "sha512-eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw==", - "dev": true, - "peer": true - }, - "node_modules/ganache/node_modules/@types/seedrandom": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/seedrandom/-/seedrandom-3.0.1.tgz", - "integrity": "sha512-giB9gzDeiCeloIXDgzFBCgjj1k4WxcDrZtGl6h1IqmUPlxF+Nx8Ve+96QCyDZ/HseB/uvDsKbpib9hU5cU53pw==", - "dev": true, - "peer": true - }, - "node_modules/ganache/node_modules/@ungap/promise-all-settled": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", - "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", - "extraneous": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", - "extraneous": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/ganache/node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", - "extraneous": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/ganache/node_modules/@webpack-cli/configtest": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", - "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@webpack-cli/info": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", - "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", - "extraneous": true, - "dependencies": { - "envinfo": "^7.7.3" - } - }, - "node_modules/ganache/node_modules/@webpack-cli/serve": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", - "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/abstract-level": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", - "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", - "dev": true, - "peer": true, - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/ganache/node_modules/abstract-level/node_modules/level-supports": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", - "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/ganache/node_modules/abstract-leveldown": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-7.2.0.tgz", - "integrity": "sha512-DnhQwcFEaYsvYDnACLZhMmCWd3rkOeEvglpa4q5i/5Jlm3UIsWaxVzuXvDLFCSCWRO3yy2/+V/G7FusFgejnfQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.0.0", - "is-buffer": "^2.0.5", - "level-concat-iterator": "^3.0.0", - "level-supports": "^2.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", - "extraneous": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ganache/node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "extraneous": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ganache/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "extraneous": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "node_modules/ganache/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "extraneous": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ganache/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "extraneous": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "extraneous": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "extraneous": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/ganache/node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "extraneous": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/ganache/node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "extraneous": true, - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ganache/node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/assert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", - "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", - "extraneous": true, - "dependencies": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - }, - "node_modules/ganache/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "peer": true, - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/ganache/node_modules/async-eventemitter": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/async-eventemitter/-/async-eventemitter-0.2.4.tgz", - "integrity": "sha512-pd20BwL7Yt1zwDFy+8MX8F1+WCT8aQeKj0kQnTrH9WaeRETlRamVhD0JtRPmrV4GfOJ2F9CvdQkZeZhnh2TuHw==", - "dev": true, - "peer": true, - "dependencies": { - "async": "^2.4.0" - } - }, - "node_modules/ganache/node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "extraneous": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ganache/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/ganache/node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "extraneous": true, - "engines": { - "node": "*" - } - }, - "node_modules/ganache/node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "extraneous": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "extraneous": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/ganache/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "extraneous": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/ganache/node_modules/browser-stdout": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "extraneous": true, - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/ganache/node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "extraneous": true, - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/ganache/node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "extraneous": true, - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/ganache/node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "extraneous": true, - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "node_modules/ganache/node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "extraneous": true, - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/ganache/node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "extraneous": true, - "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/ganache/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/ganache/node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/bufferutil": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.5.tgz", - "integrity": "sha512-HTm14iMQKK2FjFLRTM5lAVcyaUzOnqbPtesFIvREgXpJHdQm8bWS+GkQgIkfaBYRHuCnea7w8UVNfwiAQhlr9A==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "peer": true, - "dependencies": { - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=6.14.2" - } - }, - "node_modules/ganache/node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "extraneous": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "node_modules/ganache/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "extraneous": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/caniuse-lite": { - "version": "1.0.30001435", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001435.tgz", - "integrity": "sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/catering": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", - "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ganache/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "extraneous": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "extraneous": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/chokidar": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", - "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", - "extraneous": true, - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/ganache/node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "extraneous": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ganache/node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "extraneous": true, - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/ganache/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "extraneous": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/ganache/node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "extraneous": true, - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/ganache/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "extraneous": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ganache/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/colors": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", - "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==", - "extraneous": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/ganache/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "extraneous": true - }, - "node_modules/ganache/node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "extraneous": true, - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/ganache/node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "extraneous": true, - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/ganache/node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "extraneous": true, - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/ganache/node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/cross-env": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", - "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", - "extraneous": true, - "dependencies": { - "cross-spawn": "^7.0.1" - }, - "bin": { - "cross-env": "src/bin/cross-env.js", - "cross-env-shell": "src/bin/cross-env-shell.js" - }, - "engines": { - "node": ">=10.14", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/ganache/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "extraneous": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/ganache/node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "extraneous": true, - "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" - } - }, - "node_modules/ganache/node_modules/debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "extraneous": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ganache/node_modules/debug/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "extraneous": true - }, - "node_modules/ganache/node_modules/decamelize": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", - "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", - "extraneous": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "extraneous": true, - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ganache/node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "extraneous": true, - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/ganache/node_modules/diff": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", - "extraneous": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/ganache/node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "extraneous": true, - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/ganache/node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/ganache/node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/ganache/node_modules/emittery": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.0.tgz", - "integrity": "sha512-AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/ganache/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "extraneous": true - }, - "node_modules/ganache/node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "extraneous": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/ganache/node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "extraneous": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/ganache/node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", - "extraneous": true, - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ganache/node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/es6-object-assign": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", - "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "extraneous": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ganache/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "extraneous": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "extraneous": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/ganache/node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "extraneous": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/ganache/node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "extraneous": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/ganache/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "extraneous": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/ganache/node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "extraneous": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/ganache/node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "extraneous": true, - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/ganache/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "extraneous": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "extraneous": true - }, - "node_modules/ganache/node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "extraneous": true, - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/ganache/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "extraneous": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "extraneous": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "extraneous": true, - "bin": { - "flat": "cli.js" - } - }, - "node_modules/ganache/node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "extraneous": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/ganache/node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "extraneous": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/ganache/node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "extraneous": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/ganache/node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "extraneous": true - }, - "node_modules/ganache/node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "extraneous": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/ganache/node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "extraneous": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "node_modules/ganache/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "extraneous": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "extraneous": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/ganache/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "extraneous": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/ganache/node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "extraneous": true - }, - "node_modules/ganache/node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "extraneous": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - } - }, - "node_modules/ganache/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/growl": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", - "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "extraneous": true, - "engines": { - "node": ">=4.x" - } - }, - "node_modules/ganache/node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "extraneous": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/ganache/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "extraneous": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "extraneous": true, - "dependencies": { - "get-intrinsic": "^1.1.1" - } - }, - "node_modules/ganache/node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "extraneous": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ganache/node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "extraneous": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + }, + "optionalDependencies": { + "bufferutil": "4.0.5", + "utf-8-validate": "5.0.7" } }, - "node_modules/ganache/node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "node_modules/ganache/node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "extraneous": true, "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "@jridgewell/trace-mapping": "0.3.9" }, "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/ganache/node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "node_modules/ganache/node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "extraneous": true, "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" } }, - "node_modules/ganache/node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/ganache/node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "extraneous": true, - "bin": { - "he": "bin/he" - } - }, - "node_modules/ganache/node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "engines": { + "node": ">=10.0.0" } }, - "node_modules/ganache/node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", - "extraneous": true - }, - "node_modules/ganache/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/ganache/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "extraneous": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, "engines": { - "node": ">=10.17.0" + "node": ">=6.0.0" } }, - "node_modules/ganache/node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "BSD-3-Clause", - "peer": true - }, - "node_modules/ganache/node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "node_modules/ganache/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "extraneous": true, "engines": { - "node": ">=8" + "node": ">=6.0.0" } }, - "node_modules/ganache/node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "node_modules/ganache/node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "extraneous": true, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, "engines": { - "node": ">=8" + "node": ">=6.0.0" } }, - "node_modules/ganache/node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/ganache/node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", "extraneous": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/ganache/node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "node_modules/ganache/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "extraneous": true }, - "node_modules/ganache/node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "node_modules/ganache/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "extraneous": true, - "engines": { - "node": ">= 0.10" + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, - "node_modules/ganache/node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "node_modules/ganache/node_modules/@microsoft/api-extractor": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.20.1.tgz", + "integrity": "sha512-T7cqcK+JpvHGOj7cD2ZCCWS7Xgru1uOqZwrV/FSUdyKVs5fopZcbBSuetwD/akst3O7Ypryg3UOLP54S/vnVmA==", "extraneous": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@microsoft/api-extractor-model": "7.16.0", + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "~0.15.2", + "@rushstack/node-core-library": "3.45.1", + "@rushstack/rig-package": "0.3.8", + "@rushstack/ts-command-line": "4.10.7", + "colors": "~1.2.1", + "lodash": "~4.17.15", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "source-map": "~0.6.1", + "typescript": "~4.5.2" }, - "engines": { - "node": ">= 0.4" + "bin": { + "api-extractor": "bin/api-extractor" } }, - "node_modules/ganache/node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/ganache/node_modules/@microsoft/api-extractor-model": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.16.0.tgz", + "integrity": "sha512-0FOrbNIny8mzBrzQnSIkEjAXk0JMSnPmWYxt3ZDTPVg9S8xIPzB6lfgTg9+Mimu0RKCpGKBpd+v2WcR5vGzyUQ==", "extraneous": true, "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ganache/node_modules/is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=4" + "@microsoft/tsdoc": "0.13.2", + "@microsoft/tsdoc-config": "~0.15.2", + "@rushstack/node-core-library": "3.45.1" } }, - "node_modules/ganache/node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/ganache/node_modules/@microsoft/api-extractor/node_modules/typescript": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz", + "integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==", "extraneous": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, "engines": { - "node": ">= 0.4" + "node": ">=4.2.0" } }, - "node_modules/ganache/node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "node_modules/ganache/node_modules/@microsoft/tsdoc": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", + "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@microsoft/tsdoc-config": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.15.2.tgz", + "integrity": "sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==", "extraneous": true, "dependencies": { - "has": "^1.0.3" + "@microsoft/tsdoc": "0.13.2", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" } }, - "node_modules/ganache/node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/ganache/node_modules/@microsoft/tsdoc-config/node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", "extraneous": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" } }, - "node_modules/ganache/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/ganache/node_modules/@rushstack/node-core-library": { + "version": "3.45.1", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.45.1.tgz", + "integrity": "sha512-BwdssTNe007DNjDBxJgInHg8ePytIPyT0La7ZZSQZF9+rSkT42AygXPGvbGsyFfEntjr4X37zZSJI7yGzL16cQ==", "extraneous": true, - "engines": { - "node": ">=8" + "dependencies": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~5.0.2" } }, - "node_modules/ganache/node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "node_modules/ganache/node_modules/@rushstack/node-core-library/node_modules/@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@rushstack/rig-package": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.3.8.tgz", + "integrity": "sha512-MDWg1xovea99PWloSiYMjFcCLsrdjFtYt6aOyHNs5ojn5mxrzR6U9F83hvbQjTWnKPMvZtr0vcek+4n+OQOp3Q==", "extraneous": true, "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" } }, - "node_modules/ganache/node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/ganache/node_modules/@rushstack/ts-command-line": { + "version": "4.10.7", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.10.7.tgz", + "integrity": "sha512-CjS+DfNXUSO5Ab2wD1GBGtUTnB02OglRWGqfaTcac9Jn45V5MeUOsq/wA8wEeS5Y/3TZ2P1k+IWdVDiuOFP9Og==", "extraneous": true, "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "colors": "~1.2.1", + "string-argv": "~0.3.1" } }, - "node_modules/ganache/node_modules/is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", - "extraneous": true, + "node_modules/ganache/node_modules/@trufflesuite/bigint-buffer": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/@trufflesuite/bigint-buffer/-/bigint-buffer-1.1.10.tgz", + "integrity": "sha512-pYIQC5EcMmID74t26GCC67946mgTJFiLXOT/BYozgrd4UEY2JHEGLhWi9cMiQCt5BSqFEvKkCHNnoj82SRjiEw==", + "dev": true, + "hasInstallScript": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "node-gyp-build": "4.4.0" }, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ganache/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "extraneous": true, - "engines": { - "node": ">=0.12.0" + "node": ">= 14.0.0" } }, - "node_modules/ganache/node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "extraneous": true, - "engines": { - "node": ">=8" + "node_modules/ganache/node_modules/@trufflesuite/bigint-buffer/node_modules/node-gyp-build": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz", + "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/ganache/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "extraneous": true, + "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial": { + "version": "20.30.0-unofficial.0", + "resolved": "https://registry.npmjs.org/@trufflesuite/uws-js-unofficial/-/uws-js-unofficial-20.30.0-unofficial.0.tgz", + "integrity": "sha512-r5X0aOQcuT6pLwTRLD+mPnAM/nlKtvIK4Z+My++A8tTOR0qTjNRx8UB8jzRj3D+p9PMAp5LnpCUUGmz7/TppwA==", + "dev": true, + "peer": true, "dependencies": { - "isobject": "^3.0.1" + "ws": "8.13.0" }, - "engines": { - "node": ">=0.10.0" + "optionalDependencies": { + "bufferutil": "4.0.7", + "utf-8-validate": "6.0.3" } }, - "node_modules/ganache/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "extraneous": true, + "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial/node_modules/bufferutil": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz", + "integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, + "dependencies": { + "node-gyp-build": "^4.3.0" + }, "engines": { - "node": ">=8" + "node": ">=6.14.2" } }, - "node_modules/ganache/node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "extraneous": true, + "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial/node_modules/utf-8-validate": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz", + "integrity": "sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "node-gyp-build": "^4.3.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6.14.2" } }, - "node_modules/ganache/node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "extraneous": true, + "node_modules/ganache/node_modules/@trufflesuite/uws-js-unofficial/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "peer": true, "engines": { - "node": ">=10" + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/ganache/node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "node_modules/ganache/node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@tsconfig/node16": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", + "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@types/abstract-leveldown": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/abstract-leveldown/-/abstract-leveldown-7.2.0.tgz", + "integrity": "sha512-q5veSX6zjUy/DlDhR4Y4cU0k2Ar+DT2LUraP00T19WLmTO6Se1djepCCaqU6nQrwcJ5Hyo/CWqxTzrrFg8eqbQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@types/argparse": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", + "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", "extraneous": true }, - "node_modules/ganache/node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "node_modules/ganache/node_modules/@types/bn.js": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.0.tgz", + "integrity": "sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA==", + "dev": true, + "peer": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/ganache/node_modules/@types/eslint": { + "version": "8.4.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", "extraneous": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/ganache/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/ganache/node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "extraneous": true, "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" + "@types/eslint": "*", + "@types/estree": "*" } }, - "node_modules/ganache/node_modules/jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "node_modules/ganache/node_modules/@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", "extraneous": true }, - "node_modules/ganache/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/ganache/node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@types/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==", + "dev": true, + "peer": true + }, + "node_modules/ganache/node_modules/@types/mocha": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-9.0.0.tgz", + "integrity": "sha512-scN0hAWyLVAvLR9AyW7HoFF5sJZglyBsbPuHO4fv7JRvfmPBMfp1ozWqOf/e4wwPNxezBZXRfWzMb6iFLgEVRA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@types/node": { + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.0.tgz", + "integrity": "sha512-eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw==", + "dev": true, + "peer": true + }, + "node_modules/ganache/node_modules/@types/seedrandom": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/seedrandom/-/seedrandom-3.0.1.tgz", + "integrity": "sha512-giB9gzDeiCeloIXDgzFBCgjj1k4WxcDrZtGl6h1IqmUPlxF+Nx8Ve+96QCyDZ/HseB/uvDsKbpib9hU5cU53pw==", + "dev": true, + "peer": true + }, + "node_modules/ganache/node_modules/@ungap/promise-all-settled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", + "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "extraneous": true, "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, - "node_modules/ganache/node_modules/js-yaml/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/ganache/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", "extraneous": true }, - "node_modules/ganache/node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "node_modules/ganache/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", "extraneous": true }, - "node_modules/ganache/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/ganache/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", "extraneous": true }, - "node_modules/ganache/node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "node_modules/ganache/node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "extraneous": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/ganache/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "node_modules/ganache/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "extraneous": true, "dependencies": { - "graceful-fs": "^4.1.6" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" } }, - "node_modules/ganache/node_modules/keccak": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz", - "integrity": "sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ==", - "dev": true, - "hasInstallScript": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "node_modules/ganache/node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "extraneous": true, "dependencies": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10.0.0" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/ganache/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/ganache/node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "extraneous": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ganache/node_modules/level-concat-iterator": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-3.1.0.tgz", - "integrity": "sha512-BWRCMHBxbIqPxJ8vHOvKUsaO0v1sLYZtjN3K2iZJsRBYtp+ONsY6Jfi6hy9K3+zolgQRryhIn2NRZjZnWJ9NmQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "catering": "^2.1.0" - }, - "engines": { - "node": ">=10" + "@xtuc/long": "4.2.2" } }, - "node_modules/ganache/node_modules/level-js": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/level-js/-/level-js-6.1.0.tgz", - "integrity": "sha512-i7mPtkZm68aewfv0FnIUWvFUFfoyzIvVKnUmuQGrelEkP72vSPTaA1SGneWWoCV5KZJG4wlzbJLp1WxVNGuc6A==", + "node_modules/ganache/node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "extraneous": true, "dependencies": { - "abstract-leveldown": "^7.2.0", - "buffer": "^6.0.3", - "inherits": "^2.0.3", - "ltgt": "^2.1.2", - "run-parallel-limit": "^1.1.0" - } - }, - "node_modules/ganache/node_modules/level-supports": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-2.1.0.tgz", - "integrity": "sha512-E486g1NCjW5cF78KGPrMDRBYzPuueMZ6VBXHT6gC7A8UYWGiM14fGgp+s/L1oFfDWSPV/+SFkYCmZ0SiESkRKA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=10" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" } }, - "node_modules/ganache/node_modules/level-transcoder": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", - "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", - "dev": true, - "peer": true, - "dependencies": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - }, - "engines": { - "node": ">=12" + "node_modules/ganache/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "extraneous": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, - "node_modules/ganache/node_modules/leveldown": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/leveldown/-/leveldown-6.1.0.tgz", - "integrity": "sha512-8C7oJDT44JXxh04aSSsfcMI8YiaGRhOFI9/pMEL7nWJLVsWajDPTRxsSHTM2WcTVY5nXM+SuRHzPPi0GbnDX+w==", - "dev": true, - "hasInstallScript": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "node_modules/ganache/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "extraneous": true, "dependencies": { - "abstract-leveldown": "^7.2.0", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=10.12.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" } }, - "node_modules/ganache/node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "node_modules/ganache/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "extraneous": true, - "engines": { - "node": ">=6.11.5" + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, - "node_modules/ganache/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/ganache/node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", "extraneous": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/ganache/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/ganache/node_modules/@webpack-cli/configtest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", + "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/@webpack-cli/info": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", + "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", "extraneous": true, "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" + "envinfo": "^7.7.3" } }, - "node_modules/ganache/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true, - "peer": true + "node_modules/ganache/node_modules/@webpack-cli/serve": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", + "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "extraneous": true }, - "node_modules/ganache/node_modules/lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "node_modules/ganache/node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "extraneous": true }, - "node_modules/ganache/node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "node_modules/ganache/node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "extraneous": true }, - "node_modules/ganache/node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "extraneous": true, + "node_modules/ganache/node_modules/abstract-level": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", + "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", + "dev": true, + "peer": true, "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" }, "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/ganache/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "extraneous": true, + "node_modules/ganache/node_modules/abstract-level/node_modules/level-supports": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", + "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/ganache/node_modules/abstract-leveldown": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-7.2.0.tgz", + "integrity": "sha512-DnhQwcFEaYsvYDnACLZhMmCWd3rkOeEvglpa4q5i/5Jlm3UIsWaxVzuXvDLFCSCWRO3yy2/+V/G7FusFgejnfQ==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "buffer": "^6.0.3", + "catering": "^2.0.0", + "is-buffer": "^2.0.5", + "level-concat-iterator": "^3.0.0", + "level-supports": "^2.0.1", + "queue-microtask": "^1.2.3" }, "engines": { "node": ">=10" } }, - "node_modules/ganache/node_modules/ltgt": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", - "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==", - "extraneous": true + "node_modules/ganache/node_modules/acorn": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "extraneous": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } }, - "node_modules/ganache/node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "node_modules/ganache/node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", "extraneous": true }, - "node_modules/ganache/node_modules/mcl-wasm": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mcl-wasm/-/mcl-wasm-0.9.0.tgz", - "integrity": "sha512-rvU7L/68ZrDk4dpPZteiEqvK9nB/1XbbHmuLK6qIvc4xuuJb/iv1p5X3KEyq6AYatLnc+zbdSlLXTlKgTnCRZQ==", + "node_modules/ganache/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "extraneous": true, "engines": { - "node": ">=8.9.0" + "node": ">=0.4.0" } }, - "node_modules/ganache/node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "node_modules/ganache/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "extraneous": true, "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "node_modules/ganache/node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "node_modules/ganache/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "extraneous": true }, - "node_modules/ganache/node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/ganache/node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", "extraneous": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, "engines": { - "node": ">=8.6" - } - }, - "node_modules/ganache/node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "extraneous": true, - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "node": ">=6" } }, - "node_modules/ganache/node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "extraneous": true - }, - "node_modules/ganache/node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/ganache/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "extraneous": true, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/ganache/node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/ganache/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "extraneous": true, "dependencies": { - "mime-db": "1.52.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/ganache/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/ganache/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "extraneous": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/ganache/node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "node_modules/ganache/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "extraneous": true }, - "node_modules/ganache/node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true + "node_modules/ganache/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "extraneous": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } }, - "node_modules/ganache/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/ganache/node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", "extraneous": true, "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/ganache/node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "node_modules/ganache/node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "extraneous": true }, - "node_modules/ganache/node_modules/mocha": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-9.1.3.tgz", - "integrity": "sha512-Xcpl9FqXOAYqI3j79pEtHBBnQgVXIhpULjGQa7DVb0Po+VzmSIK9kanAiWLHoRR/dbZ2qpdPshuXr8l1VaHCzw==", + "node_modules/ganache/node_modules/assert": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", + "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", "extraneous": true, "dependencies": { - "@ungap/promise-all-settled": "1.1.2", - "ansi-colors": "4.1.1", - "browser-stdout": "1.3.1", - "chokidar": "3.5.2", - "debug": "4.3.2", - "diff": "5.0.0", - "escape-string-regexp": "4.0.0", - "find-up": "5.0.0", - "glob": "7.1.7", - "growl": "1.10.5", - "he": "1.2.0", - "js-yaml": "4.1.0", - "log-symbols": "4.1.0", - "minimatch": "3.0.4", - "ms": "2.1.3", - "nanoid": "3.1.25", - "serialize-javascript": "6.0.0", - "strip-json-comments": "3.1.1", - "supports-color": "8.1.1", - "which": "2.0.2", - "workerpool": "6.1.5", - "yargs": "16.2.0", - "yargs-parser": "20.2.4", - "yargs-unparser": "2.0.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha" - }, - "engines": { - "node": ">= 12.0.0" + "es6-object-assign": "^1.1.0", + "is-nan": "^1.2.1", + "object-is": "^1.0.1", + "util": "^0.12.0" } }, - "node_modules/ganache/node_modules/module-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", - "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", + "node_modules/ganache/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, "peer": true, - "engines": { - "node": ">=10" + "dependencies": { + "lodash": "^4.17.14" } }, - "node_modules/ganache/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "extraneous": true + "node_modules/ganache/node_modules/async-eventemitter": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/async-eventemitter/-/async-eventemitter-0.2.4.tgz", + "integrity": "sha512-pd20BwL7Yt1zwDFy+8MX8F1+WCT8aQeKj0kQnTrH9WaeRETlRamVhD0JtRPmrV4GfOJ2F9CvdQkZeZhnh2TuHw==", + "dev": true, + "peer": true, + "dependencies": { + "async": "^2.4.0" + } }, - "node_modules/ganache/node_modules/nanoid": { - "version": "3.1.25", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz", - "integrity": "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==", + "node_modules/ganache/node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "extraneous": true, - "bin": { - "nanoid": "bin/nanoid.cjs" - }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/napi-macros": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz", - "integrity": "sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/ganache/node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "node_modules/ganache/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "extraneous": true }, - "node_modules/ganache/node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==", + "node_modules/ganache/node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "inBundle": true, "license": "MIT", "peer": true }, - "node_modules/ganache/node_modules/node-gyp-build": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", - "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "node_modules/ganache/node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "extraneous": true, + "engines": { + "node": "*" } }, - "node_modules/ganache/node_modules/node-loader": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-1.0.2.tgz", - "integrity": "sha512-myxAxpyMR7knjA4Uzwf3gjxaMtxSWj2vpm9o6AYWWxQ1S3XMBNeG2vzYcp/5eW03cBGfgSxyP+wntP8qhBJNhQ==", + "node_modules/ganache/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "extraneous": true, - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, "engines": { - "node": ">= 10.13.0" + "node": ">=8" } }, - "node_modules/ganache/node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "node_modules/ganache/node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", "extraneous": true }, - "node_modules/ganache/node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/ganache/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "extraneous": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/ganache/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/ganache/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "extraneous": true, "dependencies": { - "path-key": "^3.0.0" + "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, - "node_modules/ganache/node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "node_modules/ganache/node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/ganache/node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "extraneous": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, - "node_modules/ganache/node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/ganache/node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", "extraneous": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" } }, - "node_modules/ganache/node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/ganache/node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "extraneous": true, "dependencies": { - "wrappy": "1" + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/ganache/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/ganache/node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", "extraneous": true, "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" } }, - "node_modules/ganache/node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", - "extraneous": true - }, - "node_modules/ganache/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/ganache/node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", "extraneous": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" } }, - "node_modules/ganache/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/ganache/node_modules/browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "extraneous": true, "dependencies": { - "p-limit": "^3.0.2" + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">=10" - } - }, - "node_modules/ganache/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "extraneous": true, - "engines": { - "node": ">=6" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/ganache/node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "extraneous": true, + "node_modules/ganache/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/ganache/node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "node_modules/ganache/node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "extraneous": true }, - "node_modules/ganache/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "extraneous": true, + "node_modules/ganache/node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/bufferutil": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.5.tgz", + "integrity": "sha512-HTm14iMQKK2FjFLRTM5lAVcyaUzOnqbPtesFIvREgXpJHdQm8bWS+GkQgIkfaBYRHuCnea7w8UVNfwiAQhlr9A==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, + "dependencies": { + "node-gyp-build": "^4.3.0" + }, "engines": { - "node": ">=8" + "node": ">=6.14.2" } }, - "node_modules/ganache/node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/ganache/node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "extraneous": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" } }, - "node_modules/ganache/node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/ganache/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "extraneous": true, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/ganache/node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "node_modules/ganache/node_modules/caniuse-lite": { + "version": "1.0.30001435", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001435.tgz", + "integrity": "sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA==", "extraneous": true }, - "node_modules/ganache/node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "node_modules/ganache/node_modules/catering": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", + "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ganache/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "extraneous": true, "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.12" + "node": ">=10" } }, - "node_modules/ganache/node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "extraneous": true - }, - "node_modules/ganache/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/ganache/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "extraneous": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=8.6" + "node": ">=8" } }, - "node_modules/ganache/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/ganache/node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", "extraneous": true, "dependencies": { - "find-up": "^4.0.0" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">=8" + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/ganache/node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/ganache/node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "extraneous": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=6.0" } }, - "node_modules/ganache/node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/ganache/node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", "extraneous": true, "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, - "node_modules/ganache/node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/ganache/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "extraneous": true, "dependencies": { - "p-try": "^2.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/ganache/node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "extraneous": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, "engines": { "node": ">=6" } }, - "node_modules/ganache/node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/ganache/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "extraneous": true, "dependencies": { - "p-limit": "^2.2.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=8" + "node": ">=7.0.0" } }, - "node_modules/ganache/node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "node_modules/ganache/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/colors": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", + "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==", "extraneous": true, "engines": { - "node": ">= 0.6.0" + "node": ">=0.1.90" } }, - "node_modules/ganache/node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "node_modules/ganache/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", "extraneous": true, "dependencies": { "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" + "elliptic": "^6.5.3" } }, - "node_modules/ganache/node_modules/public-encrypt/node_modules/bn.js": { + "node_modules/ganache/node_modules/create-ecdh/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "extraneous": true }, - "node_modules/ganache/node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "extraneous": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ganache/node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/ganache/node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/ganache/node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "extraneous": true, "dependencies": { - "safe-buffer": "^5.1.0" + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" } }, - "node_modules/ganache/node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "node_modules/ganache/node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "extraneous": true, "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, - "node_modules/ganache/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "node_modules/ganache/node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "extraneous": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" }, "engines": { - "node": ">= 6" + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" } }, - "node_modules/ganache/node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/ganache/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "extraneous": true, "dependencies": { - "picomatch": "^2.2.1" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=8.10.0" + "node": ">= 8" } }, - "node_modules/ganache/node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "node_modules/ganache/node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", "extraneous": true, "dependencies": { - "resolve": "^1.1.6" + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" }, "engines": { - "node": ">= 0.10" + "node": "*" } }, - "node_modules/ganache/node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/ganache/node_modules/debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "extraneous": true, + "dependencies": { + "ms": "2.1.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0" } }, - "node_modules/ganache/node_modules/resolve": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "node_modules/ganache/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "extraneous": true + }, + "node_modules/ganache/node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", "extraneous": true, - "dependencies": { - "path-parse": "^1.0.6" + "engines": { + "node": ">=10" } }, - "node_modules/ganache/node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "node_modules/ganache/node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", "extraneous": true, "dependencies": { - "resolve-from": "^5.0.0" + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/resolve-from": { + "node_modules/ganache/node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "extraneous": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/ganache/node_modules/diff": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", "extraneous": true, "engines": { - "node": ">=8" + "node": ">=0.3.1" } }, - "node_modules/ganache/node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "node_modules/ganache/node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "extraneous": true, "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" } }, - "node_modules/ganache/node_modules/run-parallel-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz", - "integrity": "sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==", - "extraneous": true, + "node_modules/ganache/node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "queue-microtask": "^1.2.2" + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/ganache/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "node_modules/ganache/node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "inBundle": true, "license": "MIT", "peer": true }, - "node_modules/ganache/node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "node_modules/ganache/node_modules/emittery": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.0.tgz", + "integrity": "sha512-AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/ganache/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "extraneous": true }, - "node_modules/ganache/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "node_modules/ganache/node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "extraneous": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/ganache/node_modules/enhanced-resolve": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", "extraneous": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=10.13.0" } }, - "node_modules/ganache/node_modules/scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", + "node_modules/ganache/node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "extraneous": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ganache/node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/es6-object-assign": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", + "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", "extraneous": true }, - "node_modules/ganache/node_modules/secp256k1": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz", - "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==", - "dev": true, - "hasInstallScript": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "node_modules/ganache/node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "extraneous": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ganache/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "extraneous": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ganache/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "extraneous": true, "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=10.0.0" + "node": ">=8.0.0" } }, - "node_modules/ganache/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/ganache/node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "extraneous": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "estraverse": "^5.2.0" }, "engines": { - "node": ">=10" + "node": ">=4.0" } }, - "node_modules/ganache/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "node_modules/ganache/node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "extraneous": true, - "dependencies": { - "randombytes": "^2.1.0" + "engines": { + "node": ">=4.0" } }, - "node_modules/ganache/node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "extraneous": true + "node_modules/ganache/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "extraneous": true, + "engines": { + "node": ">=4.0" + } }, - "node_modules/ganache/node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "node_modules/ganache/node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "extraneous": true, - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" + "engines": { + "node": ">=0.8.x" } }, - "node_modules/ganache/node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "node_modules/ganache/node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "extraneous": true, "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, - "node_modules/ganache/node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/ganache/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "extraneous": true, "dependencies": { - "shebang-regex": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/ganache/node_modules/shebang-loader": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/shebang-loader/-/shebang-loader-0.0.1.tgz", - "integrity": "sha512-nQvhUHvKyzGK5aqPxHfHB5nlAN2EZ2U61S2G0YrxAuCRU5iGhFcxxRiaAdb18UoRS1zVMhRz4gdQ1xFEg3AOyA==", + "node_modules/ganache/node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "extraneous": true }, - "node_modules/ganache/node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "node_modules/ganache/node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "extraneous": true, "engines": { - "node": ">=8" + "node": ">= 4.9.1" } }, - "node_modules/ganache/node_modules/shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "node_modules/ganache/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "extraneous": true, "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/ganache/node_modules/shx": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.3.tgz", - "integrity": "sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==", + "node_modules/ganache/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "extraneous": true, "dependencies": { - "minimist": "^1.2.3", - "shelljs": "^0.8.4" - }, - "bin": { - "shx": "lib/cli.js" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/ganache/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "extraneous": true + "node_modules/ganache/node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "extraneous": true, + "bin": { + "flat": "cli.js" + } }, - "node_modules/ganache/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/ganache/node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "extraneous": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "is-callable": "^1.1.3" } }, - "node_modules/ganache/node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "node_modules/ganache/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", "extraneous": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" } }, - "node_modules/ganache/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "node_modules/ganache/node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "extraneous": true }, - "node_modules/ganache/node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "node_modules/ganache/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "extraneous": true, - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/ganache/node_modules/stream-http": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", - "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", - "extraneous": true, - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "xtend": "^4.0.2" + "node_modules/ganache/node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "extraneous": true + }, + "node_modules/ganache/node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "extraneous": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/ganache/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "node_modules/ganache/node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "extraneous": true, "dependencies": { - "safe-buffer": "~5.2.0" + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" } }, - "node_modules/ganache/node_modules/string-argv": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", - "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "node_modules/ganache/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "extraneous": true, "engines": { - "node": ">=0.6.19" + "node": ">=10" } }, - "node_modules/ganache/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/ganache/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", "extraneous": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/ganache/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/ganache/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "extraneous": true, "dependencies": { - "ansi-regex": "^5.0.1" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/ganache/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "node_modules/ganache/node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "extraneous": true, - "engines": { - "node": ">=6" + "dependencies": { + "get-intrinsic": "^1.1.3" } }, - "node_modules/ganache/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "node_modules/ganache/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", "extraneous": true, "engines": { - "node": ">=8" + "node": ">=4.x" } }, - "node_modules/ganache/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/ganache/node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "extraneous": true, "dependencies": { - "has-flag": "^4.0.0" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=10" + "node": ">= 0.4.0" } }, - "node_modules/ganache/node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "node_modules/ganache/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "extraneous": true, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/ganache/node_modules/terser": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz", - "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==", + "node_modules/ganache/node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "extraneous": true, "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" + "get-intrinsic": "^1.1.1" } }, - "node_modules/ganache/node_modules/terser-webpack-plugin": { - "version": "5.2.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz", - "integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==", + "node_modules/ganache/node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "extraneous": true, - "dependencies": { - "jest-worker": "^27.0.6", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" - }, "engines": { - "node": ">= 10.13.0" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", - "extraneous": true - }, - "node_modules/ganache/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "node_modules/ganache/node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "extraneous": true, "dependencies": { - "is-number": "^7.0.0" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=8.0" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/ts-loader": { - "version": "9.3.1", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.3.1.tgz", - "integrity": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==", + "node_modules/ganache/node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", "extraneous": true, "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=4" } }, - "node_modules/ganache/node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "extraneous": true, + "node_modules/ganache/node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" } }, - "node_modules/ganache/node_modules/ts-node/node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "node_modules/ganache/node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "extraneous": true, - "engines": { - "node": ">=0.3.1" + "bin": { + "he": "bin/he" + } + }, + "node_modules/ganache/node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/ganache/node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "node_modules/ganache/node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "extraneous": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, "engines": { - "node": ">=14.17" + "node": ">=10.17.0" } }, - "node_modules/ganache/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/ganache/node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/ganache/node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "extraneous": true, "engines": { - "node": ">= 4.0.0" + "node": ">=8" } }, - "node_modules/ganache/node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "node_modules/ganache/node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "extraneous": true, "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" }, "bin": { - "browserslist-lint": "cli.js" - } - }, - "node_modules/ganache/node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "extraneous": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/ganache/node_modules/utf-8-validate": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.7.tgz", - "integrity": "sha512-vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "peer": true, - "dependencies": { - "node-gyp-build": "^4.3.0" + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": ">=6.14.2" + "node": ">=8" } }, - "node_modules/ganache/node_modules/util": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz", - "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==", + "node_modules/ganache/node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "extraneous": true, "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/ganache/node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "node_modules/ganache/node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true, "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true }, - "node_modules/ganache/node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "extraneous": true - }, - "node_modules/ganache/node_modules/validator": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", - "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==", + "node_modules/ganache/node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "extraneous": true, "engines": { "node": ">= 0.10" } }, - "node_modules/ganache/node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "node_modules/ganache/node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "extraneous": true, "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/webpack": { - "version": "5.65.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.65.0.tgz", - "integrity": "sha512-Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw==", + "node_modules/ganache/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "extraneous": true, "dependencies": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.3", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" - }, - "bin": { - "webpack": "bin/webpack.js" + "binary-extensions": "^2.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/ganache/node_modules/webpack-cli": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz", - "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==", + "node_modules/ganache/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ganache/node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "extraneous": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ganache/node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "extraneous": true, "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^1.1.0", - "@webpack-cli/info": "^1.4.0", - "@webpack-cli/serve": "^1.6.0", - "colorette": "^2.0.14", - "commander": "^7.0.0", - "execa": "^5.0.0", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^2.2.0", - "rechoir": "^0.7.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, + "has": "^1.0.3" + } + }, + "node_modules/ganache/node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "extraneous": true, "engines": { - "node": ">=10.13.0" + "node": ">=0.10.0" } }, - "node_modules/ganache/node_modules/webpack-cli/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "node_modules/ganache/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "extraneous": true, "engines": { - "node": ">= 10" + "node": ">=8" } }, - "node_modules/ganache/node_modules/webpack-cli/node_modules/interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "node_modules/ganache/node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "extraneous": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">= 0.10" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/webpack-cli/node_modules/rechoir": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", - "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "node_modules/ganache/node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "extraneous": true, "dependencies": { - "resolve": "^1.9.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/ganache/node_modules/webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "node_modules/ganache/node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "extraneous": true, "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=10.0.0" + "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/ganache/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "extraneous": true, "engines": { - "node": ">=10.13.0" + "node": ">=0.12.0" } }, - "node_modules/ganache/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/ganache/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "extraneous": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ganache/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "extraneous": true, "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "isobject": "^3.0.1" }, "engines": { - "node": ">= 8" + "node": ">=0.10.0" } }, - "node_modules/ganache/node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "node_modules/ganache/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "extraneous": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ganache/node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", "extraneous": true, "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" } }, - "node_modules/ganache/node_modules/wildcard": { + "node_modules/ganache/node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "extraneous": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ganache/node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", - "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "extraneous": true }, - "node_modules/ganache/node_modules/workerpool": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.1.5.tgz", - "integrity": "sha512-XdKkCK0Zqc6w3iTxLckiuJ81tiD/o5rBE/m+nXpRCB+/Sq4DqkfXZ/x0jW02DG1tGsfUGXbTJyZDP+eu67haSw==", - "extraneous": true + "node_modules/ganache/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "extraneous": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/ganache/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/ganache/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "extraneous": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=10" + "node": ">= 10.13.0" } }, - "node_modules/ganache/node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "node_modules/ganache/node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", "extraneous": true }, - "node_modules/ganache/node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "node_modules/ganache/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "extraneous": true, - "engines": { - "node": ">=0.4" + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/ganache/node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "node_modules/ganache/node_modules/js-yaml/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "extraneous": true + }, + "node_modules/ganache/node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "extraneous": true, + "bin": { + "json5": "lib/cli.js" + }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/ganache/node_modules/yallist": { + "node_modules/ganache/node_modules/jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "extraneous": true - }, - "node_modules/ganache/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "extraneous": true, "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "graceful-fs": "^4.1.6" + } + }, + "node_modules/ganache/node_modules/keccak": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz", + "integrity": "sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ==", + "dev": true, + "hasInstallScript": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">=10" + "node": ">=10.0.0" } }, - "node_modules/ganache/node_modules/yargs-parser": { - "version": "20.2.4", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", - "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "node_modules/ganache/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "extraneous": true, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/ganache/node_modules/yargs-unparser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", - "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", - "extraneous": true, + "node_modules/ganache/node_modules/level-concat-iterator": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-3.1.0.tgz", + "integrity": "sha512-BWRCMHBxbIqPxJ8vHOvKUsaO0v1sLYZtjN3K2iZJsRBYtp+ONsY6Jfi6hy9K3+zolgQRryhIn2NRZjZnWJ9NmQ==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "camelcase": "^6.0.0", - "decamelize": "^4.0.0", - "flat": "^5.0.2", - "is-plain-obj": "^2.1.0" + "catering": "^2.1.0" }, "engines": { "node": ">=10" } }, - "node_modules/ganache/node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "node_modules/ganache/node_modules/level-js": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-6.1.0.tgz", + "integrity": "sha512-i7mPtkZm68aewfv0FnIUWvFUFfoyzIvVKnUmuQGrelEkP72vSPTaA1SGneWWoCV5KZJG4wlzbJLp1WxVNGuc6A==", "extraneous": true, - "engines": { - "node": ">=6" + "dependencies": { + "abstract-leveldown": "^7.2.0", + "buffer": "^6.0.3", + "inherits": "^2.0.3", + "ltgt": "^2.1.2", + "run-parallel-limit": "^1.1.0" } }, - "node_modules/ganache/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "extraneous": true, + "node_modules/ganache/node_modules/level-supports": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-2.1.0.tgz", + "integrity": "sha512-E486g1NCjW5cF78KGPrMDRBYzPuueMZ6VBXHT6gC7A8UYWGiM14fGgp+s/L1oFfDWSPV/+SFkYCmZ0SiESkRKA==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { "node": ">=10" } }, - "node_modules/ganache/node_modules/z-schema": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", - "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", - "extraneous": true, + "node_modules/ganache/node_modules/level-transcoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", + "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", + "dev": true, + "peer": true, "dependencies": { - "commander": "^2.20.3", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - }, - "bin": { - "z-schema": "bin/z-schema" + "buffer": "^6.0.3", + "module-error": "^1.0.1" }, "engines": { - "node": ">=8.0.0" + "node": ">=12" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/ganache/node_modules/leveldown": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/leveldown/-/leveldown-6.1.0.tgz", + "integrity": "sha512-8C7oJDT44JXxh04aSSsfcMI8YiaGRhOFI9/pMEL7nWJLVsWajDPTRxsSHTM2WcTVY5nXM+SuRHzPPi0GbnDX+w==", "dev": true, + "hasInstallScript": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "abstract-leveldown": "^7.2.0", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=10.12.0" } }, - "node_modules/get-func-name": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", - "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", - "dev": true, + "node_modules/ganache/node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "extraneous": true, "engines": { - "node": "*" + "node": ">=6.11.5" } }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, + "node_modules/ganache/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "extraneous": true, "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.9.0" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "dev": true, + "node_modules/ganache/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "extraneous": true, + "dependencies": { + "p-locate": "^5.0.0" + }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/ganache/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true, + "peer": true + }, + "node_modules/ganache/node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "extraneous": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, + "node_modules/ganache/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" + "node_modules/ganache/node_modules/ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/mcl-wasm": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mcl-wasm/-/mcl-wasm-0.9.0.tgz", + "integrity": "sha512-rvU7L/68ZrDk4dpPZteiEqvK9nB/1XbbHmuLK6qIvc4xuuJb/iv1p5X3KEyq6AYatLnc+zbdSlLXTlKgTnCRZQ==", + "extraneous": true, + "engines": { + "node": ">=8.9.0" } }, - "node_modules/ghost-testrpc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/ghost-testrpc/-/ghost-testrpc-0.0.2.tgz", - "integrity": "sha512-i08dAEgJ2g8z5buJIrCTduwPIhih3DP+hOCTyyryikfV8T0bNvHnGXO67i0DD1H4GBDETTclPy9njZbfluQYrQ==", - "dev": true, + "node_modules/ganache/node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "extraneous": true, "dependencies": { - "chalk": "^2.4.2", - "node-emoji": "^1.10.0" - }, - "bin": { - "testrpc-sc": "index.js" + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "dev": true, + "node_modules/ganache/node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "extraneous": true + }, + "node_modules/ganache/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "extraneous": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": "*" + "node": ">=8.6" + } + }, + "node_modules/ganache/node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "extraneous": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/ganache/node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "extraneous": true, + "engines": { + "node": ">= 0.6" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, + "node_modules/ganache/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "extraneous": true, "dependencies": { - "is-glob": "^4.0.1" + "mime-db": "1.52.0" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "dev": true, - "dependencies": { - "min-document": "^2.19.0", - "process": "^0.11.10" + "node": ">= 0.6" } }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "dependencies": { - "global-prefix": "^3.0.0" - }, + "node_modules/ganache/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "extraneous": true, "engines": { "node": ">=6" } }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "node_modules/ganache/node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true, - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/ganache/node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/ganache/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "extraneous": true, "dependencies": { - "define-properties": "^1.1.3" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "*" } }, - "node_modules/globby": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", - "dev": true, + "node_modules/ganache/node_modules/minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "extraneous": true + }, + "node_modules/ganache/node_modules/mocha": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-9.1.3.tgz", + "integrity": "sha512-Xcpl9FqXOAYqI3j79pEtHBBnQgVXIhpULjGQa7DVb0Po+VzmSIK9kanAiWLHoRR/dbZ2qpdPshuXr8l1VaHCzw==", + "extraneous": true, "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" + "@ungap/promise-all-settled": "1.1.2", + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.2", + "debug": "4.3.2", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.1.7", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "3.0.4", + "ms": "2.1.3", + "nanoid": "3.1.25", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "which": "2.0.2", + "workerpool": "6.1.5", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" }, "engines": { - "node": ">=8" + "node": ">= 12.0.0" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/ganache/node_modules/module-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", + "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peer": true, + "engines": { + "node": ">=10" } }, - "node_modules/got": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.1.0.tgz", - "integrity": "sha512-hBv2ty9QN2RdbJJMK3hesmSkFTjVIHyIDDbssCKnSmq62edGgImJWD10Eb1k77TiV1bxloxqcFAVK8+9pkhOig==", - "dev": true, - "dependencies": { - "@sindresorhus/is": "^4.6.0", - "@szmarczak/http-timer": "^5.0.1", - "@types/cacheable-request": "^6.0.2", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^6.0.4", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "form-data-encoder": "1.7.1", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^2.0.0" + "node_modules/ganache/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/nanoid": { + "version": "3.1.25", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz", + "integrity": "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==", + "extraneous": true, + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "node_modules/ganache/node_modules/napi-macros": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz", + "integrity": "sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/graphql": { - "version": "15.8.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", - "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "node_modules/ganache/node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/node-addon-api": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", + "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==", "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">= 10.x" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/graphql-tag": { - "version": "2.12.6", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", - "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "node_modules/ganache/node_modules/node-gyp-build": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==", "dev": true, - "optional": true, + "inBundle": true, + "license": "MIT", "peer": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/ganache/node_modules/node-loader": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-1.0.2.tgz", + "integrity": "sha512-myxAxpyMR7knjA4Uzwf3gjxaMtxSWj2vpm9o6AYWWxQ1S3XMBNeG2vzYcp/5eW03cBGfgSxyP+wntP8qhBJNhQ==", + "extraneous": true, "dependencies": { - "tslib": "^2.1.0" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + "node": ">= 10.13.0" } }, - "node_modules/graphql-tag/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true, - "peer": true + "node_modules/ganache/node_modules/node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "extraneous": true }, - "node_modules/growl": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", - "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "dev": true, + "node_modules/ganache/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "extraneous": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ganache/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "extraneous": true, + "dependencies": { + "path-key": "^3.0.0" + }, "engines": { - "node": ">=4.x" + "node": ">=8" } }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, + "node_modules/ganache/node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "extraneous": true, "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" + "node": ">= 0.4" } }, - "node_modules/handlebars/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, + "node_modules/ganache/node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "extraneous": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "dev": true, - "engines": { - "node": ">=4" + "node_modules/ganache/node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "extraneous": true, + "dependencies": { + "wrappy": "1" } }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dev": true, + "node_modules/ganache/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "extraneous": true, "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" + "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" } }, - "node_modules/hardhat": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/hardhat/-/hardhat-2.14.0.tgz", - "integrity": "sha512-73jsInY4zZahMSVFurSK+5TNCJTXMv+vemvGia0Ac34Mm19fYp6vEPVGF3sucbumszsYxiTT2TbS8Ii2dsDSoQ==", - "dev": true, - "dependencies": { - "@ethersproject/abi": "^5.1.2", - "@metamask/eth-sig-util": "^4.0.0", - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-blockchain": "7.0.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-evm": "2.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-statemanager": "2.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "@nomicfoundation/ethereumjs-vm": "7.0.1", - "@nomicfoundation/solidity-analyzer": "^0.1.0", - "@sentry/node": "^5.18.1", - "@types/bn.js": "^5.1.0", - "@types/lru-cache": "^5.1.0", - "abort-controller": "^3.0.0", - "adm-zip": "^0.4.16", - "aggregate-error": "^3.0.0", - "ansi-escapes": "^4.3.0", - "chalk": "^2.4.2", - "chokidar": "^3.4.0", - "ci-info": "^2.0.0", - "debug": "^4.1.1", - "enquirer": "^2.3.0", - "env-paths": "^2.2.0", - "ethereum-cryptography": "^1.0.3", - "ethereumjs-abi": "^0.6.8", - "find-up": "^2.1.0", - "fp-ts": "1.19.3", - "fs-extra": "^7.0.1", - "glob": "7.2.0", - "immutable": "^4.0.0-rc.12", - "io-ts": "1.10.4", - "keccak": "^3.0.2", - "lodash": "^4.17.11", - "mnemonist": "^0.38.0", - "mocha": "^10.0.0", - "p-map": "^4.0.0", - "qs": "^6.7.0", - "raw-body": "^2.4.1", - "resolve": "1.17.0", - "semver": "^6.3.0", - "solc": "0.7.3", - "source-map-support": "^0.5.13", - "stacktrace-parser": "^0.1.10", - "tsort": "0.0.1", - "undici": "^5.14.0", - "uuid": "^8.3.2", - "ws": "^7.4.6" - }, - "bin": { - "hardhat": "internal/cli/bootstrap.js" + "node_modules/ganache/node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "extraneous": true + }, + "node_modules/ganache/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "extraneous": true, + "dependencies": { + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "ts-node": "*", - "typescript": "*" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - }, - "typescript": { - "optional": true - } + "node": ">=10" } }, - "node_modules/hardhat-deploy": { - "version": "0.11.34", - "resolved": "https://registry.npmjs.org/hardhat-deploy/-/hardhat-deploy-0.11.34.tgz", - "integrity": "sha512-N6xcwD8LSMV/IyfEr8TfR2YRbOh9Q4QvitR9MKZRTXQmgQiiMGjX+2efMjKgNMxwCVlmpfnE1tyDxOJOOUseLQ==", - "dev": true, + "node_modules/ganache/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "extraneous": true, "dependencies": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/contracts": "^5.7.0", - "@ethersproject/providers": "^5.7.2", - "@ethersproject/solidity": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wallet": "^5.7.0", - "@types/qs": "^6.9.7", - "axios": "^0.21.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.2", - "debug": "^4.3.2", - "enquirer": "^2.3.6", - "ethers": "^5.5.3", - "form-data": "^4.0.0", - "fs-extra": "^10.0.0", - "match-all": "^1.2.6", - "murmur-128": "^0.2.1", - "qs": "^6.9.4", - "zksync-web3": "^0.14.3" + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" } }, - "node_modules/hardhat-deploy/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, + "node_modules/ganache/node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "extraneous": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ganache/node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "extraneous": true, "dependencies": { - "color-convert": "^2.0.1" - }, + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/ganache/node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "extraneous": true + }, + "node_modules/ganache/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "extraneous": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/hardhat-deploy/node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.14.0" + "node_modules/ganache/node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "extraneous": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hardhat-deploy/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/ganache/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "extraneous": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/hardhat-deploy/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, + "node_modules/ganache/node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "extraneous": true, "dependencies": { - "color-name": "~1.1.4" + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.12" } }, - "node_modules/hardhat-deploy/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/ganache/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "extraneous": true }, - "node_modules/hardhat-deploy/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, + "node_modules/ganache/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "extraneous": true, "engines": { - "node": ">=12" + "node": ">=8.6" } }, - "node_modules/hardhat-deploy/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, + "node_modules/ganache/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "extraneous": true, + "dependencies": { + "find-up": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/hardhat-deploy/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, + "node_modules/ganache/node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "extraneous": true, "dependencies": { - "universalify": "^2.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">=8" } }, - "node_modules/hardhat-deploy/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, + "node_modules/ganache/node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "extraneous": true, "dependencies": { - "has-flag": "^4.0.0" + "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, - "node_modules/hardhat-deploy/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, + "node_modules/ganache/node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "extraneous": true, + "dependencies": { + "p-try": "^2.0.0" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=6" } }, - "node_modules/hardhat-gas-reporter": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/hardhat-gas-reporter/-/hardhat-gas-reporter-1.0.9.tgz", - "integrity": "sha512-INN26G3EW43adGKBNzYWOlI3+rlLnasXTwW79YNnUhXPDa+yHESgt639dJEs37gCjhkbNKcRRJnomXEuMFBXJg==", - "dev": true, + "node_modules/ganache/node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "extraneous": true, "dependencies": { - "array-uniq": "1.0.3", - "eth-gas-reporter": "^0.2.25", - "sha1": "^1.1.1" + "p-limit": "^2.2.0" }, - "peerDependencies": { - "hardhat": "^2.0.2" + "engines": { + "node": ">=8" } }, - "node_modules/hardhat/node_modules/ethereum-cryptography": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.2.0.tgz", - "integrity": "sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==", - "dev": true, - "dependencies": { - "@noble/hashes": "1.2.0", - "@noble/secp256k1": "1.7.1", - "@scure/bip32": "1.1.5", - "@scure/bip39": "1.1.1" + "node_modules/ganache/node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "extraneous": true, + "engines": { + "node": ">= 0.6.0" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/ganache/node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "extraneous": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, + "node_modules/ganache/node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "extraneous": true, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/ganache/node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/ganache/node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "extraneous": true, "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "safe-buffer": "^5.1.0" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/ganache/node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "extraneous": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/ganache/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "engines": { - "node": ">= 0.4" + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 6" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, + "node_modules/ganache/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "extraneous": true, "dependencies": { - "has-symbols": "^1.0.3" + "picomatch": "^2.2.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.10.0" } }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dev": true, + "node_modules/ganache/node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "extraneous": true, "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "resolve": "^1.1.6" }, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "node_modules/ganache/node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "extraneous": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ganache/node_modules/resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "extraneous": true, "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "path-parse": "^1.0.6" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, + "node_modules/ganache/node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "extraneous": true, "dependencies": { - "function-bind": "^1.1.2" + "resolve-from": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true, - "bin": { - "he": "bin/he" + "node_modules/ganache/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "extraneous": true, + "engines": { + "node": ">=8" } }, - "node_modules/header-case": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", - "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", - "dev": true, + "node_modules/ganache/node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "extraneous": true, "dependencies": { - "no-case": "^2.2.0", - "upper-case": "^1.1.3" - } - }, - "node_modules/heap": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz", - "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==", - "dev": true - }, - "node_modules/highlight.js": { - "version": "10.7.3", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", - "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", - "dev": true, - "engines": { - "node": "*" + "hash-base": "^3.0.0", + "inherits": "^2.0.1" } }, - "node_modules/highlightjs-solidity": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/highlightjs-solidity/-/highlightjs-solidity-2.0.6.tgz", - "integrity": "sha512-DySXWfQghjm2l6a/flF+cteroJqD4gI8GSdL4PtvxZSsAHie8m3yVe2JFoRg03ROKT6hp2Lc/BxXkqerNmtQYg==", - "dev": true - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "node_modules/ganache/node_modules/run-parallel-limit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz", + "integrity": "sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==", + "extraneous": true, "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "queue-microtask": "^1.2.2" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "node_modules/ganache/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } ], - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/http-basic": { - "version": "8.1.3", - "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-8.1.3.tgz", - "integrity": "sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==", - "dev": true, + "node_modules/ganache/node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "extraneous": true, "dependencies": { - "caseless": "^0.12.0", - "concat-stream": "^1.6.2", - "http-response-object": "^3.0.1", - "parse-cache-control": "^1.0.1" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=6.0.0" + "node": ">= 10.13.0" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true + "node_modules/ganache/node_modules/scrypt-js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", + "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", + "extraneous": true }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/ganache/node_modules/secp256k1": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz", + "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==", "dev": true, + "hasInstallScript": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "elliptic": "^6.5.4", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" }, "engines": { - "node": ">= 0.8" + "node": ">=10.0.0" } }, - "node_modules/http-https": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==", - "dev": true + "node_modules/ganache/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "extraneous": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/http-response-object": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", - "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", - "dev": true, + "node_modules/ganache/node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "extraneous": true, "dependencies": { - "@types/node": "^10.0.3" + "randombytes": "^2.1.0" } }, - "node_modules/http-response-object/node_modules/@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", - "dev": true + "node_modules/ganache/node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "extraneous": true }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dev": true, + "node_modules/ganache/node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "extraneous": true, "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "bin": { + "sha.js": "bin.js" } }, - "node_modules/http2-wrapper": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", - "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", - "dev": true, + "node_modules/ganache/node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "extraneous": true, "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" + "kind-of": "^6.0.2" }, "engines": { - "node": ">=10.19.0" + "node": ">=8" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, + "node_modules/ganache/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "extraneous": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, + "node_modules/ganache/node_modules/shebang-loader": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/shebang-loader/-/shebang-loader-0.0.1.tgz", + "integrity": "sha512-nQvhUHvKyzGK5aqPxHfHB5nlAN2EZ2U61S2G0YrxAuCRU5iGhFcxxRiaAdb18UoRS1zVMhRz4gdQ1xFEg3AOyA==", + "extraneous": true + }, + "node_modules/ganache/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "extraneous": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/idna-uts46-hx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", - "dev": true, + "node_modules/ganache/node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "extraneous": true, "dependencies": { - "punycode": "2.1.0" + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" }, "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/idna-uts46-hx/node_modules/punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==", - "dev": true, - "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, + "node_modules/ganache/node_modules/shx": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.3.tgz", + "integrity": "sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==", + "extraneous": true, + "dependencies": { + "minimist": "^1.2.3", + "shelljs": "^0.8.4" + }, + "bin": { + "shx": "lib/cli.js" + }, "engines": { - "node": ">= 4" + "node": ">=6" } }, - "node_modules/immediate": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz", - "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "dev": true + "node_modules/ganache/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "extraneous": true }, - "node_modules/imul": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/imul/-/imul-1.0.1.tgz", - "integrity": "sha512-WFAgfwPLAjU66EKt6vRdTlKj4nAgIDQzh29JonLa4Bqtl6D8JrIMvWjCnx7xEjVNmP3U0fM5o8ZObk7d0f62bA==", - "dev": true, + "node_modules/ganache/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "extraneous": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, + "node_modules/ganache/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "extraneous": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/injectpromise": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/injectpromise/-/injectpromise-1.0.0.tgz", - "integrity": "sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==" + "node_modules/ganache/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "extraneous": true }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dev": true, + "node_modules/ganache/node_modules/stream-browserify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", + "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "extraneous": true, "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "engines": { - "node": ">= 0.10" + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" } }, - "node_modules/invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node_modules/ganache/node_modules/stream-http": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", + "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", + "extraneous": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "xtend": "^4.0.2" } }, - "node_modules/io-ts": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/io-ts/-/io-ts-1.10.4.tgz", - "integrity": "sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==", + "node_modules/ganache/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "fp-ts": "^1.0.0" + "safe-buffer": "~5.2.0" } }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, + "node_modules/ganache/node_modules/string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "extraneous": true, "engines": { - "node": ">= 0.10" + "node": ">=0.6.19" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, + "node_modules/ganache/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dev": true, + "node_modules/ganache/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/ganache/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "extraneous": true, + "engines": { + "node": ">=6" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, + "node_modules/ganache/node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "extraneous": true, "engines": { "node": ">=8" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, + "node_modules/ganache/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/ganache/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "extraneous": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ganache/node_modules/terser": { + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz", + "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==", + "extraneous": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" + "node_modules/ganache/node_modules/terser-webpack-plugin": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz", + "integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==", + "extraneous": true, + "dependencies": { + "jest-worker": "^27.0.6", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 10.13.0" } }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "dev": true, + "node_modules/ganache/node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", + "extraneous": true + }, + "node_modules/ganache/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "extraneous": true, "dependencies": { - "is-typed-array": "^1.1.13" + "is-number": "^7.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.0" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, + "node_modules/ganache/node_modules/ts-loader": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.3.1.tgz", + "integrity": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==", + "extraneous": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" }, "engines": { - "node": ">= 0.4" + "node": ">=12.0.0" + } + }, + "node_modules/ganache/node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "extraneous": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, + "node_modules/ganache/node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "extraneous": true, "engines": { - "node": ">=0.10.0" + "node": ">=0.3.1" } }, - "node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "dev": true, + "node_modules/ganache/node_modules/typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "extraneous": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, "engines": { - "node": ">=4" + "node": ">=14.17" } }, - "node_modules/is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==", - "dev": true + "node_modules/ganache/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "extraneous": true, + "engines": { + "node": ">= 4.0.0" + } }, - "node_modules/is-generator-function": { + "node_modules/ganache/node_modules/update-browserslist-db": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "extraneous": true, "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "browserslist-lint": "cli.js" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/ganache/node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "extraneous": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/ganache/node_modules/utf-8-validate": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.7.tgz", + "integrity": "sha512-vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q==", "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, "dependencies": { - "is-extglob": "^2.1.1" + "node-gyp-build": "^4.3.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.14.2" } }, - "node_modules/is-hex-prefixed": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==", + "node_modules/ganache/node_modules/util": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz", + "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==", + "extraneous": true, + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "safe-buffer": "^5.1.2", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/ganache/node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/ganache/node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "extraneous": true + }, + "node_modules/ganache/node_modules/validator": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", + "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==", + "extraneous": true, "engines": { - "node": ">=6.5.0", - "npm": ">=3" + "node": ">= 0.10" } }, - "node_modules/is-lower-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", - "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", - "dev": true, + "node_modules/ganache/node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "extraneous": true, "dependencies": { - "lower-case": "^1.1.0" + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, - "engines": { - "node": ">= 0.4" + "node_modules/ganache/node_modules/webpack": { + "version": "5.65.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.65.0.tgz", + "integrity": "sha512-Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw==", + "extraneous": true, + "dependencies": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.2" + }, + "bin": { + "webpack": "bin/webpack.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, "engines": { - "node": ">=0.12.0" + "node": ">=10.13.0" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, + "node_modules/ganache/node_modules/webpack-cli": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz", + "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==", + "extraneous": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.0", + "@webpack-cli/info": "^1.4.0", + "@webpack-cli/serve": "^1.6.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" }, - "engines": { - "node": ">= 0.4" + "bin": { + "webpack-cli": "bin/cli.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/ganache/node_modules/webpack-cli/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "extraneous": true, "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true, + "node_modules/ganache/node_modules/webpack-cli/node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "extraneous": true, "engines": { - "node": ">=8" + "node": ">= 0.10" } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, + "node_modules/ganache/node_modules/webpack-cli/node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "resolve": "^1.9.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.10" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, + "node_modules/ganache/node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.7" + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10.0.0" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "node_modules/ganache/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "extraneous": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10.13.0" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, + "node_modules/ganache/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "extraneous": true, "dependencies": { - "has-symbols": "^1.0.2" + "isexe": "^2.0.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "node-which": "bin/node-which" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 8" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, + "node_modules/ganache/node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "extraneous": true, "dependencies": { - "which-typed-array": "^1.1.14" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true + "node_modules/ganache/node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "extraneous": true }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, + "node_modules/ganache/node_modules/workerpool": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.1.5.tgz", + "integrity": "sha512-XdKkCK0Zqc6w3iTxLckiuJ81tiD/o5rBE/m+nXpRCB+/Sq4DqkfXZ/x0jW02DG1tGsfUGXbTJyZDP+eu67haSw==", + "extraneous": true + }, + "node_modules/ganache/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "extraneous": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-upper-case": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", - "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", - "dev": true, - "dependencies": { - "upper-case": "^1.1.0" + "node_modules/ganache/node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "extraneous": true + }, + "node_modules/ganache/node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "extraneous": true, + "engines": { + "node": ">=0.4" } }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true + "node_modules/ganache/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "extraneous": true, + "engines": { + "node": ">=10" + } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, + "node_modules/ganache/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "extraneous": true + }, + "node_modules/ganache/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "extraneous": true, "dependencies": { - "call-bind": "^1.0.2" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true + "node_modules/ganache/node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "extraneous": true, + "engines": { + "node": ">=10" + } }, - "node_modules/isexe": { + "node_modules/ganache/node_modules/yargs-unparser": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/isomorphic-unfetch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", - "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", - "dev": true, + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "extraneous": true, "dependencies": { - "node-fetch": "^2.6.1", - "unfetch": "^4.2.0" + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/isomorphic-ws": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", - "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", - "dev": true, - "optional": true, - "peer": true, - "peerDependencies": { - "ws": "*" + "node_modules/ganache/node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "extraneous": true, + "engines": { + "node": ">=6" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, - "node_modules/js-cookie": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", - "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==", - "dev": true - }, - "node_modules/js-sdsl": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", - "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" + "node_modules/ganache/node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "extraneous": true, + "engines": { + "node": ">=10" } }, - "node_modules/js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, - "peer": true - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, + "node_modules/ganache/node_modules/z-schema": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.4.tgz", + "integrity": "sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==", + "extraneous": true, "dependencies": { - "argparse": "^2.0.1" + "commander": "^2.20.3", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" }, "bin": { - "js-yaml": "bin/js-yaml.js" + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-pointer": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", - "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "peer": true, - "dependencies": { - "foreach": "^2.0.4" + "engines": { + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-schema-typed": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz", - "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/json-stable-stringify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", - "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", - "dev": true, - "peer": true, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dependencies": { - "call-bind": "^1.0.5", - "isarray": "^2.0.5", - "jsonify": "^0.0.1", - "object-keys": "^1.1.1" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -14005,959 +11547,900 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/json-stable-stringify/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true, - "peer": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", - "dev": true, - "peer": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/jsonschema": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.1.tgz", - "integrity": "sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": "*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { - "node": ">=0.6.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/keccak": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz", - "integrity": "sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==", + "node_modules/get-tsconfig": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", + "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", "dev": true, - "hasInstallScript": true, "dependencies": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0", - "readable-stream": "^3.6.0" + "resolve-pkg-maps": "^1.0.0" }, - "engines": { - "node": ">=10.0.0" + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "dev": true, "dependencies": { - "json-buffer": "3.0.1" + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, + "peer": true, + "dependencies": { + "is-glob": "^4.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.9" + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" } }, - "node_modules/lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "dependencies": { - "invert-kv": "^1.0.0" + "define-properties": "^1.1.3" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/level": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/level/-/level-8.0.0.tgz", - "integrity": "sha512-ypf0jjAk2BWI33yzEaaotpq7fkOPALKAgDBxggO6Q9HGX2MRXn0wbP1Jn/tJv1gtL867+YOjOB49WaUF3UoJNQ==", - "dev": true, - "dependencies": { - "browser-level": "^1.0.1", - "classic-level": "^1.2.0" - }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "engines": { - "node": ">=12" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/level" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/level-codec": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/level-codec/-/level-codec-9.0.2.tgz", - "integrity": "sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==", + "node_modules/got": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-12.1.0.tgz", + "integrity": "sha512-hBv2ty9QN2RdbJJMK3hesmSkFTjVIHyIDDbssCKnSmq62edGgImJWD10Eb1k77TiV1bxloxqcFAVK8+9pkhOig==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "buffer": "^5.6.0" + "@sindresorhus/is": "^4.6.0", + "@szmarczak/http-timer": "^5.0.1", + "@types/cacheable-request": "^6.0.2", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^6.0.4", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "form-data-encoder": "1.7.1", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/level-codec/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphql": { + "version": "15.10.1", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.10.1.tgz", + "integrity": "sha512-BL/Xd/T9baO6NFzoMpiMD7YUZ62R6viR5tp/MULVEnbYJXZA//kRNW7J0j1w/wXArgL0sCxhDfK5dczSKn3+cg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "optional": true, "peer": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "engines": { + "node": ">= 10.x" } }, - "node_modules/level-concat-iterator": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-3.1.0.tgz", - "integrity": "sha512-BWRCMHBxbIqPxJ8vHOvKUsaO0v1sLYZtjN3K2iZJsRBYtp+ONsY6Jfi6hy9K3+zolgQRryhIn2NRZjZnWJ9NmQ==", + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", "dev": true, "optional": true, "peer": true, "dependencies": { - "catering": "^2.1.0" + "tslib": "^2.1.0" }, "engines": { "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, - "node_modules/level-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/level-errors/-/level-errors-2.0.1.tgz", - "integrity": "sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==", + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "errno": "~0.1.1" - }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/level-iterator-stream": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz", - "integrity": "sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==", + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.4.0", - "xtend": "^4.0.2" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" }, "engines": { "node": ">=6" } }, - "node_modules/level-js": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/level-js/-/level-js-5.0.2.tgz", - "integrity": "sha512-SnBIDo2pdO5VXh02ZmtAyPP6/+6YTJg2ibLtl9C34pWvmtMEmRTWpra+qO/hifkUtBTOtfx6S9vLDjBsBK4gRg==", + "node_modules/hardhat": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/hardhat/-/hardhat-3.1.6.tgz", + "integrity": "sha512-72Wn3DaEByNtpsqI2oIZnsyxvaB2p2CC6mffQ18K6NgAgh6QzdpdMYLiIFtYBRDRY7U6BMxq7fj1ryMQxQvTBA==", + "dev": true, + "dependencies": { + "@nomicfoundation/edr": "0.12.0-next.22", + "@nomicfoundation/hardhat-errors": "^3.0.6", + "@nomicfoundation/hardhat-utils": "^3.0.6", + "@nomicfoundation/hardhat-vendored": "^3.0.1", + "@nomicfoundation/hardhat-zod-utils": "^3.0.1", + "@nomicfoundation/solidity-analyzer": "^0.1.1", + "@sentry/core": "^9.4.0", + "adm-zip": "^0.4.16", + "chalk": "^5.3.0", + "chokidar": "^4.0.3", + "debug": "^4.3.2", + "enquirer": "^2.3.0", + "ethereum-cryptography": "^2.2.1", + "micro-eth-signer": "^0.14.0", + "p-map": "^7.0.2", + "resolve.exports": "^2.0.3", + "semver": "^7.6.3", + "tsx": "^4.19.3", + "ws": "^8.18.0", + "zod": "^3.23.8" + }, + "bin": { + "hardhat": "dist/src/cli.js" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "abstract-leveldown": "~6.2.3", - "buffer": "^5.5.0", - "inherits": "^2.0.3", - "ltgt": "^2.1.2" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/level-js/node_modules/abstract-leveldown": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz", - "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "buffer": "^5.5.0", - "immediate": "^3.2.3", - "level-concat-iterator": "~2.0.0", - "level-supports": "~1.0.0", - "xtend": "~4.0.0" - }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/level-js/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true, - "peer": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/level-js/node_modules/level-concat-iterator": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz", - "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==", + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, - "optional": true, - "peer": true, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/level-js/node_modules/level-supports": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz", - "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dependencies": { - "xtend": "^4.0.2" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/level-packager": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/level-packager/-/level-packager-5.1.1.tgz", - "integrity": "sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==", + "node_modules/hash-base": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.2.tgz", + "integrity": "sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "encoding-down": "^6.3.0", - "levelup": "^4.3.2" + "inherits": "^2.0.4", + "readable-stream": "^2.3.8", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.1" }, "engines": { - "node": ">=6" + "node": ">= 0.8" } }, - "node_modules/level-supports": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", - "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", - "dev": true, - "engines": { - "node": ">=12" - } + "node_modules/hash-base/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true }, - "node_modules/level-transcoder": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", - "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", + "node_modules/hash-base/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, "dependencies": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - }, - "engines": { - "node": ">=12" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/level-transcoder/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "node_modules/hash-base/node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/hash-base/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "safe-buffer": "~5.1.0" } }, - "node_modules/level-write-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/level-write-stream/-/level-write-stream-1.0.0.tgz", - "integrity": "sha512-bBNKOEOMl8msO+uIM9YX/gUO6ckokZ/4pCwTm/lwvs46x6Xs8Zy0sn3Vh37eDqse4mhy4fOMIb/JsSM2nyQFtw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/hash-base/node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", "dependencies": { - "end-stream": "~0.1.0" + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" } }, - "node_modules/leveldown": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/leveldown/-/leveldown-5.6.0.tgz", - "integrity": "sha512-iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "peer": true, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dependencies": { - "abstract-leveldown": "~6.2.1", - "napi-macros": "~2.0.0", - "node-gyp-build": "~4.1.0" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=8.6.0" + "node": ">= 0.4" } }, - "node_modules/leveldown/node_modules/abstract-leveldown": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz", - "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==", + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "buffer": "^5.5.0", - "immediate": "^3.2.3", - "level-concat-iterator": "~2.0.0", - "level-supports": "~1.0.0", - "xtend": "~4.0.0" - }, - "engines": { - "node": ">=6" + "bin": { + "he": "bin/he" } }, - "node_modules/leveldown/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/header-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", + "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true, - "peer": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "no-case": "^2.2.0", + "upper-case": "^1.1.3" } }, - "node_modules/leveldown/node_modules/level-concat-iterator": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz", - "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==", + "node_modules/highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", "dev": true, - "optional": true, - "peer": true, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/leveldown/node_modules/level-supports": { + "node_modules/highlightjs-solidity": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/highlightjs-solidity/-/highlightjs-solidity-2.0.6.tgz", + "integrity": "sha512-DySXWfQghjm2l6a/flF+cteroJqD4gI8GSdL4PtvxZSsAHie8m3yVe2JFoRg03ROKT6hp2Lc/BxXkqerNmtQYg==", + "dev": true + }, + "node_modules/hmac-drbg": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz", - "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==", - "dev": true, - "optional": true, - "peer": true, + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", "dependencies": { - "xtend": "^4.0.2" - }, - "engines": { - "node": ">=6" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/leveldown/node_modules/node-gyp-build": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.1.1.tgz", - "integrity": "sha512-dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ==", + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/htmlparser2": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "dev": true, - "optional": true, - "peer": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, - "node_modules/levelup": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/levelup/-/levelup-4.4.0.tgz", - "integrity": "sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==", + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "deferred-leveldown": "~5.3.0", - "level-errors": "~2.0.0", - "level-iterator-stream": "~4.0.0", - "level-supports": "~1.0.0", - "xtend": "~4.0.0" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { - "node": ">=6" + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/levelup/node_modules/level-supports": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz", - "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==", + "node_modules/http-https": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", + "integrity": "sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==", + "dev": true + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "xtend": "^4.0.2" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" }, "engines": { - "node": ">=6" + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "dev": true, "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=10.19.0" } }, - "node_modules/load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/load-json-file/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "node_modules/idna-uts46-hx": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", + "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", "dev": true, "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" + "punycode": "2.1.0" }, "engines": { - "node": ">=4" + "node": ">=4.0.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, - "peer": true - }, - "node_modules/lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==", - "dev": true - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "node_modules/immediate": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz", + "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==", "dev": true, "optional": true, "peer": true }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/immer": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/immer/-/immer-10.0.2.tgz", + "integrity": "sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, + "peer": true, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/injectpromise": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/injectpromise/-/injectpromise-1.0.0.tgz", + "integrity": "sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==" }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/loglevel": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.1.tgz", - "integrity": "sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==", + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", "dev": true, - "optional": true, - "peer": true, "engines": { - "node": ">= 0.6.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/loglevel" + "node": ">=0.10.0" } }, - "node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, - "optional": true, - "peer": true + "engines": { + "node": ">= 0.10" + } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, - "peer": true, "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, - "bin": { - "loose-envify": "cli.js" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/loupe": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", - "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", - "deprecated": "Please upgrade to 2.3.7 which fixes GHSA-4q6p-r6v2-jvc5", + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "dependencies": { - "get-func-name": "^2.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "node_modules/lower-case-first": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", - "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { - "lower-case": "^1.1.2" + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "peer": true, + "dependencies": { + "binary-extensions": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/lru_map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", - "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", - "dev": true - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { - "yallist": "^3.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ltgt": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", - "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==", + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "optional": true, - "peer": true - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/markdown-table": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz", - "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==", - "dev": true - }, - "node_modules/match-all": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/match-all/-/match-all-1.2.6.tgz", - "integrity": "sha512-0EESkXiTkWzrQQntBu2uzKvLu6vVkUGz40nGPbSZuegcfE5UuSzNjLaIu76zJWuaT/2I3Z/8M06OlUOZLGwLlQ==", - "dev": true + "peer": true, + "engines": { + "node": ">=4" + } }, - "node_modules/mcl-wasm": { - "version": "0.7.9", - "resolved": "https://registry.npmjs.org/mcl-wasm/-/mcl-wasm-0.7.9.tgz", - "integrity": "sha512-iJIUcQWA88IJB/5L15GnJVnSQJmf/YaxxV6zRavv83HILHaJQb6y0iFyDMdDO0gN8X37tdxmAOrH/P8B6RB8sQ==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { - "node": ">=8.9.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/memdown": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/memdown/-/memdown-1.4.1.tgz", - "integrity": "sha512-iVrGHZB8i4OQfM155xx8akvG9FIj+ht14DX5CQkCTG4EHzZ3d3sgckIf/Lm9ivZalEsFuEVnWv2B2WZvbrro2w==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "optional": true, "peer": true, - "dependencies": { - "abstract-leveldown": "~2.7.1", - "functional-red-black-tree": "^1.0.1", - "immediate": "^3.2.3", - "inherits": "~2.0.1", - "ltgt": "~2.2.0", - "safe-buffer": "~5.1.1" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/memdown/node_modules/abstract-leveldown": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-2.7.2.tgz", - "integrity": "sha512-+OVvxH2rHVEhWLdbudP6p0+dNMXu8JA1CbhP19T8paTYAcX7oJ4OVjT+ZUVpv7mITxXHqDMej+GdqXBmXkw09w==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "xtend": "~4.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/memdown/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "optional": true, - "peer": true + "node_modules/is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==", + "dev": true }, - "node_modules/memory-level": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/memory-level/-/memory-level-1.0.0.tgz", - "integrity": "sha512-UXzwewuWeHBz5krr7EvehKcmLFNoXxGcvuYhC41tRnkrTbJohtS7kVn9akmgirtRygg+f7Yjsfi8Uu5SGSQ4Og==", + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, "dependencies": { - "abstract-level": "^1.0.0", - "functional-red-black-tree": "^1.0.1", - "module-error": "^1.0.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=12" - } - }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "dev": true, - "engines": { - "node": ">= 0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "peer": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, "engines": { - "node": ">= 8" + "node": ">=0.10.0" } }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "node_modules/is-hex-prefixed": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", + "integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">=6.5.0", + "npm": ">=3" } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/is-lower-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", + "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", "dev": true, "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" + "lower-case": "^1.1.0" } }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, - "bin": { - "mime": "cli.js" - }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">=0.12.0" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "dependencies": { - "mime-db": "1.52.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mimic-fn": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", - "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, "optional": true, "peer": true, @@ -14965,615 +12448,693 @@ "node": ">=8" } }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { - "dom-walk": "^0.1.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "dev": true, "dependencies": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-upper-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", + "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", "dev": true, "dependencies": { - "minipass": "^2.9.0" + "upper-case": "^1.1.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "dependencies": { - "minimist": "^1.2.6" + "call-bind": "^1.0.2" }, - "bin": { - "mkdirp": "bin/cmd.js" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==", - "deprecated": "This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isomorphic-ws": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", + "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", + "dev": true, + "optional": true, + "peer": true, + "peerDependencies": { + "ws": "*" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, "dependencies": { - "mkdirp": "*" + "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/mnemonist": { - "version": "0.38.5", - "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.5.tgz", - "integrity": "sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==", + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, - "dependencies": { - "obliterator": "^2.0.0" - } + "peer": true }, - "node_modules/mocha": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz", - "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==", + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "ansi-colors": "4.1.1", - "browser-stdout": "1.3.1", - "chokidar": "3.5.3", - "debug": "4.3.4", - "diff": "5.0.0", - "escape-string-regexp": "4.0.0", - "find-up": "5.0.0", - "glob": "7.2.0", - "he": "1.2.0", - "js-yaml": "4.1.0", - "log-symbols": "4.1.0", - "minimatch": "5.0.1", - "ms": "2.1.3", - "nanoid": "3.3.3", - "serialize-javascript": "6.0.0", - "strip-json-comments": "3.1.1", - "supports-color": "8.1.1", - "workerpool": "6.2.1", - "yargs": "16.2.0", - "yargs-parser": "20.2.4", - "yargs-unparser": "2.0.0" + "argparse": "^2.0.1" }, "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha.js" - }, - "engines": { - "node": ">= 14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mochajs" + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/mocha/node_modules/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true, - "engines": { - "node": ">=6" - } + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true }, - "node_modules/mocha/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-pointer": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", + "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", "dev": true, + "peer": true, "dependencies": { - "balanced-match": "^1.0.0" + "foreach": "^2.0.4" } }, - "node_modules/mocha/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-schema-typed": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz", + "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "optional": true, + "peer": true }, - "node_modules/mocha/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/json-stable-stringify": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz", + "integrity": "sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==", "dev": true, + "peer": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mocha/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/json-stream-stringify": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/json-stream-stringify/-/json-stream-stringify-3.1.6.tgz", + "integrity": "sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==", "dev": true, "engines": { - "node": ">=8" + "node": ">=7.10.1" } }, - "node_modules/mocha/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "p-locate": "^5.0.0" + "peer": true, + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/mocha/node_modules/minimatch": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", - "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "node_modules/jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/mocha/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/mocha/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.6.0" } }, - "node_modules/mocha/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/keccak": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz", + "integrity": "sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==", "dev": true, + "hasInstallScript": true, "dependencies": { - "p-limit": "^3.0.2" + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10.0.0" } }, - "node_modules/mocha/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/keccak/node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, - "engines": { - "node": ">=8" + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/mocha/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "json-buffer": "3.0.1" } }, - "node_modules/mock-fs": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.14.0.tgz", - "integrity": "sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==", - "dev": true - }, - "node_modules/module-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", - "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", + "node_modules/klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", "dev": true, - "engines": { - "node": ">=10" + "optionalDependencies": { + "graceful-fs": "^4.1.9" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" + } }, - "node_modules/multibase": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "deprecated": "This module has been superseded by the multiformats module", + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", "dev": true, "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/multibase/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/level": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/level/-/level-6.0.1.tgz", + "integrity": "sha512-psRSqJZCsC/irNhfHzrVZbmPYXDcEYhA5TVNwr+V92jF44rbf86hqGp8fiT702FyiArScYIlPSBTDUASCVNSpw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "optional": true, + "peer": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "level-js": "^5.0.0", + "level-packager": "^5.1.0", + "leveldown": "^5.4.0" + }, + "engines": { + "node": ">=8.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/level" } }, - "node_modules/multicodec": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", - "deprecated": "This module has been superseded by the multiformats module", + "node_modules/level-codec": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/level-codec/-/level-codec-9.0.2.tgz", + "integrity": "sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==", + "deprecated": "Superseded by level-transcoder (https://github.com/Level/community#faq)", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "varint": "^5.0.0" + "buffer": "^5.6.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/multihashes": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", + "node_modules/level-concat-iterator": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-3.1.0.tgz", + "integrity": "sha512-BWRCMHBxbIqPxJ8vHOvKUsaO0v1sLYZtjN3K2iZJsRBYtp+ONsY6Jfi6hy9K3+zolgQRryhIn2NRZjZnWJ9NmQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" + "catering": "^2.1.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/multihashes/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/level-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/level-errors/-/level-errors-2.0.1.tgz", + "integrity": "sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "optional": true, + "peer": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "errno": "~0.1.1" + }, + "engines": { + "node": ">=6" } }, - "node_modules/multihashes/node_modules/multibase": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "deprecated": "This module has been superseded by the multiformats module", + "node_modules/level-iterator-stream": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz", + "integrity": "sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" } }, - "node_modules/murmur-128": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/murmur-128/-/murmur-128-0.2.1.tgz", - "integrity": "sha512-WseEgiRkI6aMFBbj8Cg9yBj/y+OdipwVC7zUo3W2W1JAJITwouUOtpqsmGSg67EQmwwSyod7hsVsWY5LsrfQVg==", + "node_modules/level-js": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-5.0.2.tgz", + "integrity": "sha512-SnBIDo2pdO5VXh02ZmtAyPP6/+6YTJg2ibLtl9C34pWvmtMEmRTWpra+qO/hifkUtBTOtfx6S9vLDjBsBK4gRg==", + "deprecated": "Superseded by browser-level (https://github.com/Level/community#faq)", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "encode-utf8": "^1.0.2", - "fmix": "^0.1.0", - "imul": "^1.0.0" + "abstract-leveldown": "~6.2.3", + "buffer": "^5.5.0", + "inherits": "^2.0.3", + "ltgt": "^2.1.2" } }, - "node_modules/nano-base32": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/nano-base32/-/nano-base32-1.0.1.tgz", - "integrity": "sha512-sxEtoTqAPdjWVGv71Q17koMFGsOMSiHsIFEvzOM7cNp8BXB4AnEwmDabm5dorusJf/v1z7QxaZYxUorU9RKaAw==", - "dev": true - }, - "node_modules/nano-json-stream-parser": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", - "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", + "node_modules/level-js/node_modules/abstract-leveldown": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz", + "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, - "bin": { - "nanoid": "bin/nanoid.cjs" + "optional": true, + "peer": true, + "dependencies": { + "buffer": "^5.5.0", + "immediate": "^3.2.3", + "level-concat-iterator": "~2.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">=6" } }, - "node_modules/napi-macros": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz", - "integrity": "sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==", - "dev": true - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/level-js/node_modules/level-concat-iterator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz", + "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "node_modules/no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "node_modules/level-js/node_modules/level-supports": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz", + "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "lower-case": "^1.1.1" + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" } }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "node_modules/level-packager": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/level-packager/-/level-packager-5.1.1.tgz", + "integrity": "sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, - "peer": true - }, - "node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==", - "dev": true - }, - "node_modules/node-emoji": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", - "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", - "dev": true, + "peer": true, "dependencies": { - "lodash": "^4.17.21" + "encoding-down": "^6.3.0", + "levelup": "^4.3.2" + }, + "engines": { + "node": ">=6" } }, - "node_modules/node-environment-flags": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz", - "integrity": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==", + "node_modules/level-supports": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-2.1.0.tgz", + "integrity": "sha512-E486g1NCjW5cF78KGPrMDRBYzPuueMZ6VBXHT6gC7A8UYWGiM14fGgp+s/L1oFfDWSPV/+SFkYCmZ0SiESkRKA==", "dev": true, - "dependencies": { - "object.getownpropertydescriptors": "^2.0.3", - "semver": "^5.7.0" + "optional": true, + "peer": true, + "engines": { + "node": ">=10" } }, - "node_modules/node-environment-flags/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/level-write-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/level-write-stream/-/level-write-stream-1.0.0.tgz", + "integrity": "sha512-bBNKOEOMl8msO+uIM9YX/gUO6ckokZ/4pCwTm/lwvs46x6Xs8Zy0sn3Vh37eDqse4mhy4fOMIb/JsSM2nyQFtw==", "dev": true, - "bin": { - "semver": "bin/semver" + "optional": true, + "peer": true, + "dependencies": { + "end-stream": "~0.1.0" } }, - "node_modules/node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "node_modules/leveldown": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/leveldown/-/leveldown-5.6.0.tgz", + "integrity": "sha512-iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ==", + "deprecated": "Superseded by classic-level (https://github.com/Level/community#faq)", "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, "dependencies": { - "whatwg-url": "^5.0.0" + "abstract-leveldown": "~6.2.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "~4.1.0" }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", - "devOptional": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "node": ">=8.6.0" } }, - "node_modules/node-interval-tree": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/node-interval-tree/-/node-interval-tree-1.3.3.tgz", - "integrity": "sha512-K9vk96HdTK5fEipJwxSvIIqwTqr4e3HRJeJrNxBSeVMNSC/JWARRaX7etOLOuTmrRMeOI/K5TCJu3aWIwZiNTw==", + "node_modules/leveldown/node_modules/abstract-leveldown": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz", + "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, + "optional": true, "peer": true, "dependencies": { - "shallowequal": "^1.0.2" + "buffer": "^5.5.0", + "immediate": "^3.2.3", + "level-concat-iterator": "~2.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" }, "engines": { - "node": ">= 7.6.0" + "node": ">=6" } }, - "node_modules/nofilter": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", - "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", + "node_modules/leveldown/node_modules/level-concat-iterator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz", + "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">=12.19" + "node": ">=6" } }, - "node_modules/nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==", + "node_modules/leveldown/node_modules/level-supports": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz", + "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "abbrev": "1" + "xtend": "^4.0.2" }, - "bin": { - "nopt": "bin/nopt.js" + "engines": { + "node": ">=6" } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/levelup": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-4.4.0.tgz", + "integrity": "sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "deferred-leveldown": "~5.3.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "level-supports": "~1.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/levelup/node_modules/level-supports": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz", + "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==", "dev": true, - "bin": { - "semver": "bin/semver" + "optional": true, + "peer": true, + "dependencies": { + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, "engines": { "node": ">=10" }, @@ -15581,1757 +13142,1945 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", "dev": true, - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } + "peer": true }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "node_modules/lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==", + "dev": true + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/number-to-bn": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==", + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "bn.js": "4.11.6", - "strip-hex-prefix": "1.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6.5.0", - "npm": ">=3" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/number-to-bn/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==", - "dev": true - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "node_modules/loglevel": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz", + "integrity": "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==", "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">= 0.6.0" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", "dev": true, - "engines": { - "node": ">= 0.4" - } + "optional": true, + "peer": true }, - "node_modules/object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, + "peer": true, "dependencies": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz", - "integrity": "sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==", + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/lower-case-first": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", + "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", "dev": true, "dependencies": { - "array.prototype.reduce": "^1.0.5", - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, + "lower-case": "^1.1.2" + } + }, + "node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "dev": true, "engines": { - "node": ">= 0.8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/obliterator": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz", - "integrity": "sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==", + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true }, - "node_modules/oboe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==", + "node_modules/ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==", "dev": true, - "dependencies": { - "http-https": "^1.0.0" + "optional": true, + "peer": true + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "engines": { + "node": ">= 0.4" } }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "dev": true, "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "dependencies": { - "wrappy": "1" + "engines": { + "node": ">= 0.6" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/memdown": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/memdown/-/memdown-1.4.1.tgz", + "integrity": "sha512-iVrGHZB8i4OQfM155xx8akvG9FIj+ht14DX5CQkCTG4EHzZ3d3sgckIf/Lm9ivZalEsFuEVnWv2B2WZvbrro2w==", + "deprecated": "Superseded by memory-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "abstract-leveldown": "~2.7.1", + "functional-red-black-tree": "^1.0.1", + "immediate": "^3.2.3", + "inherits": "~2.0.1", + "ltgt": "~2.2.0", + "safe-buffer": "~5.1.1" } }, - "node_modules/onetime/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/memdown/node_modules/abstract-leveldown": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-2.7.2.tgz", + "integrity": "sha512-+OVvxH2rHVEhWLdbudP6p0+dNMXu8JA1CbhP19T8paTYAcX7oJ4OVjT+ZUVpv7mITxXHqDMej+GdqXBmXkw09w==", + "deprecated": "Superseded by abstract-level (https://github.com/Level/community#faq)", "dev": true, "optional": true, "peer": true, - "engines": { - "node": ">=6" + "dependencies": { + "xtend": "~4.0.0" } }, - "node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "node_modules/memdown/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", "dev": true, - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.10.0" } }, - "node_modules/ordinal": { + "node_modules/merge-descriptors": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ordinal/-/ordinal-1.0.3.tgz", - "integrity": "sha512-cMddMgb2QElm8G7vdaa02jhUNbTSrhsgAGUz1OokD83uJTwSUn+nKoNoKVVaRa08yF6sgfO7Maou1+bgLd9rdQ==", - "dev": true + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/original-require": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/original-require/-/original-require-1.0.1.tgz", - "integrity": "sha512-5vdKMbE58WaE61uVD+PKyh8xdM398UnjPBLotW2sjG5MzHARwta/+NtMBCBA0t2WQblGYBvq5vsiZpWokwno+A==", + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true, - "peer": true + "engines": { + "node": ">= 0.6" + } }, - "node_modules/os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "node_modules/micro-eth-signer": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/micro-eth-signer/-/micro-eth-signer-0.14.0.tgz", + "integrity": "sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw==", "dev": true, "dependencies": { - "lcid": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "@noble/curves": "~1.8.1", + "@noble/hashes": "~1.7.1", + "micro-packed": "~0.7.2" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/micro-eth-signer/node_modules/@noble/curves": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.8.2.tgz", + "integrity": "sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==", "dev": true, + "dependencies": { + "@noble/hashes": "1.7.2" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "node_modules/micro-eth-signer/node_modules/@noble/hashes": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.2.tgz", + "integrity": "sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==", "dev": true, "engines": { - "node": ">=12.20" + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "node_modules/micro-packed": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/micro-packed/-/micro-packed-0.7.3.tgz", + "integrity": "sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg==", "dev": true, "dependencies": { - "p-try": "^1.0.0" + "@scure/base": "~1.2.5" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/micro-packed/node_modules/@scure/base": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", + "integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==", + "dev": true, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" }, "engines": { "node": ">=4" } }, - "node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dev": true, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "p-limit": "^1.1.0" + "mime-db": "1.52.0" }, "engines": { - "node": ">=4" + "node": ">= 0.6" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "node_modules/mimic-fn": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", + "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, + "optional": true, + "peer": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", "dev": true, "engines": { "node": ">=4" } }, - "node_modules/param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "node_modules/min-document": { + "version": "2.19.2", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.2.tgz", + "integrity": "sha512-8S5I8db/uZN8r9HSLFVWPdJCvYOejMcEC82VIzNUc6Zkklf/d1gg2psfE79/vyhWOj4+J8MtwmoOz3TmvaGu5A==", "dev": true, "dependencies": { - "no-case": "^2.2.0" + "dom-walk": "^0.1.0" } }, - "node_modules/parse-cache-control": { + "node_modules/minimalistic-assert": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", - "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==", - "dev": true + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" }, - "node_modules/parse-headers": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", - "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==", - "dev": true + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" }, - "node_modules/parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { - "error-ex": "^1.2.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dev": true, - "dependencies": { - "entities": "^4.4.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", - "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "dependencies": { - "domhandler": "^5.0.2", - "parse5": "^7.0.0" - }, "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/pascal-case": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", - "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", + "node_modules/minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", "dev": true, "dependencies": { - "camel-case": "^3.0.0", - "upper-case-first": "^1.1.0" + "minipass": "^2.9.0" } }, - "node_modules/path-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", - "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", + "node_modules/minizlib/node_modules/minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "dev": true, "dependencies": { - "no-case": "^2.2.0" - } - }, - "node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "engines": { - "node": ">=4" + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/mkdirp-promise": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", + "integrity": "sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==", + "deprecated": "This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.", "dev": true, + "dependencies": { + "mkdirp": "*" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/pathval": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", - "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", - "dev": true, + "node_modules/mocha": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.3.0.tgz", + "integrity": "sha512-J0RLIM89xi8y6l77bgbX+03PeBRDQCOVQpnwOcCN7b8hCmbh6JvGI2ZDJ5WMoHz+IaPU+S4lvTd0j51GmBAdgQ==", + "dev": true, + "dependencies": { + "browser-stdout": "^1.3.1", + "chokidar": "^4.0.1", + "debug": "^4.3.5", + "diff": "^5.2.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^10.4.5", + "he": "^1.2.0", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^5.1.6", + "ms": "^2.1.3", + "picocolors": "^1.1.1", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^6.5.1", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1", + "yargs-unparser": "^2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, "engines": { - "node": "*" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "node_modules/mocha/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=0.12" + "node": ">=10" } }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "node_modules/mock-fs": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.14.0.tgz", + "integrity": "sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==", "dev": true }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/multibase": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", + "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", + "deprecated": "This module has been superseded by the multiformats module", "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "dependencies": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" } }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "node_modules/multicodec": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", + "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", + "deprecated": "This module has been superseded by the multiformats module", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "varint": "^5.0.0" } }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "node_modules/multihashes": { + "version": "0.4.21", + "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", + "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" } }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "node_modules/multihashes/node_modules/multibase": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", + "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", + "deprecated": "This module has been superseded by the multiformats module", "dev": true, "dependencies": { - "pinkie": "^2.0.0" + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "node_modules/nano-base32": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/nano-base32/-/nano-base32-1.0.1.tgz", + "integrity": "sha512-sxEtoTqAPdjWVGv71Q17koMFGsOMSiHsIFEvzOM7cNp8BXB4AnEwmDabm5dorusJf/v1z7QxaZYxUorU9RKaAw==", + "dev": true + }, + "node_modules/nano-json-stream-parser": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", + "integrity": "sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", + "dev": true, + "peer": true, + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "node_modules/napi-macros": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz", + "integrity": "sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==", "dev": true, "optional": true, + "peer": true + }, + "node_modules/ndjson": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ndjson/-/ndjson-2.0.0.tgz", + "integrity": "sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ==", + "dev": true, "peer": true, "dependencies": { - "find-up": "^3.0.0" + "json-stringify-safe": "^5.0.1", + "minimist": "^1.2.5", + "readable-stream": "^3.6.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "ndjson": "cli.js" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "locate-path": "^3.0.0" - }, "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" + "lower-case": "^1.1.1" } }, - "node_modules/pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", "dev": true, "optional": true, - "peer": true, + "peer": true + }, + "node_modules/node-addon-api": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", + "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", + "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "dev": true, "dependencies": { - "p-try": "^2.0.0" + "whatwg-url": "^5.0.0" }, "engines": { - "node": ">=6" + "node": "4.x || >=6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/node-gyp-build": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.1.1.tgz", + "integrity": "sha512-dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ==", "dev": true, "optional": true, "peer": true, - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/pkg-up/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/node-interval-tree": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/node-interval-tree/-/node-interval-tree-1.3.3.tgz", + "integrity": "sha512-K9vk96HdTK5fEipJwxSvIIqwTqr4e3HRJeJrNxBSeVMNSC/JWARRaX7etOLOuTmrRMeOI/K5TCJu3aWIwZiNTw==", "dev": true, - "optional": true, "peer": true, + "dependencies": { + "shallowequal": "^1.0.2" + }, "engines": { - "node": ">=6" + "node": ">= 7.6.0" } }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "node_modules/nofilter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", + "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", "dev": true, - "optional": true, - "peer": true, "engines": { - "node": ">=4" + "node": ">=12.19" } }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "node_modules/pouchdb": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/pouchdb/-/pouchdb-7.3.0.tgz", - "integrity": "sha512-OwsIQGXsfx3TrU1pLruj6PGSwFH+h5k4hGNxFkZ76Um7/ZI8F5TzUHFrpldVVIhfXYi2vP31q0q7ot1FSLFYOw==", + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "abort-controller": "3.0.0", - "argsarray": "0.0.1", - "buffer-from": "1.1.2", - "clone-buffer": "1.0.0", - "double-ended-queue": "2.1.0-0", - "fetch-cookie": "0.11.0", - "immediate": "3.3.0", - "inherits": "2.0.4", - "level": "6.0.1", - "level-codec": "9.0.2", - "level-write-stream": "1.0.0", - "leveldown": "5.6.0", - "levelup": "4.4.0", - "ltgt": "2.2.1", - "node-fetch": "2.6.7", - "readable-stream": "1.1.14", - "spark-md5": "3.0.2", - "through2": "3.0.2", - "uuid": "8.3.2", - "vuvuzela": "1.0.3" + "bin": { + "semver": "bin/semver" } }, - "node_modules/pouchdb-abstract-mapreduce": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.3.1.tgz", - "integrity": "sha512-0zKXVFBvrfc1KnN0ggrB762JDmZnUpePHywo9Bq3Jy+L1FnoG7fXM5luFfvv5/T0gEw+ZTIwoocZECMnESBI9w==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "optional": true, "peer": true, - "dependencies": { - "pouchdb-binary-utils": "7.3.1", - "pouchdb-collate": "7.3.1", - "pouchdb-collections": "7.3.1", - "pouchdb-errors": "7.3.1", - "pouchdb-fetch": "7.3.1", - "pouchdb-mapreduce-utils": "7.3.1", - "pouchdb-md5": "7.3.1", - "pouchdb-utils": "7.3.1" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pouchdb-adapter-leveldb-core": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-adapter-leveldb-core/-/pouchdb-adapter-leveldb-core-7.3.1.tgz", - "integrity": "sha512-mxShHlqLMPz2gChrgtA9okV1ogFmQrRAoM/O4EN0CrQWPLXqYtpL1f7sI2asIvFe7SmpnvbLx7kkZyFmLTfwjA==", + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "argsarray": "0.0.1", - "buffer-from": "1.1.2", - "double-ended-queue": "2.1.0-0", - "levelup": "4.4.0", - "pouchdb-adapter-utils": "7.3.1", - "pouchdb-binary-utils": "7.3.1", - "pouchdb-collections": "7.3.1", - "pouchdb-errors": "7.3.1", - "pouchdb-json": "7.3.1", - "pouchdb-md5": "7.3.1", - "pouchdb-merge": "7.3.1", - "pouchdb-utils": "7.3.1", - "sublevel-pouchdb": "7.3.1", - "through2": "3.0.2" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pouchdb-adapter-memory": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-adapter-memory/-/pouchdb-adapter-memory-7.3.1.tgz", - "integrity": "sha512-iHdWGJAHONqQv0we3Oi1MYen69ZS8McLW9wUyaAYcWTJnAIIAr2ZM0/TeTDVSHfMUwYqEYk7X8jRtJZEMwLnwg==", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "memdown": "1.4.1", - "pouchdb-adapter-leveldb-core": "7.3.1", - "pouchdb-utils": "7.3.1" + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pouchdb-adapter-utils": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-adapter-utils/-/pouchdb-adapter-utils-7.3.1.tgz", - "integrity": "sha512-uKLG6dClwTs/sLIJ4WkLAi9wlnDBpOnfyhpeAgOjlOGN/XLz5nKHrA4UJRnURDyc+uv79S9r/Unc4hVpmbSPUw==", + "node_modules/number-to-bn": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", + "integrity": "sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "pouchdb-binary-utils": "7.3.1", - "pouchdb-collections": "7.3.1", - "pouchdb-errors": "7.3.1", - "pouchdb-md5": "7.3.1", - "pouchdb-merge": "7.3.1", - "pouchdb-utils": "7.3.1" + "bn.js": "4.11.6", + "strip-hex-prefix": "1.0.0" + }, + "engines": { + "node": ">=6.5.0", + "npm": ">=3" } }, - "node_modules/pouchdb-binary-utils": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.3.1.tgz", - "integrity": "sha512-crZJNfAEOnUoRk977Qtmk4cxEv6sNKllQ6vDDKgQrQLFjMUXma35EHzNyIJr1s76J77Q4sqKQAmxz9Y40yHGtw==", + "node_modules/number-to-bn/node_modules/bn.js": { + "version": "4.11.6", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", + "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==", + "dev": true + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "buffer-from": "1.1.2" + "engines": { + "node": "*" } }, - "node_modules/pouchdb-collate": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.3.1.tgz", - "integrity": "sha512-o4gyGqDMLMSNzf6EDTr3eHaH/JRMoqRhdc+eV+oA8u00nTBtr9wD+jypVe2LbgKLJ4NWqx2qVkXiTiQdUFtsLQ==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, - "optional": true, - "peer": true + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/pouchdb-collections": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.3.1.tgz", - "integrity": "sha512-yUyDqR+OJmtwgExOSJegpBJXDLAEC84TWnbAYycyh+DZoA51Yw0+XVQF5Vh8Ii90/Ut2xo88fmrmp0t6kqom8w==", + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, - "optional": true, - "peer": true + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/pouchdb-debug": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/pouchdb-debug/-/pouchdb-debug-7.2.1.tgz", - "integrity": "sha512-eP3ht/AKavLF2RjTzBM6S9gaI2/apcW6xvaKRQhEdOfiANqerFuksFqHCal3aikVQuDO+cB/cw+a4RyJn/glBw==", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "debug": "3.1.0" + "engines": { + "node": ">= 0.4" } }, - "node_modules/pouchdb-debug/node_modules/debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "ms": "2.0.0" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pouchdb-debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/oboe": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", + "integrity": "sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==", "dev": true, - "optional": true, - "peer": true + "dependencies": { + "http-https": "^1.0.0" + } }, - "node_modules/pouchdb-errors": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.3.1.tgz", - "integrity": "sha512-Zktz4gnXEUcZcty8FmyvtYUYsHskoST05m6H5/E2gg/0mCfEXq/XeyyLkZHaZmqD0ZPS9yNmASB1VaFWEKEaDw==", + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "inherits": "2.0.4" + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/pouchdb-fetch": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.3.1.tgz", - "integrity": "sha512-205xAtvdHRPQ4fp1h9+RmT9oQabo9gafuPmWsS9aEl3ER54WbY8Vaj1JHZGbU4KtMTYvW7H5088zLS7Nrusuag==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "abort-controller": "3.0.0", - "fetch-cookie": "0.11.0", - "node-fetch": "2.6.7" + "wrappy": "1" } }, - "node_modules/pouchdb-fetch/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "optional": true, "peer": true, "dependencies": { - "whatwg-url": "^5.0.0" + "mimic-fn": "^2.1.0" }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" + "node": ">=6" }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pouchdb-find": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.3.1.tgz", - "integrity": "sha512-AeqUfAVY1c7IFaY36BRT0vIz9r4VTKq/YOWTmiqndOZUQ/pDGxyO2fNFal6NN3PyYww0JijlD377cPvhnrhJVA==", + "node_modules/onetime/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "optional": true, "peer": true, - "dependencies": { - "pouchdb-abstract-mapreduce": "7.3.1", - "pouchdb-collate": "7.3.1", - "pouchdb-errors": "7.3.1", - "pouchdb-fetch": "7.3.1", - "pouchdb-md5": "7.3.1", - "pouchdb-selector-core": "7.3.1", - "pouchdb-utils": "7.3.1" + "engines": { + "node": ">=6" } }, - "node_modules/pouchdb-json": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-json/-/pouchdb-json-7.3.1.tgz", - "integrity": "sha512-AyOKsmc85/GtHjMZyEacqzja8qLVfycS1hh1oskR+Bm5PIITX52Fb8zyi0hEetV6VC0yuGbn0RqiLjJxQePeqQ==", + "node_modules/original-require": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/original-require/-/original-require-1.0.1.tgz", + "integrity": "sha512-5vdKMbE58WaE61uVD+PKyh8xdM398UnjPBLotW2sjG5MzHARwta/+NtMBCBA0t2WQblGYBvq5vsiZpWokwno+A==", + "dev": true, + "peer": true + }, + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "vuvuzela": "1.0.3" + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pouchdb-mapreduce-utils": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.3.1.tgz", - "integrity": "sha512-oUMcq82+4pTGQ6dtrhgORHOVHZSr6w/5tFIUGlv7RABIDvJarL4snMawADjlpiEwPdiQ/ESG8Fqt8cxqvqsIgg==", + "node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "dev": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "argsarray": "0.0.1", - "inherits": "2.0.4", - "pouchdb-collections": "7.3.1", - "pouchdb-utils": "7.3.1" + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pouchdb-md5": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.3.1.tgz", - "integrity": "sha512-aDV8ui/mprnL3xmt0gT/81DFtTtJiKyn+OxIAbwKPMfz/rDFdPYvF0BmDC9QxMMzGfkV+JJUjU6at0PPs2mRLg==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "pouchdb-binary-utils": "7.3.1", - "spark-md5": "3.0.2" + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pouchdb-merge": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.3.1.tgz", - "integrity": "sha512-FeK3r35mKimokf2PQ2tUI523QWyZ4lYZ0Yd75FfSch/SPY6wIokz5XBZZ6PHdu5aOJsEKzoLUxr8CpSg9DhcAw==", + "node_modules/p-map": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", + "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", "dev": true, - "optional": true, - "peer": true + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/pouchdb-selector-core": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.3.1.tgz", - "integrity": "sha512-HBX+nNGXcaL9z0uNpwSMRq2GNZd3EZXW+fe9rJHS0hvJohjZL7aRJLoaXfEdHPRTNW+CpjM3Rny60eGekQdI/w==", + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, "optional": true, "peer": true, - "dependencies": { - "pouchdb-collate": "7.3.1", - "pouchdb-utils": "7.3.1" + "engines": { + "node": ">=4" } }, - "node_modules/pouchdb-utils": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.3.1.tgz", - "integrity": "sha512-R3hHBo1zTdTu/NFs3iqkcaQAPwhIH0gMIdfVKd5lbDYlmP26rCG5pdS+v7NuoSSFLJ4xxnaGV+Gjf4duYsJ8wQ==", + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "argsarray": "0.0.1", - "clone-buffer": "1.0.0", - "immediate": "3.3.0", - "inherits": "2.0.4", - "pouchdb-collections": "7.3.1", - "pouchdb-errors": "7.3.1", - "pouchdb-md5": "7.3.1", - "uuid": "8.3.2" + "no-case": "^2.2.0" } }, - "node_modules/pouchdb/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true, - "optional": true, - "peer": true + "node_modules/parse-headers": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", + "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==", + "dev": true }, - "node_modules/pouchdb/node_modules/level": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/level/-/level-6.0.1.tgz", - "integrity": "sha512-psRSqJZCsC/irNhfHzrVZbmPYXDcEYhA5TVNwr+V92jF44rbf86hqGp8fiT702FyiArScYIlPSBTDUASCVNSpw==", + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "level-js": "^5.0.0", - "level-packager": "^5.1.0", - "leveldown": "^5.4.0" + "error-ex": "^1.2.0" }, "engines": { - "node": ">=8.6.0" + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/level" + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/pouchdb/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "whatwg-url": "^5.0.0" + "domhandler": "^5.0.2", + "parse5": "^7.0.0" }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "node": ">= 0.8" } }, - "node_modules/pouchdb/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "node_modules/pascal-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" } }, - "node_modules/pouchdb/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "node_modules/path-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", + "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", "dev": true, - "optional": true, - "peer": true + "dependencies": { + "no-case": "^2.2.0" + } }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/prettier": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz", - "integrity": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { - "node": ">= 0.6.0" + "node": ">=8" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, "dependencies": { - "asap": "~2.0.6" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/proper-lockfile": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", - "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "retry": "^0.12.0", - "signal-exit": "^3.0.2" - } + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "dev": true }, - "node_modules/proper-lockfile/node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, "engines": { - "node": ">= 4" + "node": ">=0.10.0" } }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "node_modules/pbkdf2": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", + "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", "dev": true, "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "ripemd160": "^2.0.3", + "safe-buffer": "^5.2.1", + "sha.js": "^2.4.12", + "to-buffer": "^1.2.1" }, "engines": { "node": ">= 0.10" } }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "dev": true }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "peer": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/punycode": { + "node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/pure-rand": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-5.0.5.tgz", - "integrity": "sha512-BwQpbqxSCBJVpamI6ydzcKqyFmnd5msMWUGvzXLm1aXvusbbgkbOto/EUPM00hjveJEaJtdbhUjKSzWRhQVkaw==", + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "pinkie": "^2.0.0" }, "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "find-up": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "locate-path": "^3.0.0" + }, "engines": { - "node": ">=0.4.x" + "node": ">=6" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "optional": true, + "peer": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "p-try": "^2.0.0" + }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "safe-buffer": "^5.1.0" + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "node_modules/pkg-up/node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, + "optional": true, + "peer": true, "engines": { - "node": ">= 0.8" + "node": ">=4" } }, - "node_modules/read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "dev": true, - "dependencies": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - }, + "optional": true, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, - "dependencies": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "node_modules/pouchdb": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/pouchdb/-/pouchdb-7.3.0.tgz", + "integrity": "sha512-OwsIQGXsfx3TrU1pLruj6PGSwFH+h5k4hGNxFkZ76Um7/ZI8F5TzUHFrpldVVIhfXYi2vP31q0q7ot1FSLFYOw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "abort-controller": "3.0.0", + "argsarray": "0.0.1", + "buffer-from": "1.1.2", + "clone-buffer": "1.0.0", + "double-ended-queue": "2.1.0-0", + "fetch-cookie": "0.11.0", + "immediate": "3.3.0", + "inherits": "2.0.4", + "level": "6.0.1", + "level-codec": "9.0.2", + "level-write-stream": "1.0.0", + "leveldown": "5.6.0", + "levelup": "4.4.0", + "ltgt": "2.2.1", + "node-fetch": "2.6.7", + "readable-stream": "1.1.14", + "spark-md5": "3.0.2", + "through2": "3.0.2", + "uuid": "8.3.2", + "vuvuzela": "1.0.3" } }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "node_modules/pouchdb-abstract-mapreduce": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.3.1.tgz", + "integrity": "sha512-0zKXVFBvrfc1KnN0ggrB762JDmZnUpePHywo9Bq3Jy+L1FnoG7fXM5luFfvv5/T0gEw+ZTIwoocZECMnESBI9w==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "pouchdb-binary-utils": "7.3.1", + "pouchdb-collate": "7.3.1", + "pouchdb-collections": "7.3.1", + "pouchdb-errors": "7.3.1", + "pouchdb-fetch": "7.3.1", + "pouchdb-mapreduce-utils": "7.3.1", + "pouchdb-md5": "7.3.1", + "pouchdb-utils": "7.3.1" } }, - "node_modules/read-pkg/node_modules/path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "node_modules/pouchdb-adapter-leveldb-core": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-adapter-leveldb-core/-/pouchdb-adapter-leveldb-core-7.3.1.tgz", + "integrity": "sha512-mxShHlqLMPz2gChrgtA9okV1ogFmQrRAoM/O4EN0CrQWPLXqYtpL1f7sI2asIvFe7SmpnvbLx7kkZyFmLTfwjA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "argsarray": "0.0.1", + "buffer-from": "1.1.2", + "double-ended-queue": "2.1.0-0", + "levelup": "4.4.0", + "pouchdb-adapter-utils": "7.3.1", + "pouchdb-binary-utils": "7.3.1", + "pouchdb-collections": "7.3.1", + "pouchdb-errors": "7.3.1", + "pouchdb-json": "7.3.1", + "pouchdb-md5": "7.3.1", + "pouchdb-merge": "7.3.1", + "pouchdb-utils": "7.3.1", + "sublevel-pouchdb": "7.3.1", + "through2": "3.0.2" } }, - "node_modules/read-pkg/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/pouchdb-adapter-leveldb-core/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "optional": true, + "peer": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" } }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/pouchdb-adapter-memory": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-adapter-memory/-/pouchdb-adapter-memory-7.3.1.tgz", + "integrity": "sha512-iHdWGJAHONqQv0we3Oi1MYen69ZS8McLW9wUyaAYcWTJnAIIAr2ZM0/TeTDVSHfMUwYqEYk7X8jRtJZEMwLnwg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" + "memdown": "1.4.1", + "pouchdb-adapter-leveldb-core": "7.3.1", + "pouchdb-utils": "7.3.1" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/pouchdb-adapter-utils": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-adapter-utils/-/pouchdb-adapter-utils-7.3.1.tgz", + "integrity": "sha512-uKLG6dClwTs/sLIJ4WkLAi9wlnDBpOnfyhpeAgOjlOGN/XLz5nKHrA4UJRnURDyc+uv79S9r/Unc4hVpmbSPUw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" + "pouchdb-binary-utils": "7.3.1", + "pouchdb-collections": "7.3.1", + "pouchdb-errors": "7.3.1", + "pouchdb-md5": "7.3.1", + "pouchdb-merge": "7.3.1", + "pouchdb-utils": "7.3.1" } }, - "node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "node_modules/pouchdb-binary-utils": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.3.1.tgz", + "integrity": "sha512-crZJNfAEOnUoRk977Qtmk4cxEv6sNKllQ6vDDKgQrQLFjMUXma35EHzNyIJr1s76J77Q4sqKQAmxz9Y40yHGtw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" + "buffer-from": "1.1.2" } }, - "node_modules/recursive-readdir": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", - "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "node_modules/pouchdb-collate": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.3.1.tgz", + "integrity": "sha512-o4gyGqDMLMSNzf6EDTr3eHaH/JRMoqRhdc+eV+oA8u00nTBtr9wD+jypVe2LbgKLJ4NWqx2qVkXiTiQdUFtsLQ==", "dev": true, - "dependencies": { - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=6.0.0" - } + "optional": true, + "peer": true }, - "node_modules/reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", + "node_modules/pouchdb-collections": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.3.1.tgz", + "integrity": "sha512-yUyDqR+OJmtwgExOSJegpBJXDLAEC84TWnbAYycyh+DZoA51Yw0+XVQF5Vh8Ii90/Ut2xo88fmrmp0t6kqom8w==", "dev": true, - "engines": { - "node": ">=6" - } + "optional": true, + "peer": true }, - "node_modules/redux": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/redux/-/redux-3.7.2.tgz", - "integrity": "sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==", + "node_modules/pouchdb-debug": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/pouchdb-debug/-/pouchdb-debug-7.2.1.tgz", + "integrity": "sha512-eP3ht/AKavLF2RjTzBM6S9gaI2/apcW6xvaKRQhEdOfiANqerFuksFqHCal3aikVQuDO+cB/cw+a4RyJn/glBw==", "dev": true, + "optional": true, "peer": true, "dependencies": { - "lodash": "^4.2.1", - "lodash-es": "^4.2.1", - "loose-envify": "^1.1.0", - "symbol-observable": "^1.0.3" + "debug": "3.1.0" } }, - "node_modules/redux-saga": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redux-saga/-/redux-saga-1.0.0.tgz", - "integrity": "sha512-GvJWs/SzMvEQgeaw6sRMXnS2FghlvEGsHiEtTLpJqc/FHF3I5EE/B+Hq5lyHZ8LSoT2r/X/46uWvkdCnK9WgHA==", + "node_modules/pouchdb-debug/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", "dev": true, + "optional": true, "peer": true, "dependencies": { - "@redux-saga/core": "^1.0.0" + "ms": "2.0.0" } }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + "node_modules/pouchdb-debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "optional": true, + "peer": true }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "node_modules/pouchdb-errors": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.3.1.tgz", + "integrity": "sha512-Zktz4gnXEUcZcty8FmyvtYUYsHskoST05m6H5/E2gg/0mCfEXq/XeyyLkZHaZmqD0ZPS9yNmASB1VaFWEKEaDw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "inherits": "2.0.4" } }, - "node_modules/req-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/req-cwd/-/req-cwd-2.0.0.tgz", - "integrity": "sha512-ueoIoLo1OfB6b05COxAA9UpeoscNpYyM+BqYlA7H6LVF4hKGPXQQSSaD2YmvDVJMkk4UDpAHIeU1zG53IqjvlQ==", + "node_modules/pouchdb-fetch": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.3.1.tgz", + "integrity": "sha512-205xAtvdHRPQ4fp1h9+RmT9oQabo9gafuPmWsS9aEl3ER54WbY8Vaj1JHZGbU4KtMTYvW7H5088zLS7Nrusuag==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "req-from": "^2.0.0" - }, - "engines": { - "node": ">=4" + "abort-controller": "3.0.0", + "fetch-cookie": "0.11.0", + "node-fetch": "2.6.7" } }, - "node_modules/req-from": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/req-from/-/req-from-2.0.0.tgz", - "integrity": "sha512-LzTfEVDVQHBRfjOUMgNBA+V6DWsSnoeKzf42J7l0xa/B4jyPOuuF5MlNSmomLNGemWTnV2TIdjSSLnEn95fOQA==", + "node_modules/pouchdb-fetch/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "resolve-from": "^3.0.0" + "whatwg-url": "^5.0.0" }, "engines": { - "node": ">=4" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "node_modules/pouchdb-find": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.3.1.tgz", + "integrity": "sha512-AeqUfAVY1c7IFaY36BRT0vIz9r4VTKq/YOWTmiqndOZUQ/pDGxyO2fNFal6NN3PyYww0JijlD377cPvhnrhJVA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" + "pouchdb-abstract-mapreduce": "7.3.1", + "pouchdb-collate": "7.3.1", + "pouchdb-errors": "7.3.1", + "pouchdb-fetch": "7.3.1", + "pouchdb-md5": "7.3.1", + "pouchdb-selector-core": "7.3.1", + "pouchdb-utils": "7.3.1" } }, - "node_modules/request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "node_modules/pouchdb-json": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-json/-/pouchdb-json-7.3.1.tgz", + "integrity": "sha512-AyOKsmc85/GtHjMZyEacqzja8qLVfycS1hh1oskR+Bm5PIITX52Fb8zyi0hEetV6VC0yuGbn0RqiLjJxQePeqQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "lodash": "^4.17.19" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" + "vuvuzela": "1.0.3" } }, - "node_modules/request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", - "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "node_modules/pouchdb-mapreduce-utils": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.3.1.tgz", + "integrity": "sha512-oUMcq82+4pTGQ6dtrhgORHOVHZSr6w/5tFIUGlv7RABIDvJarL4snMawADjlpiEwPdiQ/ESG8Fqt8cxqvqsIgg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.12.0" - }, - "peerDependencies": { - "request": "^2.34" + "argsarray": "0.0.1", + "inherits": "2.0.4", + "pouchdb-collections": "7.3.1", + "pouchdb-utils": "7.3.1" } }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "node_modules/pouchdb-md5": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.3.1.tgz", + "integrity": "sha512-aDV8ui/mprnL3xmt0gT/81DFtTtJiKyn+OxIAbwKPMfz/rDFdPYvF0BmDC9QxMMzGfkV+JJUjU6at0PPs2mRLg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" + "pouchdb-binary-utils": "7.3.1", + "spark-md5": "3.0.2" } }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "node_modules/pouchdb-merge": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.3.1.tgz", + "integrity": "sha512-FeK3r35mKimokf2PQ2tUI523QWyZ4lYZ0Yd75FfSch/SPY6wIokz5XBZZ6PHdu5aOJsEKzoLUxr8CpSg9DhcAw==", "dev": true, - "engines": { - "node": ">=0.6" - } + "optional": true, + "peer": true }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "node_modules/pouchdb-selector-core": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.3.1.tgz", + "integrity": "sha512-HBX+nNGXcaL9z0uNpwSMRq2GNZd3EZXW+fe9rJHS0hvJohjZL7aRJLoaXfEdHPRTNW+CpjM3Rny60eGekQdI/w==", "dev": true, - "bin": { - "uuid": "bin/uuid" + "optional": true, + "peer": true, + "dependencies": { + "pouchdb-collate": "7.3.1", + "pouchdb-utils": "7.3.1" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/pouchdb-utils": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.3.1.tgz", + "integrity": "sha512-R3hHBo1zTdTu/NFs3iqkcaQAPwhIH0gMIdfVKd5lbDYlmP26rCG5pdS+v7NuoSSFLJ4xxnaGV+Gjf4duYsJ8wQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "optional": true, + "peer": true, + "dependencies": { + "argsarray": "0.0.1", + "clone-buffer": "1.0.0", + "immediate": "3.3.0", + "inherits": "2.0.4", + "pouchdb-collections": "7.3.1", + "pouchdb-errors": "7.3.1", + "pouchdb-md5": "7.3.1", + "uuid": "8.3.2" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "node_modules/pouchdb-utils/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "optional": true, + "peer": true, + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "node_modules/reselect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==", + "node_modules/pouchdb/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", "dev": true, + "optional": true, "peer": true }, - "node_modules/reselect-tree": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/reselect-tree/-/reselect-tree-1.3.7.tgz", - "integrity": "sha512-kZN+C1cVJ6fFN2smSb0l4UvYZlRzttgnu183svH4NrU22cBY++ikgr2QT75Uuk4MYpv5gXSVijw4c5U6cx6GKg==", + "node_modules/pouchdb/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, + "optional": true, "peer": true, "dependencies": { - "debug": "^3.1.0", - "json-pointer": "^0.6.1", - "reselect": "^4.0.0" + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/reselect-tree/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/pouchdb/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", "dev": true, + "optional": true, "peer": true, "dependencies": { - "ms": "^2.1.1" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" } }, - "node_modules/resolve": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "node_modules/pouchdb/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", "dev": true, - "dependencies": { - "path-parse": "^1.0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true + "optional": true, + "peer": true }, - "node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "node_modules/pouchdb/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", "dev": true, - "engines": { - "node": ">=4" + "optional": true, + "peer": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" } }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "node_modules/pouchdb/node_modules/through2/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "lowercase-keys": "^2.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">= 6" } }, - "node_modules/responselike/node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "node_modules/pouchdb/node_modules/through2/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, - "engines": { - "node": ">=8" + "optional": true, + "peer": true, + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/pouchdb/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, "optional": true, "peer": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "node_modules/prettier": { + "version": "2.8.7", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz", + "integrity": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==", "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, "engines": { - "node": ">= 4" + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">= 0.6.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, + "peer": true, "dependencies": { - "glob": "^7.1.3" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">= 6" } }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "node_modules/proper-lockfile": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", + "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", "dev": true, "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" } }, - "node_modules/ripemd160-min": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/ripemd160-min/-/ripemd160-min-0.0.6.tgz", - "integrity": "sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==", + "node_modules/proper-lockfile/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, "engines": { - "node": ">=8" + "node": ">= 0.10" } }, - "node_modules/rlp": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz", - "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==", + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "dependencies": { - "bn.js": "^5.2.0" - }, - "bin": { - "rlp": "bin/rlp" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "node_modules/punycode": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", + "integrity": "sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" + "engines": { + "node": ">=6" } }, - "node_modules/run-parallel-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz", - "integrity": "sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==", + "node_modules/pure-rand": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-5.0.5.tgz", + "integrity": "sha512-BwQpbqxSCBJVpamI6ydzcKqyFmnd5msMWUGvzXLm1aXvusbbgkbOto/EUPM00hjveJEaJtdbhUjKSzWRhQVkaw==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "opencollective", + "url": "https://opencollective.com/fast-check" } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rustbn.js": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/rustbn.js/-/rustbn.js-0.2.0.tgz", - "integrity": "sha512-4VlvkRUuCJvr2J6Y0ImW7NvTCriMi7ErOAqWk1y69vAdoNIzCF3yPmgeNzx+RQTLEDFq5sHfscn1MwHxP9hNfA==", - "dev": true + ] }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "node_modules/qs": { + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", + "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" + "side-channel": "^1.1.0" }, "engines": { - "node": ">=0.4" + "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safe-array-concat/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { @@ -17346,1145 +15095,1112 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "optional": true, + "peer": true }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/sc-istanbul": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/sc-istanbul/-/sc-istanbul-0.4.6.tgz", - "integrity": "sha512-qJFF/8tW/zJsbyfh/iT/ZM5QNHE3CXxtLJbZsL+CzdJLBsPD7SedJZoUA4d8iAcN2IoMp/Dx80shOOd2x96X/g==", - "dev": true, - "dependencies": { - "abbrev": "1.0.x", - "async": "1.x", - "escodegen": "1.8.x", - "esprima": "2.7.x", - "glob": "^5.0.15", - "handlebars": "^4.0.1", - "js-yaml": "3.x", - "mkdirp": "0.5.x", - "nopt": "3.x", - "once": "1.x", - "resolve": "1.1.x", - "supports-color": "^3.1.0", - "which": "^1.1.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "istanbul": "lib/cli.js" + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" } }, - "node_modules/sc-istanbul/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" + "engines": { + "node": ">= 0.6" } }, - "node_modules/sc-istanbul/node_modules/glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", + "node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", "dev": true, "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" }, "engines": { - "node": "*" + "node": ">= 0.8" } }, - "node_modules/sc-istanbul/node_modules/has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", "dev": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/sc-istanbul/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", "dev": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/sc-istanbul/node_modules/js-yaml/node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/sc-istanbul/node_modules/resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", - "dev": true - }, - "node_modules/sc-istanbul/node_modules/supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", "dev": true, "dependencies": { - "has-flag": "^1.0.0" + "pinkie-promise": "^2.0.0" }, "engines": { - "node": ">=0.8.0" + "node": ">=0.10.0" } }, - "node_modules/scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", - "dev": true - }, - "node_modules/secp256k1": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz", - "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==", + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "hasInstallScript": true, "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=10.0.0" + "node": ">= 6" } }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" } }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "node_modules/reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", "dev": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=6" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/redux": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/redux/-/redux-3.7.2.tgz", + "integrity": "sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==", "dev": true, + "peer": true, "dependencies": { - "ms": "2.0.0" + "lodash": "^4.2.1", + "lodash-es": "^4.2.1", + "loose-envify": "^1.1.0", + "symbol-observable": "^1.0.3" } }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/sentence-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz", - "integrity": "sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==", + "node_modules/redux-saga": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redux-saga/-/redux-saga-1.0.0.tgz", + "integrity": "sha512-GvJWs/SzMvEQgeaw6sRMXnS2FghlvEGsHiEtTLpJqc/FHF3I5EE/B+Hq5lyHZ8LSoT2r/X/46uWvkdCnK9WgHA==", "dev": true, + "peer": true, "dependencies": { - "no-case": "^2.2.0", - "upper-case-first": "^1.1.2" + "@redux-saga/core": "^1.0.0" } }, - "node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, "dependencies": { - "randombytes": "^2.1.0" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "dev": true, "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 6" } }, - "node_modules/servify": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true, - "dependencies": { - "body-parser": "^1.16.0", - "cors": "^2.8.1", - "express": "^4.14.0", - "request": "^2.79.0", - "xhr": "^2.3.3" - }, "engines": { - "node": ">=6" + "node": ">=0.6" } }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "node_modules/require-from-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", + "integrity": "sha512-H7AkJWMobeskkttHyhTVtS0fxpFLjxhbfMa6Bk3wimP7sdPRGL3EyCg3sAQenFfAe+xQ+oAc85Nmtvq0ROM83Q==", "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", "dev": true }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true + "node_modules/reselect": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", + "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==", + "dev": true, + "peer": true }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "node_modules/reselect-tree": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/reselect-tree/-/reselect-tree-1.3.7.tgz", + "integrity": "sha512-kZN+C1cVJ6fFN2smSb0l4UvYZlRzttgnu183svH4NrU22cBY++ikgr2QT75Uuk4MYpv5gXSVijw4c5U6cx6GKg==", "dev": true, + "peer": true, "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" + "debug": "^3.1.0", + "json-pointer": "^0.6.1", + "reselect": "^4.0.0" } }, - "node_modules/sha1": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/sha1/-/sha1-1.1.1.tgz", - "integrity": "sha512-dZBS6OrMjtgVkopB1Gmo4RQCDKiZsqcpAQpkV/aaj+FCrCg8r4I4qMkDPQjBgLIxlmu9k4nUbWq6ohXahOneYA==", + "node_modules/reselect-tree/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "peer": true, "dependencies": { - "charenc": ">= 0.0.1", - "crypt": ">= 0.0.1" - }, - "engines": { - "node": "*" + "ms": "^2.1.1" } }, - "node_modules/sha3": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/sha3/-/sha3-2.1.4.tgz", - "integrity": "sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==", + "node_modules/resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", "dev": true, "dependencies": { - "buffer": "6.0.3" + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/sha3/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" } }, - "node_modules/shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", + "node_modules/resolve.exports": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, - "peer": true + "engines": { + "node": ">=10" + } }, - "node_modules/shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", "dev": true, "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" + "lowercase-keys": "^2.0.0" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/responselike/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/signal-exit": { + "node_modules/restore-cursor/node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "optional": true, + "peer": true }, - "node_modules/simple-get": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.2.tgz", - "integrity": "sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==", + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, - "dependencies": { - "decompress-response": "^3.3.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" + "engines": { + "node": ">= 4" } }, - "node_modules/simple-get/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { - "mimic-response": "^1.0.0" + "glob": "^7.1.3" }, - "engines": { - "node": ">=4" + "bin": { + "rimraf": "bin.js" } }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=10" + "node": "*" }, "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "*" } }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/ripemd160": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.3.tgz", + "integrity": "sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "hash-base": "^3.1.2", + "inherits": "^2.0.4" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.8" } }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/ripemd160-min": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/ripemd160-min/-/ripemd160-min-0.0.6.tgz", + "integrity": "sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/snake-case": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", - "integrity": "sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==", + "node_modules/rlp": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz", + "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==", "dev": true, "dependencies": { - "no-case": "^2.2.0" + "bn.js": "^5.2.0" + }, + "bin": { + "rlp": "bin/rlp" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solc": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/solc/-/solc-0.7.3.tgz", - "integrity": "sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==", + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, "dependencies": { - "command-exists": "^1.2.8", - "commander": "3.0.2", - "follow-redirects": "^1.12.1", - "fs-extra": "^0.30.0", - "js-sha3": "0.8.0", - "memorystream": "^0.3.1", - "require-from-string": "^2.0.0", - "semver": "^5.5.0", - "tmp": "0.0.33" - }, - "bin": { - "solcjs": "solcjs" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" }, "engines": { - "node": ">=8.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solc/node_modules/fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==", + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/scrypt-js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", + "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", + "dev": true + }, + "node_modules/secp256k1": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.4.tgz", + "integrity": "sha512-6JfvwvjUOn8F/jUoBY2Q1v5WY5XS+rj8qSe0v8Y4ezH4InLgTEeOOPQsRll9OV429Pvo6BCHGavIyJfr3TAhsw==", "dev": true, + "hasInstallScript": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" + "elliptic": "^6.5.7", + "node-addon-api": "^5.0.0", + "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=18.0.0" } }, - "node_modules/solc/node_modules/jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } + "node_modules/secp256k1/node_modules/node-addon-api": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==", + "dev": true }, - "node_modules/solc/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/secp256k1/node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, "bin": { - "semver": "bin/semver" - } - }, - "node_modules/solidity-ast": { - "version": "0.4.56", - "resolved": "https://registry.npmjs.org/solidity-ast/-/solidity-ast-0.4.56.tgz", - "integrity": "sha512-HgmsA/Gfklm/M8GFbCX/J1qkVH0spXHgALCNZ8fA8x5X+MFdn/8CP2gr5OVyXjXw6RZTPC/Sxl2RUDQOXyNMeA==", - "dev": true, - "dependencies": { - "array.prototype.findlast": "^1.2.2" + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/solidity-coverage": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/solidity-coverage/-/solidity-coverage-0.8.2.tgz", - "integrity": "sha512-cv2bWb7lOXPE9/SSleDO6czkFiMHgP4NXPj+iW9W7iEKLBk7Cj0AGBiNmGX3V1totl9wjPrT0gHmABZKZt65rQ==", + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, - "dependencies": { - "@ethersproject/abi": "^5.0.9", - "@solidity-parser/parser": "^0.14.1", - "chalk": "^2.4.2", - "death": "^1.1.0", - "detect-port": "^1.3.0", - "difflib": "^0.2.4", - "fs-extra": "^8.1.0", - "ghost-testrpc": "^0.0.2", - "global-modules": "^2.0.0", - "globby": "^10.0.1", - "jsonschema": "^1.2.4", - "lodash": "^4.17.15", - "mocha": "7.1.2", - "node-emoji": "^1.10.0", - "pify": "^4.0.1", - "recursive-readdir": "^2.2.2", - "sc-istanbul": "^0.4.5", - "semver": "^7.3.4", - "shelljs": "^0.8.3", - "web3-utils": "^1.3.6" - }, "bin": { - "solidity-coverage": "plugins/bin.js" + "semver": "bin/semver.js" }, - "peerDependencies": { - "hardhat": "^2.11.0" - } - }, - "node_modules/solidity-coverage/node_modules/ansi-colors": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", - "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", - "dev": true, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/solidity-coverage/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "node_modules/send": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.4.1", + "range-parser": "~1.2.1", + "statuses": "~2.0.2" + }, "engines": { - "node": ">=6" + "node": ">= 0.8.0" } }, - "node_modules/solidity-coverage/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "ms": "2.0.0" } }, - "node_modules/solidity-coverage/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/solidity-coverage/node_modules/chokidar": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.0.tgz", - "integrity": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==", + "node_modules/sentence-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz", + "integrity": "sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==", "dev": true, "dependencies": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.2.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.1.1" + "no-case": "^2.2.0", + "upper-case-first": "^1.1.2" } }, - "node_modules/solidity-coverage/node_modules/cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" + "randombytes": "^2.1.0" } }, - "node_modules/solidity-coverage/node_modules/debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "node_modules/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", "dev": true, "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/solidity-coverage/node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/solidity-coverage/node_modules/diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "node_modules/servify": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", + "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", "dev": true, + "dependencies": { + "body-parser": "^1.16.0", + "cors": "^2.8.1", + "express": "^4.14.0", + "request": "^2.79.0", + "xhr": "^2.3.3" + }, "engines": { - "node": ">=0.3.1" + "node": ">=6" } }, - "node_modules/solidity-coverage/node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, - "node_modules/solidity-coverage/node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" }, "engines": { - "node": ">=4" + "node": ">= 0.4" } }, - "node_modules/solidity-coverage/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, "dependencies": { - "locate-path": "^3.0.0" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/solidity-coverage/node_modules/flat": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz", - "integrity": "sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==", + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz", + "integrity": "sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==", "dev": true, "dependencies": { - "is-buffer": "~2.0.3" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.0" }, "bin": { - "flat": "cli.js" - } - }, - "node_modules/solidity-coverage/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "sha.js": "bin.js" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solidity-coverage/node_modules/fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", - "deprecated": "\"Please update to latest v2.3 or v2.2\"", + "node_modules/sha3": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/sha3/-/sha3-2.1.4.tgz", + "integrity": "sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "dependencies": { + "buffer": "6.0.3" } }, - "node_modules/solidity-coverage/node_modules/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "node_modules/sha3/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/solidity-coverage/node_modules/js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } + "peer": true }, - "node_modules/solidity-coverage/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/solidity-coverage/node_modules/log-symbols": { + "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "dependencies": { - "chalk": "^2.4.2" - }, "engines": { "node": ">=8" } }, - "node_modules/solidity-coverage/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solidity-coverage/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" }, "engines": { - "node": "*" - } - }, - "node_modules/solidity-coverage/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, - "dependencies": { - "minimist": "^1.2.5" + "node": ">= 0.4" }, - "bin": { - "mkdirp": "bin/cmd.js" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solidity-coverage/node_modules/mocha": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-7.1.2.tgz", - "integrity": "sha512-o96kdRKMKI3E8U0bjnfqW4QMk12MwZ4mhdBTf+B5a1q9+aq2HRnj+3ZdJu0B/ZhJeK78MgYuv6L8d/rA5AeBJA==", + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", "dev": true, "dependencies": { - "ansi-colors": "3.2.3", - "browser-stdout": "1.3.1", - "chokidar": "3.3.0", - "debug": "3.2.6", - "diff": "3.5.0", - "escape-string-regexp": "1.0.5", - "find-up": "3.0.0", - "glob": "7.1.3", - "growl": "1.10.5", - "he": "1.2.0", - "js-yaml": "3.13.1", - "log-symbols": "3.0.0", - "minimatch": "3.0.4", - "mkdirp": "0.5.5", - "ms": "2.1.1", - "node-environment-flags": "1.0.6", - "object.assign": "4.1.0", - "strip-json-comments": "2.0.1", - "supports-color": "6.0.0", - "which": "1.3.1", - "wide-align": "1.1.3", - "yargs": "13.3.2", - "yargs-parser": "13.1.2", - "yargs-unparser": "1.6.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mochajs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solidity-coverage/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "node_modules/solidity-coverage/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/solidity-coverage/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "p-limit": "^2.0.0" - }, "engines": { - "node": ">=6" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/solidity-coverage/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", "dev": true, - "engines": { - "node": ">=6" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/solidity-coverage/node_modules/readdirp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz", - "integrity": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==", + "node_modules/simple-get": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.2.tgz", + "integrity": "sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==", "dev": true, "dependencies": { - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" + "decompress-response": "^3.3.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" } }, - "node_modules/solidity-coverage/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/simple-get/node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "mimic-response": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/solidity-coverage/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true, + "peer": true + }, + "node_modules/snake-case": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", + "integrity": "sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==", "dev": true, "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" + "no-case": "^2.2.0" } }, - "node_modules/solidity-coverage/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/solc": { + "version": "0.4.26", + "resolved": "https://registry.npmjs.org/solc/-/solc-0.4.26.tgz", + "integrity": "sha512-o+c6FpkiHd+HPjmjEVpQgH7fqZ14tJpXhho+/bQXlXbliLIS/xjXb42Vxh+qQY1WCSTMQ0+a5vR9vi0MfhU6mA==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "fs-extra": "^0.30.0", + "memorystream": "^0.3.1", + "require-from-string": "^1.1.0", + "semver": "^5.3.0", + "yargs": "^4.7.1" }, - "engines": { - "node": ">=6" + "bin": { + "solcjs": "solcjs" } }, - "node_modules/solidity-coverage/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "node_modules/solc/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/solidity-coverage/node_modules/supports-color": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", - "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", + "node_modules/solc/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/solidity-coverage/node_modules/wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "node_modules/solc/node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "engines": { - "node": ">=6" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" } }, - "node_modules/solidity-coverage/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true + "node_modules/solc/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/solidity-coverage/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/solc/node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", "dev": true }, - "node_modules/solidity-coverage/node_modules/yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "node_modules/solc/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", "dev": true, "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/solc/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" } }, - "node_modules/solidity-coverage/node_modules/yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "node_modules/solc/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", "dev": true, "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/solidity-coverage/node_modules/yargs-unparser": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", - "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", + "node_modules/solc/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "dev": true, "dependencies": { - "flat": "^4.1.0", - "lodash": "^4.17.15", - "yargs": "^13.3.0" + "ansi-regex": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/source-map": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", - "integrity": "sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==", + "node_modules/solc/node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", "dev": true, - "optional": true, "dependencies": { - "amdefine": ">=0.0.4" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" }, "engines": { - "node": ">=0.8.0" + "node": ">=0.10.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "node_modules/solc/node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "node_modules/solc/node_modules/yargs": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz", + "integrity": "sha512-LqodLrnIDM3IFT+Hf/5sxBnEGECrfdC1uIbgZeJmESCSo4HoCAaKEus8MylXHAkdacGc0ye+Qa+dpkuom8uVYA==", "dev": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "lodash.assign": "^4.0.3", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.1", + "which-module": "^1.0.0", + "window-size": "^0.2.0", + "y18n": "^3.2.1", + "yargs-parser": "^2.4.1" } }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/solc/node_modules/yargs-parser": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", + "integrity": "sha512-9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "camelcase": "^3.0.0", + "lodash.assign": "^4.0.6" + } + }, + "node_modules/solidity-ast": { + "version": "0.4.56", + "resolved": "https://registry.npmjs.org/solidity-ast/-/solidity-ast-0.4.56.tgz", + "integrity": "sha512-HgmsA/Gfklm/M8GFbCX/J1qkVH0spXHgALCNZ8fA8x5X+MFdn/8CP2gr5OVyXjXw6RZTPC/Sxl2RUDQOXyNMeA==", + "dev": true, + "dependencies": { + "array.prototype.findlast": "^1.2.2" } }, "node_modules/spark-md5": { @@ -18527,11 +16243,15 @@ "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", "dev": true }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true + "node_modules/split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "peer": true, + "dependencies": { + "readable-stream": "^3.0.0" + } }, "node_modules/sshpk": { "version": "1.17.0", @@ -18558,60 +16278,15 @@ "node": ">=0.10.0" } }, - "node_modules/sshpk/node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", - "dev": true, - "dependencies": { - "type-fest": "^0.7.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/stacktrace-parser/node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", "dev": true, "engines": { "node": ">= 0.8" } }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/strict-uri-encode": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", @@ -18637,16 +16312,89 @@ "dev": true }, "node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/string.prototype.trim": { @@ -18710,6 +16458,28 @@ "node": ">=4" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", @@ -18801,15 +16571,18 @@ "peer": true }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/swap-case": { @@ -18853,30 +16626,6 @@ "node": ">=10" } }, - "node_modules/swarm-js/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/swarm-js/node_modules/cacheable-lookup": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", @@ -18935,6 +16684,15 @@ "node": ">=10.19.0" } }, + "node_modules/swarm-js/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, "node_modules/swarm-js/node_modules/lowercase-keys": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", @@ -18953,6 +16711,15 @@ "node": ">=8" } }, + "node_modules/swarm-js/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/symbol-observable": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", @@ -18960,46 +16727,7 @@ "dev": true, "peer": true, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sync-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/sync-request/-/sync-request-6.1.0.tgz", - "integrity": "sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==", - "dev": true, - "dependencies": { - "http-response-object": "^3.0.1", - "sync-rpc": "^1.2.1", - "then-request": "^6.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/sync-rpc": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/sync-rpc/-/sync-rpc-1.3.6.tgz", - "integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==", - "dev": true, - "dependencies": { - "get-port": "^3.1.0" - } - }, - "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" + "node": ">=0.10.0" } }, "node_modules/table-layout": { @@ -19035,76 +16763,11 @@ "node": ">=8" } }, - "node_modules/table/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/table/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/table/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/table/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/tar": { "version": "4.4.19", "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", + "deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exhorbitant rates) by contacting i@izs.me", "dev": true, "dependencies": { "chownr": "^1.1.4", @@ -19119,65 +16782,43 @@ "node": ">=4.5" } }, - "node_modules/testrpc": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/testrpc/-/testrpc-0.0.1.tgz", - "integrity": "sha512-afH1hO+SQ/VPlmaLUFj2636QMeDvPCeQMc/9RBMW0IfjNe9gFD9Ra3ShqYkB7py0do1ZcCna/9acHyzTJ+GcNA==", - "deprecated": "testrpc has been renamed to ganache-cli, please use this package from now on.", - "dev": true - }, - "node_modules/then-request": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/then-request/-/then-request-6.0.2.tgz", - "integrity": "sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==", + "node_modules/tar/node_modules/minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "dev": true, "dependencies": { - "@types/concat-stream": "^1.6.0", - "@types/form-data": "0.0.33", - "@types/node": "^8.0.0", - "@types/qs": "^6.2.31", - "caseless": "~0.12.0", - "concat-stream": "^1.6.0", - "form-data": "^2.2.0", - "http-basic": "^8.1.1", - "http-response-object": "^3.0.1", - "promise": "^8.0.0", - "qs": "^6.4.0" - }, - "engines": { - "node": ">=6.0.0" + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" } }, - "node_modules/then-request/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==", - "dev": true - }, - "node_modules/then-request/node_modules/form-data": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", - "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "node_modules/tar/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "minimist": "^1.2.6" }, - "engines": { - "node": ">= 0.12" + "bin": { + "mkdirp": "bin/cmd.js" } }, + "node_modules/testrpc": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/testrpc/-/testrpc-0.0.1.tgz", + "integrity": "sha512-afH1hO+SQ/VPlmaLUFj2636QMeDvPCeQMc/9RBMW0IfjNe9gFD9Ra3ShqYkB7py0do1ZcCna/9acHyzTJ+GcNA==", + "deprecated": "testrpc has been renamed to ganache-cli, please use this package from now on.", + "dev": true + }, "node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, - "optional": true, "peer": true, "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" + "readable-stream": "3" } }, "node_modules/timed-out": { @@ -19207,16 +16848,18 @@ "upper-case": "^1.0.3" } }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "node_modules/to-buffer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.2.tgz", + "integrity": "sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==", "dev": true, "dependencies": { - "os-tmpdir": "~1.0.2" + "isarray": "^2.0.5", + "safe-buffer": "^5.2.1", + "typed-array-buffer": "^1.0.3" }, "engines": { - "node": ">=0.6.0" + "node": ">= 0.4" } }, "node_modules/to-regex-range": { @@ -19224,6 +16867,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "peer": true, "dependencies": { "is-number": "^7.0.0" }, @@ -19253,6 +16897,15 @@ "node": ">=0.8" } }, + "node_modules/tough-cookie/node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -19260,14 +16913,14 @@ "dev": true }, "node_modules/tronweb": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/tronweb/-/tronweb-5.3.1.tgz", - "integrity": "sha512-JF3HE0ab8KQWJWETCF7UqZHD4uMNNGlEPrquBoObu5bWc8A8eerBV9M2PJq+HcSYBivmEHeBqFgmpMAQP3ofpw==", + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/tronweb/-/tronweb-5.3.4.tgz", + "integrity": "sha512-79HEnwSAqyCKrT7QB8dkxad0RqYx3dSulEg4dfBQQVwzhRr+AqdE1yz+nfTUpftu54RejqaHjqz40ZzWNy077w==", "dependencies": { "@babel/runtime": "^7.0.0", "@ethersproject/abi": "^5.7.0", "@tronweb3/google-protobuf": "^3.21.2", - "axios": "^0.26.1", + "axios": "^1.8.4", "bignumber.js": "^9.0.1", "ethereum-cryptography": "^2.0.0", "ethers": "^6.6.0", @@ -19279,148 +16932,39 @@ "validator": "^13.7.0" } }, - "node_modules/tronweb/node_modules/@noble/hashes": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz", - "integrity": "sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==", - "engines": { - "node": ">= 16" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/tronweb/node_modules/@scure/bip32": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.3.tgz", - "integrity": "sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==", - "dependencies": { - "@noble/curves": "~1.3.0", - "@noble/hashes": "~1.3.2", - "@scure/base": "~1.1.4" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/tronweb/node_modules/@scure/bip39": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.2.tgz", - "integrity": "sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==", - "dependencies": { - "@noble/hashes": "~1.3.2", - "@scure/base": "~1.1.4" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/tronweb/node_modules/aes-js": { - "version": "4.0.0-beta.5", - "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz", - "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==" - }, "node_modules/tronweb/node_modules/axios": { - "version": "0.26.1", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", - "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", - "dependencies": { - "follow-redirects": "^1.14.8" - } - }, - "node_modules/tronweb/node_modules/ethereum-cryptography": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.1.3.tgz", - "integrity": "sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==", - "dependencies": { - "@noble/curves": "1.3.0", - "@noble/hashes": "1.3.3", - "@scure/bip32": "1.3.3", - "@scure/bip39": "1.2.2" - } - }, - "node_modules/tronweb/node_modules/ethers": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.10.0.tgz", - "integrity": "sha512-nMNwYHzs6V1FR3Y4cdfxSQmNgZsRj1RiTU25JwvnJLmyzw9z3SKxNc2XKDuiXXo/v9ds5Mp9m6HBabgYQQ26tA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/ethers-io/" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.4.tgz", + "integrity": "sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==", "dependencies": { - "@adraffy/ens-normalize": "1.10.0", - "@noble/curves": "1.2.0", - "@noble/hashes": "1.3.2", - "@types/node": "18.15.13", - "aes-js": "4.0.0-beta.5", - "tslib": "2.4.0", - "ws": "8.5.0" - }, - "engines": { - "node": ">=14.0.0" + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" } }, - "node_modules/tronweb/node_modules/ethers/node_modules/@noble/curves": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz", - "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==", + "node_modules/tronweb/node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", "dependencies": { - "@noble/hashes": "1.3.2" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" }, - "funding": { - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/tronweb/node_modules/ethers/node_modules/@noble/hashes": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz", - "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==", "engines": { - "node": ">= 16" - }, - "funding": { - "url": "https://paulmillr.com/funding/" + "node": ">= 6" } }, "node_modules/tronweb/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "bin": { "semver": "bin/semver" } }, - "node_modules/tronweb/node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - }, - "node_modules/tronweb/node_modules/ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/truffle": { "version": "5.11.5", "resolved": "https://registry.npmjs.org/truffle/-/truffle-5.11.5.tgz", @@ -19456,70 +17000,158 @@ "node": ">=6" } }, - "node_modules/truffle/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/truffle/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/truffle/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/truffle/node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "peer": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/truffle/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "peer": true, "dependencies": { - "balanced-match": "^1.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/truffle/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/truffle/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "peer": true, + "dependencies": { + "ms": "2.1.2" + }, "engines": { - "node": ">=10" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/truffle/node_modules/find-up": { + "node_modules/truffle/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "peer": true + }, + "node_modules/truffle/node_modules/diff": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/truffle/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "peer": true + }, + "node_modules/truffle/node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "peer": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=10" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/truffle/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/truffle/node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, "peer": true, - "engines": { - "node": ">=8" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/truffle/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/truffle/node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "peer": true, "dependencies": { - "p-locate": "^5.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, "node_modules/truffle/node_modules/minimatch": { @@ -19576,69 +17208,109 @@ "url": "https://opencollective.com/mochajs" } }, - "node_modules/truffle/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "node_modules/truffle/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "peer": true + "peer": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } }, - "node_modules/truffle/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/truffle/node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", "dev": true, "peer": true, "dependencies": { - "yocto-queue": "^0.1.0" + "randombytes": "^2.1.0" + } + }, + "node_modules/truffle/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "peer": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/truffle/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "peer": true, + "dependencies": { + "ansi-regex": "^5.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/truffle/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/truffle/node_modules/workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true, + "peer": true + }, + "node_modules/truffle/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "peer": true, "dependencies": { - "p-limit": "^3.0.2" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/truffle/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/truffle/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "peer": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/truffle/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/truffle/node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", "dev": true, "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/ts-command-line-args": { @@ -19688,33 +17360,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/ts-command-line-args/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ts-command-line-args/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ts-command-line-args/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/ts-command-line-args/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -19780,25 +17425,37 @@ } }, "node_modules/ts-node/node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz", + "integrity": "sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==", "dev": true, "engines": { "node": ">=0.3.1" } }, "node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, - "node_modules/tsort": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/tsort/-/tsort-0.0.1.tgz", - "integrity": "sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==", - "dev": true + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "dev": true, + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } }, "node_modules/tunnel-agent": { "version": "0.6.0", @@ -19813,56 +17470,17 @@ } }, "node_modules/tweetnacl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", - "dev": true - }, - "node_modules/tweetnacl-util": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz", - "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==", - "dev": true - }, - "node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", "dev": true }, - "node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -19877,9 +17495,9 @@ } }, "node_modules/typechain": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/typechain/-/typechain-8.1.1.tgz", - "integrity": "sha512-uF/sUvnXTOVF2FHKhQYnxHk4su4JjZR8vr4mA2mBaRwHTbwh0jIlqARz9XJr1tA0l7afJGvEa1dTSi4zt039LQ==", + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/typechain/-/typechain-8.3.2.tgz", + "integrity": "sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q==", "dev": true, "dependencies": { "@types/prettier": "^2.1.1", @@ -19900,10 +17518,35 @@ "typescript": ">=4.3.0" } }, + "node_modules/typechain/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/typechain/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, "node_modules/typechain/node_modules/glob": { "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -19920,27 +17563,45 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/typechain/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/typechain/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/typechain/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" + "node": "*" + } + }, + "node_modules/typechain/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" } }, "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", "dev": true, "dependencies": { - "call-bind": "^1.0.7", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" + "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -20005,12 +17666,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -20069,19 +17724,6 @@ "node": ">=8" } }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "dev": true, - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/ultron": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", @@ -20104,30 +17746,28 @@ } }, "node_modules/undici": { - "version": "5.21.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.21.0.tgz", - "integrity": "sha512-HOjK8l6a57b2ZGXOcUsI5NLfoTrfmbOl90ixJDl0AEFG4wgHNDQxtZy15/ZQp7HhjkpaGlp/eneMgtsu1dIlUA==", + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.23.0.tgz", + "integrity": "sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==", "dev": true, - "dependencies": { - "busboy": "^1.6.0" - }, "engines": { - "node": ">=12.18" + "node": ">=18.17" } }, - "node_modules/unfetch": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", - "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==", - "dev": true + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" }, "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">= 4.0.0" + "node": ">= 10.0.0" } }, "node_modules/unpipe": { @@ -20182,6 +17822,17 @@ "node": ">=6.14.2" } }, + "node_modules/utf-8-validate/node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "devOptional": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, "node_modules/utf8": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", @@ -20217,10 +17868,14 @@ } }, "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], "bin": { "uuid": "dist/bin/uuid" } @@ -20242,9 +17897,9 @@ } }, "node_modules/validator": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", - "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", + "version": "13.15.26", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.26.tgz", + "integrity": "sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==", "engines": { "node": ">= 0.10" } @@ -20517,19 +18172,6 @@ "xhr-request-promise": "^0.1.2" } }, - "node_modules/web3-eth-accounts/node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/web3-eth-contract": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.10.0.tgz", @@ -20760,15 +18402,18 @@ } }, "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { - "which": "bin/which" + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, "node_modules/which-boxed-primitive": { @@ -20788,21 +18433,23 @@ } }, "node_modules/which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", "dev": true }, "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "version": "1.1.20", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", "dev": true, "dependencies": { "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" }, "engines": { @@ -20812,15 +18459,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2" - } - }, "node_modules/window-size": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", @@ -20833,21 +18471,6 @@ "node": ">= 0.10.0" } }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, "node_modules/wordwrapjs": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", @@ -20871,12 +18494,30 @@ } }, "node_modules/workerpool": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", - "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", "dev": true }, "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", @@ -20893,7 +18534,7 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", @@ -20902,7 +18543,7 @@ "node": ">=8" } }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20917,34 +18558,13 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { + "node_modules/wrap-ansi-cjs/node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", @@ -20958,7 +18578,7 @@ "node": ">=8" } }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", @@ -20970,6 +18590,33 @@ "node": ">=8" } }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -20996,16 +18643,16 @@ "peer": true }, "node_modules/ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, "engines": { - "node": ">=8.3.0" + "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { @@ -21079,14 +18726,6 @@ "node": ">= 0.10.0" } }, - "node_modules/xss/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true, - "optional": true, - "peer": true - }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", @@ -21109,6 +18748,7 @@ "version": "0.0.6", "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", "integrity": "sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "dev": true, "engines": { "node": ">=0.10.32" @@ -21121,30 +18761,30 @@ "dev": true }, "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "string-width": "^4.2.0", + "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/yargs-parser": { - "version": "20.2.4", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", - "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/yargs-unparser": { @@ -21162,6 +18802,18 @@ "node": ">=10" } }, + "node_modules/yargs-unparser/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/yargs/node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -21171,14 +18823,11 @@ "node": ">=8" } }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "node_modules/yargs/node_modules/string-width": { "version": "4.2.3", @@ -21227,14 +18876,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/zksync-web3": { - "version": "0.14.3", - "resolved": "https://registry.npmjs.org/zksync-web3/-/zksync-web3-0.14.3.tgz", - "integrity": "sha512-hT72th4AnqyLW1d5Jlv8N2B/qhEnl2NePK2A3org7tAa24niem/UAaHMkEvmWI3SF9waYUPtqAtjpf+yvQ9zvQ==", - "deprecated": "This package has been deprecated in favor of zksync-ethers@5.0.0", + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", "dev": true, - "peerDependencies": { - "ethers": "^5.7.0" + "funding": { + "url": "https://github.com/sponsors/colinhacks" } } } diff --git a/package.json b/package.json index 8b4e416..d5947a2 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "repository": "https://github.com/paycrest/contracts", "scripts": { "test": "npx hardhat test", - "ownership": "npx hardhat test test/gateway/gateway.ownable.test.js", + "ownership": "npx hardhat test mocha test/gateway/gateway.ownable.test.js", "settleOrder": "npx hardhat test test/gateway/gateway.settleOrder.test.js", "createOrder": "npx hardhat test test/gateway/gateway.createorder.test.js", "compile": "npx hardhat compile", @@ -16,26 +16,25 @@ "keywords": [], "author": "https://onahprosper.github.io/", "license": "MIT", + "type": "module", "devDependencies": { "@daochild/tronweb-typescript": "^1.1.2", - "@ethersproject/abi": "^5.7.0", "@ethersproject/providers": "^5.7.2", - "@nomicfoundation/hardhat-chai-matchers": "^1.0.6", - "@nomicfoundation/hardhat-network-helpers": "^1.0.8", - "@nomicfoundation/hardhat-toolbox": "^2.0.2", - "@nomiclabs/hardhat-ethers": "^2.2.3", - "@nomiclabs/hardhat-etherscan": "^3.1.7", - "@openzeppelin/hardhat-upgrades": "^1.27.0", + "@nomicfoundation/hardhat-ethers": "^4.0.4", + "@nomicfoundation/hardhat-ethers-chai-matchers": "^3.0.2", + "@nomicfoundation/hardhat-mocha": "^3.0.9", + "@nomicfoundation/hardhat-network-helpers": "^3.0.3", + "@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.2", + "@nomicfoundation/hardhat-typechain": "^3.0.1", + "@nomicfoundation/hardhat-verify": "^3.0.8", "@openzeppelin/truffle-upgrades": "^1.21.0", - "@typechain/ethers-v5": "^10.2.0", - "@typechain/hardhat": "^6.1.5", - "chai": "^4.3.7", + "@types/chai": "^5.2.3", + "@types/mocha": "^10.0.10", + "chai": "^6.2.2", "dotenv": "^16.0.2", - "ethers": "^5.7.2", - "hardhat": "^2.14.0", - "hardhat-deploy": "^0.11.34", - "hardhat-gas-reporter": "^1.0.9", - "solidity-coverage": "^0.8.2", + "ethers": "^6.16.0", + "hardhat": "^3.0.12", + "mocha": "^11.3.0", "ts-node": "^10.9.2", "typechain": "^8.1.1", "typescript": "^5.3.3" diff --git a/tasks/accounts.ts b/tasks/accounts.ts new file mode 100644 index 0000000..1e63421 --- /dev/null +++ b/tasks/accounts.ts @@ -0,0 +1,24 @@ +import { HardhatRuntimeEnvironment } from "hardhat/types/hre"; + +interface AccountTaskArguments { + // No argument in this case +} + +export default async function ( + taskArguments: AccountTaskArguments, + hre: HardhatRuntimeEnvironment, +) { + const accounts = await hre.ethers.getSigners(); + const provider = hre.ethers.provider; + + for (const account of accounts) { + console.log( + "%s (%i ETH)", + account.address, + // hre.ethers.utils.formatEther( + // getBalance returns wei amount, format to ETH amount + await provider.getBalance(account.address) + // ) + ); + } +} \ No newline at end of file diff --git a/tasks/flatten.ts b/tasks/flatten.ts new file mode 100644 index 0000000..8be5145 --- /dev/null +++ b/tasks/flatten.ts @@ -0,0 +1,27 @@ +import { HardhatRuntimeEnvironment } from "hardhat/types/hre"; +import fs from "fs"; +import path from "path"; + +interface FlatTaskArguments { + files?: string[]; +} + +export default async function ( + taskArguments: FlatTaskArguments, + hre: HardhatRuntimeEnvironment, +) { + const files = taskArguments.files || ["contracts/Gateway.sol"]; + let flattened = await hre.run("flatten:get-flattened-sources", { files }); + + // Remove every line started with "// SPDX-License-Identifier:" + flattened = flattened.replace(/SPDX-License-Identifier:/gm, "License-Identifier:"); + flattened = `// SPDX-License-Identifier: MIXED\n\n${flattened}`; + + // Remove every line started with "pragma experimental ABIEncoderV2;" except the first one + flattened = flattened.replace(/pragma experimental ABIEncoderV2;\n/gm, ((i) => (m: any) => (!i++ ? m : ""))(0)); + + // Write to flattened/Gateway.sol + const outputPath = path.join("flattened", "Gateway.sol"); + fs.writeFileSync(outputPath, flattened); + console.log(`Flattened contract written to ${outputPath}`); +} diff --git a/test/fixtures/gateway.js b/test/fixtures/gateway.js index 94d3796..6a422f3 100644 --- a/test/fixtures/gateway.js +++ b/test/fixtures/gateway.js @@ -1,35 +1,56 @@ -const { upgrades } = require("hardhat"); -const hardhat = require("hardhat"); -const { mockUSDTFixture } = require("./mockUSDT.js"); -const { configureTokenFeeSettings } = require("../utils/utils.manager.js"); +import hre from "hardhat"; +import { mockUSDTFixture } from "./mockUSDT.js"; +import { configureTokenFeeSettings } from "../utils/utils.manager.js"; -async function gateway() { - const { mockUSDT } = await mockUSDTFixture(); - const gatewayFactory = await hardhat.ethers.getContractFactory("Gateway"); - const gateway = await upgrades.deployProxy(gatewayFactory); - await gateway.deployed(); +const { ethers, artifacts } = await hre.network.connect(); - console.log("Gateway deployed to:", gateway.address); +async function gatewayFixture() { + const { mockUSDT } = await mockUSDTFixture(); + const [deployer] = await ethers.getSigners(); + + // Deploy Gateway implementation + const Gateway = await ethers.getContractFactory("Gateway"); + const gatewayImpl = await Gateway.deploy(); + await gatewayImpl.waitForDeployment(); + + // Load OpenZeppelin artifacts and deploy ProxyAdmin + const ProxyAdminArtifact = await artifacts.readArtifact("@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol:ProxyAdmin"); + const ProxyAdmin = await ethers.getContractFactoryFromArtifact(ProxyAdminArtifact); + const proxyAdmin = await ProxyAdmin.deploy(deployer.address); + await proxyAdmin.waitForDeployment(); + + // Encode initialize call + const initData = Gateway.interface.encodeFunctionData("initialize", []); + + // Load TransparentUpgradeableProxy artifact and deploy + const TransparentProxyArtifact = await artifacts.readArtifact("@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol:TransparentUpgradeableProxy"); + const TransparentProxy = await ethers.getContractFactoryFromArtifact(TransparentProxyArtifact); + const proxy = await TransparentProxy.deploy( + await gatewayImpl.getAddress(), + await proxyAdmin.getAddress(), + initData + ); + await proxy.waitForDeployment(); + + // Get Gateway instance at proxy address + const gateway = Gateway.attach(await proxy.getAddress()); + + console.log("Gateway deployed to:", await gateway.getAddress()); // First, mark the token as supported - const [deployer] = await hardhat.ethers.getSigners(); - const token = hardhat.ethers.utils.formatBytes32String("token"); - await gateway.connect(deployer).settingManagerBool(token, mockUSDT.address, hardhat.ethers.BigNumber.from(1)); + const token = ethers.encodeBytes32String("token"); + const mockUSDTAddress = await mockUSDT.getAddress(); + await gateway.connect(deployer).settingManagerBool(token, mockUSDTAddress, 1n); // Then configure token fee settings for mockUSDT - await configureTokenFeeSettings(gateway, deployer, mockUSDT.address, { - senderToProvider: 50000, // 50% of sender fee goes to provider - providerToAggregator: 50000, // 50% of provider's share goes to aggregator - senderToAggregator: 0, // 0% of sender fee goes to aggregator (FX mode) - providerToAggregatorFx: 500 // 0.5% of transaction amount provider pays to aggregator (FX mode) + await configureTokenFeeSettings(gateway, deployer, mockUSDTAddress, { + senderToProvider: 50000n, // 50% of sender fee goes to provider + providerToAggregator: 50000n, // 50% of provider's share goes to aggregator + senderToAggregator: 0n, // 0% of sender fee goes to aggregator (FX mode) + providerToAggregatorFx: 500n // 0.5% of transaction amount provider pays to aggregator (FX mode) }); return { gateway, mockUSDT }; } -const gatewayFixture = hardhat.deployments.createFixture(gateway); - -module.exports = { - gatewayFixture -}; - +export { gatewayFixture }; diff --git a/test/fixtures/mockUSDT.js b/test/fixtures/mockUSDT.js index 46846ca..c54e078 100644 --- a/test/fixtures/mockUSDT.js +++ b/test/fixtures/mockUSDT.js @@ -1,15 +1,12 @@ -const { ethers } = require("hardhat"); -const hardhat = require("hardhat"); +import hre from "hardhat"; -async function mockUSDT() { +const { ethers } = await hre.network.connect(); + +async function mockUSDTFixture() { // get mock usdc contract and deploy it - const MockUSDT = await ethers.getContractFactory("MockUSDT"); - const mockUSDT = await MockUSDT.deploy(); - await mockUSDT.deployed(); - console.log("MockUSDT deployed to:", mockUSDT.address); - return { mockUSDT }; + const mockUSDT = await ethers.deployContract("MockUSDT"); + console.log("MockUSDT deployed to:", await mockUSDT.getAddress()); + return { mockUSDT }; } -const mockUSDTFixture = hardhat.deployments.createFixture(mockUSDT); -module.exports = { - mockUSDTFixture, -}; + +export { mockUSDTFixture }; \ No newline at end of file diff --git a/test/gateway/gateway.ownable.test.js b/test/gateway/gateway.ownable.test.js index be7cfe1..930d128 100644 --- a/test/gateway/gateway.ownable.test.js +++ b/test/gateway/gateway.ownable.test.js @@ -1,10 +1,9 @@ -const { ethers } = require("hardhat"); -const { BigNumber } = require("@ethersproject/bignumber"); -const { gatewayFixture } = require("../fixtures/gateway.js"); -require("dotenv").config(); +import { expect } from "chai"; +import hre from "hardhat"; +import { gatewayFixture } from "../fixtures/gateway.js"; +import { Errors, Events } from "../utils/utils.manager.js"; -const { Errors, Events } = require("../utils/utils.manager.js"); -const { expect } = require("chai"); +const { ethers } = await hre.network.connect(); describe("Ownable settings", function () { let gateway; @@ -21,23 +20,23 @@ describe("Ownable settings", function () { async function setupAndResetFork() { ({ gateway, mockUSDT } = await gatewayFixture()); - [admin, keeper, alice, hacker, sender, Mark, treasuryAddress, aggregator] = - await ethers.getSigners(); + [admin, keeper, alice, hacker, sender, Mark, treasuryAddress, aggregator] = await ethers.getSigners(); - const token = ethers.utils.formatBytes32String("token"); + const token = ethers.encodeBytes32String("token"); + const mockUSDTAddress = await mockUSDT.getAddress(); await expect( gateway .connect(admin) - .settingManagerBool(token, mockUSDT.address, BigNumber.from(1)) + .settingManagerBool(token, mockUSDTAddress, 1n) ) .to.emit(gateway, Events.Gateway.SettingManagerBool) - .withArgs(token, mockUSDT.address, BigNumber.from(1)); + .withArgs(token, mockUSDTAddress, 1n); } it("should get supported token", async function () { await setupAndResetFork(); - const _mockUSDT = await gateway.isTokenSupported(mockUSDT.address); + const _mockUSDT = await gateway.isTokenSupported(await mockUSDT.getAddress()); expect(_mockUSDT).to.eq(true); }); @@ -50,31 +49,33 @@ describe("Ownable settings", function () { it("should be able to set token fee settings and emit events", async function () { await setupAndResetFork(); + const mockUSDTAddress = await mockUSDT.getAddress(); + await expect( gateway .connect(admin) .setTokenFeeSettings( - mockUSDT.address, - BigNumber.from(50000), // senderToProvider: 50% - BigNumber.from(50000), // providerToAggregator: 50% - BigNumber.from(0), // senderToAggregator: 0% - BigNumber.from(500) // providerToAggregatorFx: 0.5% + mockUSDTAddress, + 50000n, // senderToProvider: 50% + 50000n, // providerToAggregator: 50% + 0n, // senderToAggregator: 0% + 500n // providerToAggregatorFx: 0.5% ) ) .to.emit(gateway, Events.Gateway.TokenFeeSettingsUpdated) .withArgs( - mockUSDT.address, - BigNumber.from(50000), - BigNumber.from(50000), - BigNumber.from(0), - BigNumber.from(500) + mockUSDTAddress, + 50000n, + 50000n, + 0n, + 500n ); - const settings = await gateway.getTokenFeeSettings(mockUSDT.address); - expect(settings.senderToProvider).to.eq(BigNumber.from(50000)); - expect(settings.providerToAggregator).to.eq(BigNumber.from(50000)); - expect(settings.senderToAggregator).to.eq(BigNumber.from(0)); - expect(settings.providerToAggregatorFx).to.eq(BigNumber.from(500)); + const settings = await gateway.getTokenFeeSettings(mockUSDTAddress); + expect(settings.senderToProvider).to.eq(50000n); + expect(settings.providerToAggregator).to.eq(50000n); + expect(settings.senderToAggregator).to.eq(0n); + expect(settings.providerToAggregatorFx).to.eq(500n); }); it("should not be able to set token fee settings by non-owner", async function () { @@ -84,18 +85,18 @@ describe("Ownable settings", function () { gateway .connect(hacker) .setTokenFeeSettings( - mockUSDT.address, - BigNumber.from(50000), - BigNumber.from(50000), - BigNumber.from(0), - BigNumber.from(500) + await mockUSDT.getAddress(), + 50000n, + 50000n, + 0n, + 500n ) ).to.be.revertedWith(Errors.Ownable.onlyOwner); }); it("should update treasury address", async function () { await setupAndResetFork(); - const treasury = ethers.utils.formatBytes32String("treasury"); + const treasury = ethers.encodeBytes32String("treasury"); await expect( gateway diff --git a/test/gateway/gateway.settleOrder.test.js b/test/gateway/gateway.settleOrder.test.js index 19e756c..f696e74 100644 --- a/test/gateway/gateway.settleOrder.test.js +++ b/test/gateway/gateway.settleOrder.test.js @@ -173,9 +173,9 @@ describe("Gateway settle order", function () { expect( await gateway .connect(this.aggregator) - .settle(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) + .settleOut(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0); expect(await mockUSDT.balanceOf(this.liquidityProvider.address)).to.eq( @@ -285,8 +285,8 @@ describe("Gateway settle order", function () { expect( await gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0) - ).to.emit(gateway, Events.Gateway.OrderSettled) + .settleOut(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0) + ).to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0); const splitLiquidityProviderAmount = this.orderAmount.mul(splitOrderpercent).div(MAX_BPS); @@ -303,8 +303,8 @@ describe("Gateway settle order", function () { expect( await gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0) - ).to.emit(gateway, Events.Gateway.OrderSettled) + .settleOut(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0) + ).to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0); const splitProtocolFeeSplitedOrder = splitLiquidityProviderAmount.mul(this.protocolFeePercent).div(MAX_BPS); @@ -409,9 +409,9 @@ describe("Gateway settle order", function () { expect( await gateway .connect(this.aggregator) - .settle(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) + .settleOut(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0); expect(await mockUSDT.balanceOf(this.liquidityProvider.address)).to.eq( @@ -488,9 +488,9 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) + .settleOut(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) .to.emit(gateway, Events.Gateway.LocalTransferFeeSplit) .withArgs( @@ -581,9 +581,9 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) + .settleOut(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(orderId, orderId, this.liquidityProvider.address, MAX_BPS, 0) .to.emit(gateway, Events.Gateway.FxTransferFeeSplit) .withArgs( @@ -681,18 +681,18 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0) + .settleOut(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0); // Settle second half with provider 2 await expect( gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0) + .settleOut(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0); // Verify final balances @@ -794,18 +794,18 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0) + .settleOut(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, 0); // Settle second half with provider 2 await expect( gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0) + .settleOut(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, 0); // Verify final balances @@ -901,9 +901,9 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(orderId, orderId, this.liquidityProvider.address, MAX_BPS, rebatePercent) + .settleOut(orderId, orderId, this.liquidityProvider.address, MAX_BPS, rebatePercent) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(orderId, orderId, this.liquidityProvider.address, MAX_BPS, rebatePercent) .to.emit(gateway, Events.Gateway.FxTransferFeeSplit) .withArgs( @@ -1010,18 +1010,18 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, rebatePercent) + .settleOut(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, rebatePercent) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider.address, splitOrderpercent, rebatePercent); // Settle second half with provider 2 await expect( gateway .connect(this.aggregator) - .settle(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, rebatePercent) + .settleOut(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, rebatePercent) ) - .to.emit(gateway, Events.Gateway.OrderSettled) + .to.emit(gateway, Events.Gateway.SettleOut) .withArgs(splitOrderId, orderId, this.liquidityProvider2.address, splitOrderpercent, rebatePercent); // Verify final balances @@ -1108,7 +1108,326 @@ describe("Gateway settle order", function () { await expect( gateway .connect(this.aggregator) - .settle(orderId, orderId, this.liquidityProvider.address, MAX_BPS, invalidRebatePercent) + .settleOut(orderId, orderId, this.liquidityProvider.address, MAX_BPS, invalidRebatePercent) ).to.be.revertedWith('InvalidRebatePercent'); }); + + /* ################################################################## + SETTLEIN TESTS (ONRAMP) + ################################################################## */ + + describe("settleIn", function () { + beforeEach(async function () { + // Setup for settleIn tests + this.recipient = this.bob; // Recipient who will receive tokens + this.provider = this.liquidityProvider; // Provider who deposits tokens + this.senderFee = ethers.utils.parseEther("100"); // Sender fee + // For FX: totalAmount needs to cover protocolFee + senderFee + recipient amount + // For local: totalAmount needs to cover senderFee + recipient amount + // We'll set a base amount and add fees as needed in each test + this.baseAmount = ethers.utils.parseEther("10000"); // Base amount for recipient + + // Mint tokens for provider (will be adjusted per test) + await mockUSDT.connect(this.alice).mint(ethers.utils.parseEther("50000")); + await mockUSDT.connect(this.alice).transfer(this.provider.address, ethers.utils.parseEther("50000")); + }); + + it("Should successfully process settleIn for FX transfer (rate ≠ 100)", async function () { + const ret = await getSupportedInstitutions(); + const rate = 750; // FX transfer + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-1"])); + + // For FX transfer: provider sends totalAmount + // Protocol fee is calculated from totalAmount + // senderAmount (to recipient) = totalAmount - protocolFee + // Sender fee is separate + const totalAmount = this.baseAmount; // Use base amount directly + const protocolFee = totalAmount.mul(this.protocolFeePercent).div(MAX_BPS); + const senderAmount = totalAmount.sub(protocolFee); + + // Get initial balances + const initialTreasuryBalance = await mockUSDT.balanceOf(this.treasuryAddress.address); + const initialSenderBalance = await mockUSDT.balanceOf(this.sender.address); + const initialRecipientBalance = await mockUSDT.balanceOf(this.recipient.address); + + // Approve tokens (total amount + sender fee) + await mockUSDT.connect(this.provider).approve(gateway.address, totalAmount.add(this.senderFee)); + + // Execute settleIn + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + mockUSDT.address, + totalAmount, + this.sender.address, + this.senderFee, + this.recipient.address, + rate + ) + ) + .to.emit(gateway, Events.Gateway.SettleIn) + .withArgs( + orderId, + senderAmount, // senderAmount (amount sent to recipient) + this.recipient.address, + mockUSDT.address, + protocolFee, // aggregatorFee + rate + ) + .to.emit(gateway, Events.Gateway.FxTransferFeeSplit) + .withArgs( + orderId, + ethers.utils.parseEther("100"), // senderAmount: 100% of sender fee (senderToAggregator = 0) + ethers.utils.parseEther("0") // aggregatorAmount: 0% of sender fee + ); + + // Verify balances (check deltas to account for previous test balances) + expect(await mockUSDT.balanceOf(this.recipient.address)).to.eq(initialRecipientBalance.add(senderAmount)); + expect(await mockUSDT.balanceOf(this.treasuryAddress.address)).to.eq(initialTreasuryBalance.add(protocolFee)); + expect(await mockUSDT.balanceOf(this.sender.address)).to.eq(initialSenderBalance.add(this.senderFee)); + expect(await mockUSDT.balanceOf(gateway.address)).to.eq(ZERO_AMOUNT); + + // Verify order state + const orderInfo = await gateway.getOrderInfo(orderId); + expect(orderInfo.sender).to.eq(this.recipient.address); + expect(orderInfo.token).to.eq(mockUSDT.address); + expect(orderInfo.isFulfilled).to.eq(true); + expect(orderInfo.amount).to.eq(senderAmount); + expect(orderInfo.currentBPS).to.eq(0); + }); + + it("Should successfully process settleIn for local transfer (rate = 100)", async function () { + const ret = await getSupportedInstitutions(); + const rate = 100; // Local transfer + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-2"])); + + // For local transfer, no protocol fee on amount + // Provider sends baseAmount (for recipient) + // Sender fee is separate + const totalAmount = this.baseAmount; + const senderAmount = totalAmount; // No protocol fee for local transfer + + // Get initial balances + const initialTreasuryBalance = await mockUSDT.balanceOf(this.treasuryAddress.address); + const initialSenderBalance = await mockUSDT.balanceOf(this.sender.address); + const initialProviderBalance = await mockUSDT.balanceOf(this.provider.address); + const initialRecipientBalance = await mockUSDT.balanceOf(this.recipient.address); + + // Approve tokens (provider will transfer totalAmount + senderFee to contract) + await mockUSDT.connect(this.provider).approve(gateway.address, totalAmount.add(this.senderFee)); + + // Execute settleIn + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + mockUSDT.address, + totalAmount, + this.sender.address, + this.senderFee, + this.recipient.address, + rate + ) + ) + .to.emit(gateway, Events.Gateway.SettleIn) + .withArgs( + orderId, + senderAmount, // senderAmount (equals totalAmount for local transfer) + this.recipient.address, + mockUSDT.address, + ZERO_AMOUNT, // aggregatorFee for local transfer + rate + ) + .to.emit(gateway, Events.Gateway.LocalTransferFeeSplit) + .withArgs( + orderId, + ethers.utils.parseEther("50"), // senderAmount: 50% of sender fee (100 - 50) + ethers.utils.parseEther("25"), // providerAmount: 25% of sender fee (50% of provider's 50%) + ethers.utils.parseEther("25") // aggregatorAmount: 25% of sender fee + ); + + // Verify balances (check deltas to account for previous test balances) + // Provider: deposits totalAmount + senderFee, receives providerFee (25% of senderFee) back + const providerFee = ethers.utils.parseEther("25"); // 25% of sender fee + const senderFeeAmount = ethers.utils.parseEther("50"); // 50% of sender fee + const aggregatorAmount = ethers.utils.parseEther("25"); // 25% of sender fee + + expect(await mockUSDT.balanceOf(this.recipient.address)).to.eq(initialRecipientBalance.add(senderAmount)); + expect(await mockUSDT.balanceOf(this.sender.address)).to.eq(initialSenderBalance.add(senderFeeAmount)); + // Provider balance: initial - (totalAmount + senderFee) (deposited) + providerFee (received) + expect(await mockUSDT.balanceOf(this.provider.address)).to.eq(initialProviderBalance.sub(totalAmount.add(this.senderFee)).add(providerFee)); + expect(await mockUSDT.balanceOf(this.treasuryAddress.address)).to.eq(initialTreasuryBalance.add(aggregatorAmount)); + expect(await mockUSDT.balanceOf(gateway.address)).to.eq(ZERO_AMOUNT); + }); + + it("Should revert when settleIn is called with amount below minimum", async function () { + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-3"])); + const rate = 750; + const amountBelowMinimum = MAX_BPS; // Exactly at minimum (100000), should fail (needs > MAX_BPS) + + await mockUSDT.connect(this.provider).approve(gateway.address, amountBelowMinimum.add(1)); + + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + mockUSDT.address, + amountBelowMinimum, // This is exactly MAX_BPS, should fail + this.sender.address, + 0, + this.recipient.address, + rate + ) + ).to.be.revertedWith('InvalidAmount'); + }); + + it("Should revert when settleIn is called with zero sender fee for local transfer", async function () { + const ret = await getSupportedInstitutions(); + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-4"])); + const rate = 100; // Local transfer requires sender fee + + // For local transfer, total = baseAmount + senderFee (but senderFee is 0, so just baseAmount) + const totalAmount = this.baseAmount; // No sender fee in this test + + await mockUSDT.connect(this.provider).approve(gateway.address, totalAmount); + + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + mockUSDT.address, + totalAmount, + this.sender.address, + 0, // Zero sender fee should fail for local transfer + this.recipient.address, + rate + ) + ).to.be.revertedWith('SenderFeeIsZero'); + }); + + it("Should revert when settleIn is called with unsupported token", async function () { + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-5"])); + const rate = 750; + const unsupportedToken = this.hacker.address; // Random address, not supported + const totalAmount = this.baseAmount.add(this.senderFee); + + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + unsupportedToken, + totalAmount, + this.sender.address, + this.senderFee, + this.recipient.address, + rate + ) + ).to.be.revertedWith('TokenNotSupported'); + }); + + it("Should handle settleIn with FX transfer fee splitting correctly", async function () { + const ret = await getSupportedInstitutions(); + const rate = 750; // FX transfer + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-6"])); + const senderFee = ethers.utils.parseEther("1000"); + const baseAmount = ethers.utils.parseEther("10000"); + + // Update token settings to have senderToAggregator > 0 for this test + await gateway.connect(this.deployer).setTokenFeeSettings( + mockUSDT.address, + 50000, // senderToProvider + 50000, // providerToAggregator + 30000, // senderToAggregator: 30% of sender fee goes to aggregator + 500 // providerToAggregatorFx + ); + + // For FX transfer: provider sends baseAmount (for recipient) + senderFee + // Protocol fee is calculated from baseAmount + const totalAmount = baseAmount; + const protocolFee = totalAmount.mul(this.protocolFeePercent).div(MAX_BPS); + const recipientAmount = totalAmount.sub(protocolFee); + + // Get initial balances + const initialTreasuryBalance = await mockUSDT.balanceOf(this.treasuryAddress.address); + const initialSenderBalance = await mockUSDT.balanceOf(this.sender.address); + const initialRecipientBalance = await mockUSDT.balanceOf(this.recipient.address); + + // Mint and approve (baseAmount + senderFee) + await mockUSDT.connect(this.alice).mint(totalAmount.add(senderFee)); + await mockUSDT.connect(this.alice).transfer(this.provider.address, totalAmount.add(senderFee)); + await mockUSDT.connect(this.provider).approve(gateway.address, totalAmount.add(senderFee)); + + // Calculate sender fee splits + const senderAmount = senderFee.mul(MAX_BPS.sub(30000)).div(MAX_BPS); // 70% of sender fee + const aggregatorAmount = senderFee.sub(senderAmount); // 30% of sender fee + + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + mockUSDT.address, + totalAmount, + this.sender.address, + senderFee, + this.recipient.address, + rate + ) + ) + .to.emit(gateway, Events.Gateway.FxTransferFeeSplit) + .withArgs( + orderId, + senderAmount, // 70% of sender fee + aggregatorAmount // 30% of sender fee + ); + + // Verify balances (check deltas to account for previous test balances) + expect(await mockUSDT.balanceOf(this.sender.address)).to.eq(initialSenderBalance.add(senderAmount)); + expect(await mockUSDT.balanceOf(this.treasuryAddress.address)).to.eq(initialTreasuryBalance.add(protocolFee).add(aggregatorAmount)); + expect(await mockUSDT.balanceOf(this.recipient.address)).to.eq(initialRecipientBalance.add(recipientAmount)); + + // Reset token settings + await gateway.connect(this.deployer).setTokenFeeSettings( + mockUSDT.address, + 50000, // senderToProvider + 50000, // providerToAggregator + 0, // senderToAggregator: reset to 0 + 500 // providerToAggregatorFx + ); + }); + + it("Should revert when settleIn is called on paused contract", async function () { + const orderId = ethers.utils.keccak256(ethers.utils.defaultAbiCoder.encode(["string"], ["test-order-7"])); + const rate = 750; + const totalAmount = this.baseAmount.add(this.senderFee); + + // Pause the contract + await gateway.connect(this.deployer).pause(); + + await mockUSDT.connect(this.provider).approve(gateway.address, totalAmount); + + await expect( + gateway + .connect(this.provider) + .settleIn( + orderId, + mockUSDT.address, + totalAmount, + this.sender.address, + this.senderFee, + this.recipient.address, + rate + ) + ).to.be.revertedWith('Pausable: paused'); + + // Unpause for other tests + await gateway.connect(this.deployer).unpause(); + }); + }); }); diff --git a/test/utils/utils.manager.js b/test/utils/utils.manager.js index 83ceafd..14432bc 100644 --- a/test/utils/utils.manager.js +++ b/test/utils/utils.manager.js @@ -1,107 +1,110 @@ -const { ethers } = require("hardhat"); -const { BigNumber } = require("@ethersproject/bignumber"); - -const ZERO_AMOUNT = BigNumber.from("0"); -const ZERO_ADDRESS = ethers.constants.AddressZero; -const MAX_BPS = BigNumber.from("100000"); -const FEE_BPS = BigNumber.from("100"); - -const Errors = { - Ownable: { - onlyOwner: "Ownable: caller is not the owner", - }, - - Gateway: { - OnlyAggregator: "OnlyAggregator", - TokenNotSupported: "TokenNotSupported", - AmountIsZero: "AmountIsZero", - ThrowZeroAddress: "ThrowZeroAddress", - InvalidSigner: "InvalidSigner", - Unsupported: "Unsupported", - OrderFulfilled: "OrderFulfilled", - OrderRefunded: "OrderRefunded", - UnableToProcessRewards: "UnableToProcessRewards", - Allowance: "ERC20: insufficient allowance", - TokenFeeSettingsNotConfigured: "TokenFeeSettingsNotConfigured", - }, -}; - -const Events = { - Gateway: { - OrderCreated: "OrderCreated", - OrderSettled: "OrderSettled", - OrderRefunded: "OrderRefunded", - SettingManagerBool: "SettingManagerBool", - ProtocolFeeUpdated: "ProtocolFeeUpdated", - ProtocolAddressUpdated: "ProtocolAddressUpdated", - LocalTransferFeeSplit: "LocalTransferFeeSplit", - FxTransferFeeSplit: "FxTransferFeeSplit", - TokenFeeSettingsUpdated: "TokenFeeSettingsUpdated", - }, -}; - -async function deployContract(name, args = [], value = 0) { - const Contract = await ethers.getContractFactory(name); - let instance; - - if (value > 0) instance = await Contract.deploy(...args, { value }); - else instance = await Contract.deploy(...args); - - return instance; -} - -async function getSupportedInstitutions() { - const currency = ethers.utils.formatBytes32String("NGN"); - - const accessBank = { - code: ethers.utils.formatBytes32String("ABNGNGLA"), - name: ethers.utils.formatBytes32String("ACCESS BANK"), - }; - - const diamondBank = { - code: ethers.utils.formatBytes32String("DBLNNGLA"), - name: ethers.utils.formatBytes32String("DIAMOND BANK"), - }; - - return { - currency, - accessBank, - diamondBank, - }; -} - -async function mockMintDeposit(gateway, account, usdc, amount) { - await usdc.connect(account).mint(amount); - await usdc.connect(account).approve(gateway.address, amount); -} - -// Helper function to configure token fee settings -async function configureTokenFeeSettings(gateway, deployer, tokenAddress, settings = {}) { - const { - senderToProvider = 50000, // 50% of sender fee goes to provider - providerToAggregator = 50000, // 50% of provider's share goes to aggregator - senderToAggregator = 0, // 0% of sender fee goes to aggregator (FX mode) - providerToAggregatorFx = 500 // 0.5% of transaction amount provider pays to aggregator (FX mode) - } = settings; - - await gateway.connect(deployer).setTokenFeeSettings( - tokenAddress, - senderToProvider, - providerToAggregator, - senderToAggregator, - providerToAggregatorFx - ); -} - -module.exports = { - ZERO_AMOUNT, - ZERO_ADDRESS, - MAX_BPS, - FEE_BPS, - Errors, - Events, - deployContract, - mockMintDeposit, - getSupportedInstitutions, - configureTokenFeeSettings, -}; +import hre from "hardhat"; +import { ZeroAddress } from "ethers"; + +const { ethers } = hre; + +const ZERO_AMOUNT = 0n; +const ZERO_ADDRESS = ZeroAddress; +const MAX_BPS = 100000n; +const FEE_BPS = 100n; + +const Errors = { + Ownable: { + onlyOwner: "Ownable: caller is not the owner", + }, + + Gateway: { + OnlyAggregator: "OnlyAggregator", + TokenNotSupported: "TokenNotSupported", + AmountIsZero: "AmountIsZero", + ThrowZeroAddress: "ThrowZeroAddress", + InvalidSigner: "InvalidSigner", + Unsupported: "Unsupported", + OrderFulfilled: "OrderFulfilled", + OrderRefunded: "OrderRefunded", + UnableToProcessRewards: "UnableToProcessRewards", + Allowance: "ERC20: insufficient allowance", + TokenFeeSettingsNotConfigured: "TokenFeeSettingsNotConfigured", + }, +}; + +const Events = { + Gateway: { + OrderCreated: "OrderCreated", + SettleOut: "SettleOut", + SettleIn: "SettleIn", + OrderRefunded: "OrderRefunded", + SettingManagerBool: "SettingManagerBool", + ProtocolFeeUpdated: "ProtocolFeeUpdated", + ProtocolAddressUpdated: "ProtocolAddressUpdated", + LocalTransferFeeSplit: "LocalTransferFeeSplit", + FxTransferFeeSplit: "FxTransferFeeSplit", + TokenFeeSettingsUpdated: "TokenFeeSettingsUpdated", + }, +}; + +async function deployContract(name, args = [], value = 0) { + const Contract = await ethers.getContractFactory(name); + let instance; + + if (value > 0) instance = await Contract.deploy(...args, { value }); + else instance = await Contract.deploy(...args); + + return instance; +} + +async function getSupportedInstitutions() { + const currency = ethers.utils.formatBytes32String("NGN"); + + const accessBank = { + code: ethers.utils.formatBytes32String("ABNGNGLA"), + name: ethers.utils.formatBytes32String("ACCESS BANK"), + }; + + const diamondBank = { + code: ethers.utils.formatBytes32String("DBLNNGLA"), + name: ethers.utils.formatBytes32String("DIAMOND BANK"), + }; + + return { + currency, + accessBank, + diamondBank, + }; +} + +async function mockMintDeposit(gateway, account, usdc, amount) { + await usdc.connect(account).mint(amount); + await usdc.connect(account).approve(gateway.address, amount); +} + +// Helper function to configure token fee settings +async function configureTokenFeeSettings(gateway, deployer, tokenAddress, settings = {}) { + const { + senderToProvider = 50000, // 50% of sender fee goes to provider + providerToAggregator = 50000, // 50% of provider's share goes to aggregator + senderToAggregator = 0, // 0% of sender fee goes to aggregator (FX mode) + providerToAggregatorFx = 500 // 0.5% of transaction amount provider pays to aggregator (FX mode) + } = settings; + + await gateway.connect(deployer).setTokenFeeSettings( + tokenAddress, + senderToProvider, + providerToAggregator, + senderToAggregator, + providerToAggregatorFx + ); +} + +export { + ZERO_AMOUNT, + ZERO_ADDRESS, + MAX_BPS, + FEE_BPS, + Errors, + Events, + deployContract, + mockMintDeposit, + getSupportedInstitutions, + configureTokenFeeSettings, +}; diff --git a/tsconfig.json b/tsconfig.json index c232a1e..f3b8714 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { "target": "es2020", - "module": "commonjs", + "module": "es2020", + "moduleResolution": "bundler", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, diff --git a/types/ethers-contracts/@openzeppelin/contracts/index.ts b/types/ethers-contracts/@openzeppelin/contracts/index.ts new file mode 100644 index 0000000..9bed387 --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as proxy from './proxy/index.js'; +export type { proxy }; \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/contracts/proxy/index.ts b/types/ethers-contracts/@openzeppelin/contracts/proxy/index.ts new file mode 100644 index 0000000..4c3d45c --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/proxy/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as transparent from './transparent/index.js'; +export type { transparent }; \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.ts b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.ts new file mode 100644 index 0000000..2aef2a4 --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.ts @@ -0,0 +1,194 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common.js" + + + export interface ProxyAdminInterface extends Interface { + getFunction(nameOrSignature: "changeProxyAdmin" | "getProxyAdmin" | "getProxyImplementation" | "owner" | "renounceOwnership" | "transferOwnership" | "upgrade" | "upgradeAndCall"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment; + + encodeFunctionData(functionFragment: 'changeProxyAdmin', values: [AddressLike, AddressLike]): string; +encodeFunctionData(functionFragment: 'getProxyAdmin', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'getProxyImplementation', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'owner', values?: undefined): string; +encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'upgrade', values: [AddressLike, AddressLike]): string; +encodeFunctionData(functionFragment: 'upgradeAndCall', values: [AddressLike, AddressLike, BytesLike]): string; + + decodeFunctionResult(functionFragment: 'changeProxyAdmin', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getProxyAdmin', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getProxyImplementation', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'upgrade', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'upgradeAndCall', data: BytesLike): Result; + } + + + export namespace OwnershipTransferredEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface ProxyAdmin extends BaseContract { + + connect(runner?: ContractRunner | null): ProxyAdmin; + waitForDeployment(): Promise; + + interface: ProxyAdminInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + changeProxyAdmin: TypedContractMethod< + [proxy: AddressLike, newAdmin: AddressLike, ], + [void], + 'nonpayable' + > + + + + getProxyAdmin: TypedContractMethod< + [proxy: AddressLike, ], + [string], + 'view' + > + + + + getProxyImplementation: TypedContractMethod< + [proxy: AddressLike, ], + [string], + 'view' + > + + + + owner: TypedContractMethod< + [], + [string], + 'view' + > + + + + renounceOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + transferOwnership: TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + > + + + + upgrade: TypedContractMethod< + [proxy: AddressLike, implementation: AddressLike, ], + [void], + 'nonpayable' + > + + + + upgradeAndCall: TypedContractMethod< + [proxy: AddressLike, implementation: AddressLike, data: BytesLike, ], + [void], + 'payable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'changeProxyAdmin'): TypedContractMethod< + [proxy: AddressLike, newAdmin: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getProxyAdmin'): TypedContractMethod< + [proxy: AddressLike, ], + [string], + 'view' + >; +getFunction(nameOrSignature: 'getProxyImplementation'): TypedContractMethod< + [proxy: AddressLike, ], + [string], + 'view' + >; +getFunction(nameOrSignature: 'owner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'upgrade'): TypedContractMethod< + [proxy: AddressLike, implementation: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'upgradeAndCall'): TypedContractMethod< + [proxy: AddressLike, implementation: AddressLike, data: BytesLike, ], + [void], + 'payable' + >; + + getEvent(key: 'OwnershipTransferred'): TypedContractEvent; + + filters: { + + 'OwnershipTransferred(address,address)': TypedContractEvent; + OwnershipTransferred: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.ts b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.ts new file mode 100644 index 0000000..2408e8d --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.ts @@ -0,0 +1,183 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../../common.js" + + + export interface ITransparentUpgradeableProxyInterface extends Interface { + getFunction(nameOrSignature: "admin" | "changeAdmin" | "implementation" | "upgradeTo" | "upgradeToAndCall"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "AdminChanged" | "BeaconUpgraded" | "Upgraded"): EventFragment; + + encodeFunctionData(functionFragment: 'admin', values?: undefined): string; +encodeFunctionData(functionFragment: 'changeAdmin', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'implementation', values?: undefined): string; +encodeFunctionData(functionFragment: 'upgradeTo', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'upgradeToAndCall', values: [AddressLike, BytesLike]): string; + + decodeFunctionResult(functionFragment: 'admin', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'changeAdmin', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'implementation', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'upgradeTo', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'upgradeToAndCall', data: BytesLike): Result; + } + + + export namespace AdminChangedEvent { + export type InputTuple = [previousAdmin: AddressLike, newAdmin: AddressLike]; + export type OutputTuple = [previousAdmin: string, newAdmin: string]; + export interface OutputObject {previousAdmin: string, newAdmin: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace BeaconUpgradedEvent { + export type InputTuple = [beacon: AddressLike]; + export type OutputTuple = [beacon: string]; + export interface OutputObject {beacon: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace UpgradedEvent { + export type InputTuple = [implementation: AddressLike]; + export type OutputTuple = [implementation: string]; + export interface OutputObject {implementation: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface ITransparentUpgradeableProxy extends BaseContract { + + connect(runner?: ContractRunner | null): ITransparentUpgradeableProxy; + waitForDeployment(): Promise; + + interface: ITransparentUpgradeableProxyInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + admin: TypedContractMethod< + [], + [string], + 'view' + > + + + + changeAdmin: TypedContractMethod< + [arg0: AddressLike, ], + [void], + 'nonpayable' + > + + + + implementation: TypedContractMethod< + [], + [string], + 'view' + > + + + + upgradeTo: TypedContractMethod< + [arg0: AddressLike, ], + [void], + 'nonpayable' + > + + + + upgradeToAndCall: TypedContractMethod< + [arg0: AddressLike, arg1: BytesLike, ], + [void], + 'payable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'admin'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'changeAdmin'): TypedContractMethod< + [arg0: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'implementation'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'upgradeTo'): TypedContractMethod< + [arg0: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'upgradeToAndCall'): TypedContractMethod< + [arg0: AddressLike, arg1: BytesLike, ], + [void], + 'payable' + >; + + getEvent(key: 'AdminChanged'): TypedContractEvent; +getEvent(key: 'BeaconUpgraded'): TypedContractEvent; +getEvent(key: 'Upgraded'): TypedContractEvent; + + filters: { + + 'AdminChanged(address,address)': TypedContractEvent; + AdminChanged: TypedContractEvent; + + + 'BeaconUpgraded(address)': TypedContractEvent; + BeaconUpgraded: TypedContractEvent; + + + 'Upgraded(address)': TypedContractEvent; + Upgraded: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.ts b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.ts new file mode 100644 index 0000000..001d171 --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.ts @@ -0,0 +1,112 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, FunctionFragment, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener } from "../../../../../common.js" + + + export interface TransparentUpgradeableProxyInterface extends Interface { + + + getEvent(nameOrSignatureOrTopic: "AdminChanged" | "BeaconUpgraded" | "Upgraded"): EventFragment; + + + + + } + + + export namespace AdminChangedEvent { + export type InputTuple = [previousAdmin: AddressLike, newAdmin: AddressLike]; + export type OutputTuple = [previousAdmin: string, newAdmin: string]; + export interface OutputObject {previousAdmin: string, newAdmin: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace BeaconUpgradedEvent { + export type InputTuple = [beacon: AddressLike]; + export type OutputTuple = [beacon: string]; + export interface OutputObject {beacon: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace UpgradedEvent { + export type InputTuple = [implementation: AddressLike]; + export type OutputTuple = [implementation: string]; + export interface OutputObject {implementation: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface TransparentUpgradeableProxy extends BaseContract { + + connect(runner?: ContractRunner | null): TransparentUpgradeableProxy; + waitForDeployment(): Promise; + + interface: TransparentUpgradeableProxyInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + + getFunction(key: string | FunctionFragment): T; + + + + getEvent(key: 'AdminChanged'): TypedContractEvent; +getEvent(key: 'BeaconUpgraded'): TypedContractEvent; +getEvent(key: 'Upgraded'): TypedContractEvent; + + filters: { + + 'AdminChanged(address,address)': TypedContractEvent; + AdminChanged: TypedContractEvent; + + + 'BeaconUpgraded(address)': TypedContractEvent; + BeaconUpgraded: TypedContractEvent; + + + 'Upgraded(address)': TypedContractEvent; + Upgraded: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.ts b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.ts new file mode 100644 index 0000000..ea1d81e --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { ITransparentUpgradeableProxy } from './ITransparentUpgradeableProxy.js'; +export type { TransparentUpgradeableProxy } from './TransparentUpgradeableProxy.js'; \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/index.ts b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/index.ts new file mode 100644 index 0000000..e87da21 --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/contracts/proxy/transparent/index.ts @@ -0,0 +1,6 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as transparentUpgradeableProxySol from './TransparentUpgradeableProxy.sol/index.js'; +export type { transparentUpgradeableProxySol }; +export type { ProxyAdmin } from './ProxyAdmin.js'; \ No newline at end of file diff --git a/types/ethers-contracts/@openzeppelin/index.ts b/types/ethers-contracts/@openzeppelin/index.ts new file mode 100644 index 0000000..8f75a88 --- /dev/null +++ b/types/ethers-contracts/@openzeppelin/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as contracts from './contracts/index.js'; +export type { contracts }; \ No newline at end of file diff --git a/types/ethers-contracts/Gateway.ts b/types/ethers-contracts/Gateway.ts new file mode 100644 index 0000000..de70630 --- /dev/null +++ b/types/ethers-contracts/Gateway.ts @@ -0,0 +1,644 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "./common.js" + +export declare namespace IGateway { + + export type OrderStruct = {sender: AddressLike, token: AddressLike, senderFeeRecipient: AddressLike, senderFee: BigNumberish, protocolFee: BigNumberish, isFulfilled: boolean, isRefunded: boolean, refundAddress: AddressLike, currentBPS: BigNumberish, amount: BigNumberish} + + export type OrderStructOutput = [sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint] & {sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint } + + } + +export declare namespace GatewaySettingManager { + + export type TokenFeeSettingsStruct = {senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish} + + export type TokenFeeSettingsStructOutput = [senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint] & {senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint } + + } + + export interface GatewayInterface extends Interface { + getFunction(nameOrSignature: "acceptOwnership" | "createOrder" | "getAggregator" | "getOrderInfo" | "getTokenFeeSettings" | "initialize" | "isTokenSupported" | "owner" | "pause" | "paused" | "pendingOwner" | "refund" | "renounceOwnership" | "setTokenFeeSettings" | "settingManagerBool" | "settleIn" | "settleOut" | "transferOwnership" | "unpause" | "updateProtocolAddress"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "FxTransferFeeSplit" | "Initialized" | "LocalTransferFeeSplit" | "OrderCreated" | "OrderRefunded" | "OwnershipTransferStarted" | "OwnershipTransferred" | "Paused" | "ProtocolAddressUpdated" | "SenderFeeTransferred" | "SetFeeRecipient" | "SettingManagerBool" | "SettleIn" | "SettleOut" | "TokenFeeSettingsUpdated" | "Unpaused"): EventFragment; + + encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'createOrder', values: [AddressLike, BigNumberish, BigNumberish, AddressLike, BigNumberish, AddressLike, string]): string; +encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; +encodeFunctionData(functionFragment: 'getOrderInfo', values: [BytesLike]): string; +encodeFunctionData(functionFragment: 'getTokenFeeSettings', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'initialize', values?: undefined): string; +encodeFunctionData(functionFragment: 'isTokenSupported', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'owner', values?: undefined): string; +encodeFunctionData(functionFragment: 'pause', values?: undefined): string; +encodeFunctionData(functionFragment: 'paused', values?: undefined): string; +encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string; +encodeFunctionData(functionFragment: 'refund', values: [BigNumberish, BytesLike]): string; +encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'setTokenFeeSettings', values: [AddressLike, BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settingManagerBool', values: [BytesLike, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleIn', values: [BytesLike, AddressLike, BigNumberish, AddressLike, BigNumberish, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleOut', values: [BytesLike, BytesLike, AddressLike, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'unpause', values?: undefined): string; +encodeFunctionData(functionFragment: 'updateProtocolAddress', values: [BytesLike, AddressLike]): string; + + decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'createOrder', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getOrderInfo', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'initialize', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'isTokenSupported', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pause', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'paused', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'refund', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'setTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settingManagerBool', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleIn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleOut', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'unpause', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'updateProtocolAddress', data: BytesLike): Result; + } + + + export namespace FxTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace InitializedEvent { + export type InputTuple = [version: BigNumberish]; + export type OutputTuple = [version: bigint]; + export interface OutputObject {version: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace LocalTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, providerAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderCreatedEvent { + export type InputTuple = [sender: AddressLike, token: AddressLike, amount: BigNumberish, protocolFee: BigNumberish, orderId: BytesLike, rate: BigNumberish, messageHash: string]; + export type OutputTuple = [sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string]; + export interface OutputObject {sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderRefundedEvent { + export type InputTuple = [fee: BigNumberish, orderId: BytesLike]; + export type OutputTuple = [fee: bigint, orderId: string]; + export interface OutputObject {fee: bigint, orderId: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferStartedEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferredEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace PausedEvent { + export type InputTuple = [account: AddressLike]; + export type OutputTuple = [account: string]; + export interface OutputObject {account: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace ProtocolAddressUpdatedEvent { + export type InputTuple = [what: BytesLike, treasuryAddress: AddressLike]; + export type OutputTuple = [what: string, treasuryAddress: string]; + export interface OutputObject {what: string, treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SenderFeeTransferredEvent { + export type InputTuple = [orderId: BytesLike, sender: AddressLike, amount: BigNumberish]; + export type OutputTuple = [orderId: string, sender: string, amount: bigint]; + export interface OutputObject {orderId: string, sender: string, amount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SetFeeRecipientEvent { + export type InputTuple = [treasuryAddress: AddressLike]; + export type OutputTuple = [treasuryAddress: string]; + export interface OutputObject {treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettingManagerBoolEvent { + export type InputTuple = [what: BytesLike, value: AddressLike, status: BigNumberish]; + export type OutputTuple = [what: string, value: string, status: bigint]; + export interface OutputObject {what: string, value: string, status: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleInEvent { + export type InputTuple = [orderId: BytesLike, liquidityProvider: AddressLike, recipient: AddressLike, amount: BigNumberish, token: AddressLike, aggregatorFee: BigNumberish, rate: BigNumberish]; + export type OutputTuple = [orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint]; + export interface OutputObject {orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleOutEvent { + export type InputTuple = [splitOrderId: BytesLike, orderId: BytesLike, liquidityProvider: AddressLike, settlePercent: BigNumberish, rebatePercent: BigNumberish]; + export type OutputTuple = [splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint]; + export interface OutputObject {splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TokenFeeSettingsUpdatedEvent { + export type InputTuple = [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish]; + export type OutputTuple = [token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint]; + export interface OutputObject {token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace UnpausedEvent { + export type InputTuple = [account: AddressLike]; + export type OutputTuple = [account: string]; + export interface OutputObject {account: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface Gateway extends BaseContract { + + connect(runner?: ContractRunner | null): Gateway; + waitForDeployment(): Promise; + + interface: GatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + acceptOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + createOrder: TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + > + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getOrderInfo: TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + > + + + + getTokenFeeSettings: TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + > + + + + initialize: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + isTokenSupported: TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + > + + + + owner: TypedContractMethod< + [], + [string], + 'view' + > + + + + pause: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + paused: TypedContractMethod< + [], + [boolean], + 'view' + > + + + + pendingOwner: TypedContractMethod< + [], + [string], + 'view' + > + + + + refund: TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + > + + + + renounceOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + setTokenFeeSettings: TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settingManagerBool: TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settleIn: TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + settleOut: TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + transferOwnership: TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + > + + + + unpause: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + updateProtocolAddress: TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'createOrder'): TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'getOrderInfo'): TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'getTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'initialize'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'isTokenSupported'): TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'owner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'pause'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'paused'): TypedContractMethod< + [], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'refund'): TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'setTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settingManagerBool'): TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleIn'): TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleOut'): TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'unpause'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'updateProtocolAddress'): TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + >; + + getEvent(key: 'FxTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'Initialized'): TypedContractEvent; +getEvent(key: 'LocalTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'OrderCreated'): TypedContractEvent; +getEvent(key: 'OrderRefunded'): TypedContractEvent; +getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent; +getEvent(key: 'OwnershipTransferred'): TypedContractEvent; +getEvent(key: 'Paused'): TypedContractEvent; +getEvent(key: 'ProtocolAddressUpdated'): TypedContractEvent; +getEvent(key: 'SenderFeeTransferred'): TypedContractEvent; +getEvent(key: 'SetFeeRecipient'): TypedContractEvent; +getEvent(key: 'SettingManagerBool'): TypedContractEvent; +getEvent(key: 'SettleIn'): TypedContractEvent; +getEvent(key: 'SettleOut'): TypedContractEvent; +getEvent(key: 'TokenFeeSettingsUpdated'): TypedContractEvent; +getEvent(key: 'Unpaused'): TypedContractEvent; + + filters: { + + 'FxTransferFeeSplit(bytes32,uint256,uint256)': TypedContractEvent; + FxTransferFeeSplit: TypedContractEvent; + + + 'Initialized(uint8)': TypedContractEvent; + Initialized: TypedContractEvent; + + + 'LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)': TypedContractEvent; + LocalTransferFeeSplit: TypedContractEvent; + + + 'OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)': TypedContractEvent; + OrderCreated: TypedContractEvent; + + + 'OrderRefunded(uint256,bytes32)': TypedContractEvent; + OrderRefunded: TypedContractEvent; + + + 'OwnershipTransferStarted(address,address)': TypedContractEvent; + OwnershipTransferStarted: TypedContractEvent; + + + 'OwnershipTransferred(address,address)': TypedContractEvent; + OwnershipTransferred: TypedContractEvent; + + + 'Paused(address)': TypedContractEvent; + Paused: TypedContractEvent; + + + 'ProtocolAddressUpdated(bytes32,address)': TypedContractEvent; + ProtocolAddressUpdated: TypedContractEvent; + + + 'SenderFeeTransferred(bytes32,address,uint256)': TypedContractEvent; + SenderFeeTransferred: TypedContractEvent; + + + 'SetFeeRecipient(address)': TypedContractEvent; + SetFeeRecipient: TypedContractEvent; + + + 'SettingManagerBool(bytes32,address,uint256)': TypedContractEvent; + SettingManagerBool: TypedContractEvent; + + + 'SettleIn(bytes32,address,address,uint256,address,uint256,uint96)': TypedContractEvent; + SettleIn: TypedContractEvent; + + + 'SettleOut(bytes32,bytes32,address,uint64,uint64)': TypedContractEvent; + SettleOut: TypedContractEvent; + + + 'TokenFeeSettingsUpdated(address,uint256,uint256,uint256,uint256)': TypedContractEvent; + TokenFeeSettingsUpdated: TypedContractEvent; + + + 'Unpaused(address)': TypedContractEvent; + Unpaused: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/GatewaySettingManager.ts b/types/ethers-contracts/GatewaySettingManager.ts new file mode 100644 index 0000000..dc26f62 --- /dev/null +++ b/types/ethers-contracts/GatewaySettingManager.ts @@ -0,0 +1,318 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "./common.js" + +export declare namespace GatewaySettingManager { + + export type TokenFeeSettingsStruct = {senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish} + + export type TokenFeeSettingsStructOutput = [senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint] & {senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint } + + } + + export interface GatewaySettingManagerInterface extends Interface { + getFunction(nameOrSignature: "acceptOwnership" | "getTokenFeeSettings" | "owner" | "pendingOwner" | "renounceOwnership" | "setTokenFeeSettings" | "settingManagerBool" | "transferOwnership" | "updateProtocolAddress"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "Initialized" | "OwnershipTransferStarted" | "OwnershipTransferred" | "ProtocolAddressUpdated" | "SetFeeRecipient" | "SettingManagerBool" | "TokenFeeSettingsUpdated"): EventFragment; + + encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'getTokenFeeSettings', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'owner', values?: undefined): string; +encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string; +encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'setTokenFeeSettings', values: [AddressLike, BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settingManagerBool', values: [BytesLike, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'updateProtocolAddress', values: [BytesLike, AddressLike]): string; + + decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'setTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settingManagerBool', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'updateProtocolAddress', data: BytesLike): Result; + } + + + export namespace InitializedEvent { + export type InputTuple = [version: BigNumberish]; + export type OutputTuple = [version: bigint]; + export interface OutputObject {version: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferStartedEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferredEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace ProtocolAddressUpdatedEvent { + export type InputTuple = [what: BytesLike, treasuryAddress: AddressLike]; + export type OutputTuple = [what: string, treasuryAddress: string]; + export interface OutputObject {what: string, treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SetFeeRecipientEvent { + export type InputTuple = [treasuryAddress: AddressLike]; + export type OutputTuple = [treasuryAddress: string]; + export interface OutputObject {treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettingManagerBoolEvent { + export type InputTuple = [what: BytesLike, value: AddressLike, status: BigNumberish]; + export type OutputTuple = [what: string, value: string, status: bigint]; + export interface OutputObject {what: string, value: string, status: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TokenFeeSettingsUpdatedEvent { + export type InputTuple = [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish]; + export type OutputTuple = [token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint]; + export interface OutputObject {token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface GatewaySettingManager extends BaseContract { + + connect(runner?: ContractRunner | null): GatewaySettingManager; + waitForDeployment(): Promise; + + interface: GatewaySettingManagerInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + acceptOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + getTokenFeeSettings: TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + > + + + + owner: TypedContractMethod< + [], + [string], + 'view' + > + + + + pendingOwner: TypedContractMethod< + [], + [string], + 'view' + > + + + + renounceOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + setTokenFeeSettings: TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settingManagerBool: TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + > + + + + transferOwnership: TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + > + + + + updateProtocolAddress: TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'owner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'setTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settingManagerBool'): TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'updateProtocolAddress'): TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + >; + + getEvent(key: 'Initialized'): TypedContractEvent; +getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent; +getEvent(key: 'OwnershipTransferred'): TypedContractEvent; +getEvent(key: 'ProtocolAddressUpdated'): TypedContractEvent; +getEvent(key: 'SetFeeRecipient'): TypedContractEvent; +getEvent(key: 'SettingManagerBool'): TypedContractEvent; +getEvent(key: 'TokenFeeSettingsUpdated'): TypedContractEvent; + + filters: { + + 'Initialized(uint8)': TypedContractEvent; + Initialized: TypedContractEvent; + + + 'OwnershipTransferStarted(address,address)': TypedContractEvent; + OwnershipTransferStarted: TypedContractEvent; + + + 'OwnershipTransferred(address,address)': TypedContractEvent; + OwnershipTransferred: TypedContractEvent; + + + 'ProtocolAddressUpdated(bytes32,address)': TypedContractEvent; + ProtocolAddressUpdated: TypedContractEvent; + + + 'SetFeeRecipient(address)': TypedContractEvent; + SetFeeRecipient: TypedContractEvent; + + + 'SettingManagerBool(bytes32,address,uint256)': TypedContractEvent; + SettingManagerBool: TypedContractEvent; + + + 'TokenFeeSettingsUpdated(address,uint256,uint256,uint256,uint256)': TypedContractEvent; + TokenFeeSettingsUpdated: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/IGateway.ts b/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/IGateway.ts new file mode 100644 index 0000000..79b4142 --- /dev/null +++ b/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/IGateway.ts @@ -0,0 +1,75 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../common.js" + + + export interface IGatewayInterface extends Interface { + getFunction(nameOrSignature: "getAggregator"): FunctionFragment; + + + + encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; + + decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; + } + + + + export interface IGateway extends BaseContract { + + connect(runner?: ContractRunner | null): IGateway; + waitForDeployment(): Promise; + + interface: IGatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; + + + + filters: { + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.ts b/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.ts new file mode 100644 index 0000000..1da0ea2 --- /dev/null +++ b/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.ts @@ -0,0 +1,158 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common.js" + +export declare namespace ProviderBatchCallAndSponsor { + + export type CallStruct = {to: AddressLike, value: BigNumberish, data: BytesLike} + + export type CallStructOutput = [to: string, value: bigint, data: string] & {to: string, value: bigint, data: string } + + } + + export interface ProviderBatchCallAndSponsorInterface extends Interface { + getFunction(nameOrSignature: "execute((address,uint256,bytes)[])" | "execute((address,uint256,bytes)[],bytes)" | "gatewayAddress" | "nonce"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "BatchExecuted" | "CallExecuted"): EventFragment; + + encodeFunctionData(functionFragment: 'execute((address,uint256,bytes)[])', values: [ProviderBatchCallAndSponsor.CallStruct[]]): string; +encodeFunctionData(functionFragment: 'execute((address,uint256,bytes)[],bytes)', values: [ProviderBatchCallAndSponsor.CallStruct[], BytesLike]): string; +encodeFunctionData(functionFragment: 'gatewayAddress', values?: undefined): string; +encodeFunctionData(functionFragment: 'nonce', values?: undefined): string; + + decodeFunctionResult(functionFragment: 'execute((address,uint256,bytes)[])', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'execute((address,uint256,bytes)[],bytes)', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'gatewayAddress', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'nonce', data: BytesLike): Result; + } + + + export namespace BatchExecutedEvent { + export type InputTuple = [nonce: BigNumberish, calls: ProviderBatchCallAndSponsor.CallStruct[]]; + export type OutputTuple = [nonce: bigint, calls: ProviderBatchCallAndSponsor.CallStructOutput[]]; + export interface OutputObject {nonce: bigint, calls: ProviderBatchCallAndSponsor.CallStructOutput[] }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace CallExecutedEvent { + export type InputTuple = [sender: AddressLike, to: AddressLike, value: BigNumberish, data: BytesLike]; + export type OutputTuple = [sender: string, to: string, value: bigint, data: string]; + export interface OutputObject {sender: string, to: string, value: bigint, data: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface ProviderBatchCallAndSponsor extends BaseContract { + + connect(runner?: ContractRunner | null): ProviderBatchCallAndSponsor; + waitForDeployment(): Promise; + + interface: ProviderBatchCallAndSponsorInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + "execute((address,uint256,bytes)[])": TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], ], + [void], + 'payable' + > + + + + "execute((address,uint256,bytes)[],bytes)": TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], signature: BytesLike, ], + [void], + 'payable' + > + + + + gatewayAddress: TypedContractMethod< + [], + [string], + 'view' + > + + + + nonce: TypedContractMethod< + [], + [bigint], + 'view' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'execute((address,uint256,bytes)[])'): TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], ], + [void], + 'payable' + >; +getFunction(nameOrSignature: 'execute((address,uint256,bytes)[],bytes)'): TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], signature: BytesLike, ], + [void], + 'payable' + >; +getFunction(nameOrSignature: 'gatewayAddress'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'nonce'): TypedContractMethod< + [], + [bigint], + 'view' + >; + + getEvent(key: 'BatchExecuted'): TypedContractEvent; +getEvent(key: 'CallExecuted'): TypedContractEvent; + + filters: { + + 'BatchExecuted(uint256,tuple[])': TypedContractEvent; + BatchExecuted: TypedContractEvent; + + + 'CallExecuted(address,address,uint256,bytes)': TypedContractEvent; + CallExecuted: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/index.ts b/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/index.ts new file mode 100644 index 0000000..c78a5de --- /dev/null +++ b/types/ethers-contracts/ProviderBatchCallAndSponsor.sol/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { IGateway } from './IGateway.js'; +export type { ProviderBatchCallAndSponsor } from './ProviderBatchCallAndSponsor.js'; \ No newline at end of file diff --git a/types/ethers-contracts/common.ts b/types/ethers-contracts/common.ts new file mode 100644 index 0000000..1b4cfcb --- /dev/null +++ b/types/ethers-contracts/common.ts @@ -0,0 +1,92 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { + FunctionFragment, + Typed, + EventFragment, + ContractTransaction, + ContractTransactionResponse, + DeferredTopicFilter, + EventLog, + TransactionRequest, + LogDescription, +} from 'ethers' + +export interface TypedDeferredTopicFilter<_TCEvent extends TypedContractEvent> extends DeferredTopicFilter {} + +export interface TypedContractEvent< + InputTuple extends Array = any, + OutputTuple extends Array = any, + OutputObject = any, +> { + (...args: Partial): TypedDeferredTopicFilter> + name: string + fragment: EventFragment + getFragment(...args: Partial): EventFragment +} + +type __TypechainAOutputTuple = T extends TypedContractEvent ? W : never +type __TypechainOutputObject = T extends TypedContractEvent ? V : never + +export interface TypedEventLog extends Omit { + args: __TypechainAOutputTuple & __TypechainOutputObject +} + +export interface TypedLogDescription extends Omit { + args: __TypechainAOutputTuple & __TypechainOutputObject +} + +export type TypedListener = ( + ...listenerArg: [...__TypechainAOutputTuple, TypedEventLog, ...undefined[]] +) => void + +export type MinEthersFactory = { + deploy(...a: ARGS[]): Promise +} + +export type GetContractTypeFromFactory = F extends MinEthersFactory ? C : never +export type GetARGsTypeFromFactory = F extends MinEthersFactory ? Parameters : never + +export type StateMutability = 'nonpayable' | 'payable' | 'view' + +export type BaseOverrides = Omit +export type NonPayableOverrides = Omit +export type PayableOverrides = Omit +export type ViewOverrides = Omit +export type Overrides = S extends 'nonpayable' + ? NonPayableOverrides + : S extends 'payable' + ? PayableOverrides + : ViewOverrides + +export type PostfixOverrides, S extends StateMutability> = A | [...A, Overrides] +export type ContractMethodArgs, S extends StateMutability> = PostfixOverrides< + { [I in keyof A]-?: A[I] | Typed }, + S +> + +export type DefaultReturnType = R extends Array ? R[0] : R + +// export interface ContractMethod = Array, R = any, D extends R | ContractTransactionResponse = R | ContractTransactionResponse> { +export interface TypedContractMethod< + A extends Array = Array, + R = any, + S extends StateMutability = 'payable', +> { + (...args: ContractMethodArgs): S extends 'view' + ? Promise> + : Promise + + name: string + + fragment: FunctionFragment + + getFragment(...args: ContractMethodArgs): FunctionFragment + + populateTransaction(...args: ContractMethodArgs): Promise + staticCall(...args: ContractMethodArgs): Promise> + send(...args: ContractMethodArgs): Promise + estimateGas(...args: ContractMethodArgs): Promise + staticCallResult(...args: ContractMethodArgs): Promise +} diff --git a/types/ethers-contracts/contracts/Gateway.ts b/types/ethers-contracts/contracts/Gateway.ts new file mode 100644 index 0000000..9b9e513 --- /dev/null +++ b/types/ethers-contracts/contracts/Gateway.ts @@ -0,0 +1,644 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common.js" + +export declare namespace IGateway { + + export type OrderStruct = {sender: AddressLike, token: AddressLike, senderFeeRecipient: AddressLike, senderFee: BigNumberish, protocolFee: BigNumberish, isFulfilled: boolean, isRefunded: boolean, refundAddress: AddressLike, currentBPS: BigNumberish, amount: BigNumberish} + + export type OrderStructOutput = [sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint] & {sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint } + + } + +export declare namespace GatewaySettingManager { + + export type TokenFeeSettingsStruct = {senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish} + + export type TokenFeeSettingsStructOutput = [senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint] & {senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint } + + } + + export interface GatewayInterface extends Interface { + getFunction(nameOrSignature: "acceptOwnership" | "createOrder" | "getAggregator" | "getOrderInfo" | "getTokenFeeSettings" | "initialize" | "isTokenSupported" | "owner" | "pause" | "paused" | "pendingOwner" | "refund" | "renounceOwnership" | "setTokenFeeSettings" | "settingManagerBool" | "settleIn" | "settleOut" | "transferOwnership" | "unpause" | "updateProtocolAddress"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "FxTransferFeeSplit" | "Initialized" | "LocalTransferFeeSplit" | "OrderCreated" | "OrderRefunded" | "OwnershipTransferStarted" | "OwnershipTransferred" | "Paused" | "ProtocolAddressUpdated" | "SenderFeeTransferred" | "SetFeeRecipient" | "SettingManagerBool" | "SettleIn" | "SettleOut" | "TokenFeeSettingsUpdated" | "Unpaused"): EventFragment; + + encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'createOrder', values: [AddressLike, BigNumberish, BigNumberish, AddressLike, BigNumberish, AddressLike, string]): string; +encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; +encodeFunctionData(functionFragment: 'getOrderInfo', values: [BytesLike]): string; +encodeFunctionData(functionFragment: 'getTokenFeeSettings', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'initialize', values?: undefined): string; +encodeFunctionData(functionFragment: 'isTokenSupported', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'owner', values?: undefined): string; +encodeFunctionData(functionFragment: 'pause', values?: undefined): string; +encodeFunctionData(functionFragment: 'paused', values?: undefined): string; +encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string; +encodeFunctionData(functionFragment: 'refund', values: [BigNumberish, BytesLike]): string; +encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'setTokenFeeSettings', values: [AddressLike, BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settingManagerBool', values: [BytesLike, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleIn', values: [BytesLike, AddressLike, BigNumberish, AddressLike, BigNumberish, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleOut', values: [BytesLike, BytesLike, AddressLike, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'unpause', values?: undefined): string; +encodeFunctionData(functionFragment: 'updateProtocolAddress', values: [BytesLike, AddressLike]): string; + + decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'createOrder', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getOrderInfo', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'initialize', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'isTokenSupported', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pause', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'paused', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'refund', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'setTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settingManagerBool', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleIn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleOut', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'unpause', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'updateProtocolAddress', data: BytesLike): Result; + } + + + export namespace FxTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace InitializedEvent { + export type InputTuple = [version: BigNumberish]; + export type OutputTuple = [version: bigint]; + export interface OutputObject {version: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace LocalTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, providerAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderCreatedEvent { + export type InputTuple = [sender: AddressLike, token: AddressLike, amount: BigNumberish, protocolFee: BigNumberish, orderId: BytesLike, rate: BigNumberish, messageHash: string]; + export type OutputTuple = [sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string]; + export interface OutputObject {sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderRefundedEvent { + export type InputTuple = [fee: BigNumberish, orderId: BytesLike]; + export type OutputTuple = [fee: bigint, orderId: string]; + export interface OutputObject {fee: bigint, orderId: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferStartedEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferredEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace PausedEvent { + export type InputTuple = [account: AddressLike]; + export type OutputTuple = [account: string]; + export interface OutputObject {account: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace ProtocolAddressUpdatedEvent { + export type InputTuple = [what: BytesLike, treasuryAddress: AddressLike]; + export type OutputTuple = [what: string, treasuryAddress: string]; + export interface OutputObject {what: string, treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SenderFeeTransferredEvent { + export type InputTuple = [orderId: BytesLike, sender: AddressLike, amount: BigNumberish]; + export type OutputTuple = [orderId: string, sender: string, amount: bigint]; + export interface OutputObject {orderId: string, sender: string, amount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SetFeeRecipientEvent { + export type InputTuple = [treasuryAddress: AddressLike]; + export type OutputTuple = [treasuryAddress: string]; + export interface OutputObject {treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettingManagerBoolEvent { + export type InputTuple = [what: BytesLike, value: AddressLike, status: BigNumberish]; + export type OutputTuple = [what: string, value: string, status: bigint]; + export interface OutputObject {what: string, value: string, status: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleInEvent { + export type InputTuple = [orderId: BytesLike, liquidityProvider: AddressLike, recipient: AddressLike, amount: BigNumberish, token: AddressLike, aggregatorFee: BigNumberish, rate: BigNumberish]; + export type OutputTuple = [orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint]; + export interface OutputObject {orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleOutEvent { + export type InputTuple = [splitOrderId: BytesLike, orderId: BytesLike, liquidityProvider: AddressLike, settlePercent: BigNumberish, rebatePercent: BigNumberish]; + export type OutputTuple = [splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint]; + export interface OutputObject {splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TokenFeeSettingsUpdatedEvent { + export type InputTuple = [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish]; + export type OutputTuple = [token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint]; + export interface OutputObject {token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace UnpausedEvent { + export type InputTuple = [account: AddressLike]; + export type OutputTuple = [account: string]; + export interface OutputObject {account: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface Gateway extends BaseContract { + + connect(runner?: ContractRunner | null): Gateway; + waitForDeployment(): Promise; + + interface: GatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + acceptOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + createOrder: TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + > + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getOrderInfo: TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + > + + + + getTokenFeeSettings: TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + > + + + + initialize: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + isTokenSupported: TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + > + + + + owner: TypedContractMethod< + [], + [string], + 'view' + > + + + + pause: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + paused: TypedContractMethod< + [], + [boolean], + 'view' + > + + + + pendingOwner: TypedContractMethod< + [], + [string], + 'view' + > + + + + refund: TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + > + + + + renounceOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + setTokenFeeSettings: TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settingManagerBool: TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settleIn: TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + settleOut: TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + transferOwnership: TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + > + + + + unpause: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + updateProtocolAddress: TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'createOrder'): TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'getOrderInfo'): TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'getTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'initialize'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'isTokenSupported'): TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'owner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'pause'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'paused'): TypedContractMethod< + [], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'refund'): TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'setTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settingManagerBool'): TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleIn'): TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleOut'): TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'unpause'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'updateProtocolAddress'): TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + >; + + getEvent(key: 'FxTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'Initialized'): TypedContractEvent; +getEvent(key: 'LocalTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'OrderCreated'): TypedContractEvent; +getEvent(key: 'OrderRefunded'): TypedContractEvent; +getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent; +getEvent(key: 'OwnershipTransferred'): TypedContractEvent; +getEvent(key: 'Paused'): TypedContractEvent; +getEvent(key: 'ProtocolAddressUpdated'): TypedContractEvent; +getEvent(key: 'SenderFeeTransferred'): TypedContractEvent; +getEvent(key: 'SetFeeRecipient'): TypedContractEvent; +getEvent(key: 'SettingManagerBool'): TypedContractEvent; +getEvent(key: 'SettleIn'): TypedContractEvent; +getEvent(key: 'SettleOut'): TypedContractEvent; +getEvent(key: 'TokenFeeSettingsUpdated'): TypedContractEvent; +getEvent(key: 'Unpaused'): TypedContractEvent; + + filters: { + + 'FxTransferFeeSplit(bytes32,uint256,uint256)': TypedContractEvent; + FxTransferFeeSplit: TypedContractEvent; + + + 'Initialized(uint8)': TypedContractEvent; + Initialized: TypedContractEvent; + + + 'LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)': TypedContractEvent; + LocalTransferFeeSplit: TypedContractEvent; + + + 'OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)': TypedContractEvent; + OrderCreated: TypedContractEvent; + + + 'OrderRefunded(uint256,bytes32)': TypedContractEvent; + OrderRefunded: TypedContractEvent; + + + 'OwnershipTransferStarted(address,address)': TypedContractEvent; + OwnershipTransferStarted: TypedContractEvent; + + + 'OwnershipTransferred(address,address)': TypedContractEvent; + OwnershipTransferred: TypedContractEvent; + + + 'Paused(address)': TypedContractEvent; + Paused: TypedContractEvent; + + + 'ProtocolAddressUpdated(bytes32,address)': TypedContractEvent; + ProtocolAddressUpdated: TypedContractEvent; + + + 'SenderFeeTransferred(bytes32,address,uint256)': TypedContractEvent; + SenderFeeTransferred: TypedContractEvent; + + + 'SetFeeRecipient(address)': TypedContractEvent; + SetFeeRecipient: TypedContractEvent; + + + 'SettingManagerBool(bytes32,address,uint256)': TypedContractEvent; + SettingManagerBool: TypedContractEvent; + + + 'SettleIn(bytes32,address,address,uint256,address,uint256,uint96)': TypedContractEvent; + SettleIn: TypedContractEvent; + + + 'SettleOut(bytes32,bytes32,address,uint64,uint64)': TypedContractEvent; + SettleOut: TypedContractEvent; + + + 'TokenFeeSettingsUpdated(address,uint256,uint256,uint256,uint256)': TypedContractEvent; + TokenFeeSettingsUpdated: TypedContractEvent; + + + 'Unpaused(address)': TypedContractEvent; + Unpaused: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/contracts/GatewaySettingManager.ts b/types/ethers-contracts/contracts/GatewaySettingManager.ts new file mode 100644 index 0000000..174433f --- /dev/null +++ b/types/ethers-contracts/contracts/GatewaySettingManager.ts @@ -0,0 +1,318 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common.js" + +export declare namespace GatewaySettingManager { + + export type TokenFeeSettingsStruct = {senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish} + + export type TokenFeeSettingsStructOutput = [senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint] & {senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint } + + } + + export interface GatewaySettingManagerInterface extends Interface { + getFunction(nameOrSignature: "acceptOwnership" | "getTokenFeeSettings" | "owner" | "pendingOwner" | "renounceOwnership" | "setTokenFeeSettings" | "settingManagerBool" | "transferOwnership" | "updateProtocolAddress"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "Initialized" | "OwnershipTransferStarted" | "OwnershipTransferred" | "ProtocolAddressUpdated" | "SetFeeRecipient" | "SettingManagerBool" | "TokenFeeSettingsUpdated"): EventFragment; + + encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'getTokenFeeSettings', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'owner', values?: undefined): string; +encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string; +encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'setTokenFeeSettings', values: [AddressLike, BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settingManagerBool', values: [BytesLike, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'updateProtocolAddress', values: [BytesLike, AddressLike]): string; + + decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'setTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settingManagerBool', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'updateProtocolAddress', data: BytesLike): Result; + } + + + export namespace InitializedEvent { + export type InputTuple = [version: BigNumberish]; + export type OutputTuple = [version: bigint]; + export interface OutputObject {version: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferStartedEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferredEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace ProtocolAddressUpdatedEvent { + export type InputTuple = [what: BytesLike, treasuryAddress: AddressLike]; + export type OutputTuple = [what: string, treasuryAddress: string]; + export interface OutputObject {what: string, treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SetFeeRecipientEvent { + export type InputTuple = [treasuryAddress: AddressLike]; + export type OutputTuple = [treasuryAddress: string]; + export interface OutputObject {treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettingManagerBoolEvent { + export type InputTuple = [what: BytesLike, value: AddressLike, status: BigNumberish]; + export type OutputTuple = [what: string, value: string, status: bigint]; + export interface OutputObject {what: string, value: string, status: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TokenFeeSettingsUpdatedEvent { + export type InputTuple = [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish]; + export type OutputTuple = [token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint]; + export interface OutputObject {token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface GatewaySettingManager extends BaseContract { + + connect(runner?: ContractRunner | null): GatewaySettingManager; + waitForDeployment(): Promise; + + interface: GatewaySettingManagerInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + acceptOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + getTokenFeeSettings: TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + > + + + + owner: TypedContractMethod< + [], + [string], + 'view' + > + + + + pendingOwner: TypedContractMethod< + [], + [string], + 'view' + > + + + + renounceOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + setTokenFeeSettings: TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settingManagerBool: TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + > + + + + transferOwnership: TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + > + + + + updateProtocolAddress: TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'owner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'setTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settingManagerBool'): TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'updateProtocolAddress'): TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + >; + + getEvent(key: 'Initialized'): TypedContractEvent; +getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent; +getEvent(key: 'OwnershipTransferred'): TypedContractEvent; +getEvent(key: 'ProtocolAddressUpdated'): TypedContractEvent; +getEvent(key: 'SetFeeRecipient'): TypedContractEvent; +getEvent(key: 'SettingManagerBool'): TypedContractEvent; +getEvent(key: 'TokenFeeSettingsUpdated'): TypedContractEvent; + + filters: { + + 'Initialized(uint8)': TypedContractEvent; + Initialized: TypedContractEvent; + + + 'OwnershipTransferStarted(address,address)': TypedContractEvent; + OwnershipTransferStarted: TypedContractEvent; + + + 'OwnershipTransferred(address,address)': TypedContractEvent; + OwnershipTransferred: TypedContractEvent; + + + 'ProtocolAddressUpdated(bytes32,address)': TypedContractEvent; + ProtocolAddressUpdated: TypedContractEvent; + + + 'SetFeeRecipient(address)': TypedContractEvent; + SetFeeRecipient: TypedContractEvent; + + + 'SettingManagerBool(bytes32,address,uint256)': TypedContractEvent; + SettingManagerBool: TypedContractEvent; + + + 'TokenFeeSettingsUpdated(address,uint256,uint256,uint256,uint256)': TypedContractEvent; + TokenFeeSettingsUpdated: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/IGateway.ts b/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/IGateway.ts new file mode 100644 index 0000000..22216c1 --- /dev/null +++ b/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/IGateway.ts @@ -0,0 +1,75 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common.js" + + + export interface IGatewayInterface extends Interface { + getFunction(nameOrSignature: "getAggregator"): FunctionFragment; + + + + encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; + + decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; + } + + + + export interface IGateway extends BaseContract { + + connect(runner?: ContractRunner | null): IGateway; + waitForDeployment(): Promise; + + interface: IGatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; + + + + filters: { + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.ts b/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.ts new file mode 100644 index 0000000..a4aea59 --- /dev/null +++ b/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.ts @@ -0,0 +1,158 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common.js" + +export declare namespace ProviderBatchCallAndSponsor { + + export type CallStruct = {to: AddressLike, value: BigNumberish, data: BytesLike} + + export type CallStructOutput = [to: string, value: bigint, data: string] & {to: string, value: bigint, data: string } + + } + + export interface ProviderBatchCallAndSponsorInterface extends Interface { + getFunction(nameOrSignature: "execute((address,uint256,bytes)[])" | "execute((address,uint256,bytes)[],bytes)" | "gatewayAddress" | "nonce"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "BatchExecuted" | "CallExecuted"): EventFragment; + + encodeFunctionData(functionFragment: 'execute((address,uint256,bytes)[])', values: [ProviderBatchCallAndSponsor.CallStruct[]]): string; +encodeFunctionData(functionFragment: 'execute((address,uint256,bytes)[],bytes)', values: [ProviderBatchCallAndSponsor.CallStruct[], BytesLike]): string; +encodeFunctionData(functionFragment: 'gatewayAddress', values?: undefined): string; +encodeFunctionData(functionFragment: 'nonce', values?: undefined): string; + + decodeFunctionResult(functionFragment: 'execute((address,uint256,bytes)[])', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'execute((address,uint256,bytes)[],bytes)', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'gatewayAddress', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'nonce', data: BytesLike): Result; + } + + + export namespace BatchExecutedEvent { + export type InputTuple = [nonce: BigNumberish, calls: ProviderBatchCallAndSponsor.CallStruct[]]; + export type OutputTuple = [nonce: bigint, calls: ProviderBatchCallAndSponsor.CallStructOutput[]]; + export interface OutputObject {nonce: bigint, calls: ProviderBatchCallAndSponsor.CallStructOutput[] }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace CallExecutedEvent { + export type InputTuple = [sender: AddressLike, to: AddressLike, value: BigNumberish, data: BytesLike]; + export type OutputTuple = [sender: string, to: string, value: bigint, data: string]; + export interface OutputObject {sender: string, to: string, value: bigint, data: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface ProviderBatchCallAndSponsor extends BaseContract { + + connect(runner?: ContractRunner | null): ProviderBatchCallAndSponsor; + waitForDeployment(): Promise; + + interface: ProviderBatchCallAndSponsorInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + "execute((address,uint256,bytes)[])": TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], ], + [void], + 'payable' + > + + + + "execute((address,uint256,bytes)[],bytes)": TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], signature: BytesLike, ], + [void], + 'payable' + > + + + + gatewayAddress: TypedContractMethod< + [], + [string], + 'view' + > + + + + nonce: TypedContractMethod< + [], + [bigint], + 'view' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'execute((address,uint256,bytes)[])'): TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], ], + [void], + 'payable' + >; +getFunction(nameOrSignature: 'execute((address,uint256,bytes)[],bytes)'): TypedContractMethod< + [calls: ProviderBatchCallAndSponsor.CallStruct[], signature: BytesLike, ], + [void], + 'payable' + >; +getFunction(nameOrSignature: 'gatewayAddress'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'nonce'): TypedContractMethod< + [], + [bigint], + 'view' + >; + + getEvent(key: 'BatchExecuted'): TypedContractEvent; +getEvent(key: 'CallExecuted'): TypedContractEvent; + + filters: { + + 'BatchExecuted(uint256,tuple[])': TypedContractEvent; + BatchExecuted: TypedContractEvent; + + + 'CallExecuted(address,address,uint256,bytes)': TypedContractEvent; + CallExecuted: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/index.ts b/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/index.ts new file mode 100644 index 0000000..c78a5de --- /dev/null +++ b/types/ethers-contracts/contracts/ProviderBatchCallAndSponsor.sol/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { IGateway } from './IGateway.js'; +export type { ProviderBatchCallAndSponsor } from './ProviderBatchCallAndSponsor.js'; \ No newline at end of file diff --git a/types/ethers-contracts/contracts/index.ts b/types/ethers-contracts/contracts/index.ts new file mode 100644 index 0000000..02afaa3 --- /dev/null +++ b/types/ethers-contracts/contracts/index.ts @@ -0,0 +1,11 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as providerBatchCallAndSponsorSol from './ProviderBatchCallAndSponsor.sol/index.js'; +export type { providerBatchCallAndSponsorSol }; +import type * as interfaces from './interfaces/index.js'; +export type { interfaces }; +import type * as mocks from './mocks/index.js'; +export type { mocks }; +export type { Gateway } from './Gateway.js'; +export type { GatewaySettingManager } from './GatewaySettingManager.js'; \ No newline at end of file diff --git a/types/ethers-contracts/contracts/interfaces/IGateway.ts b/types/ethers-contracts/contracts/interfaces/IGateway.ts new file mode 100644 index 0000000..067c9a1 --- /dev/null +++ b/types/ethers-contracts/contracts/interfaces/IGateway.ts @@ -0,0 +1,288 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common.js" + +export declare namespace IGateway { + + export type OrderStruct = {sender: AddressLike, token: AddressLike, senderFeeRecipient: AddressLike, senderFee: BigNumberish, protocolFee: BigNumberish, isFulfilled: boolean, isRefunded: boolean, refundAddress: AddressLike, currentBPS: BigNumberish, amount: BigNumberish} + + export type OrderStructOutput = [sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint] & {sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint } + + } + + export interface IGatewayInterface extends Interface { + getFunction(nameOrSignature: "createOrder" | "getAggregator" | "getOrderInfo" | "isTokenSupported" | "refund" | "settleIn" | "settleOut"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "FxTransferFeeSplit" | "LocalTransferFeeSplit" | "OrderCreated" | "OrderRefunded" | "SenderFeeTransferred" | "SettleIn" | "SettleOut"): EventFragment; + + encodeFunctionData(functionFragment: 'createOrder', values: [AddressLike, BigNumberish, BigNumberish, AddressLike, BigNumberish, AddressLike, string]): string; +encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; +encodeFunctionData(functionFragment: 'getOrderInfo', values: [BytesLike]): string; +encodeFunctionData(functionFragment: 'isTokenSupported', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'refund', values: [BigNumberish, BytesLike]): string; +encodeFunctionData(functionFragment: 'settleIn', values: [BytesLike, AddressLike, BigNumberish, AddressLike, BigNumberish, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleOut', values: [BytesLike, BytesLike, AddressLike, BigNumberish, BigNumberish]): string; + + decodeFunctionResult(functionFragment: 'createOrder', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getOrderInfo', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'isTokenSupported', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'refund', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleIn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleOut', data: BytesLike): Result; + } + + + export namespace FxTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace LocalTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, providerAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderCreatedEvent { + export type InputTuple = [sender: AddressLike, token: AddressLike, amount: BigNumberish, protocolFee: BigNumberish, orderId: BytesLike, rate: BigNumberish, messageHash: string]; + export type OutputTuple = [sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string]; + export interface OutputObject {sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderRefundedEvent { + export type InputTuple = [fee: BigNumberish, orderId: BytesLike]; + export type OutputTuple = [fee: bigint, orderId: string]; + export interface OutputObject {fee: bigint, orderId: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SenderFeeTransferredEvent { + export type InputTuple = [orderId: BytesLike, sender: AddressLike, amount: BigNumberish]; + export type OutputTuple = [orderId: string, sender: string, amount: bigint]; + export interface OutputObject {orderId: string, sender: string, amount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleInEvent { + export type InputTuple = [orderId: BytesLike, liquidityProvider: AddressLike, recipient: AddressLike, amount: BigNumberish, token: AddressLike, aggregatorFee: BigNumberish, rate: BigNumberish]; + export type OutputTuple = [orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint]; + export interface OutputObject {orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleOutEvent { + export type InputTuple = [splitOrderId: BytesLike, orderId: BytesLike, liquidityProvider: AddressLike, settlePercent: BigNumberish, rebatePercent: BigNumberish]; + export type OutputTuple = [splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint]; + export interface OutputObject {splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface IGateway extends BaseContract { + + connect(runner?: ContractRunner | null): IGateway; + waitForDeployment(): Promise; + + interface: IGatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + createOrder: TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + > + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getOrderInfo: TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + > + + + + isTokenSupported: TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + > + + + + refund: TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + > + + + + settleIn: TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + settleOut: TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'createOrder'): TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'getOrderInfo'): TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'isTokenSupported'): TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'refund'): TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleIn'): TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleOut'): TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + >; + + getEvent(key: 'FxTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'LocalTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'OrderCreated'): TypedContractEvent; +getEvent(key: 'OrderRefunded'): TypedContractEvent; +getEvent(key: 'SenderFeeTransferred'): TypedContractEvent; +getEvent(key: 'SettleIn'): TypedContractEvent; +getEvent(key: 'SettleOut'): TypedContractEvent; + + filters: { + + 'FxTransferFeeSplit(bytes32,uint256,uint256)': TypedContractEvent; + FxTransferFeeSplit: TypedContractEvent; + + + 'LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)': TypedContractEvent; + LocalTransferFeeSplit: TypedContractEvent; + + + 'OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)': TypedContractEvent; + OrderCreated: TypedContractEvent; + + + 'OrderRefunded(uint256,bytes32)': TypedContractEvent; + OrderRefunded: TypedContractEvent; + + + 'SenderFeeTransferred(bytes32,address,uint256)': TypedContractEvent; + SenderFeeTransferred: TypedContractEvent; + + + 'SettleIn(bytes32,address,address,uint256,address,uint256,uint96)': TypedContractEvent; + SettleIn: TypedContractEvent; + + + 'SettleOut(bytes32,bytes32,address,uint64,uint64)': TypedContractEvent; + SettleOut: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/contracts/interfaces/index.ts b/types/ethers-contracts/contracts/interfaces/index.ts new file mode 100644 index 0000000..29f56db --- /dev/null +++ b/types/ethers-contracts/contracts/interfaces/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { IGateway } from './IGateway.js'; \ No newline at end of file diff --git a/types/ethers-contracts/contracts/mocks/MockUSDC.sol/MockUSDT.ts b/types/ethers-contracts/contracts/mocks/MockUSDC.sol/MockUSDT.ts new file mode 100644 index 0000000..1e303bf --- /dev/null +++ b/types/ethers-contracts/contracts/mocks/MockUSDC.sol/MockUSDT.ts @@ -0,0 +1,301 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common.js" + + + export interface MockUSDTInterface extends Interface { + getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "burn" | "burnAll" | "decimals" | "decreaseAllowance" | "increaseAllowance" | "mint" | "name" | "symbol" | "totalSupply" | "transfer" | "transferFrom"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "Approval" | "Transfer"): EventFragment; + + encodeFunctionData(functionFragment: 'allowance', values: [AddressLike, AddressLike]): string; +encodeFunctionData(functionFragment: 'approve', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'balanceOf', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'burn', values: [BigNumberish]): string; +encodeFunctionData(functionFragment: 'burnAll', values?: undefined): string; +encodeFunctionData(functionFragment: 'decimals', values?: undefined): string; +encodeFunctionData(functionFragment: 'decreaseAllowance', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'increaseAllowance', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'mint', values: [BigNumberish]): string; +encodeFunctionData(functionFragment: 'name', values?: undefined): string; +encodeFunctionData(functionFragment: 'symbol', values?: undefined): string; +encodeFunctionData(functionFragment: 'totalSupply', values?: undefined): string; +encodeFunctionData(functionFragment: 'transfer', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferFrom', values: [AddressLike, AddressLike, BigNumberish]): string; + + decodeFunctionResult(functionFragment: 'allowance', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'approve', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'balanceOf', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'burn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'burnAll', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'decimals', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'decreaseAllowance', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'increaseAllowance', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'mint', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'name', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'symbol', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'totalSupply', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transfer', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferFrom', data: BytesLike): Result; + } + + + export namespace ApprovalEvent { + export type InputTuple = [owner: AddressLike, spender: AddressLike, value: BigNumberish]; + export type OutputTuple = [owner: string, spender: string, value: bigint]; + export interface OutputObject {owner: string, spender: string, value: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TransferEvent { + export type InputTuple = [from: AddressLike, to: AddressLike, value: BigNumberish]; + export type OutputTuple = [from: string, to: string, value: bigint]; + export interface OutputObject {from: string, to: string, value: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface MockUSDT extends BaseContract { + + connect(runner?: ContractRunner | null): MockUSDT; + waitForDeployment(): Promise; + + interface: MockUSDTInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + allowance: TypedContractMethod< + [owner: AddressLike, spender: AddressLike, ], + [bigint], + 'view' + > + + + + approve: TypedContractMethod< + [spender: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + balanceOf: TypedContractMethod< + [account: AddressLike, ], + [bigint], + 'view' + > + + + + burn: TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + > + + + + burnAll: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + decimals: TypedContractMethod< + [], + [bigint], + 'view' + > + + + + decreaseAllowance: TypedContractMethod< + [spender: AddressLike, subtractedValue: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + increaseAllowance: TypedContractMethod< + [spender: AddressLike, addedValue: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + mint: TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + > + + + + name: TypedContractMethod< + [], + [string], + 'view' + > + + + + symbol: TypedContractMethod< + [], + [string], + 'view' + > + + + + totalSupply: TypedContractMethod< + [], + [bigint], + 'view' + > + + + + transfer: TypedContractMethod< + [to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + transferFrom: TypedContractMethod< + [from: AddressLike, to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'allowance'): TypedContractMethod< + [owner: AddressLike, spender: AddressLike, ], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'approve'): TypedContractMethod< + [spender: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'balanceOf'): TypedContractMethod< + [account: AddressLike, ], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'burn'): TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'burnAll'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'decimals'): TypedContractMethod< + [], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'decreaseAllowance'): TypedContractMethod< + [spender: AddressLike, subtractedValue: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'increaseAllowance'): TypedContractMethod< + [spender: AddressLike, addedValue: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'mint'): TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'name'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'symbol'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'totalSupply'): TypedContractMethod< + [], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'transfer'): TypedContractMethod< + [to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferFrom'): TypedContractMethod< + [from: AddressLike, to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + >; + + getEvent(key: 'Approval'): TypedContractEvent; +getEvent(key: 'Transfer'): TypedContractEvent; + + filters: { + + 'Approval(address,address,uint256)': TypedContractEvent; + Approval: TypedContractEvent; + + + 'Transfer(address,address,uint256)': TypedContractEvent; + Transfer: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/contracts/mocks/MockUSDC.sol/index.ts b/types/ethers-contracts/contracts/mocks/MockUSDC.sol/index.ts new file mode 100644 index 0000000..e9c8f87 --- /dev/null +++ b/types/ethers-contracts/contracts/mocks/MockUSDC.sol/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { MockUSDT } from './MockUSDT.js'; \ No newline at end of file diff --git a/types/ethers-contracts/contracts/mocks/index.ts b/types/ethers-contracts/contracts/mocks/index.ts new file mode 100644 index 0000000..6bb6598 --- /dev/null +++ b/types/ethers-contracts/contracts/mocks/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as mockUsdcSol from './MockUSDC.sol/index.js'; +export type { mockUsdcSol }; \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/index.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/index.ts new file mode 100644 index 0000000..54e9f19 --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as proxy from './proxy/index.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/index.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/index.ts new file mode 100644 index 0000000..cd4140d --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as transparent from './transparent/index.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.ts new file mode 100644 index 0000000..c79cb2d --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.ts @@ -0,0 +1,210 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../../../../common.js" + import type { ProxyAdmin, ProxyAdminInterface } from "../../../../../@openzeppelin/contracts/proxy/transparent/ProxyAdmin.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + }, + { + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "changeProxyAdmin", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + } + ], + "name": "getProxyAdmin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + } + ], + "name": "getProxyImplementation", + "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": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + }, + { + "internalType": "address", + "name": "implementation", + "type": "address" + } + ], + "name": "upgrade", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract ITransparentUpgradeableProxy", + "name": "proxy", + "type": "address" + }, + { + "internalType": "address", + "name": "implementation", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "upgradeAndCall", + "outputs": [], + "stateMutability": "payable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801561000f575f80fd5b506100193361001e565b61006d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6106618061007a5f395ff3fe608060405260043610610079575f3560e01c80639623609d1161004c5780639623609d1461010957806399a88ec41461011c578063f2fde38b1461013b578063f3b7dead1461015a575f80fd5b8063204e1c7a1461007d578063715018a6146100b85780637eff275e146100ce5780638da5cb5b146100ed575b5f80fd5b348015610088575f80fd5b5061009c610097366004610479565b610179565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c3575f80fd5b506100cc610204565b005b3480156100d9575f80fd5b506100cc6100e836600461049b565b610217565b3480156100f8575f80fd5b505f546001600160a01b031661009c565b6100cc6101173660046104e6565b61027a565b348015610127575f80fd5b506100cc61013636600461049b565b6102e5565b348015610146575f80fd5b506100cc610155366004610479565b61031b565b348015610165575f80fd5b5061009c610174366004610479565b610399565b5f805f836001600160a01b031660405161019d90635c60da1b60e01b815260040190565b5f60405180830381855afa9150503d805f81146101d5576040519150601f19603f3d011682016040523d82523d5f602084013e6101da565b606091505b5091509150816101e8575f80fd5b808060200190518101906101fc91906105b5565b949350505050565b61020c6103bd565b6102155f610416565b565b61021f6103bd565b6040516308f2839760e41b81526001600160a01b038281166004830152831690638f283970906024015b5f604051808303815f87803b158015610260575f80fd5b505af1158015610272573d5f803e3d5ffd5b505050505050565b6102826103bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906102b290869086906004016105d0565b5f604051808303818588803b1580156102c9575f80fd5b505af11580156102db573d5f803e3d5ffd5b5050505050505050565b6102ed6103bd565b604051631b2ce7f360e11b81526001600160a01b038281166004830152831690633659cfe690602401610249565b6103236103bd565b6001600160a01b03811661038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61039681610416565b50565b5f805f836001600160a01b031660405161019d906303e1469160e61b815260040190565b5f546001600160a01b031633146102155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610384565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610396575f80fd5b5f60208284031215610489575f80fd5b813561049481610465565b9392505050565b5f80604083850312156104ac575f80fd5b82356104b781610465565b915060208301356104c781610465565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156104f8575f80fd5b833561050381610465565b9250602084013561051381610465565b9150604084013567ffffffffffffffff8082111561052f575f80fd5b818601915086601f830112610542575f80fd5b813581811115610554576105546104d2565b604051601f8201601f19908116603f0116810190838211818310171561057c5761057c6104d2565b81604052828152896020848701011115610594575f80fd5b826020860160208301375f6020848301015280955050505050509250925092565b5f602082840312156105c5575f80fd5b815161049481610465565b60018060a01b03831681525f602060408184015283518060408501525f5b8181101561060a578581018301518582016060015282016105ee565b505f606082860101526060601f19601f83011685010192505050939250505056fea2646970667358221220081d3958c5d8c11a685edd579e3339c71d92b675dcff63a671429ef1422bee4064736f6c63430008140033"; + + + type ProxyAdminConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: ProxyAdminConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class ProxyAdmin__factory extends ContractFactory { + + constructor(...args: ProxyAdminConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): ProxyAdmin__factory { + return super.connect(runner) as ProxyAdmin__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): ProxyAdminInterface { + return new Interface(_abi) as ProxyAdminInterface; + } + + override attach(address: string | Addressable): ProxyAdmin { + return super.attach(address) as ProxyAdmin; + } + static connect(address: string, runner?: ContractRunner | null): ProxyAdmin { + return new Contract(address, _abi, runner) as unknown as ProxyAdmin; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.ts new file mode 100644 index 0000000..744eeb7 --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.ts @@ -0,0 +1,135 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ + + import { Contract, Interface, type ContractRunner } from "ethers"; + import type { ITransparentUpgradeableProxy, ITransparentUpgradeableProxyInterface } from "../../../../../../@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "previousAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "AdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "beacon", + "type": "address" + } + ], + "name": "BeaconUpgraded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address" + } + ], + "name": "Upgraded", + "type": "event" + }, + { + "inputs": [], + "name": "admin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "changeAdmin", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "implementation", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "upgradeTo", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "upgradeToAndCall", + "outputs": [], + "stateMutability": "payable", + "type": "function" + } +] as const; + + export class ITransparentUpgradeableProxy__factory { + static readonly abi = _abi; + static createInterface(): ITransparentUpgradeableProxyInterface { + return new Interface(_abi) as ITransparentUpgradeableProxyInterface; + } + static connect(address: string, runner?: ContractRunner | null): ITransparentUpgradeableProxy { + return new Contract(address, _abi, runner) as unknown as ITransparentUpgradeableProxy; + } + } + \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.ts new file mode 100644 index 0000000..cb5dd9c --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.ts @@ -0,0 +1,135 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, BytesLike, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers" +import type { PayableOverrides } from "../../../../../../common.js" + import type { TransparentUpgradeableProxy, TransparentUpgradeableProxyInterface } from "../../../../../../@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.js"; + + const _abi = [ + { + "inputs": [ + { + "internalType": "address", + "name": "_logic", + "type": "address" + }, + { + "internalType": "address", + "name": "admin_", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "stateMutability": "payable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "previousAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "AdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "beacon", + "type": "address" + } + ], + "name": "BeaconUpgraded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address" + } + ], + "name": "Upgraded", + "type": "event" + }, + { + "stateMutability": "payable", + "type": "fallback" + }, + { + "stateMutability": "payable", + "type": "receive" + } +] as const; + + const _bytecode = "0x608060405260405162000df438038062000df4833981016040819052620000269162000415565b82816200003582825f6200004c565b50620000439050826200007d565b50505062000540565b6200005783620000ee565b5f82511180620000645750805b1562000078576200007683836200012f565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620000be5f8051602062000dad833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a1620000eb816200015e565b50565b620000f981620001fb565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b606062000157838360405180606001604052806027815260200162000dcd6027913962000292565b9392505050565b6001600160a01b038116620001c95760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b805f8051602062000dad8339815191525b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381163b6200026a5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401620001c0565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc620001da565b60605f80856001600160a01b031685604051620002b09190620004ef565b5f60405180830381855af49150503d805f8114620002ea576040519150601f19603f3d011682016040523d82523d5f602084013e620002ef565b606091505b50909250905062000303868383876200030d565b9695505050505050565b60608315620003805782515f0362000378576001600160a01b0385163b620003785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001c0565b50816200038c565b6200038c838362000394565b949350505050565b815115620003a55781518083602001fd5b8060405162461bcd60e51b8152600401620001c091906200050c565b80516001600160a01b0381168114620003d8575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156200040d578181015183820152602001620003f3565b50505f910152565b5f805f6060848603121562000428575f80fd5b6200043384620003c1565b92506200044360208501620003c1565b60408501519092506001600160401b038082111562000460575f80fd5b818601915086601f83011262000474575f80fd5b815181811115620004895762000489620003dd565b604051601f8201601f19908116603f01168101908382118183101715620004b457620004b4620003dd565b81604052828152896020848701011115620004cd575f80fd5b620004e0836020830160208801620003f1565b80955050505050509250925092565b5f825162000502818460208701620003f1565b9190910192915050565b602081525f82518060208401526200052c816040850160208701620003f1565b601f01601f19169190910160400192915050565b61085f806200054e5f395ff3fe60806040523661001357610011610017565b005b6100115b61001f610168565b6001600160a01b0316330361015e5760606001600160e01b03195f35166364d3180d60e11b81016100595761005261019a565b9150610156565b63587086bd60e11b6001600160e01b0319821601610079576100526101ed565b63070d7c6960e41b6001600160e01b031982160161009957610052610231565b621eb96f60e61b6001600160e01b03198216016100b857610052610261565b63a39f25e560e01b6001600160e01b03198216016100d8576100526102a0565b60405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b815160208301f35b6101666102b3565b565b5f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60606101a46102c3565b5f6101b23660048184610668565b8101906101bf91906106aa565b90506101da8160405180602001604052805f8152505f6102cd565b505060408051602081019091525f815290565b60605f806101fe3660048184610668565b81019061020b91906106d7565b9150915061021b828260016102cd565b60405180602001604052805f8152509250505090565b606061023b6102c3565b5f6102493660048184610668565b81019061025691906106aa565b90506101da816102f8565b606061026b6102c3565b5f610274610168565b604080516001600160a01b03831660208201529192500160405160208183030381529060405291505090565b60606102aa6102c3565b5f61027461034f565b6101666102be61034f565b61035d565b3415610166575f80fd5b6102d68361037b565b5f825111806102e25750805b156102f3576102f183836103ba565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610321610168565b604080516001600160a01b03928316815291841660208301520160405180910390a161034c816103e6565b50565b5f61035861048f565b905090565b365f80375f80365f845af43d5f803e808015610377573d5ff35b3d5ffd5b610384816104b6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606103df83836040518060600160405280602781526020016108036027913961054a565b9392505050565b6001600160a01b03811661044b5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014d565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61018b565b6001600160a01b0381163b6105235760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014d565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61046e565b60605f80856001600160a01b03168560405161056691906107b5565b5f60405180830381855af49150503d805f811461059e576040519150601f19603f3d011682016040523d82523d5f602084013e6105a3565b606091505b50915091506105b4868383876105be565b9695505050505050565b6060831561062c5782515f03610625576001600160a01b0385163b6106255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161014d565b5081610636565b610636838361063e565b949350505050565b81511561064e5781518083602001fd5b8060405162461bcd60e51b815260040161014d91906107d0565b5f8085851115610676575f80fd5b83861115610682575f80fd5b5050820193919092039150565b80356001600160a01b03811681146106a5575f80fd5b919050565b5f602082840312156106ba575f80fd5b6103df8261068f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156106e8575f80fd5b6106f18361068f565b9150602083013567ffffffffffffffff8082111561070d575f80fd5b818501915085601f830112610720575f80fd5b813581811115610732576107326106c3565b604051601f8201601f19908116603f0116810190838211818310171561075a5761075a6106c3565b81604052828152886020848701011115610772575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f5b838110156107ad578181015183820152602001610795565b50505f910152565b5f82516107c6818460208701610793565b9190910192915050565b602081525f82518060208401526107ee816040850160208701610793565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122049d802c60b40ccde628477016e4de3aa79a5feb5f60a45c43160aad2853404d064736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564"; + + + type TransparentUpgradeableProxyConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: TransparentUpgradeableProxyConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class TransparentUpgradeableProxy__factory extends ContractFactory { + + constructor(...args: TransparentUpgradeableProxyConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(_logic: AddressLike, admin_: AddressLike, _data: BytesLike, overrides?: PayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(_logic, admin_, _data, overrides || {}); + }; + override deploy(_logic: AddressLike, admin_: AddressLike, _data: BytesLike, overrides?: PayableOverrides & { from?: string }) { + return super.deploy(_logic, admin_, _data, overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): TransparentUpgradeableProxy__factory { + return super.connect(runner) as TransparentUpgradeableProxy__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): TransparentUpgradeableProxyInterface { + return new Interface(_abi) as TransparentUpgradeableProxyInterface; + } + + override attach(address: string | Addressable): TransparentUpgradeableProxy { + return super.attach(address) as TransparentUpgradeableProxy; + } + static connect(address: string, runner?: ContractRunner | null): TransparentUpgradeableProxy { + return new Contract(address, _abi, runner) as unknown as TransparentUpgradeableProxy; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.ts new file mode 100644 index 0000000..ea2e8ed --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { ITransparentUpgradeableProxy__factory } from './ITransparentUpgradeableProxy__factory.js'; +export { TransparentUpgradeableProxy__factory } from './TransparentUpgradeableProxy__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/index.ts b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/index.ts new file mode 100644 index 0000000..14779a8 --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/contracts/proxy/transparent/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as transparentUpgradeableProxySol from './TransparentUpgradeableProxy.sol/index.js'; +export { ProxyAdmin__factory } from './ProxyAdmin__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/@openzeppelin/index.ts b/types/ethers-contracts/factories/@openzeppelin/index.ts new file mode 100644 index 0000000..9cceec8 --- /dev/null +++ b/types/ethers-contracts/factories/@openzeppelin/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as contracts from './contracts/index.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/GatewaySettingManager__factory.ts b/types/ethers-contracts/factories/GatewaySettingManager__factory.ts new file mode 100644 index 0000000..7bf8fad --- /dev/null +++ b/types/ethers-contracts/factories/GatewaySettingManager__factory.ts @@ -0,0 +1,374 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../common.js" + import type { GatewaySettingManager, GatewaySettingManagerInterface } from "../GatewaySettingManager.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "TokenFeeSettingsUpdated", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getTokenFeeSettings", + "outputs": [ + { + "components": [ + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "internalType": "struct GatewaySettingManager.TokenFeeSettings", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "setTokenFeeSettings", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801561000f575f80fd5b50610a538061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033"; + + + type GatewaySettingManagerConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: GatewaySettingManagerConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class GatewaySettingManager__factory extends ContractFactory { + + constructor(...args: GatewaySettingManagerConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): GatewaySettingManager__factory { + return super.connect(runner) as GatewaySettingManager__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): GatewaySettingManagerInterface { + return new Interface(_abi) as GatewaySettingManagerInterface; + } + + override attach(address: string | Addressable): GatewaySettingManager { + return super.attach(address) as GatewaySettingManager; + } + static connect(address: string, runner?: ContractRunner | null): GatewaySettingManager { + return new Contract(address, _abi, runner) as unknown as GatewaySettingManager; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/Gateway__factory.ts b/types/ethers-contracts/factories/Gateway__factory.ts new file mode 100644 index 0000000..5957da5 --- /dev/null +++ b/types/ethers-contracts/factories/Gateway__factory.ts @@ -0,0 +1,938 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../common.js" + import type { Gateway, GatewayInterface } from "../Gateway.js"; + + const _abi = [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "FxTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "LocalTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "TokenFeeSettingsUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getTokenFeeSettings", + "outputs": [ + { + "components": [ + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "internalType": "struct GatewaySettingManager.TokenFeeSettings", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "setTokenFeeSettings", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "_rebatePercent", + "type": "uint64" + } + ], + "name": "settleOut", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033"; + + + type GatewayConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: GatewayConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class Gateway__factory extends ContractFactory { + + constructor(...args: GatewayConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): Gateway__factory { + return super.connect(runner) as Gateway__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): GatewayInterface { + return new Interface(_abi) as GatewayInterface; + } + + override attach(address: string | Addressable): Gateway { + return super.attach(address) as Gateway; + } + static connect(address: string, runner?: ContractRunner | null): Gateway { + return new Contract(address, _abi, runner) as unknown as Gateway; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/IGateway__factory.ts b/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/IGateway__factory.ts new file mode 100644 index 0000000..10e41a2 --- /dev/null +++ b/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/IGateway__factory.ts @@ -0,0 +1,33 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ + + import { Contract, Interface, type ContractRunner } from "ethers"; + import type { IGateway, IGatewayInterface } from "../../ProviderBatchCallAndSponsor.sol/IGateway.js"; + + const _abi = [ + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + } +] as const; + + export class IGateway__factory { + static readonly abi = _abi; + static createInterface(): IGatewayInterface { + return new Interface(_abi) as IGatewayInterface; + } + static connect(address: string, runner?: ContractRunner | null): IGateway { + return new Contract(address, _abi, runner) as unknown as IGateway; + } + } + \ No newline at end of file diff --git a/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.ts b/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.ts new file mode 100644 index 0000000..8036b9f --- /dev/null +++ b/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.ts @@ -0,0 +1,227 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../common.js" + import type { ProviderBatchCallAndSponsor, ProviderBatchCallAndSponsorInterface } from "../../ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "indexed": false, + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "BatchExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "CallExecuted", + "type": "event" + }, + { + "stateMutability": "payable", + "type": "fallback" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "gatewayAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "nonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } +] as const; + + const _bytecode = "0x608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957330f6a8457f8e42371e204a9c103f2bd42341dd0f81565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7330f6a8457f8e42371e204a9c103f2bd42341dd0f6001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea2646970667358221220acf636f1ec822d2253e93bc4a3cab5ad8dd9f01da5943122573329ed4de0d7b964736f6c63430008140033"; + + + type ProviderBatchCallAndSponsorConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: ProviderBatchCallAndSponsorConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class ProviderBatchCallAndSponsor__factory extends ContractFactory { + + constructor(...args: ProviderBatchCallAndSponsorConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): ProviderBatchCallAndSponsor__factory { + return super.connect(runner) as ProviderBatchCallAndSponsor__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): ProviderBatchCallAndSponsorInterface { + return new Interface(_abi) as ProviderBatchCallAndSponsorInterface; + } + + override attach(address: string | Addressable): ProviderBatchCallAndSponsor { + return super.attach(address) as ProviderBatchCallAndSponsor; + } + static connect(address: string, runner?: ContractRunner | null): ProviderBatchCallAndSponsor { + return new Contract(address, _abi, runner) as unknown as ProviderBatchCallAndSponsor; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/index.ts b/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/index.ts new file mode 100644 index 0000000..744759b --- /dev/null +++ b/types/ethers-contracts/factories/ProviderBatchCallAndSponsor.sol/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { IGateway__factory } from './IGateway__factory.js'; +export { ProviderBatchCallAndSponsor__factory } from './ProviderBatchCallAndSponsor__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/GatewaySettingManager__factory.ts b/types/ethers-contracts/factories/contracts/GatewaySettingManager__factory.ts new file mode 100644 index 0000000..6cbc08e --- /dev/null +++ b/types/ethers-contracts/factories/contracts/GatewaySettingManager__factory.ts @@ -0,0 +1,374 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../common.js" + import type { GatewaySettingManager, GatewaySettingManagerInterface } from "../../contracts/GatewaySettingManager.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "TokenFeeSettingsUpdated", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getTokenFeeSettings", + "outputs": [ + { + "components": [ + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "internalType": "struct GatewaySettingManager.TokenFeeSettings", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "setTokenFeeSettings", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801561000f575f80fd5b50610a538061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638bfa0549116100635780638bfa0549146100cc5780638da5cb5b1461011b578063cd99240014610140578063e30c397814610153578063f2fde38b14610164575f80fd5b806340ebc67714610094578063715018a6146100a957806379ba5097146100b1578063898861b0146100b9575b5f80fd5b6100a76100a2366004610963565b610177565b005b6100a7610369565b6100a761037c565b6100a76100c736600461098d565b6103f6565b6100df6100da3660046109cb565b610689565b60405161011291908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b60405180910390f35b6033546001600160a01b03165b6040516001600160a01b039091168152602001610112565b6100a761014e3660046109eb565b6106fd565b6065546001600160a01b0316610128565b6100a76101723660046109cb565b610818565b61017f610889565b6001600160a01b0381166101d25760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064015b60405180910390fd5b5f8267747265617375727960c01b03610288576098546001600160a01b03808416600160401b90920416036102575760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b60648201526084016101c9565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610328565b826930b3b3b932b3b0ba37b960b11b03610328576099546001600160a01b038084169116036103095760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b60648201526084016101c9565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610364576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610371610889565b61037a5f6108e3565b565b60655433906001600160a01b031681146103ea5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016101c9565b6103f3816108e3565b50565b6103fe610889565b6001600160a01b0385165f908152609a60205260409020546001146104655760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f727465640000000060448201526064016101c9565b6097548411156104c35760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b60648201526084016101c9565b6097548311156105255760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b60648201526084016101c9565b6097548211156105855760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b60648201526084016101c9565b6097548111156105ea5760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b60648201526084016101c9565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b6106b060405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b610705610889565b6001600160a01b0382166107535760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b60448201526064016101c9565b80600114806107625750806002145b6107ae5760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c69642073746174757300000000000000000060448201526064016101c9565b82643a37b5b2b760d91b03610364576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c9061080b9085815260200190565b60405180910390a3505050565b610820610889565b606580546001600160a01b0383166001600160a01b031990911681179091556108516033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101c9565b606580546001600160a01b03191690556103f381603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80356001600160a01b038116811461095e575f80fd5b919050565b5f8060408385031215610974575f80fd5b8235915061098460208401610948565b90509250929050565b5f805f805f60a086880312156109a1575f80fd5b6109aa86610948565b97602087013597506040870135966060810135965060800135945092505050565b5f602082840312156109db575f80fd5b6109e482610948565b9392505050565b5f805f606084860312156109fd575f80fd5b83359250610a0d60208501610948565b915060408401359050925092509256fea264697066735822122075fc0dc624e2e560baa461ec00cf4304ed5fa3ad5fe38e238473e5abef0cee9864736f6c63430008140033"; + + + type GatewaySettingManagerConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: GatewaySettingManagerConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class GatewaySettingManager__factory extends ContractFactory { + + constructor(...args: GatewaySettingManagerConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): GatewaySettingManager__factory { + return super.connect(runner) as GatewaySettingManager__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): GatewaySettingManagerInterface { + return new Interface(_abi) as GatewaySettingManagerInterface; + } + + override attach(address: string | Addressable): GatewaySettingManager { + return super.attach(address) as GatewaySettingManager; + } + static connect(address: string, runner?: ContractRunner | null): GatewaySettingManager { + return new Contract(address, _abi, runner) as unknown as GatewaySettingManager; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/Gateway__factory.ts b/types/ethers-contracts/factories/contracts/Gateway__factory.ts new file mode 100644 index 0000000..30516e3 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/Gateway__factory.ts @@ -0,0 +1,938 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../common.js" + import type { Gateway, GatewayInterface } from "../../contracts/Gateway.js"; + + const _abi = [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "FxTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "LocalTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "TokenFeeSettingsUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getTokenFeeSettings", + "outputs": [ + { + "components": [ + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "internalType": "struct GatewaySettingManager.TokenFeeSettings", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "setTokenFeeSettings", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "_rebatePercent", + "type": "uint64" + } + ], + "name": "settleOut", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612ca480620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e61013936600461279f565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127f2565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b636600461281c565b610b9c565b61013e6101c936600461283c565b610ead565b6102d56101dc36600461285c565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a9190612873565b610180610edb565b6102fd6102f836600461294e565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a0d565b61157f565b61034161033c36600461283c565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a4b565b611886565b61013e6103a6366004612a7d565b6119a1565b6065546001600160a01b0316610160565b6101806103ca36600461283c565b611e2f565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612b04565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611ea0565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612090565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b2b565b61071d9190612b42565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b61565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b2b565b6107d09190612b42565b90506107dc8184612b61565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b2b565b6108119190612b42565b905061081d8183612b61565b91506108298185612b74565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612ba0565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b87565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612ba0565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612389565b61099c6123e3565b565b6109a6612389565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612389565b61099c5f612435565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b87565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612ba0565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b61565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b74565b6040518363ffffffff1660e01b8152600401610e26929190612b87565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612ba0565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f5281612435565b50565b5f610f5e61244e565b610f6b8989868989612494565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612ba0565b50335f9081526101006020526040812080549161105c83612bbf565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b2b565b61120c9190612b42565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd7565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d9565b611528612607565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612389565b61099c612635565b611587612389565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612389565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa61244e565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b0316612494565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b74565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612ba0565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b2b565b611c0a9190612b42565b91508115611c9b57611c1c8284612b61565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b87565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612ba0565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b87565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612ba0565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612090565b611dbe565b611dbe8a8a89896001600160601b0316611ea0565b604080518381526001600160a01b038b811660208301529181018390526001600160601b03861660608201529086169033908c907fb5273ccce1412b056c9246e834895f9d717974c505f8e5a6c7d08cd0300a066b9060800160405180910390a45060019998505050505050505050565b611e37612389565b606580546001600160a01b0383166001600160a01b03199091168117909155611e686033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef79082612b61565b611f019085612b2b565b611f0b9190612b42565b90505f611f188285612b61565b90508115611f905760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f4e9088908690600401612b87565b6020604051808303815f875af1158015611f6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8e9190612ba0565b505b80156120145760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fd292600160401b909204909116908590600401612b87565b6020604051808303815f875af1158015611fee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120129190612ba0565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926121019085612b2b565b61210b9190612b42565b90505f6097548667ffffffffffffffff16836121279190612b2b565b6121319190612b42565b90505f6097548660200151836121479190612b2b565b6121519190612b42565b90505f61215e8487612b61565b9050801580159061218657505f8b815260ff60205260409020600601546001600160601b0316155b156121fb5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b9908c908590600401612b87565b6020604051808303815f875af11580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190612ba0565b505b811561227f5760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223d92600160401b909204909116908690600401612b87565b6020604051808303815f875af1158015612259573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061227d9190612ba0565b505b6122898284612b61565b925082156123015760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122bf908d908790600401612b87565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190612ba0565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123eb612672565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126bb565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124ef5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f0361252d5760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b0383166125765760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125d2576001600160a01b0382166125d25760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125ff5760405162461bcd60e51b815260040161041890612c23565b61099c61270c565b5f54610100900460ff1661262d5760405162461bcd60e51b815260040161041890612c23565b61099c61273b565b61263d61244e565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124183390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff166127325760405162461bcd60e51b815260040161041890612c23565b61099c33612435565b5f54610100900460ff166127615760405162461bcd60e51b815260040161041890612c23565b60cd805460ff19169055565b80356001600160a01b0381168114612783575f80fd5b919050565b803567ffffffffffffffff81168114612783575f80fd5b5f805f805f60a086880312156127b3575f80fd5b85359450602086013593506127ca6040870161276d565b92506127d860608701612788565b91506127e660808701612788565b90509295509295909350565b5f8060408385031215612803575f80fd5b823591506128136020840161276d565b90509250929050565b5f806040838503121561282d575f80fd5b50508035926020909101359150565b5f6020828403121561284c575f80fd5b6128558261276d565b9392505050565b5f6020828403121561286c575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289f60208401826001600160a01b03169052565b5060408301516128ba60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128e260a084018215159052565b5060c08301516128f660c084018215159052565b5060e083015161291160e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b0381168114612783575f80fd5b5f805f805f805f8060e0898b031215612965575f80fd5b61296e8961276d565b97506020890135965061298360408a01612938565b955061299160608a0161276d565b9450608089013593506129a660a08a0161276d565b925060c089013567ffffffffffffffff808211156129c2575f80fd5b818b0191508b601f8301126129d5575f80fd5b8135818111156129e3575f80fd5b8c60208285010111156129f4575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a21575f80fd5b612a2a8661276d565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a5d575f80fd5b83359250612a6d6020850161276d565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a93575f80fd5b87359650612aa36020890161276d565b955060408801359450612ab86060890161276d565b9350612ac660808901612938565b9250612ad460a0890161276d565b9150612ae260c08901612938565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b2457612b24612af0565b5092915050565b8082028115828204841417610ea757610ea7612af0565b5f82612b5c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612af0565b80820180821115610ea757610ea7612af0565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612bb0575f80fd5b81518015158114612855575f80fd5b5f60018201612bd057612bd0612af0565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea26469706673582212209badf8507d3c332105c6330629ace84de47800f1b403fd428e6b0b1cd5ee7ad064736f6c63430008140033"; + + + type GatewayConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: GatewayConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class Gateway__factory extends ContractFactory { + + constructor(...args: GatewayConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): Gateway__factory { + return super.connect(runner) as Gateway__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): GatewayInterface { + return new Interface(_abi) as GatewayInterface; + } + + override attach(address: string | Addressable): Gateway { + return super.attach(address) as Gateway; + } + static connect(address: string, runner?: ContractRunner | null): Gateway { + return new Contract(address, _abi, runner) as unknown as Gateway; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/IGateway__factory.ts b/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/IGateway__factory.ts new file mode 100644 index 0000000..8c671f3 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/IGateway__factory.ts @@ -0,0 +1,33 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ + + import { Contract, Interface, type ContractRunner } from "ethers"; + import type { IGateway, IGatewayInterface } from "../../../contracts/ProviderBatchCallAndSponsor.sol/IGateway.js"; + + const _abi = [ + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + } +] as const; + + export class IGateway__factory { + static readonly abi = _abi; + static createInterface(): IGatewayInterface { + return new Interface(_abi) as IGatewayInterface; + } + static connect(address: string, runner?: ContractRunner | null): IGateway { + return new Contract(address, _abi, runner) as unknown as IGateway; + } + } + \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.ts b/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.ts new file mode 100644 index 0000000..54e060b --- /dev/null +++ b/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.ts @@ -0,0 +1,227 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../../common.js" + import type { ProviderBatchCallAndSponsor, ProviderBatchCallAndSponsorInterface } from "../../../contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "indexed": false, + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "BatchExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "CallExecuted", + "type": "event" + }, + { + "stateMutability": "payable", + "type": "fallback" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "internalType": "struct ProviderBatchCallAndSponsor.Call[]", + "name": "calls", + "type": "tuple[]" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "gatewayAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "nonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } +] as const; + + const _bytecode = "0x608060405234801561000f575f80fd5b50610bd68061001d5f395ff3fe60806040526004361061003f575f3560e01c80633f707e6b146100485780636171d1c91461005b5780638b851b951461006e578063affed0e0146100b257005b3661004657005b005b610046610056366004610819565b6100d4565b610046610069366004610858565b610113565b348015610079575f80fd5b506100957356da8fce8fd64caae90d80ded55587b282bb430381565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100bd575f80fd5b506100c65f5481565b6040519081526020016100a9565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b5c1b195b595b9d1959608a1b60448201526064015b60405180910390fd5b7356da8fce8fd64caae90d80ded55587b282bb43036001600160a01b0316633ad59dbc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018791906108fb565b6001600160a01b0316336001600160a01b0316146101d85760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b604482015260640161010a565b60605f5b848110156102a957818686838181106101f7576101f761091d565b90506020028101906102099190610931565b61021790602081019061094f565b8787848181106102295761022961091d565b905060200281019061023b9190610931565b602001358888858181106102515761025161091d565b90506020028101906102639190610931565b61027190604081019061096a565b6040516020016102859594939291906109da565b604051602081830303815290604052915080806102a190610a1b565b9150506101dc565b505f8054826040516020016102bf929190610a3f565b6040516020818303038152906040528051906020012090505f61030e827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b90505f6103508287878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506103b292505050565b90506001600160a01b038116301461039e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161010a565b6103a888886103d4565b5050505050505050565b5f805f6103bf8585610471565b915091506103cc816104b3565b509392505050565b5f8054908190806103e483610a1b565b91905055505f5b828110156104315761041f8484838181106104085761040861091d565b905060200281019061041a9190610931565b6105ff565b8061042981610a1b565b9150506103eb565b50807f280bb3599696acbf79fb8ffcde81a57337b52500f789600fbb1cff9b4cbaba398484604051610464929190610a80565b60405180910390a2505050565b5f8082516041036104a5576020830151604084015160608501515f1a6104998782858561071b565b945094505050506104ac565b505f905060025b9250929050565b5f8160048111156104c6576104c6610b5b565b036104ce5750565b60018160048111156104e2576104e2610b5b565b0361052f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161010a565b600281600481111561054357610543610b5b565b036105905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161010a565b60038160048111156105a4576105a4610b5b565b036105fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161010a565b50565b5f61060d602083018361094f565b6001600160a01b03166020830135610628604085018561096a565b604051610636929190610b6f565b5f6040518083038185875af1925050503d805f8114610670576040519150601f19603f3d011682016040523d82523d5f602084013e610675565b606091505b50509050806106b65760405162461bcd60e51b815260206004820152600d60248201526c10d85b1b081c995d995c9d1959609a1b604482015260640161010a565b6106c3602083018361094f565b6001600160a01b0316337fed7e8f919df9cc0d0ad8b4057d084ebf319b630564d5da283e14751adc931f3a6020850135610700604087018761096a565b60405161070f93929190610b7e565b60405180910390a35050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561075057505f905060036107cf565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156107a1573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b0381166107c9575f600192509250506107cf565b91505f90505b94509492505050565b5f8083601f8401126107e8575f80fd5b50813567ffffffffffffffff8111156107ff575f80fd5b6020830191508360208260051b85010111156104ac575f80fd5b5f806020838503121561082a575f80fd5b823567ffffffffffffffff811115610840575f80fd5b61084c858286016107d8565b90969095509350505050565b5f805f806040858703121561086b575f80fd5b843567ffffffffffffffff80821115610882575f80fd5b61088e888389016107d8565b909650945060208701359150808211156108a6575f80fd5b818701915087601f8301126108b9575f80fd5b8135818111156108c7575f80fd5b8860208285010111156108d8575f80fd5b95989497505060200194505050565b6001600160a01b03811681146105fc575f80fd5b5f6020828403121561090b575f80fd5b8151610916816108e7565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610945575f80fd5b9190910192915050565b5f6020828403121561095f575f80fd5b8135610916816108e7565b5f808335601e1984360301811261097f575f80fd5b83018035915067ffffffffffffffff821115610999575f80fd5b6020019150368190038213156104ac575f80fd5b5f81515f5b818110156109cc57602081850181015186830152016109b2565b505f93019283525090919050565b5f6109e582886109ad565b6bffffffffffffffffffffffff198760601b168152856014820152838560348301375f9301603401928352509095945050505050565b5f60018201610a3857634e487b7160e01b5f52601160045260245ffd5b5060010190565b8281525f610a5060208301846109ad565b949350505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b60208082528181018390525f906040808401600586901b8501820187855b88811015610b4d57878303603f190184528135368b9003605e19018112610ac3575f80fd5b8a0160608135610ad2816108e7565b6001600160a01b0316855281880135888601528682013536839003601e19018112610afb575f80fd5b90910187810191903567ffffffffffffffff811115610b18575f80fd5b803603831315610b26575f80fd5b8188870152610b388287018285610a58565b96890196955050509186019150600101610a9e565b509098975050505050505050565b634e487b7160e01b5f52602160045260245ffd5b818382375f9101908152919050565b838152604060208201525f610b97604083018486610a58565b9594505050505056fea264697066735822122042e77a99c684d5c0d4fe73c5495f8473bf83b096b103360db73b60a067ac60c464736f6c63430008140033"; + + + type ProviderBatchCallAndSponsorConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: ProviderBatchCallAndSponsorConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class ProviderBatchCallAndSponsor__factory extends ContractFactory { + + constructor(...args: ProviderBatchCallAndSponsorConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): ProviderBatchCallAndSponsor__factory { + return super.connect(runner) as ProviderBatchCallAndSponsor__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): ProviderBatchCallAndSponsorInterface { + return new Interface(_abi) as ProviderBatchCallAndSponsorInterface; + } + + override attach(address: string | Addressable): ProviderBatchCallAndSponsor { + return super.attach(address) as ProviderBatchCallAndSponsor; + } + static connect(address: string, runner?: ContractRunner | null): ProviderBatchCallAndSponsor { + return new Contract(address, _abi, runner) as unknown as ProviderBatchCallAndSponsor; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/index.ts b/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/index.ts new file mode 100644 index 0000000..744759b --- /dev/null +++ b/types/ethers-contracts/factories/contracts/ProviderBatchCallAndSponsor.sol/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { IGateway__factory } from './IGateway__factory.js'; +export { ProviderBatchCallAndSponsor__factory } from './ProviderBatchCallAndSponsor__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/index.ts b/types/ethers-contracts/factories/contracts/index.ts new file mode 100644 index 0000000..4dd5426 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/index.ts @@ -0,0 +1,8 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as providerBatchCallAndSponsorSol from './ProviderBatchCallAndSponsor.sol/index.js'; +export * as interfaces from './interfaces/index.js'; +export * as mocks from './mocks/index.js'; +export { Gateway__factory } from './Gateway__factory.js'; +export { GatewaySettingManager__factory } from './GatewaySettingManager__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/interfaces/IGateway__factory.ts b/types/ethers-contracts/factories/contracts/interfaces/IGateway__factory.ts new file mode 100644 index 0000000..971f3dc --- /dev/null +++ b/types/ethers-contracts/factories/contracts/interfaces/IGateway__factory.ts @@ -0,0 +1,519 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ + + import { Contract, Interface, type ContractRunner } from "ethers"; + import type { IGateway, IGatewayInterface } from "../../../contracts/interfaces/IGateway.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "FxTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "LocalTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "_rebatePercent", + "type": "uint64" + } + ], + "name": "settleOut", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + export class IGateway__factory { + static readonly abi = _abi; + static createInterface(): IGatewayInterface { + return new Interface(_abi) as IGatewayInterface; + } + static connect(address: string, runner?: ContractRunner | null): IGateway { + return new Contract(address, _abi, runner) as unknown as IGateway; + } + } + \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/interfaces/index.ts b/types/ethers-contracts/factories/contracts/interfaces/index.ts new file mode 100644 index 0000000..e439a76 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/interfaces/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { IGateway__factory } from './IGateway__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/mocks/MockUSDC.sol/MockUSDT__factory.ts b/types/ethers-contracts/factories/contracts/mocks/MockUSDC.sol/MockUSDT__factory.ts new file mode 100644 index 0000000..56e1bd4 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/mocks/MockUSDC.sol/MockUSDT__factory.ts @@ -0,0 +1,369 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../../../common.js" + import type { MockUSDT, MockUSDTInterface } from "../../../../contracts/mocks/MockUSDC.sol/MockUSDT.js"; + + const _abi = [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "burn", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "burnAll", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "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": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801562000010575f80fd5b50604051806040016040528060088152602001674d6f636b5544534360c01b815250604051806040016040528060058152602001644d5553444360d81b8152508160039081620000619190620001fd565b506004620000708282620001fd565b5050506200008f3369d3c21bcecceda10000006200009560201b60201c565b620002eb565b6001600160a01b038216620000f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001039190620002c5565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018757607f821691505b602082108103620001a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000159575f81815260208120601f850160051c81016020861015620001d45750805b601f850160051c820191505b81811015620001f557828155600101620001e0565b505050505050565b81516001600160401b038111156200021957620002196200015e565b62000231816200022a845462000172565b84620001ac565b602080601f83116001811462000267575f84156200024f5750858301515b5f19600386901b1c1916600185901b178555620001f5565b5f85815260208120601f198616915b82811015620002975788860151825594840194600190910190840162000276565b5085821015620002b557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620002e557634e487b7160e01b5f52601160045260245ffd5b92915050565b610b0e80620002f95f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033"; + + + type MockUSDTConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: MockUSDTConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class MockUSDT__factory extends ContractFactory { + + constructor(...args: MockUSDTConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): MockUSDT__factory { + return super.connect(runner) as MockUSDT__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): MockUSDTInterface { + return new Interface(_abi) as MockUSDTInterface; + } + + override attach(address: string | Addressable): MockUSDT { + return super.attach(address) as MockUSDT; + } + static connect(address: string, runner?: ContractRunner | null): MockUSDT { + return new Contract(address, _abi, runner) as unknown as MockUSDT; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/mocks/MockUSDC.sol/index.ts b/types/ethers-contracts/factories/contracts/mocks/MockUSDC.sol/index.ts new file mode 100644 index 0000000..aff8e02 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/mocks/MockUSDC.sol/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { MockUSDT__factory } from './MockUSDT__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/contracts/mocks/index.ts b/types/ethers-contracts/factories/contracts/mocks/index.ts new file mode 100644 index 0000000..dddb869 --- /dev/null +++ b/types/ethers-contracts/factories/contracts/mocks/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as mockUsdcSol from './MockUSDC.sol/index.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/index.ts b/types/ethers-contracts/factories/index.ts new file mode 100644 index 0000000..3c499c9 --- /dev/null +++ b/types/ethers-contracts/factories/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as openzeppelin from './@openzeppelin/index.js'; +export * as contracts from './contracts/index.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/interfaces/IGateway__factory.ts b/types/ethers-contracts/factories/interfaces/IGateway__factory.ts new file mode 100644 index 0000000..9a79116 --- /dev/null +++ b/types/ethers-contracts/factories/interfaces/IGateway__factory.ts @@ -0,0 +1,519 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ + + import { Contract, Interface, type ContractRunner } from "ethers"; + import type { IGateway, IGatewayInterface } from "../../interfaces/IGateway.js"; + + const _abi = [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "FxTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "LocalTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "_rebatePercent", + "type": "uint64" + } + ], + "name": "settleOut", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + export class IGateway__factory { + static readonly abi = _abi; + static createInterface(): IGatewayInterface { + return new Interface(_abi) as IGatewayInterface; + } + static connect(address: string, runner?: ContractRunner | null): IGateway { + return new Contract(address, _abi, runner) as unknown as IGateway; + } + } + \ No newline at end of file diff --git a/types/ethers-contracts/factories/interfaces/index.ts b/types/ethers-contracts/factories/interfaces/index.ts new file mode 100644 index 0000000..e439a76 --- /dev/null +++ b/types/ethers-contracts/factories/interfaces/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { IGateway__factory } from './IGateway__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/mocks/MockUSDC.sol/MockUSDT__factory.ts b/types/ethers-contracts/factories/mocks/MockUSDC.sol/MockUSDT__factory.ts new file mode 100644 index 0000000..2867cf1 --- /dev/null +++ b/types/ethers-contracts/factories/mocks/MockUSDC.sol/MockUSDT__factory.ts @@ -0,0 +1,369 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../../common.js" + import type { MockUSDT, MockUSDTInterface } from "../../../mocks/MockUSDC.sol/MockUSDT.js"; + + const _abi = [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "burn", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "burnAll", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "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": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801562000010575f80fd5b50604051806040016040528060088152602001674d6f636b5544534360c01b815250604051806040016040528060058152602001644d5553444360d81b8152508160039081620000619190620001fd565b506004620000708282620001fd565b5050506200008f3369d3c21bcecceda10000006200009560201b60201c565b620002eb565b6001600160a01b038216620000f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001039190620002c5565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018757607f821691505b602082108103620001a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000159575f81815260208120601f850160051c81016020861015620001d45750805b601f850160051c820191505b81811015620001f557828155600101620001e0565b505050505050565b81516001600160401b038111156200021957620002196200015e565b62000231816200022a845462000172565b84620001ac565b602080601f83116001811462000267575f84156200024f5750858301515b5f19600386901b1c1916600185901b178555620001f5565b5f85815260208120601f198616915b82811015620002975788860151825594840194600190910190840162000276565b5085821015620002b557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620002e557634e487b7160e01b5f52601160045260245ffd5b92915050565b610b0e80620002f95f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c806370a0823111610088578063a0712d6811610063578063a0712d68146101be578063a457c2d7146101d1578063a9059cbb146101e4578063dd62ed3e146101f7575f80fd5b806370a082311461018657806395d89b41146101ae5780639975038c146101b6575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806342966c6814610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161020a565b6040516100fe9190610952565b60405180910390f35b61011a6101153660046109b8565b61029a565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109e0565b6102b3565b604051601281526020016100fe565b61011a61016c3660046109b8565b6102d6565b61018461017f366004610a19565b6102f7565b005b61012e610194366004610a30565b6001600160a01b03165f9081526020819052604090205490565b6100f1610304565b610184610313565b6101846101cc366004610a19565b610374565b61011a6101df3660046109b8565b61037e565b61011a6101f23660046109b8565b6103f8565b61012e610205366004610a50565b610405565b60606003805461021990610a81565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610a81565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a781858561042f565b60019150505b92915050565b5f336102c0858285610553565b6102cb8585856105cb565b506001949350505050565b5f336102a78185856102e88383610405565b6102f29190610ab9565b61042f565b610301338261076d565b50565b60606004805461021990610a81565b335f90815260208190526040902054806102f75760405162461bcd60e51b815260206004820152601960248201527f4d6f636b555344543a204e6f7468696e6720746f206275726e0000000000000060448201526064015b60405180910390fd5b6103013382610895565b5f338161038b8286610405565b9050838110156103eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6102cb828686840361042f565b5f336102a78185856105cb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f61055e8484610405565b90505f1981146105c557818110156105b85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b6105c5848484840361042f565b50505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b0383165f90815260208190526040902054818110156107085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105c5565b6001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161036b565b6001600160a01b0382165f90815260208190526040902054818110156108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161036b565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610546565b6001600160a01b0382166108eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b8060025f8282546108fc9190610ab9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f6020808352835180828501525f5b8181101561097d57858101830151858201604001528201610961565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109b3575f80fd5b919050565b5f80604083850312156109c9575f80fd5b6109d28361099d565b946020939093013593505050565b5f805f606084860312156109f2575f80fd5b6109fb8461099d565b9250610a096020850161099d565b9150604084013590509250925092565b5f60208284031215610a29575f80fd5b5035919050565b5f60208284031215610a40575f80fd5b610a498261099d565b9392505050565b5f8060408385031215610a61575f80fd5b610a6a8361099d565b9150610a786020840161099d565b90509250929050565b600181811c90821680610a9557607f821691505b602082108103610ab357634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102ad57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220412d8c0fe8a48c54545171000ecf4f3b286d55a47396dadf48802ef4d4e23deb64736f6c63430008140033"; + + + type MockUSDTConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: MockUSDTConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class MockUSDT__factory extends ContractFactory { + + constructor(...args: MockUSDTConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): MockUSDT__factory { + return super.connect(runner) as MockUSDT__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): MockUSDTInterface { + return new Interface(_abi) as MockUSDTInterface; + } + + override attach(address: string | Addressable): MockUSDT { + return super.attach(address) as MockUSDT; + } + static connect(address: string, runner?: ContractRunner | null): MockUSDT { + return new Contract(address, _abi, runner) as unknown as MockUSDT; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/mocks/MockUSDC.sol/index.ts b/types/ethers-contracts/factories/mocks/MockUSDC.sol/index.ts new file mode 100644 index 0000000..aff8e02 --- /dev/null +++ b/types/ethers-contracts/factories/mocks/MockUSDC.sol/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export { MockUSDT__factory } from './MockUSDT__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/factories/mocks/TestGateway__factory.ts b/types/ethers-contracts/factories/mocks/TestGateway__factory.ts new file mode 100644 index 0000000..73311f2 --- /dev/null +++ b/types/ethers-contracts/factories/mocks/TestGateway__factory.ts @@ -0,0 +1,932 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { Addressable } from "ethers"; +import { Contract, ContractFactory, ContractTransactionResponse, Interface } from "ethers" +import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers" +import type { NonPayableOverrides } from "../../common.js" + import type { TestGateway, TestGatewayInterface } from "../../mocks/TestGateway.js"; + + const _abi = [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "FxTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorAmount", + "type": "uint256" + } + ], + "name": "LocalTransferFeeSplit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "aggregatorFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "rate", + "type": "uint96" + } + ], + "name": "SettleIn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "settlePercent", + "type": "uint64" + }, + { + "indexed": false, + "internalType": "uint64", + "name": "rebatePercent", + "type": "uint64" + } + ], + "name": "SettleOut", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "TokenFeeSettingsUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getAggregator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getTokenFeeSettings", + "outputs": [ + { + "components": [ + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "internalType": "struct GatewaySettingManager.TokenFeeSettings", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderToProvider", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "senderToAggregator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "providerToAggregatorFx", + "type": "uint256" + } + ], + "name": "setTokenFeeSettings", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_senderFee", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + } + ], + "name": "settleIn", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "_rebatePercent", + "type": "uint64" + } + ], + "name": "settleOut", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] as const; + + const _bytecode = "0x608060405234801562000010575f80fd5b506200001b62000021565b620000df565b5f54610100900460ff16156200008d5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff90811614620000dd575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b612c9d80620000ed5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063809804f7116100a95780638da5cb5b1161006e5780638da5cb5b14610374578063cd99240014610385578063d839de6314610398578063e30c3978146103ab578063f2fde38b146103bc575f80fd5b8063809804f7146102ea5780638129fc1c1461030b5780638456cb5914610313578063898861b01461031b5780638bfa05491461032e575f80fd5b8063715018a6116100ef578063715018a6146101a057806371eedb88146101a857806375151b63146101bb578063768c6ec0146101ce57806379ba5097146102e2575f80fd5b806332553efa1461012b5780633ad59dbc146101535780633f4ba83a1461017857806340ebc677146101825780635c975abb14610195575b5f80fd5b61013e610139366004612798565b6103cf565b60405190151581526020015b60405180910390f35b6099546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b61018061098c565b005b6101806101903660046127eb565b61099e565b60cd5460ff1661013e565b610180610b8b565b61013e6101b6366004612815565b610b9c565b61013e6101c9366004612835565b610ead565b6102d56101dc366004612855565b60408051610140810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152505f90815260ff602081815260409283902083516101408101855281546001600160a01b0390811682526001830154811693820193909352600282015483169481019490945260038101546060850152600481015460808501526005810154808416151560a0860152610100808204909416151560c086015262010000900490911660e084015260068101546001600160601b0316918301919091526007015461012082015290565b60405161014a919061286c565b610180610edb565b6102fd6102f8366004612947565b610f55565b60405190815260200161014a565b610180611456565b61018061156f565b610180610329366004612a06565b61157f565b61034161033c366004612835565b611812565b60405161014a91908151815260208083015190820152604080830151908201526060918201519181019190915260800190565b6033546001600160a01b0316610160565b610180610393366004612a44565b611886565b61013e6103a6366004612a76565b6119a1565b6065546001600160a01b0316610160565b6101806103ca366004612835565b611e28565b6099545f906001600160a01b031633146104215760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b60448201526064015b60405180910390fd5b5f85815260ff602081905260409091206005015416156104745760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f85815260ff6020819052604090912060050154610100900416156104cb5760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b6097548267ffffffffffffffff16111561051e5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a59149958985d1954195c98d95b9d60621b6044820152606401610418565b5f85815260ff6020526040902060018101546006909101546001600160a01b03909116906001600160601b031667ffffffffffffffff85161580159061056e5750808567ffffffffffffffff1611155b6105b15760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a5914d95d1d1b1954195c98d95b9d60621b6044820152606401610418565b5f87815260ff60205260408120600601805467ffffffffffffffff881692906105e49084906001600160601b0316612afd565b82546101009290920a6001600160601b038181021990931691831602179091555f89815260ff602052604081206006015490911690039050610691575f87815260ff6020526040902060058101805460ff19166001179055600301541580159061065d57505f87815260ff602052604090206004015415155b15610691575f87815260ff60205260409020600281015460039091015461069191899185916001600160a01b031690611e99565b5f87815260ff6020526040902060030154158015906106be57505f87815260ff6020526040902060040154155b156106eb575f87815260ff60205260409020600201546106eb90889088906001600160a01b031688612089565b5f87815260ff602052604081206007015482906107139067ffffffffffffffff891690612b24565b61071d9190612b3b565b90508060ff5f8a81526020019081526020015f206007015f8282546107429190612b5a565b90915550505f88815260ff6020526040902060040154156108ad575f88815260ff602090815260408083206001908101546001600160a01b03168452609b8352818420825160808101845281548152918101549382019390935260028301549181019190915260039091015460608201819052609754919291906107c69085612b24565b6107d09190612b3b565b90506107dc8184612b5a565b925067ffffffffffffffff87161561082d576097545f9061080767ffffffffffffffff8a1684612b24565b6108119190612b3b565b905061081d8183612b5a565b91506108298185612b6d565b9350505b60985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261086992600160401b909204909116908590600401612b80565b6020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a99190612b99565b5050505b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108db908a908590600401612b80565b6020604051808303815f875af11580156108f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091b9190612b99565b50866001600160a01b0316887f1e4a1a8ad772d3f0dbb387879bc5e8faadf16e0513bf77d50620741ab92b4c458b89896040516109759392919092835267ffffffffffffffff918216602084015216604082015260600190565b60405180910390a350600198975050505050505050565b610994612382565b61099c6123dc565b565b6109a6612382565b6001600160a01b0381166109f45760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b5f8267747265617375727960c01b03610aaa576098546001600160a01b03808416600160401b9092041603610a795760405162461bcd60e51b815260206004820152602560248201527f476174657761793a207472656173757279206164647265737320616c726561646044820152641e481cd95d60da1b6064820152608401610418565b506098805468010000000000000000600160e01b031916600160401b6001600160a01b038416021790556001610b4a565b826930b3b3b932b3b0ba37b960b11b03610b4a576099546001600160a01b03808416911603610b2b5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a2061676772656761746f72206164647265737320616c726560448201526618591e481cd95d60ca1b6064820152608401610418565b50609980546001600160a01b0319166001600160a01b03831617905560015b8015610b86576040516001600160a01b0383169084907fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4905f90a35b505050565b610b93612382565b61099c5f61242e565b6099545f906001600160a01b03163314610be95760405162461bcd60e51b815260206004820152600e60248201526d27b7363ca0b3b3b932b3b0ba37b960911b6044820152606401610418565b5f82815260ff60208190526040909120600501541615610c3c5760405162461bcd60e51b815260206004820152600e60248201526d13dc99195c919d5b199a5b1b195960921b6044820152606401610418565b5f82815260ff602081905260409091206005015461010090041615610c935760405162461bcd60e51b815260206004820152600d60248201526c13dc99195c9499599d5b991959609a1b6044820152606401610418565b5f82815260ff6020526040902060040154831115610ceb5760405162461bcd60e51b81526020600482015260156024820152744665654578636565647350726f746f636f6c46656560581b6044820152606401610418565b8215610d7f575f82815260ff60205260409081902060010154609854915163a9059cbb60e01b81526001600160a01b039182169263a9059cbb92610d3d92600160401b90920416908790600401612b80565b6020604051808303815f875af1158015610d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7d9190612b99565b505b5f82815260ff6020526040812060058101805461ff0019166101001790556006810180546bffffffffffffffffffffffff1916905560070154610dc3908590612b5a565b5f84815260ff60205260409020600181015460058201546003909201549293506001600160a01b039081169263a9059cbb9262010000900490911690610e099085612b6d565b6040518363ffffffff1660e01b8152600401610e26929190612b80565b6020604051808303815f875af1158015610e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e669190612b99565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610e9991815260200190565b60405180910390a260019150505b92915050565b6001600160a01b0381165f908152609a6020526040812054600103610ed457506001919050565b505f919050565b60655433906001600160a01b03168114610f495760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610418565b610f528161242e565b50565b5f610f5e612447565b610f6b898986898961248d565b5f829003610fb05760405162461bcd60e51b8152602060048201526012602482015271092dcecc2d8d2c89acae6e6c2ceca90c2e6d60731b6044820152606401610418565b6001600160a01b0389166323b872dd3330610fcb898d612b6d565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561101c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110409190612b99565b50335f9081526101006020526040812080549161105c83612bb8565b9091555050335f8181526101006020908152604091829020548251918201939093529081019190915246606082015260800160408051601f1981840301815291815281516020928301205f81815260ff9093529120549091506001600160a01b0316156111005760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b5f876001600160601b031660640361115857505f856111535760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611210565b6001600160a01b038a165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082018190526111f05760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611202908c612b24565b61120c9190612b3b565b9150505b604051806101400160405280336001600160a01b031681526020018b6001600160a01b03168152602001886001600160a01b031681526020018781526020018281526020015f151581526020015f15158152602001866001600160a01b0316815260200160975467ffffffffffffffff166001600160601b031681526020018a81525060ff5f8481526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506040820151816002015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600301556080820151816004015560a0820151816005015f6101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a8154816001600160a01b0302191690836001600160a01b03160217905550610100820151816006015f6101000a8154816001600160601b0302191690836001600160601b03160217905550610120820151816007015590505060ff5f8381526020019081526020015f20600701548a6001600160a01b0316866001600160a01b03167f40ccd1ceb111a3c186ef9911e1b876dc1f789ed331b86097b3b8851055b6a13784868d8a8a604051611441959493929190612bd0565b60405180910390a45098975050505050505050565b5f54610100900460ff161580801561147457505f54600160ff909116105b8061148d5750303b15801561148d57505f5460ff166001145b6114f05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b5f805460ff191660011790558015611511575f805461ff0019166101001790555b620186a06097556115206125d2565b611528612600565b8015610f52575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b611577612382565b61099c61262e565b611587612382565b6001600160a01b0385165f908152609a60205260409020546001146115ee5760405162461bcd60e51b815260206004820152601c60248201527f476174657761793a20746f6b656e206e6f7420737570706f72746564000000006044820152606401610418565b60975484111561164c5760405162461bcd60e51b815260206004820152602360248201527f476174657761793a20696e76616c69642073656e64657220746f2070726f76696044820152623232b960e91b6064820152608401610418565b6097548311156116ae5760405162461bcd60e51b815260206004820152602760248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152663932b3b0ba37b960c91b6064820152608401610418565b60975482111561170e5760405162461bcd60e51b815260206004820152602560248201527f476174657761793a20696e76616c69642073656e64657220746f20616767726560448201526433b0ba37b960d91b6064820152608401610418565b6097548111156117735760405162461bcd60e51b815260206004820152602a60248201527f476174657761793a20696e76616c69642070726f766964657220746f206167676044820152690e4cacec2e8dee440ccf60b31b6064820152608401610418565b6040805160808082018352868252602080830187815283850187815260608086018881526001600160a01b038d165f818152609b8752899020975188559351600188015591516002870155905160039095019490945584518981529182018890529381018690529182018490527fd4d646cffa66ebf695b792bd660c97076ed45a889e14d544eb8ab8a44b34a59c910160405180910390a25050505050565b61183960405180608001604052805f81526020015f81526020015f81526020015f81525090565b506001600160a01b03165f908152609b6020908152604091829020825160808101845281548152600182015492810192909252600281015492820192909252600390910154606082015290565b61188e612382565b6001600160a01b0382166118dc5760405162461bcd60e51b8152602060048201526015602482015274476174657761793a207a65726f206164647265737360581b6044820152606401610418565b80600114806118eb5750806002145b6119375760405162461bcd60e51b815260206004820152601760248201527f476174657761793a20696e76616c6964207374617475730000000000000000006044820152606401610418565b82643a37b5b2b760d91b03610b86576001600160a01b0382165f818152609a6020526040908190208390555184907fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c906119949085815260200190565b60405180910390a3505050565b5f6119aa612447565b5f88815260ff60205260409020546001600160a01b031615611a035760405162461bcd60e51b81526020600482015260126024820152714f72646572416c726561647945786973747360701b6044820152606401610418565b6097548611611a445760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59105b5bdd5b9d609a1b6044820152606401610418565b611a5a87878588886001600160601b031661248d565b6001600160a01b0387166323b872dd3330611a7e6001600160601b0389168b612b6d565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611acf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af39190612b99565b50855f6001600160601b038416606403611b56575f866001600160601b031611611b515760405162461bcd60e51b815260206004820152600f60248201526e53656e64657246656549735a65726f60881b6044820152606401610418565b611c9d565b6001600160a01b0389165f908152609b602090815260409182902082516080810184528154815260018201549281019290925260028101549282019290925260039091015460608201819052611bee5760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e46656553657474696e67734e6f74436f6e666967757265640000006044820152606401610418565b6097546060820151611c00908b612b24565b611c0a9190612b3b565b91508115611c9b57611c1c8284612b5a565b60985460405163a9059cbb60e01b81529194506001600160a01b03808d169263a9059cbb92611c5992600160401b90910416908690600401612b80565b6020604051808303815f875af1158015611c75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c999190612b99565b505b505b5f8a815260ff60205260409081902080546001600160a01b038089166001600160a01b0319928316178355600180840180548f84169085168117909155600285018054938e1693909416929092179092556001600160601b038a166003840155600480840186905560058401805460ff19169093179092556007909201859055915163a9059cbb60e01b8152909163a9059cbb91611d3f918991879101612b80565b6020604051808303815f875af1158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7f9190612b99565b506001600160601b03861615611dbe57805f03611da957611da48a3389609754612089565b611dbe565b611dbe8a8a89896001600160601b0316611e99565b604080516001600160a01b038b81168252602082018490526001600160601b0387168284015291519187169184918d917f44de25d68888fdbe51bc67bbc990724fb5fa28119062e5f4ca623aefcaa70ecb9181900360600190a45060019998505050505050505050565b611e30612382565b606580546001600160a01b0383166001600160a01b03199091168117909155611e616033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383165f908152609b60209081526040808320815160808101835281548152600182015493810193909352600281015491830182905260030154606083015260975491929190611ef09082612b5a565b611efa9085612b24565b611f049190612b3b565b90505f611f118285612b5a565b90508115611f895760405163a9059cbb60e01b81526001600160a01b0387169063a9059cbb90611f479088908690600401612b80565b6020604051808303815f875af1158015611f63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f879190612b99565b505b801561200d5760985460405163a9059cbb60e01b81526001600160a01b038089169263a9059cbb92611fcb92600160401b909204909116908590600401612b80565b6020604051808303815f875af1158015611fe7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200b9190612b99565b505b81856001600160a01b0316887f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a4604080518381526020810183905288917f88592047496a7850992dc5e8cd92a9b633cef0d191a4f5e87fd745c7d382630a910160405180910390a250505050505050565b5f84815260ff602081815260408084206001808201546001600160a01b0316808752609b8552838720845160808101865281548152928101548387015260028101549483019490945260039384015460608301528a8752949093520154609754825192949193926120fa9085612b24565b6121049190612b3b565b90505f6097548667ffffffffffffffff16836121209190612b24565b61212a9190612b3b565b90505f6097548660200151836121409190612b24565b61214a9190612b3b565b90505f6121578487612b5a565b9050801580159061217f57505f8b815260ff60205260409020600601546001600160601b0316155b156121f45760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906121b2908c908590600401612b80565b6020604051808303815f875af11580156121ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f29190612b99565b505b81156122785760985460405163a9059cbb60e01b81526001600160a01b038088169263a9059cbb9261223692600160401b909204909116908690600401612b80565b6020604051808303815f875af1158015612252573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122769190612b99565b505b6122828284612b5a565b925082156122fa5760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb906122b8908d908790600401612b80565b6020604051808303815f875af11580156122d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f89190612b99565b505b80896001600160a01b03168c7f879f6eb4f1506eb3029982039d90b0e82b07d54f5e911a3c644a974863a98a6c60405160405180910390a460408051828152602081018590529081018390528b907f831c7cc0006d91462607c476603366c48469d125de6228c0791a7090efd7f7a49060600160405180910390a25050505050505050505050565b6033546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6123e461266b565b60cd805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b606580546001600160a01b0319169055610f52816126b4565b60cd5460ff161561099c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610418565b6001600160a01b0385165f908152609a60205260409020546001146124e85760405162461bcd60e51b8152602060048201526011602482015270151bdad95b939bdd14dd5c1c1bdc9d1959607a1b6044820152606401610418565b835f036125265760405162461bcd60e51b815260206004820152600c60248201526b416d6f756e7449735a65726f60a01b6044820152606401610418565b6001600160a01b03831661256f5760405162461bcd60e51b815260206004820152601060248201526f5468726f775a65726f4164647265737360801b6044820152606401610418565b80156125cb576001600160a01b0382166125cb5760405162461bcd60e51b815260206004820152601960248201527f496e76616c696453656e646572466565526563697069656e74000000000000006044820152606401610418565b5050505050565b5f54610100900460ff166125f85760405162461bcd60e51b815260040161041890612c1c565b61099c612705565b5f54610100900460ff166126265760405162461bcd60e51b815260040161041890612c1c565b61099c612734565b612636612447565b60cd805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124113390565b60cd5460ff1661099c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610418565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f54610100900460ff1661272b5760405162461bcd60e51b815260040161041890612c1c565b61099c3361242e565b5f54610100900460ff1661275a5760405162461bcd60e51b815260040161041890612c1c565b60cd805460ff19169055565b80356001600160a01b038116811461277c575f80fd5b919050565b803567ffffffffffffffff8116811461277c575f80fd5b5f805f805f60a086880312156127ac575f80fd5b85359450602086013593506127c360408701612766565b92506127d160608701612781565b91506127df60808701612781565b90509295509295909350565b5f80604083850312156127fc575f80fd5b8235915061280c60208401612766565b90509250929050565b5f8060408385031215612826575f80fd5b50508035926020909101359150565b5f60208284031215612845575f80fd5b61284e82612766565b9392505050565b5f60208284031215612865575f80fd5b5035919050565b81516001600160a01b031681526101408101602083015161289860208401826001600160a01b03169052565b5060408301516128b360408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a08301516128db60a084018215159052565b5060c08301516128ef60c084018215159052565b5060e083015161290a60e08401826001600160a01b03169052565b50610100838101516001600160601b03811684830152505061012092830151919092015290565b80356001600160601b038116811461277c575f80fd5b5f805f805f805f8060e0898b03121561295e575f80fd5b61296789612766565b97506020890135965061297c60408a01612931565b955061298a60608a01612766565b94506080890135935061299f60a08a01612766565b925060c089013567ffffffffffffffff808211156129bb575f80fd5b818b0191508b601f8301126129ce575f80fd5b8135818111156129dc575f80fd5b8c60208285010111156129ed575f80fd5b6020830194508093505050509295985092959890939650565b5f805f805f60a08688031215612a1a575f80fd5b612a2386612766565b97602087013597506040870135966060810135965060800135945092505050565b5f805f60608486031215612a56575f80fd5b83359250612a6660208501612766565b9150604084013590509250925092565b5f805f805f805f60e0888a031215612a8c575f80fd5b87359650612a9c60208901612766565b955060408801359450612ab160608901612766565b9350612abf60808901612931565b9250612acd60a08901612766565b9150612adb60c08901612931565b905092959891949750929550565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b03828116828216039080821115612b1d57612b1d612ae9565b5092915050565b8082028115828204841417610ea757610ea7612ae9565b5f82612b5557634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610ea757610ea7612ae9565b80820180821115610ea757610ea7612ae9565b6001600160a01b03929092168252602082015260400190565b5f60208284031215612ba9575f80fd5b8151801515811461284e575f80fd5b5f60018201612bc957612bc9612ae9565b5060010190565b8581528460208201526001600160601b038416604082015260806060820152816080820152818360a08301375f81830160a090810191909152601f909201601f19160101949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea2646970667358221220ed97cad2e51dc6a5601d8acef1c789b6025e1436721a95d7ce3cd21b9b96852764736f6c63430008140033"; + + + type TestGatewayConstructorParams = [signer?: Signer] | ConstructorParameters; + + const isSuperArgs = (xs: TestGatewayConstructorParams): xs is ConstructorParameters => + xs.length > 1 + + + export class TestGateway__factory extends ContractFactory { + + constructor(...args: TestGatewayConstructorParams) { + if (isSuperArgs(args)) { + super(...args); + } else { + super(_abi, _bytecode, args[0]); + } + + } + + override getDeployTransaction(overrides?: NonPayableOverrides & { from?: string }): Promise { + return super.getDeployTransaction(overrides || {}); + }; + override deploy(overrides?: NonPayableOverrides & { from?: string }) { + return super.deploy(overrides || {}) as Promise; + } + override connect(runner: ContractRunner | null): TestGateway__factory { + return super.connect(runner) as TestGateway__factory; + } + + + static readonly bytecode = _bytecode; + static readonly abi = _abi; + static createInterface(): TestGatewayInterface { + return new Interface(_abi) as TestGatewayInterface; + } + + override attach(address: string | Addressable): TestGateway { + return super.attach(address) as TestGateway; + } + static connect(address: string, runner?: ContractRunner | null): TestGateway { + return new Contract(address, _abi, runner) as unknown as TestGateway; + } + } + + + \ No newline at end of file diff --git a/types/ethers-contracts/factories/mocks/index.ts b/types/ethers-contracts/factories/mocks/index.ts new file mode 100644 index 0000000..dddb869 --- /dev/null +++ b/types/ethers-contracts/factories/mocks/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export * as mockUsdcSol from './MockUSDC.sol/index.js'; \ No newline at end of file diff --git a/types/ethers-contracts/hardhat.d.ts b/types/ethers-contracts/hardhat.d.ts new file mode 100644 index 0000000..69105f6 --- /dev/null +++ b/types/ethers-contracts/hardhat.d.ts @@ -0,0 +1,79 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ + + +import { ethers } from 'ethers' +import { DeployContractOptions, FactoryOptions, HardhatEthersHelpers as HardhatEthersHelpersBase} from "@nomicfoundation/hardhat-ethers/types"; + +import * as Contracts from "./index.js"; + +declare module "@nomicfoundation/hardhat-ethers/types" { + interface HardhatEthersHelpers extends HardhatEthersHelpersBase { + getContractFactory(name: 'ProxyAdmin', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'ITransparentUpgradeableProxy', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'TransparentUpgradeableProxy', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'Gateway', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'GatewaySettingManager', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'IGateway', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'ProviderBatchCallAndSponsor', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'IGateway', signerOrOptions?: ethers.Signer | FactoryOptions): Promise +getContractFactory(name: 'MockUSDT', signerOrOptions?: ethers.Signer | FactoryOptions): Promise + + getContractAt(name: 'ProxyAdmin', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'ITransparentUpgradeableProxy', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'TransparentUpgradeableProxy', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'Gateway', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'GatewaySettingManager', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'IGateway', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'ProviderBatchCallAndSponsor', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'IGateway', address: string | ethers.Addressable, signer?: ethers.Signer): Promise +getContractAt(name: 'MockUSDT', address: string | ethers.Addressable, signer?: ethers.Signer): Promise + + deployContract(name: 'ProxyAdmin', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'ITransparentUpgradeableProxy', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'TransparentUpgradeableProxy', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'Gateway', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'GatewaySettingManager', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'IGateway', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'ProviderBatchCallAndSponsor', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'IGateway', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'MockUSDT', signerOrOptions?: ethers.Signer | DeployContractOptions): Promise + + deployContract(name: 'ProxyAdmin', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'ITransparentUpgradeableProxy', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'TransparentUpgradeableProxy', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'Gateway', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'GatewaySettingManager', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'IGateway', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'ProviderBatchCallAndSponsor', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'IGateway', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise +deployContract(name: 'MockUSDT', args: any[], signerOrOptions?: ethers.Signer | DeployContractOptions): Promise + + // default types + getContractFactory( + name: string, + signerOrOptions?: ethers.Signer | FactoryOptions + ): Promise; + getContractFactory( + abi: any[], + bytecode: ethers.BytesLike, + signer?: ethers.Signer + ): Promise; + getContractAt( + nameOrAbi: string | any[], + address: string | ethers.Addressable, + signer?: ethers.Signer + ): Promise; + deployContract( + name: string, + signerOrOptions?: ethers.Signer | DeployContractOptions + ): Promise; + deployContract( + name: string, + args: any[], + signerOrOptions?: ethers.Signer | DeployContractOptions + ): Promise; + } +} + \ No newline at end of file diff --git a/types/ethers-contracts/index.ts b/types/ethers-contracts/index.ts new file mode 100644 index 0000000..808c4b4 --- /dev/null +++ b/types/ethers-contracts/index.ts @@ -0,0 +1,24 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as openzeppelin from './@openzeppelin/index.js'; +export type { openzeppelin }; +import type * as contracts from './contracts/index.js'; +export type { contracts }; +export * as factories from './factories/index.js'; +export type { ProxyAdmin } from './@openzeppelin/contracts/proxy/transparent/ProxyAdmin.js'; +export { ProxyAdmin__factory } from './factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.js'; +export type { ITransparentUpgradeableProxy } from './@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.js'; +export { ITransparentUpgradeableProxy__factory } from './factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.js'; +export type { TransparentUpgradeableProxy } from './@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.js'; +export { TransparentUpgradeableProxy__factory } from './factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.js'; +export type { Gateway } from './contracts/Gateway.js'; +export { Gateway__factory } from './factories/contracts/Gateway__factory.js'; +export type { GatewaySettingManager } from './contracts/GatewaySettingManager.js'; +export { GatewaySettingManager__factory } from './factories/contracts/GatewaySettingManager__factory.js'; +export type { IGateway } from './contracts/ProviderBatchCallAndSponsor.sol/IGateway.js'; +export { IGateway__factory } from './factories/contracts/ProviderBatchCallAndSponsor.sol/IGateway__factory.js'; +export type { ProviderBatchCallAndSponsor } from './contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor.js'; +export { ProviderBatchCallAndSponsor__factory } from './factories/contracts/ProviderBatchCallAndSponsor.sol/ProviderBatchCallAndSponsor__factory.js'; +export type { MockUSDT } from './contracts/mocks/MockUSDC.sol/MockUSDT.js'; +export { MockUSDT__factory } from './factories/contracts/mocks/MockUSDC.sol/MockUSDT__factory.js'; \ No newline at end of file diff --git a/types/ethers-contracts/interfaces/IGateway.ts b/types/ethers-contracts/interfaces/IGateway.ts new file mode 100644 index 0000000..3e50a33 --- /dev/null +++ b/types/ethers-contracts/interfaces/IGateway.ts @@ -0,0 +1,288 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common.js" + +export declare namespace IGateway { + + export type OrderStruct = {sender: AddressLike, token: AddressLike, senderFeeRecipient: AddressLike, senderFee: BigNumberish, protocolFee: BigNumberish, isFulfilled: boolean, isRefunded: boolean, refundAddress: AddressLike, currentBPS: BigNumberish, amount: BigNumberish} + + export type OrderStructOutput = [sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint] & {sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint } + + } + + export interface IGatewayInterface extends Interface { + getFunction(nameOrSignature: "createOrder" | "getAggregator" | "getOrderInfo" | "isTokenSupported" | "refund" | "settleIn" | "settleOut"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "FxTransferFeeSplit" | "LocalTransferFeeSplit" | "OrderCreated" | "OrderRefunded" | "SenderFeeTransferred" | "SettleIn" | "SettleOut"): EventFragment; + + encodeFunctionData(functionFragment: 'createOrder', values: [AddressLike, BigNumberish, BigNumberish, AddressLike, BigNumberish, AddressLike, string]): string; +encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; +encodeFunctionData(functionFragment: 'getOrderInfo', values: [BytesLike]): string; +encodeFunctionData(functionFragment: 'isTokenSupported', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'refund', values: [BigNumberish, BytesLike]): string; +encodeFunctionData(functionFragment: 'settleIn', values: [BytesLike, AddressLike, BigNumberish, AddressLike, BigNumberish, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleOut', values: [BytesLike, BytesLike, AddressLike, BigNumberish, BigNumberish]): string; + + decodeFunctionResult(functionFragment: 'createOrder', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getOrderInfo', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'isTokenSupported', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'refund', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleIn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleOut', data: BytesLike): Result; + } + + + export namespace FxTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace LocalTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, providerAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderCreatedEvent { + export type InputTuple = [sender: AddressLike, token: AddressLike, amount: BigNumberish, protocolFee: BigNumberish, orderId: BytesLike, rate: BigNumberish, messageHash: string]; + export type OutputTuple = [sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string]; + export interface OutputObject {sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderRefundedEvent { + export type InputTuple = [fee: BigNumberish, orderId: BytesLike]; + export type OutputTuple = [fee: bigint, orderId: string]; + export interface OutputObject {fee: bigint, orderId: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SenderFeeTransferredEvent { + export type InputTuple = [orderId: BytesLike, sender: AddressLike, amount: BigNumberish]; + export type OutputTuple = [orderId: string, sender: string, amount: bigint]; + export interface OutputObject {orderId: string, sender: string, amount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleInEvent { + export type InputTuple = [orderId: BytesLike, liquidityProvider: AddressLike, recipient: AddressLike, amount: BigNumberish, token: AddressLike, aggregatorFee: BigNumberish, rate: BigNumberish]; + export type OutputTuple = [orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint]; + export interface OutputObject {orderId: string, liquidityProvider: string, recipient: string, amount: bigint, token: string, aggregatorFee: bigint, rate: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleOutEvent { + export type InputTuple = [splitOrderId: BytesLike, orderId: BytesLike, liquidityProvider: AddressLike, settlePercent: BigNumberish, rebatePercent: BigNumberish]; + export type OutputTuple = [splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint]; + export interface OutputObject {splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface IGateway extends BaseContract { + + connect(runner?: ContractRunner | null): IGateway; + waitForDeployment(): Promise; + + interface: IGatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + createOrder: TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + > + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getOrderInfo: TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + > + + + + isTokenSupported: TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + > + + + + refund: TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + > + + + + settleIn: TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + settleOut: TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'createOrder'): TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'getOrderInfo'): TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'isTokenSupported'): TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'refund'): TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleIn'): TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleOut'): TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + >; + + getEvent(key: 'FxTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'LocalTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'OrderCreated'): TypedContractEvent; +getEvent(key: 'OrderRefunded'): TypedContractEvent; +getEvent(key: 'SenderFeeTransferred'): TypedContractEvent; +getEvent(key: 'SettleIn'): TypedContractEvent; +getEvent(key: 'SettleOut'): TypedContractEvent; + + filters: { + + 'FxTransferFeeSplit(bytes32,uint256,uint256)': TypedContractEvent; + FxTransferFeeSplit: TypedContractEvent; + + + 'LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)': TypedContractEvent; + LocalTransferFeeSplit: TypedContractEvent; + + + 'OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)': TypedContractEvent; + OrderCreated: TypedContractEvent; + + + 'OrderRefunded(uint256,bytes32)': TypedContractEvent; + OrderRefunded: TypedContractEvent; + + + 'SenderFeeTransferred(bytes32,address,uint256)': TypedContractEvent; + SenderFeeTransferred: TypedContractEvent; + + + 'SettleIn(bytes32,address,address,uint256,address,uint256,uint96)': TypedContractEvent; + SettleIn: TypedContractEvent; + + + 'SettleOut(bytes32,bytes32,address,uint64,uint64)': TypedContractEvent; + SettleOut: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/interfaces/index.ts b/types/ethers-contracts/interfaces/index.ts new file mode 100644 index 0000000..29f56db --- /dev/null +++ b/types/ethers-contracts/interfaces/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { IGateway } from './IGateway.js'; \ No newline at end of file diff --git a/types/ethers-contracts/mocks/MockUSDC.sol/MockUSDT.ts b/types/ethers-contracts/mocks/MockUSDC.sol/MockUSDT.ts new file mode 100644 index 0000000..0404488 --- /dev/null +++ b/types/ethers-contracts/mocks/MockUSDC.sol/MockUSDT.ts @@ -0,0 +1,301 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common.js" + + + export interface MockUSDTInterface extends Interface { + getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "burn" | "burnAll" | "decimals" | "decreaseAllowance" | "increaseAllowance" | "mint" | "name" | "symbol" | "totalSupply" | "transfer" | "transferFrom"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "Approval" | "Transfer"): EventFragment; + + encodeFunctionData(functionFragment: 'allowance', values: [AddressLike, AddressLike]): string; +encodeFunctionData(functionFragment: 'approve', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'balanceOf', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'burn', values: [BigNumberish]): string; +encodeFunctionData(functionFragment: 'burnAll', values?: undefined): string; +encodeFunctionData(functionFragment: 'decimals', values?: undefined): string; +encodeFunctionData(functionFragment: 'decreaseAllowance', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'increaseAllowance', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'mint', values: [BigNumberish]): string; +encodeFunctionData(functionFragment: 'name', values?: undefined): string; +encodeFunctionData(functionFragment: 'symbol', values?: undefined): string; +encodeFunctionData(functionFragment: 'totalSupply', values?: undefined): string; +encodeFunctionData(functionFragment: 'transfer', values: [AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferFrom', values: [AddressLike, AddressLike, BigNumberish]): string; + + decodeFunctionResult(functionFragment: 'allowance', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'approve', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'balanceOf', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'burn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'burnAll', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'decimals', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'decreaseAllowance', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'increaseAllowance', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'mint', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'name', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'symbol', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'totalSupply', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transfer', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferFrom', data: BytesLike): Result; + } + + + export namespace ApprovalEvent { + export type InputTuple = [owner: AddressLike, spender: AddressLike, value: BigNumberish]; + export type OutputTuple = [owner: string, spender: string, value: bigint]; + export interface OutputObject {owner: string, spender: string, value: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TransferEvent { + export type InputTuple = [from: AddressLike, to: AddressLike, value: BigNumberish]; + export type OutputTuple = [from: string, to: string, value: bigint]; + export interface OutputObject {from: string, to: string, value: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface MockUSDT extends BaseContract { + + connect(runner?: ContractRunner | null): MockUSDT; + waitForDeployment(): Promise; + + interface: MockUSDTInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + allowance: TypedContractMethod< + [owner: AddressLike, spender: AddressLike, ], + [bigint], + 'view' + > + + + + approve: TypedContractMethod< + [spender: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + balanceOf: TypedContractMethod< + [account: AddressLike, ], + [bigint], + 'view' + > + + + + burn: TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + > + + + + burnAll: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + decimals: TypedContractMethod< + [], + [bigint], + 'view' + > + + + + decreaseAllowance: TypedContractMethod< + [spender: AddressLike, subtractedValue: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + increaseAllowance: TypedContractMethod< + [spender: AddressLike, addedValue: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + mint: TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + > + + + + name: TypedContractMethod< + [], + [string], + 'view' + > + + + + symbol: TypedContractMethod< + [], + [string], + 'view' + > + + + + totalSupply: TypedContractMethod< + [], + [bigint], + 'view' + > + + + + transfer: TypedContractMethod< + [to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + transferFrom: TypedContractMethod< + [from: AddressLike, to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'allowance'): TypedContractMethod< + [owner: AddressLike, spender: AddressLike, ], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'approve'): TypedContractMethod< + [spender: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'balanceOf'): TypedContractMethod< + [account: AddressLike, ], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'burn'): TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'burnAll'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'decimals'): TypedContractMethod< + [], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'decreaseAllowance'): TypedContractMethod< + [spender: AddressLike, subtractedValue: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'increaseAllowance'): TypedContractMethod< + [spender: AddressLike, addedValue: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'mint'): TypedContractMethod< + [_amount: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'name'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'symbol'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'totalSupply'): TypedContractMethod< + [], + [bigint], + 'view' + >; +getFunction(nameOrSignature: 'transfer'): TypedContractMethod< + [to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferFrom'): TypedContractMethod< + [from: AddressLike, to: AddressLike, amount: BigNumberish, ], + [boolean], + 'nonpayable' + >; + + getEvent(key: 'Approval'): TypedContractEvent; +getEvent(key: 'Transfer'): TypedContractEvent; + + filters: { + + 'Approval(address,address,uint256)': TypedContractEvent; + Approval: TypedContractEvent; + + + 'Transfer(address,address,uint256)': TypedContractEvent; + Transfer: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/mocks/MockUSDC.sol/index.ts b/types/ethers-contracts/mocks/MockUSDC.sol/index.ts new file mode 100644 index 0000000..e9c8f87 --- /dev/null +++ b/types/ethers-contracts/mocks/MockUSDC.sol/index.ts @@ -0,0 +1,4 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +export type { MockUSDT } from './MockUSDT.js'; \ No newline at end of file diff --git a/types/ethers-contracts/mocks/TestGateway.ts b/types/ethers-contracts/mocks/TestGateway.ts new file mode 100644 index 0000000..fca363e --- /dev/null +++ b/types/ethers-contracts/mocks/TestGateway.ts @@ -0,0 +1,644 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers" +import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common.js" + +export declare namespace IGateway { + + export type OrderStruct = {sender: AddressLike, token: AddressLike, senderFeeRecipient: AddressLike, senderFee: BigNumberish, protocolFee: BigNumberish, isFulfilled: boolean, isRefunded: boolean, refundAddress: AddressLike, currentBPS: BigNumberish, amount: BigNumberish} + + export type OrderStructOutput = [sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint] & {sender: string, token: string, senderFeeRecipient: string, senderFee: bigint, protocolFee: bigint, isFulfilled: boolean, isRefunded: boolean, refundAddress: string, currentBPS: bigint, amount: bigint } + + } + +export declare namespace GatewaySettingManager { + + export type TokenFeeSettingsStruct = {senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish} + + export type TokenFeeSettingsStructOutput = [senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint] & {senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint } + + } + + export interface TestGatewayInterface extends Interface { + getFunction(nameOrSignature: "acceptOwnership" | "createOrder" | "getAggregator" | "getOrderInfo" | "getTokenFeeSettings" | "initialize" | "isTokenSupported" | "owner" | "pause" | "paused" | "pendingOwner" | "refund" | "renounceOwnership" | "setTokenFeeSettings" | "settingManagerBool" | "settleIn" | "settleOut" | "transferOwnership" | "unpause" | "updateProtocolAddress"): FunctionFragment; + + getEvent(nameOrSignatureOrTopic: "FxTransferFeeSplit" | "Initialized" | "LocalTransferFeeSplit" | "OrderCreated" | "OrderRefunded" | "OwnershipTransferStarted" | "OwnershipTransferred" | "Paused" | "ProtocolAddressUpdated" | "SenderFeeTransferred" | "SetFeeRecipient" | "SettingManagerBool" | "SettleIn" | "SettleOut" | "TokenFeeSettingsUpdated" | "Unpaused"): EventFragment; + + encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'createOrder', values: [AddressLike, BigNumberish, BigNumberish, AddressLike, BigNumberish, AddressLike, string]): string; +encodeFunctionData(functionFragment: 'getAggregator', values?: undefined): string; +encodeFunctionData(functionFragment: 'getOrderInfo', values: [BytesLike]): string; +encodeFunctionData(functionFragment: 'getTokenFeeSettings', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'initialize', values?: undefined): string; +encodeFunctionData(functionFragment: 'isTokenSupported', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'owner', values?: undefined): string; +encodeFunctionData(functionFragment: 'pause', values?: undefined): string; +encodeFunctionData(functionFragment: 'paused', values?: undefined): string; +encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string; +encodeFunctionData(functionFragment: 'refund', values: [BigNumberish, BytesLike]): string; +encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; +encodeFunctionData(functionFragment: 'setTokenFeeSettings', values: [AddressLike, BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settingManagerBool', values: [BytesLike, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleIn', values: [BytesLike, AddressLike, BigNumberish, AddressLike, BigNumberish, AddressLike, BigNumberish]): string; +encodeFunctionData(functionFragment: 'settleOut', values: [BytesLike, BytesLike, AddressLike, BigNumberish, BigNumberish]): string; +encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; +encodeFunctionData(functionFragment: 'unpause', values?: undefined): string; +encodeFunctionData(functionFragment: 'updateProtocolAddress', values: [BytesLike, AddressLike]): string; + + decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'createOrder', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getAggregator', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getOrderInfo', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'getTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'initialize', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'isTokenSupported', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pause', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'paused', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'refund', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'setTokenFeeSettings', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settingManagerBool', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleIn', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'settleOut', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'unpause', data: BytesLike): Result; +decodeFunctionResult(functionFragment: 'updateProtocolAddress', data: BytesLike): Result; + } + + + export namespace FxTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace InitializedEvent { + export type InputTuple = [version: BigNumberish]; + export type OutputTuple = [version: bigint]; + export interface OutputObject {version: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace LocalTransferFeeSplitEvent { + export type InputTuple = [orderId: BytesLike, senderAmount: BigNumberish, providerAmount: BigNumberish, aggregatorAmount: BigNumberish]; + export type OutputTuple = [orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint]; + export interface OutputObject {orderId: string, senderAmount: bigint, providerAmount: bigint, aggregatorAmount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderCreatedEvent { + export type InputTuple = [sender: AddressLike, token: AddressLike, amount: BigNumberish, protocolFee: BigNumberish, orderId: BytesLike, rate: BigNumberish, messageHash: string]; + export type OutputTuple = [sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string]; + export interface OutputObject {sender: string, token: string, amount: bigint, protocolFee: bigint, orderId: string, rate: bigint, messageHash: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OrderRefundedEvent { + export type InputTuple = [fee: BigNumberish, orderId: BytesLike]; + export type OutputTuple = [fee: bigint, orderId: string]; + export interface OutputObject {fee: bigint, orderId: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferStartedEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace OwnershipTransferredEvent { + export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; + export type OutputTuple = [previousOwner: string, newOwner: string]; + export interface OutputObject {previousOwner: string, newOwner: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace PausedEvent { + export type InputTuple = [account: AddressLike]; + export type OutputTuple = [account: string]; + export interface OutputObject {account: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace ProtocolAddressUpdatedEvent { + export type InputTuple = [what: BytesLike, treasuryAddress: AddressLike]; + export type OutputTuple = [what: string, treasuryAddress: string]; + export interface OutputObject {what: string, treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SenderFeeTransferredEvent { + export type InputTuple = [orderId: BytesLike, sender: AddressLike, amount: BigNumberish]; + export type OutputTuple = [orderId: string, sender: string, amount: bigint]; + export interface OutputObject {orderId: string, sender: string, amount: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SetFeeRecipientEvent { + export type InputTuple = [treasuryAddress: AddressLike]; + export type OutputTuple = [treasuryAddress: string]; + export interface OutputObject {treasuryAddress: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettingManagerBoolEvent { + export type InputTuple = [what: BytesLike, value: AddressLike, status: BigNumberish]; + export type OutputTuple = [what: string, value: string, status: bigint]; + export interface OutputObject {what: string, value: string, status: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleInEvent { + export type InputTuple = [orderId: BytesLike, amount: BigNumberish, recipient: AddressLike, token: AddressLike, aggregatorFee: BigNumberish, rate: BigNumberish]; + export type OutputTuple = [orderId: string, amount: bigint, recipient: string, token: string, aggregatorFee: bigint, rate: bigint]; + export interface OutputObject {orderId: string, amount: bigint, recipient: string, token: string, aggregatorFee: bigint, rate: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace SettleOutEvent { + export type InputTuple = [splitOrderId: BytesLike, orderId: BytesLike, liquidityProvider: AddressLike, settlePercent: BigNumberish, rebatePercent: BigNumberish]; + export type OutputTuple = [splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint]; + export interface OutputObject {splitOrderId: string, orderId: string, liquidityProvider: string, settlePercent: bigint, rebatePercent: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace TokenFeeSettingsUpdatedEvent { + export type InputTuple = [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish]; + export type OutputTuple = [token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint]; + export interface OutputObject {token: string, senderToProvider: bigint, providerToAggregator: bigint, senderToAggregator: bigint, providerToAggregatorFx: bigint }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export namespace UnpausedEvent { + export type InputTuple = [account: AddressLike]; + export type OutputTuple = [account: string]; + export interface OutputObject {account: string }; + export type Event = TypedContractEvent + export type Filter = TypedDeferredTopicFilter + export type Log = TypedEventLog + export type LogDescription = TypedLogDescription + } + + + + export interface TestGateway extends BaseContract { + + connect(runner?: ContractRunner | null): TestGateway; + waitForDeployment(): Promise; + + interface: TestGatewayInterface; + + + queryFilter( + event: TCEvent, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined, + ): Promise>> + queryFilter( + filter: TypedDeferredTopicFilter, + fromBlockOrBlockhash?: string | number | undefined, + toBlock?: string | number | undefined + ): Promise>>; + + on(event: TCEvent, listener: TypedListener): Promise + on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + once(event: TCEvent, listener: TypedListener): Promise + once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise + + listeners( + event: TCEvent + ): Promise>>; + listeners(eventName?: string): Promise> + removeAllListeners(event?: TCEvent): Promise + + + + + acceptOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + createOrder: TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + > + + + + getAggregator: TypedContractMethod< + [], + [string], + 'view' + > + + + + getOrderInfo: TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + > + + + + getTokenFeeSettings: TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + > + + + + initialize: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + isTokenSupported: TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + > + + + + owner: TypedContractMethod< + [], + [string], + 'view' + > + + + + pause: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + paused: TypedContractMethod< + [], + [boolean], + 'view' + > + + + + pendingOwner: TypedContractMethod< + [], + [string], + 'view' + > + + + + refund: TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + > + + + + renounceOwnership: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + setTokenFeeSettings: TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settingManagerBool: TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + > + + + + settleIn: TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + settleOut: TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + > + + + + transferOwnership: TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + > + + + + unpause: TypedContractMethod< + [], + [void], + 'nonpayable' + > + + + + updateProtocolAddress: TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + > + + + + getFunction(key: string | FunctionFragment): T; + + getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'createOrder'): TypedContractMethod< + [_token: AddressLike, _amount: BigNumberish, _rate: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _refundAddress: AddressLike, messageHash: string, ], + [string], + 'nonpayable' + >; +getFunction(nameOrSignature: 'getAggregator'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'getOrderInfo'): TypedContractMethod< + [_orderId: BytesLike, ], + [IGateway.OrderStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'getTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, ], + [GatewaySettingManager.TokenFeeSettingsStructOutput], + 'view' + >; +getFunction(nameOrSignature: 'initialize'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'isTokenSupported'): TypedContractMethod< + [_token: AddressLike, ], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'owner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'pause'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'paused'): TypedContractMethod< + [], + [boolean], + 'view' + >; +getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod< + [], + [string], + 'view' + >; +getFunction(nameOrSignature: 'refund'): TypedContractMethod< + [_fee: BigNumberish, _orderId: BytesLike, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'setTokenFeeSettings'): TypedContractMethod< + [token: AddressLike, senderToProvider: BigNumberish, providerToAggregator: BigNumberish, senderToAggregator: BigNumberish, providerToAggregatorFx: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settingManagerBool'): TypedContractMethod< + [what: BytesLike, value: AddressLike, status: BigNumberish, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleIn'): TypedContractMethod< + [_orderId: BytesLike, _token: AddressLike, _amount: BigNumberish, _senderFeeRecipient: AddressLike, _senderFee: BigNumberish, _recipient: AddressLike, _rate: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'settleOut'): TypedContractMethod< + [_splitOrderId: BytesLike, _orderId: BytesLike, _liquidityProvider: AddressLike, _settlePercent: BigNumberish, _rebatePercent: BigNumberish, ], + [boolean], + 'nonpayable' + >; +getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod< + [newOwner: AddressLike, ], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'unpause'): TypedContractMethod< + [], + [void], + 'nonpayable' + >; +getFunction(nameOrSignature: 'updateProtocolAddress'): TypedContractMethod< + [what: BytesLike, value: AddressLike, ], + [void], + 'nonpayable' + >; + + getEvent(key: 'FxTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'Initialized'): TypedContractEvent; +getEvent(key: 'LocalTransferFeeSplit'): TypedContractEvent; +getEvent(key: 'OrderCreated'): TypedContractEvent; +getEvent(key: 'OrderRefunded'): TypedContractEvent; +getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent; +getEvent(key: 'OwnershipTransferred'): TypedContractEvent; +getEvent(key: 'Paused'): TypedContractEvent; +getEvent(key: 'ProtocolAddressUpdated'): TypedContractEvent; +getEvent(key: 'SenderFeeTransferred'): TypedContractEvent; +getEvent(key: 'SetFeeRecipient'): TypedContractEvent; +getEvent(key: 'SettingManagerBool'): TypedContractEvent; +getEvent(key: 'SettleIn'): TypedContractEvent; +getEvent(key: 'SettleOut'): TypedContractEvent; +getEvent(key: 'TokenFeeSettingsUpdated'): TypedContractEvent; +getEvent(key: 'Unpaused'): TypedContractEvent; + + filters: { + + 'FxTransferFeeSplit(bytes32,uint256,uint256)': TypedContractEvent; + FxTransferFeeSplit: TypedContractEvent; + + + 'Initialized(uint8)': TypedContractEvent; + Initialized: TypedContractEvent; + + + 'LocalTransferFeeSplit(bytes32,uint256,uint256,uint256)': TypedContractEvent; + LocalTransferFeeSplit: TypedContractEvent; + + + 'OrderCreated(address,address,uint256,uint256,bytes32,uint256,string)': TypedContractEvent; + OrderCreated: TypedContractEvent; + + + 'OrderRefunded(uint256,bytes32)': TypedContractEvent; + OrderRefunded: TypedContractEvent; + + + 'OwnershipTransferStarted(address,address)': TypedContractEvent; + OwnershipTransferStarted: TypedContractEvent; + + + 'OwnershipTransferred(address,address)': TypedContractEvent; + OwnershipTransferred: TypedContractEvent; + + + 'Paused(address)': TypedContractEvent; + Paused: TypedContractEvent; + + + 'ProtocolAddressUpdated(bytes32,address)': TypedContractEvent; + ProtocolAddressUpdated: TypedContractEvent; + + + 'SenderFeeTransferred(bytes32,address,uint256)': TypedContractEvent; + SenderFeeTransferred: TypedContractEvent; + + + 'SetFeeRecipient(address)': TypedContractEvent; + SetFeeRecipient: TypedContractEvent; + + + 'SettingManagerBool(bytes32,address,uint256)': TypedContractEvent; + SettingManagerBool: TypedContractEvent; + + + 'SettleIn(bytes32,uint256,address,address,uint256,uint96)': TypedContractEvent; + SettleIn: TypedContractEvent; + + + 'SettleOut(bytes32,bytes32,address,uint64,uint64)': TypedContractEvent; + SettleOut: TypedContractEvent; + + + 'TokenFeeSettingsUpdated(address,uint256,uint256,uint256,uint256)': TypedContractEvent; + TokenFeeSettingsUpdated: TypedContractEvent; + + + 'Unpaused(address)': TypedContractEvent; + Unpaused: TypedContractEvent; + + }; + } \ No newline at end of file diff --git a/types/ethers-contracts/mocks/index.ts b/types/ethers-contracts/mocks/index.ts new file mode 100644 index 0000000..6bb6598 --- /dev/null +++ b/types/ethers-contracts/mocks/index.ts @@ -0,0 +1,5 @@ +/* Autogenerated file. Do not edit manually. */ +/* tslint:disable */ +/* eslint-disable */ +import type * as mockUsdcSol from './MockUSDC.sol/index.js'; +export type { mockUsdcSol }; \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index f792fe2..d990bb8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@adraffy/ens-normalize@1.10.0": - version "1.10.0" - resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz" - integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== +"@adraffy/ens-normalize@1.10.1": + version "1.10.1" + resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz" + integrity sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw== "@apollo/protobufjs@1.2.6": version "1.2.6" @@ -115,81 +115,10 @@ dependencies: xss "^1.0.8" -"@aws-crypto/sha256-js@1.2.2": - version "1.2.2" - resolved "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-1.2.2.tgz" - integrity sha512-Nr1QJIbW/afYYGzYvrF70LtaHrIRtd4TNAglX8BvlfxJLZ45SAmueIKYl5tWoNBPzp65ymXGFK0Bb1vZUpuc9g== - dependencies: - "@aws-crypto/util" "^1.2.2" - "@aws-sdk/types" "^3.1.0" - tslib "^1.11.1" - -"@aws-crypto/util@^1.2.2": - version "1.2.2" - resolved "https://registry.npmjs.org/@aws-crypto/util/-/util-1.2.2.tgz" - integrity sha512-H8PjG5WJ4wz0UXAFXeJjWCW1vkvIJ3qUUD+rGRwJ2/hj+xT58Qle2MTql/2MGzkU+1JLAFuR6aJpLAjHwhmwwg== - dependencies: - "@aws-sdk/types" "^3.1.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/types@^3.1.0": - version "3.387.0" - resolved "https://registry.npmjs.org/@aws-sdk/types/-/types-3.387.0.tgz" - integrity sha512-YTjFabNwjTF+6yl88f0/tWff018qmmgMmjlw45s6sdVKueWxdxV68U7gepNLF2nhaQPZa6FDOBoA51NaviVs0Q== - dependencies: - "@smithy/types" "^2.1.0" - tslib "^2.5.0" - -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@babel/runtime@^7.0.0", "@babel/runtime@^7.4.4", "@babel/runtime@^7.6.3": - version "7.21.5" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz" - integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== - dependencies: - regenerator-runtime "^0.13.11" - -"@chainsafe/as-sha256@^0.3.1": - version "0.3.1" - resolved "https://registry.npmjs.org/@chainsafe/as-sha256/-/as-sha256-0.3.1.tgz" - integrity sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg== - -"@chainsafe/persistent-merkle-tree@^0.4.2": - version "0.4.2" - resolved "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.4.2.tgz" - integrity sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ== - dependencies: - "@chainsafe/as-sha256" "^0.3.1" - -"@chainsafe/persistent-merkle-tree@^0.5.0": - version "0.5.0" - resolved "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.5.0.tgz" - integrity sha512-l0V1b5clxA3iwQLXP40zYjyZYospQLZXzBVIhhr9kDg/1qHZfzzHw0jj4VPBijfYCArZDlPkRi1wZaV2POKeuw== - dependencies: - "@chainsafe/as-sha256" "^0.3.1" - -"@chainsafe/ssz@^0.10.0": - version "0.10.2" - resolved "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.10.2.tgz" - integrity sha512-/NL3Lh8K+0q7A3LsiFq09YXS9fPE+ead2rr7vM2QK8PLzrNsw3uqrif9bpRX5UxgeRjM+vYi+boCM3+GM4ovXg== - dependencies: - "@chainsafe/as-sha256" "^0.3.1" - "@chainsafe/persistent-merkle-tree" "^0.5.0" - -"@chainsafe/ssz@^0.9.2": - version "0.9.4" - resolved "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.9.4.tgz" - integrity sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ== - dependencies: - "@chainsafe/as-sha256" "^0.3.1" - "@chainsafe/persistent-merkle-tree" "^0.4.2" - case "^1.6.3" +"@babel/runtime@^7.0.0", "@babel/runtime@^7.28.4", "@babel/runtime@^7.4.4": + version "7.28.6" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz" + integrity sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA== "@cspotcode/source-map-support@^0.8.0": version "0.8.1" @@ -253,6 +182,11 @@ resolved "https://registry.npmjs.org/@ensdomains/resolver/-/resolver-0.2.4.tgz" integrity sha512-bvaTH34PMCbv6anRa9I/0zjLJgY4EuznbEMgbV77JBCQ9KNC46rzi0avuxpOfu+xDjPEtSFGqVEOr5GlUSGudA== +"@esbuild/darwin-arm64@0.27.2": + version "0.27.2" + resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz" + integrity sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg== + "@ethereumjs/common@^2.5.0", "@ethereumjs/common@2.5.0": version "2.5.0" resolved "https://registry.npmjs.org/@ethereumjs/common/-/common-2.5.0.tgz" @@ -269,347 +203,358 @@ "@ethereumjs/common" "^2.5.0" ethereumjs-util "^7.1.2" -"@ethersproject/abi@^5.0.0", "@ethersproject/abi@^5.0.0-beta.146", "@ethersproject/abi@^5.0.9", "@ethersproject/abi@^5.1.2", "@ethersproject/abi@^5.4.7", "@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0", "@ethersproject/abi@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz" - integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== - dependencies: - "@ethersproject/address" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/hash" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - -"@ethersproject/abstract-provider@^5.7.0", "@ethersproject/abstract-provider@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz" - integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/networks" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/web" "^5.7.0" - -"@ethersproject/abstract-signer@^5.7.0", "@ethersproject/abstract-signer@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz" - integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== - dependencies: - "@ethersproject/abstract-provider" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - -"@ethersproject/address@^5.0.2", "@ethersproject/address@^5.7.0", "@ethersproject/address@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz" - integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/rlp" "^5.7.0" - -"@ethersproject/base64@^5.7.0", "@ethersproject/base64@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz" - integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== - dependencies: - "@ethersproject/bytes" "^5.7.0" - -"@ethersproject/basex@^5.7.0", "@ethersproject/basex@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz" - integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - -"@ethersproject/bignumber@^5.7.0", "@ethersproject/bignumber@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz" - integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - bn.js "^5.2.1" +"@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0", "@ethersproject/abi@^5.8.0", "@ethersproject/abi@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.8.0.tgz" + integrity sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q== + dependencies: + "@ethersproject/address" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/constants" "^5.8.0" + "@ethersproject/hash" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + +"@ethersproject/abstract-provider@^5.8.0", "@ethersproject/abstract-provider@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.8.0.tgz" + integrity sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg== + dependencies: + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/networks" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/transactions" "^5.8.0" + "@ethersproject/web" "^5.8.0" + +"@ethersproject/abstract-signer@^5.8.0", "@ethersproject/abstract-signer@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.8.0.tgz" + integrity sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA== + dependencies: + "@ethersproject/abstract-provider" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + +"@ethersproject/address@^5.8.0", "@ethersproject/address@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/address/-/address-5.8.0.tgz" + integrity sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA== + dependencies: + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/rlp" "^5.8.0" + +"@ethersproject/address@5.6.1": + version "5.6.1" + resolved "https://registry.npmjs.org/@ethersproject/address/-/address-5.6.1.tgz" + integrity sha512-uOgF0kS5MJv9ZvCz7x6T2EXJSzotiybApn4XlOgoTX0xdtyVIJ7pF+6cGPxiEq/dpBiTfMiw7Yc81JcwhSYA0Q== + dependencies: + "@ethersproject/bignumber" "^5.6.2" + "@ethersproject/bytes" "^5.6.1" + "@ethersproject/keccak256" "^5.6.1" + "@ethersproject/logger" "^5.6.0" + "@ethersproject/rlp" "^5.6.1" + +"@ethersproject/base64@^5.8.0", "@ethersproject/base64@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.8.0.tgz" + integrity sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ== + dependencies: + "@ethersproject/bytes" "^5.8.0" -"@ethersproject/bytes@^5.0.0", "@ethersproject/bytes@^5.7.0", "@ethersproject/bytes@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz" - integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== +"@ethersproject/basex@^5.8.0", "@ethersproject/basex@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.8.0.tgz" + integrity sha512-PIgTszMlDRmNwW9nhS6iqtVfdTAKosA7llYXNmGPw4YAI1PUyMv28988wAb41/gHF/WqGdoLv0erHaRcHRKW2Q== + dependencies: + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + +"@ethersproject/bignumber@^5.6.2", "@ethersproject/bignumber@^5.8.0", "@ethersproject/bignumber@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.8.0.tgz" + integrity sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA== dependencies: - "@ethersproject/logger" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + bn.js "^5.2.1" -"@ethersproject/constants@^5.7.0", "@ethersproject/constants@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz" - integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== +"@ethersproject/bytes@^5.6.1", "@ethersproject/bytes@^5.8.0", "@ethersproject/bytes@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.8.0.tgz" + integrity sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A== dependencies: - "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/logger" "^5.8.0" -"@ethersproject/contracts@^5.7.0", "@ethersproject/contracts@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz" - integrity sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg== +"@ethersproject/constants@^5.8.0", "@ethersproject/constants@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.8.0.tgz" + integrity sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg== dependencies: - "@ethersproject/abi" "^5.7.0" - "@ethersproject/abstract-provider" "^5.7.0" - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - -"@ethersproject/hash@^5.7.0", "@ethersproject/hash@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz" - integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== - dependencies: - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/base64" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - -"@ethersproject/hdnode@^5.7.0", "@ethersproject/hdnode@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz" - integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== - dependencies: - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/basex" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/pbkdf2" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/sha2" "^5.7.0" - "@ethersproject/signing-key" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/wordlists" "^5.7.0" - -"@ethersproject/json-wallets@^5.7.0", "@ethersproject/json-wallets@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz" - integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== - dependencies: - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/hdnode" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/pbkdf2" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/random" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" + "@ethersproject/bignumber" "^5.8.0" + +"@ethersproject/contracts@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.8.0.tgz" + integrity sha512-0eFjGz9GtuAi6MZwhb4uvUM216F38xiuR0yYCjKJpNfSEy4HUM8hvqqBj9Jmm0IUz8l0xKEhWwLIhPgxNY0yvQ== + dependencies: + "@ethersproject/abi" "^5.8.0" + "@ethersproject/abstract-provider" "^5.8.0" + "@ethersproject/abstract-signer" "^5.8.0" + "@ethersproject/address" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/constants" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/transactions" "^5.8.0" + +"@ethersproject/hash@^5.8.0", "@ethersproject/hash@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.8.0.tgz" + integrity sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA== + dependencies: + "@ethersproject/abstract-signer" "^5.8.0" + "@ethersproject/address" "^5.8.0" + "@ethersproject/base64" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + +"@ethersproject/hdnode@^5.8.0", "@ethersproject/hdnode@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.8.0.tgz" + integrity sha512-4bK1VF6E83/3/Im0ERnnUeWOY3P1BZml4ZD3wcH8Ys0/d1h1xaFt6Zc+Dh9zXf9TapGro0T4wvO71UTCp3/uoA== + dependencies: + "@ethersproject/abstract-signer" "^5.8.0" + "@ethersproject/basex" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/pbkdf2" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/sha2" "^5.8.0" + "@ethersproject/signing-key" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + "@ethersproject/transactions" "^5.8.0" + "@ethersproject/wordlists" "^5.8.0" + +"@ethersproject/json-wallets@^5.8.0", "@ethersproject/json-wallets@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.8.0.tgz" + integrity sha512-HxblNck8FVUtNxS3VTEYJAcwiKYsBIF77W15HufqlBF9gGfhmYOJtYZp8fSDZtn9y5EaXTE87zDwzxRoTFk11w== + dependencies: + "@ethersproject/abstract-signer" "^5.8.0" + "@ethersproject/address" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/hdnode" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/pbkdf2" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/random" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + "@ethersproject/transactions" "^5.8.0" aes-js "3.0.0" scrypt-js "3.0.1" -"@ethersproject/keccak256@^5.7.0", "@ethersproject/keccak256@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz" - integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== +"@ethersproject/keccak256@^5.6.1", "@ethersproject/keccak256@^5.8.0", "@ethersproject/keccak256@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.8.0.tgz" + integrity sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng== dependencies: - "@ethersproject/bytes" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" js-sha3 "0.8.0" -"@ethersproject/logger@^5.7.0", "@ethersproject/logger@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz" - integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== +"@ethersproject/logger@^5.6.0", "@ethersproject/logger@^5.8.0", "@ethersproject/logger@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.8.0.tgz" + integrity sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA== -"@ethersproject/networks@^5.7.0", "@ethersproject/networks@5.7.1": - version "5.7.1" - resolved "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz" - integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== +"@ethersproject/networks@^5.8.0", "@ethersproject/networks@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.8.0.tgz" + integrity sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg== dependencies: - "@ethersproject/logger" "^5.7.0" + "@ethersproject/logger" "^5.8.0" -"@ethersproject/pbkdf2@^5.7.0", "@ethersproject/pbkdf2@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz" - integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== +"@ethersproject/pbkdf2@^5.8.0", "@ethersproject/pbkdf2@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.8.0.tgz" + integrity sha512-wuHiv97BrzCmfEaPbUFpMjlVg/IDkZThp9Ri88BpjRleg4iePJaj2SW8AIyE8cXn5V1tuAaMj6lzvsGJkGWskg== dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/sha2" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/sha2" "^5.8.0" -"@ethersproject/properties@^5.7.0", "@ethersproject/properties@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz" - integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== +"@ethersproject/properties@^5.8.0", "@ethersproject/properties@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.8.0.tgz" + integrity sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw== dependencies: - "@ethersproject/logger" "^5.7.0" + "@ethersproject/logger" "^5.8.0" -"@ethersproject/providers@^5.0.0", "@ethersproject/providers@^5.4.7", "@ethersproject/providers@^5.7.1", "@ethersproject/providers@^5.7.2", "@ethersproject/providers@5.7.2": - version "5.7.2" - resolved "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz" - integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== - dependencies: - "@ethersproject/abstract-provider" "^5.7.0" - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/base64" "^5.7.0" - "@ethersproject/basex" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/hash" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/networks" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/random" "^5.7.0" - "@ethersproject/rlp" "^5.7.0" - "@ethersproject/sha2" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/web" "^5.7.0" +"@ethersproject/providers@^5.7.2", "@ethersproject/providers@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.8.0.tgz" + integrity sha512-3Il3oTzEx3o6kzcg9ZzbE+oCZYyY+3Zh83sKkn4s1DZfTUjIegHnN2Cm0kbn9YFy45FDVcuCLLONhU7ny0SsCw== + dependencies: + "@ethersproject/abstract-provider" "^5.8.0" + "@ethersproject/abstract-signer" "^5.8.0" + "@ethersproject/address" "^5.8.0" + "@ethersproject/base64" "^5.8.0" + "@ethersproject/basex" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/constants" "^5.8.0" + "@ethersproject/hash" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/networks" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/random" "^5.8.0" + "@ethersproject/rlp" "^5.8.0" + "@ethersproject/sha2" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + "@ethersproject/transactions" "^5.8.0" + "@ethersproject/web" "^5.8.0" bech32 "1.1.4" - ws "7.4.6" + ws "8.18.0" -"@ethersproject/random@^5.7.0", "@ethersproject/random@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz" - integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== +"@ethersproject/random@^5.8.0", "@ethersproject/random@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/random/-/random-5.8.0.tgz" + integrity sha512-E4I5TDl7SVqyg4/kkA/qTfuLWAQGXmSOgYyO01So8hLfwgKvYK5snIlzxJMk72IFdG/7oh8yuSqY2KX7MMwg+A== dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" -"@ethersproject/rlp@^5.7.0", "@ethersproject/rlp@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz" - integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== +"@ethersproject/rlp@^5.6.1", "@ethersproject/rlp@^5.8.0", "@ethersproject/rlp@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.8.0.tgz" + integrity sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q== dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" -"@ethersproject/sha2@^5.7.0", "@ethersproject/sha2@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz" - integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== +"@ethersproject/sha2@^5.8.0", "@ethersproject/sha2@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.8.0.tgz" + integrity sha512-dDOUrXr9wF/YFltgTBYS0tKslPEKr6AekjqDW2dbn1L1xmjGR+9GiKu4ajxovnrDbwxAKdHjW8jNcwfz8PAz4A== dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" hash.js "1.1.7" -"@ethersproject/signing-key@^5.7.0", "@ethersproject/signing-key@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz" - integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== +"@ethersproject/signing-key@^5.8.0", "@ethersproject/signing-key@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.8.0.tgz" + integrity sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w== dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" bn.js "^5.2.1" - elliptic "6.5.4" + elliptic "6.6.1" hash.js "1.1.7" -"@ethersproject/solidity@^5.7.0", "@ethersproject/solidity@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz" - integrity sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/sha2" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - -"@ethersproject/strings@^5.7.0", "@ethersproject/strings@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz" - integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/transactions@^5.6.2", "@ethersproject/transactions@^5.7.0", "@ethersproject/transactions@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz" - integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== - dependencies: - "@ethersproject/address" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/rlp" "^5.7.0" - "@ethersproject/signing-key" "^5.7.0" - -"@ethersproject/units@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz" - integrity sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg== - dependencies: - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - -"@ethersproject/wallet@^5.7.0", "@ethersproject/wallet@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz" - integrity sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA== - dependencies: - "@ethersproject/abstract-provider" "^5.7.0" - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/hash" "^5.7.0" - "@ethersproject/hdnode" "^5.7.0" - "@ethersproject/json-wallets" "^5.7.0" - "@ethersproject/keccak256" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/random" "^5.7.0" - "@ethersproject/signing-key" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/wordlists" "^5.7.0" - -"@ethersproject/web@^5.7.0", "@ethersproject/web@5.7.1": - version "5.7.1" - resolved "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz" - integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== - dependencies: - "@ethersproject/base64" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/strings" "^5.7.0" - -"@ethersproject/wordlists@^5.7.0", "@ethersproject/wordlists@5.7.0": - version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz" - integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== - dependencies: - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/hash" "^5.7.0" - "@ethersproject/logger" "^5.7.0" - "@ethersproject/properties" "^5.7.0" - "@ethersproject/strings" "^5.7.0" +"@ethersproject/solidity@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.8.0.tgz" + integrity sha512-4CxFeCgmIWamOHwYN9d+QWGxye9qQLilpgTU0XhYs1OahkclF+ewO+3V1U0mvpiuQxm5EHHmv8f7ClVII8EHsA== + dependencies: + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/sha2" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + +"@ethersproject/strings@^5.8.0", "@ethersproject/strings@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.8.0.tgz" + integrity sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg== + dependencies: + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/constants" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + +"@ethersproject/transactions@^5.6.2", "@ethersproject/transactions@^5.8.0", "@ethersproject/transactions@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.8.0.tgz" + integrity sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg== + dependencies: + "@ethersproject/address" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/constants" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/rlp" "^5.8.0" + "@ethersproject/signing-key" "^5.8.0" + +"@ethersproject/units@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/units/-/units-5.8.0.tgz" + integrity sha512-lxq0CAnc5kMGIiWW4Mr041VT8IhNM+Pn5T3haO74XZWFulk7wH1Gv64HqE96hT4a7iiNMdOCFEBgaxWuk8ETKQ== + dependencies: + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/constants" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + +"@ethersproject/wallet@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.8.0.tgz" + integrity sha512-G+jnzmgg6UxurVKRKvw27h0kvG75YKXZKdlLYmAHeF32TGUzHkOFd7Zn6QHOTYRFWnfjtSSFjBowKo7vfrXzPA== + dependencies: + "@ethersproject/abstract-provider" "^5.8.0" + "@ethersproject/abstract-signer" "^5.8.0" + "@ethersproject/address" "^5.8.0" + "@ethersproject/bignumber" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/hash" "^5.8.0" + "@ethersproject/hdnode" "^5.8.0" + "@ethersproject/json-wallets" "^5.8.0" + "@ethersproject/keccak256" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/random" "^5.8.0" + "@ethersproject/signing-key" "^5.8.0" + "@ethersproject/transactions" "^5.8.0" + "@ethersproject/wordlists" "^5.8.0" + +"@ethersproject/web@^5.8.0", "@ethersproject/web@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/web/-/web-5.8.0.tgz" + integrity sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw== + dependencies: + "@ethersproject/base64" "^5.8.0" + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/strings" "^5.8.0" + +"@ethersproject/wordlists@^5.8.0", "@ethersproject/wordlists@5.8.0": + version "5.8.0" + resolved "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.8.0.tgz" + integrity sha512-2df9bbXicZws2Sb5S6ET493uJ0Z84Fjr3pC4tu/qlnZERibZCeUVuqdtt+7Tv9xxhUxHoIekIA7avrKUWHrezg== + dependencies: + "@ethersproject/bytes" "^5.8.0" + "@ethersproject/hash" "^5.8.0" + "@ethersproject/logger" "^5.8.0" + "@ethersproject/properties" "^5.8.0" + "@ethersproject/strings" "^5.8.0" "@graphql-tools/batch-execute@8.5.1": version "8.5.1" @@ -699,6 +644,18 @@ resolved "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz" integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + "@josephg/resolvable@^1.0.0": version "1.0.1" resolved "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz" @@ -762,17 +719,6 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@metamask/eth-sig-util@^4.0.0": - version "4.0.1" - resolved "https://registry.npmjs.org/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz" - integrity sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ== - dependencies: - ethereumjs-abi "^0.6.8" - ethereumjs-util "^6.2.1" - ethjs-util "^0.1.6" - tweetnacl "^1.0.3" - tweetnacl-util "^0.15.1" - "@microsoft/api-extractor-model@7.16.0": version "7.16.0" resolved "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.16.0.tgz" @@ -805,12 +751,24 @@ lodash "^4.17.16" uuid "^7.0.3" -"@noble/curves@~1.3.0", "@noble/curves@1.3.0": - version "1.3.0" - resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.3.0.tgz" - integrity sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA== +"@noble/ciphers@1.2.1": + version "1.2.1" + resolved "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.2.1.tgz" + integrity sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA== + +"@noble/curves@~1.4.0", "@noble/curves@1.4.2": + version "1.4.2" + resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz" + integrity sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw== + dependencies: + "@noble/hashes" "1.4.0" + +"@noble/curves@~1.8.1": + version "1.8.2" + resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.8.2.tgz" + integrity sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g== dependencies: - "@noble/hashes" "1.3.3" + "@noble/hashes" "1.7.2" "@noble/curves@1.2.0": version "1.2.0" @@ -819,215 +777,250 @@ dependencies: "@noble/hashes" "1.3.2" -"@noble/hashes@~1.2.0", "@noble/hashes@1.2.0": - version "1.2.0" - resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.2.0.tgz" - integrity sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ== +"@noble/hashes@~1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== -"@noble/hashes@~1.3.2", "@noble/hashes@1.3.3": - version "1.3.3" - resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz" - integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== +"@noble/hashes@~1.7.1", "@noble/hashes@1.7.2": + version "1.7.2" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.2.tgz" + integrity sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ== "@noble/hashes@1.3.2": version "1.3.2" resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz" integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== -"@noble/secp256k1@~1.7.0", "@noble/secp256k1@1.7.1": - version "1.7.1" - resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz" - integrity sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw== +"@noble/hashes@1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== +"@noble/hashes@1.7.1": + version "1.7.1" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.1.tgz" + integrity sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ== + +"@nomicfoundation/edr-darwin-arm64@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.12.0-next.22.tgz" + integrity sha512-TpEBSKyMZJEPvYwBPYclC2b+qobKjn1YhVa7aJ1R7RMPy5dJ/PqsrUK5UuUFFybBqoIorru5NTcsyCMWP5T/Fg== + +"@nomicfoundation/edr-darwin-x64@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.12.0-next.22.tgz" + integrity sha512-aK/+m8xUkR4u+czTVGU06nSFVH43AY6XCBoR2YjO8SglAAjCSTWK3WAfVb6FcsriMmKv4PrvoyHLMbMP+fXcGA== + +"@nomicfoundation/edr-linux-arm64-gnu@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.12.0-next.22.tgz" + integrity sha512-W5vXMleG14hVzRYGPEwlHLJ6iiQE8Qh63Uj538nAz4YUI6wWSgUOZE7K2Gt1EdujZGnrt7kfDslgJ96n4nKQZw== + +"@nomicfoundation/edr-linux-arm64-musl@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.12.0-next.22.tgz" + integrity sha512-VDp7EB3iY8MH/fFVcgEzLDGYmtS6j2honNc0RNUCFECKPrdsngGrTG8p+YFxyVjq2m5GEsdyKo4e+BKhaUNPdg== + +"@nomicfoundation/edr-linux-x64-gnu@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.12.0-next.22.tgz" + integrity sha512-XL6oA3ymRSQYyvg6hF1KIax6V/9vlWr5gJ8GPHVVODk1a/YfuEEY1osN5Zmo6aztUkSGKwSuac/3Ax7rfDDiSg== + +"@nomicfoundation/edr-linux-x64-musl@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.12.0-next.22.tgz" + integrity sha512-hmkRIXxWa9P0PwfXOAO6WUw11GyV5gpxcMunqWBTkwZ4QW/hi/CkXmlLo6VHd6ceCwpUNLhCGndBtrOPrNRi4A== + +"@nomicfoundation/edr-win32-x64-msvc@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.12.0-next.22.tgz" + integrity sha512-X7f+7KUMm00trsXAHCHJa+x1fc3QAbk2sBctyOgpET+GLrfCXbxqrccKi7op8f0zTweAVGg1Hsc8SjjC7kwFLw== + +"@nomicfoundation/edr@0.12.0-next.22": + version "0.12.0-next.22" + resolved "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.12.0-next.22.tgz" + integrity sha512-JigYWf2stjpDxSndBsxRoobQHK8kz4SAVaHtTIKQLIHbsBwymE8i120Ejne6Jk+Ndc5CsNINXB8/bK6vLPe9jA== + dependencies: + "@nomicfoundation/edr-darwin-arm64" "0.12.0-next.22" + "@nomicfoundation/edr-darwin-x64" "0.12.0-next.22" + "@nomicfoundation/edr-linux-arm64-gnu" "0.12.0-next.22" + "@nomicfoundation/edr-linux-arm64-musl" "0.12.0-next.22" + "@nomicfoundation/edr-linux-x64-gnu" "0.12.0-next.22" + "@nomicfoundation/edr-linux-x64-musl" "0.12.0-next.22" + "@nomicfoundation/edr-win32-x64-msvc" "0.12.0-next.22" + +"@nomicfoundation/hardhat-errors@^3.0.0", "@nomicfoundation/hardhat-errors@^3.0.2", "@nomicfoundation/hardhat-errors@^3.0.3", "@nomicfoundation/hardhat-errors@^3.0.5", "@nomicfoundation/hardhat-errors@^3.0.6": + version "3.0.6" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-errors/-/hardhat-errors-3.0.6.tgz" + integrity sha512-3x+OVdZv7Rgy3z6os9pB6kiHLxs6q0PCXHRu+WLZflr44PG9zW+7V9o+ehrUqmmivlHcIFr3Qh4M2wZVuoCYww== dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + "@nomicfoundation/hardhat-utils" "^3.0.1" -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== +"@nomicfoundation/hardhat-ethers-chai-matchers@^3.0.0", "@nomicfoundation/hardhat-ethers-chai-matchers@^3.0.2": + version "3.0.2" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers-chai-matchers/-/hardhat-ethers-chai-matchers-3.0.2.tgz" + integrity sha512-nkg+z+fq5PXcRxS/zadyosAA+oPp3sdWrKpuOcASDf0RjqsN2LsNymML0VNNkZF8TF+hYa36fbV+QOas2Fm2BQ== dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" + "@nomicfoundation/hardhat-errors" "^3.0.5" + "@nomicfoundation/hardhat-utils" "^3.0.5" + "@types/chai-as-promised" "^8.0.1" + chai-as-promised "^8.0.0" + deep-eql "^5.0.1" -"@nomicfoundation/ethereumjs-block@5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz" - integrity sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw== - dependencies: - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-trie" "6.0.1" - "@nomicfoundation/ethereumjs-tx" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - ethereum-cryptography "0.1.3" - ethers "^5.7.1" - -"@nomicfoundation/ethereumjs-blockchain@7.0.1": - version "7.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz" - integrity sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A== - dependencies: - "@nomicfoundation/ethereumjs-block" "5.0.1" - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-ethash" "3.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-trie" "6.0.1" - "@nomicfoundation/ethereumjs-tx" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - abstract-level "^1.0.3" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - level "^8.0.0" - lru-cache "^5.1.1" - memory-level "^1.0.0" - -"@nomicfoundation/ethereumjs-common@4.0.1": - version "4.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz" - integrity sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g== +"@nomicfoundation/hardhat-ethers@^4.0.0", "@nomicfoundation/hardhat-ethers@^4.0.4": + version "4.0.4" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers/-/hardhat-ethers-4.0.4.tgz" + integrity sha512-UTw3iM7AMZ1kZlzgJbtAEfWWDYjcnT0EZkRUZd1wIVtMOXIE4nc6Ya4veodAt/KpBhG+6W06g50W+Z/0wTm62g== dependencies: - "@nomicfoundation/ethereumjs-util" "9.0.1" - crc-32 "^1.2.0" + "@nomicfoundation/hardhat-errors" "^3.0.2" + "@nomicfoundation/hardhat-utils" "^3.0.5" + debug "^4.3.2" + ethereum-cryptography "^2.2.1" + ethers "^6.14.0" -"@nomicfoundation/ethereumjs-ethash@3.0.1": - version "3.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz" - integrity sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w== +"@nomicfoundation/hardhat-ignition-ethers@^3.0.0": + version "3.0.7" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition-ethers/-/hardhat-ignition-ethers-3.0.7.tgz" + integrity sha512-WNVm1vKSl+CU8MvLDR/iERe+ZABy6h+MflJqrPw6TgKgrCJPlDzfZo++FC1dPKdPRJKFWC+/bw8uQCfET8LJQQ== dependencies: - "@nomicfoundation/ethereumjs-block" "5.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - abstract-level "^1.0.3" - bigint-crypto-utils "^3.0.23" - ethereum-cryptography "0.1.3" + "@nomicfoundation/hardhat-errors" "^3.0.2" -"@nomicfoundation/ethereumjs-evm@2.0.1": - version "2.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz" - integrity sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ== - dependencies: - "@ethersproject/providers" "^5.7.1" - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-tx" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - mcl-wasm "^0.7.1" - rustbn.js "~0.2.0" - -"@nomicfoundation/ethereumjs-rlp@5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz" - integrity sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ== +"@nomicfoundation/hardhat-ignition@^3.0.0", "@nomicfoundation/hardhat-ignition@^3.0.7": + version "3.0.7" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition/-/hardhat-ignition-3.0.7.tgz" + integrity sha512-yzVXNHoEanOGRFMkpgvGaWw4Kev5ragxFFyrKITKtiJMdChdGNAPlbsk8QJzn4028aSAnjRfqKTOAeeBlsqFig== + dependencies: + "@nomicfoundation/hardhat-errors" "^3.0.2" + "@nomicfoundation/hardhat-utils" "^3.0.6" + "@nomicfoundation/ignition-core" "^3.0.7" + "@nomicfoundation/ignition-ui" "^3.0.7" + chalk "^5.3.0" + debug "^4.3.2" + json5 "^2.2.3" + prompts "^2.4.2" -"@nomicfoundation/ethereumjs-statemanager@2.0.1": - version "2.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz" - integrity sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ== - dependencies: - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - ethers "^5.7.1" - js-sdsl "^4.1.4" +"@nomicfoundation/hardhat-keystore@^3.0.0": + version "3.0.3" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-keystore/-/hardhat-keystore-3.0.3.tgz" + integrity sha512-rkwfdy/GsX/2SV49RGBvMsCuR+SYGJQGD3wcrS5m2Cyap5eQFEgKZbqpua6YQRA2raxRmVVH6antIIftgBFXAQ== + dependencies: + "@noble/ciphers" "1.2.1" + "@noble/hashes" "1.7.1" + "@nomicfoundation/hardhat-errors" "^3.0.0" + "@nomicfoundation/hardhat-utils" "^3.0.5" + "@nomicfoundation/hardhat-zod-utils" "^3.0.0" + chalk "^5.3.0" + debug "^4.3.2" + zod "^3.23.8" -"@nomicfoundation/ethereumjs-trie@6.0.1": - version "6.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz" - integrity sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA== +"@nomicfoundation/hardhat-mocha@^3.0.0", "@nomicfoundation/hardhat-mocha@^3.0.9": + version "3.0.9" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-mocha/-/hardhat-mocha-3.0.9.tgz" + integrity sha512-9hsl1TcRMudN/gUPsRjx0iGLEkl8IU9BBQ5wT5bf8N4RTSHbVwqVL+mADzpt+Dmd5nkdItynhrAJnXjwTvy5DQ== dependencies: - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - "@types/readable-stream" "^2.3.13" - ethereum-cryptography "0.1.3" - readable-stream "^3.6.0" + "@nomicfoundation/hardhat-errors" "^3.0.3" + "@nomicfoundation/hardhat-utils" "^3.0.5" + "@nomicfoundation/hardhat-zod-utils" "^3.0.0" + chalk "^5.3.0" + tsx "^4.19.3" + zod "^3.23.8" -"@nomicfoundation/ethereumjs-tx@5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz" - integrity sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w== +"@nomicfoundation/hardhat-network-helpers@^3.0.0", "@nomicfoundation/hardhat-network-helpers@^3.0.3": + version "3.0.3" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-3.0.3.tgz" + integrity sha512-FqXD8CPFNdluEhELqNV/Q0grOQtlwRWr28LW+/NTas3rrDAXpNOIPCCq3RIXJIqsdbNPQsG2FpnfKj9myqIsKQ== dependencies: - "@chainsafe/ssz" "^0.9.2" - "@ethersproject/providers" "^5.7.2" - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - ethereum-cryptography "0.1.3" + "@nomicfoundation/hardhat-errors" "^3.0.5" + "@nomicfoundation/hardhat-utils" "^3.0.5" -"@nomicfoundation/ethereumjs-util@9.0.1": - version "9.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz" - integrity sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA== +"@nomicfoundation/hardhat-toolbox-mocha-ethers@^3.0.2": + version "3.0.2" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox-mocha-ethers/-/hardhat-toolbox-mocha-ethers-3.0.2.tgz" + integrity sha512-45EZqxWtQxlvwDZilxOI+tSNFn/J+1ITtyqpUQgNhXhYA9+LUdbUx+PmiCWPrtEXzBVANYka6mhNvBr2ZwNBUg== + +"@nomicfoundation/hardhat-typechain@^3.0.0", "@nomicfoundation/hardhat-typechain@^3.0.1": + version "3.0.1" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-typechain/-/hardhat-typechain-3.0.1.tgz" + integrity sha512-TkeMQhf+/4gZLMIWLxzzyVruNuLz5xW5BZdu4Clic3HFqBJRG+U2fQGWxAknMMLGONhxiZaUipE0Z+JkOugrmg== dependencies: - "@chainsafe/ssz" "^0.10.0" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - ethereum-cryptography "0.1.3" + "@nomicfoundation/hardhat-errors" "^3.0.0" + "@nomicfoundation/hardhat-utils" "^3.0.5" + "@nomicfoundation/hardhat-zod-utils" "^3.0.0" + "@typechain/ethers-v6" "^0.5.0" + debug "^4.3.2" + typechain "^8.3.1" + zod "^3.23.8" -"@nomicfoundation/ethereumjs-vm@7.0.1": - version "7.0.1" - resolved "https://registry.npmjs.org/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.1.tgz" - integrity sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ== - dependencies: - "@nomicfoundation/ethereumjs-block" "5.0.1" - "@nomicfoundation/ethereumjs-blockchain" "7.0.1" - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-evm" "2.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-statemanager" "2.0.1" - "@nomicfoundation/ethereumjs-trie" "6.0.1" - "@nomicfoundation/ethereumjs-tx" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - mcl-wasm "^0.7.1" - rustbn.js "~0.2.0" - -"@nomicfoundation/hardhat-chai-matchers@^1.0.0", "@nomicfoundation/hardhat-chai-matchers@^1.0.6": - version "1.0.6" - resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-1.0.6.tgz" - integrity sha512-f5ZMNmabZeZegEfuxn/0kW+mm7+yV7VNDxLpMOMGXWFJ2l/Ct3QShujzDRF9cOkK9Ui/hbDeOWGZqyQALDXVCQ== +"@nomicfoundation/hardhat-utils@^3.0.1", "@nomicfoundation/hardhat-utils@^3.0.2", "@nomicfoundation/hardhat-utils@^3.0.5", "@nomicfoundation/hardhat-utils@^3.0.6": + version "3.0.6" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-utils/-/hardhat-utils-3.0.6.tgz" + integrity sha512-AD/LPNdjXNFRrZcaAAewgJpdnHpPppZxo5p+x6wGMm5Hz4B3+oLf/LUzVn8qb4DDy9RE2c24l2F8vmL/w6ZuXg== dependencies: - "@ethersproject/abi" "^5.1.2" - "@types/chai-as-promised" "^7.1.3" - chai-as-promised "^7.1.1" - deep-eql "^4.0.1" - ordinal "^1.0.3" + "@streamparser/json-node" "^0.0.22" + debug "^4.3.2" + env-paths "^2.2.0" + ethereum-cryptography "^2.2.1" + fast-equals "^5.4.0" + json-stream-stringify "^3.1.6" + rfdc "^1.3.1" + undici "^6.16.1" -"@nomicfoundation/hardhat-network-helpers@^1.0.0", "@nomicfoundation/hardhat-network-helpers@^1.0.8": - version "1.0.8" - resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-1.0.8.tgz" - integrity sha512-MNqQbzUJZnCMIYvlniC3U+kcavz/PhhQSsY90tbEtUyMj/IQqsLwIRZa4ctjABh3Bz0KCh9OXUZ7Yk/d9hr45Q== +"@nomicfoundation/hardhat-vendored@^3.0.1": + version "3.0.1" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-vendored/-/hardhat-vendored-3.0.1.tgz" + integrity sha512-jBOAqmEAMJ8zdfiQmTLV+c0IaSyySqkDSJ9spTy8Ts/m/mO8w364TClyfn+p4ZpxBjyX4LMa3NfC402hoDtwCg== + +"@nomicfoundation/hardhat-verify@^3.0.0", "@nomicfoundation/hardhat-verify@^3.0.8": + version "3.0.9" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-3.0.9.tgz" + integrity sha512-iBvfTHQO37UEJ4ogmWWhKo8zAPRo1I2tHjcFhypjq4gwSz7wH3L8vZ1t7/8QJDqmEdI4je1KKdxkvGWXCQW3Xw== + dependencies: + "@ethersproject/abi" "^5.8.0" + "@nomicfoundation/hardhat-errors" "^3.0.3" + "@nomicfoundation/hardhat-utils" "^3.0.5" + "@nomicfoundation/hardhat-zod-utils" "^3.0.0" + cbor2 "^1.9.0" + chalk "^5.3.0" + debug "^4.3.2" + semver "^7.6.3" + zod "^3.23.8" + +"@nomicfoundation/hardhat-zod-utils@^3.0.0", "@nomicfoundation/hardhat-zod-utils@^3.0.1": + version "3.0.1" + resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-zod-utils/-/hardhat-zod-utils-3.0.1.tgz" + integrity sha512-I6/pyYiS9p2lLkzQuedr1ScMocH+ew8l233xTi+LP92gjEiviJDxselpkzgU01MUM0t6BPpfP8yMO958LDEJVg== dependencies: - ethereumjs-util "^7.1.4" + "@nomicfoundation/hardhat-errors" "^3.0.0" + "@nomicfoundation/hardhat-utils" "^3.0.2" -"@nomicfoundation/hardhat-toolbox@^2.0.2": - version "2.0.2" - resolved "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox/-/hardhat-toolbox-2.0.2.tgz" - integrity sha512-vnN1AzxbvpSx9pfdRHbUzTRIXpMLPXnUlkW855VaDk6N1pwRaQ2gNzEmFAABk4lWf11E00PKwFd/q27HuwYrYg== +"@nomicfoundation/ignition-core@^3.0.0", "@nomicfoundation/ignition-core@^3.0.7": + version "3.0.7" + resolved "https://registry.npmjs.org/@nomicfoundation/ignition-core/-/ignition-core-3.0.7.tgz" + integrity sha512-zlwXshSZIQQ4LfZBnirETQ/eNfEcxk9sRkPCYoeaGBEC8QPtt7KBj+rP7YYWM+IPVQNU4OjIVfQs004unpXB4w== + dependencies: + "@ethersproject/address" "5.6.1" + "@nomicfoundation/hardhat-errors" "^3.0.2" + "@nomicfoundation/hardhat-utils" "^3.0.6" + "@nomicfoundation/solidity-analyzer" "^0.1.1" + cbor2 "^1.9.0" + debug "^4.3.2" + ethers "^6.14.0" + immer "10.0.2" + lodash-es "4.17.21" + ndjson "2.0.0" + +"@nomicfoundation/ignition-ui@^3.0.7": + version "3.0.7" + resolved "https://registry.npmjs.org/@nomicfoundation/ignition-ui/-/ignition-ui-3.0.7.tgz" + integrity sha512-K7bL7V1cEh7nccAiWD1L15QdtNiPoM37IJdvBhgxV4sa25//r9yIxHf/DHI52qxQXqQuXKWdiBZBcbldtStM1Q== "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1": version "0.1.1" resolved "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-arm64/-/solidity-analyzer-darwin-arm64-0.1.1.tgz" integrity sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w== -"@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1": - version "0.1.1" - resolved "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.1.tgz" - integrity sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA== - -"@nomicfoundation/solidity-analyzer@^0.1.0": +"@nomicfoundation/solidity-analyzer@^0.1.1": version "0.1.1" resolved "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.1.tgz" integrity sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg== @@ -1043,70 +1036,15 @@ "@nomicfoundation/solidity-analyzer-win32-ia32-msvc" "0.1.1" "@nomicfoundation/solidity-analyzer-win32-x64-msvc" "0.1.1" -"@nomiclabs/hardhat-ethers@^2.0.0", "@nomiclabs/hardhat-ethers@^2.2.3": - version "2.2.3" - resolved "https://registry.npmjs.org/@nomiclabs/hardhat-ethers/-/hardhat-ethers-2.2.3.tgz" - integrity sha512-YhzPdzb612X591FOe68q+qXVXGG2ANZRvDo0RRUtimev85rCrAlv/TLMEZw5c+kq9AbzocLTVX/h2jVIFPL9Xg== - -"@nomiclabs/hardhat-etherscan@^3.0.0", "@nomiclabs/hardhat-etherscan@^3.1.0", "@nomiclabs/hardhat-etherscan@^3.1.7": - version "3.1.7" - resolved "https://registry.npmjs.org/@nomiclabs/hardhat-etherscan/-/hardhat-etherscan-3.1.7.tgz" - integrity sha512-tZ3TvSgpvsQ6B6OGmo1/Au6u8BrAkvs1mIC/eURA3xgIfznUZBhmpne8hv7BXUzw9xNL3fXdpOYgOQlVMTcoHQ== - dependencies: - "@ethersproject/abi" "^5.1.2" - "@ethersproject/address" "^5.0.2" - cbor "^8.1.0" - chalk "^2.4.2" - debug "^4.1.1" - fs-extra "^7.0.1" - lodash "^4.17.11" - semver "^6.3.0" - table "^6.8.0" - undici "^5.14.0" - "@openzeppelin/contracts-upgradeable@^4.9.5": - version "4.9.5" - resolved "https://registry.npmjs.org/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-4.9.5.tgz" - integrity sha512-f7L1//4sLlflAN7fVzJLoRedrf5Na3Oal5PZfIq55NFcVZ90EpV1q5xOvL4lFvg3MNICSDr2hH0JUBxwlxcoPg== + version "4.9.6" + resolved "https://registry.npmjs.org/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-4.9.6.tgz" + integrity sha512-m4iHazOsOCv1DgM7eD7GupTJ+NFVujRZt1wzddDPSVGpWdKq1SKkla5htKG7+IS4d2XOCtzkUNwRZ7Vq5aEUMA== "@openzeppelin/contracts@^4.9.5": - version "4.9.5" - resolved "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.5.tgz" - integrity sha512-ZK+W5mVhRppff9BE6YdR8CC52C8zAvsVAiWhEtQ5+oNxFE6h1WdeWo+FJSF8KKvtxxVYZ7MTP/5KoVpAU3aSWg== - -"@openzeppelin/defender-base-client@^1.46.0": - version "1.48.0" - resolved "https://registry.npmjs.org/@openzeppelin/defender-base-client/-/defender-base-client-1.48.0.tgz" - integrity sha512-HFO87s010hRrMjyh2xYOCEAkLe21BfIbho7n5/kikA6A1ZgXi7MsEiqnQv1zP4bxMJgxGZ5b3t4tt6fWrakbag== - dependencies: - amazon-cognito-identity-js "^6.0.1" - async-retry "^1.3.3" - axios "^1.4.0" - lodash "^4.17.19" - node-fetch "^2.6.0" - -"@openzeppelin/hardhat-upgrades@^1.27.0": - version "1.28.0" - resolved "https://registry.npmjs.org/@openzeppelin/hardhat-upgrades/-/hardhat-upgrades-1.28.0.tgz" - integrity sha512-7sb/Jf+X+uIufOBnmHR0FJVWuxEs2lpxjJnLNN6eCJCP8nD0v+Ot5lTOW2Qb/GFnh+fLvJtEkhkowz4ZQ57+zQ== - dependencies: - "@openzeppelin/defender-base-client" "^1.46.0" - "@openzeppelin/platform-deploy-client" "^0.8.0" - "@openzeppelin/upgrades-core" "^1.27.0" - chalk "^4.1.0" - debug "^4.1.1" - proper-lockfile "^4.1.1" - -"@openzeppelin/platform-deploy-client@^0.8.0": - version "0.8.0" - resolved "https://registry.npmjs.org/@openzeppelin/platform-deploy-client/-/platform-deploy-client-0.8.0.tgz" - integrity sha512-POx3AsnKwKSV/ZLOU/gheksj0Lq7Is1q2F3pKmcFjGZiibf+4kjGxr4eSMrT+2qgKYZQH1ZLQZ+SkbguD8fTvA== - dependencies: - "@ethersproject/abi" "^5.6.3" - "@openzeppelin/defender-base-client" "^1.46.0" - axios "^0.21.2" - lodash "^4.17.19" - node-fetch "^2.6.0" + version "4.9.6" + resolved "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.9.6.tgz" + integrity sha512-xSmezSupL+y9VkHZJGDoCBpmnB2ogM13ccaYDWqJTfS3dbuHkgjuwDFUmaFauBCboQMGB/S5UqUl2y54X99BmA== "@openzeppelin/truffle-upgrades@^1.21.0": version "1.21.0" @@ -1119,7 +1057,7 @@ debug "^4.1.1" solidity-ast "^0.4.26" -"@openzeppelin/upgrades-core@^1.27.0", "@openzeppelin/upgrades-core@^1.30.0": +"@openzeppelin/upgrades-core@^1.30.0": version "1.33.1" resolved "https://registry.npmjs.org/@openzeppelin/upgrades-core/-/upgrades-core-1.33.1.tgz" integrity sha512-YRxIRhTY1b+j7+NUUu8Uuem5ugxKexEMVd8dBRWNgWeoN1gS1OCrhgUg0ytL+54vzQ+SGWZDfNnzjVuI1Cj1Zw== @@ -1133,6 +1071,11 @@ proper-lockfile "^4.1.1" solidity-ast "^0.4.51" +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": version "1.1.2" resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz" @@ -1187,47 +1130,47 @@ integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== "@redux-saga/core@^1.0.0": - version "1.3.0" - resolved "https://registry.npmjs.org/@redux-saga/core/-/core-1.3.0.tgz" - integrity sha512-L+i+qIGuyWn7CIg7k1MteHGfttKPmxwZR5E7OsGikCL2LzYA0RERlaUY00Y3P3ZV2EYgrsYlBrGs6cJP5OKKqA== - dependencies: - "@babel/runtime" "^7.6.3" - "@redux-saga/deferred" "^1.2.1" - "@redux-saga/delay-p" "^1.2.1" - "@redux-saga/is" "^1.1.3" - "@redux-saga/symbols" "^1.1.3" - "@redux-saga/types" "^1.2.1" + version "1.4.2" + resolved "https://registry.npmjs.org/@redux-saga/core/-/core-1.4.2.tgz" + integrity sha512-nIMLGKo6jV6Wc1sqtVQs1iqbB3Kq20udB/u9XEaZQisT6YZ0NRB8+4L6WqD/E+YziYutd27NJbG8EWUPkb7c6Q== + dependencies: + "@babel/runtime" "^7.28.4" + "@redux-saga/deferred" "^1.3.1" + "@redux-saga/delay-p" "^1.3.1" + "@redux-saga/is" "^1.2.1" + "@redux-saga/symbols" "^1.2.1" + "@redux-saga/types" "^1.3.1" typescript-tuple "^2.2.1" -"@redux-saga/deferred@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@redux-saga/deferred/-/deferred-1.2.1.tgz" - integrity sha512-cmin3IuuzMdfQjA0lG4B+jX+9HdTgHZZ+6u3jRAOwGUxy77GSlTi4Qp2d6PM1PUoTmQUR5aijlA39scWWPF31g== +"@redux-saga/deferred@^1.3.1": + version "1.3.1" + resolved "https://registry.npmjs.org/@redux-saga/deferred/-/deferred-1.3.1.tgz" + integrity sha512-0YZ4DUivWojXBqLB/TmuRRpDDz7tyq1I0AuDV7qi01XlLhM5m51W7+xYtIckH5U2cMlv9eAuicsfRAi1XHpXIg== -"@redux-saga/delay-p@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@redux-saga/delay-p/-/delay-p-1.2.1.tgz" - integrity sha512-MdiDxZdvb1m+Y0s4/hgdcAXntpUytr9g0hpcOO1XFVyyzkrDu3SKPgBFOtHn7lhu7n24ZKIAT1qtKyQjHqRd+w== +"@redux-saga/delay-p@^1.3.1": + version "1.3.1" + resolved "https://registry.npmjs.org/@redux-saga/delay-p/-/delay-p-1.3.1.tgz" + integrity sha512-597I7L5MXbD/1i3EmcaOOjL/5suxJD7p5tnbV1PiWnE28c2cYiIHqmSMK2s7us2/UrhOL2KTNBiD0qBg6KnImg== dependencies: - "@redux-saga/symbols" "^1.1.3" + "@redux-saga/symbols" "^1.2.1" -"@redux-saga/is@^1.1.3": - version "1.1.3" - resolved "https://registry.npmjs.org/@redux-saga/is/-/is-1.1.3.tgz" - integrity sha512-naXrkETG1jLRfVfhOx/ZdLj0EyAzHYbgJWkXbB3qFliPcHKiWbv/ULQryOAEKyjrhiclmr6AMdgsXFyx7/yE6Q== +"@redux-saga/is@^1.2.1": + version "1.2.1" + resolved "https://registry.npmjs.org/@redux-saga/is/-/is-1.2.1.tgz" + integrity sha512-x3aWtX3GmQfEvn8dh0ovPbsXgK9JjpiR24wKztpGbZP8JZUWWvUgKrvnWZ/T/4iphOBftyVc9VrIwhAnsM+OFA== dependencies: - "@redux-saga/symbols" "^1.1.3" - "@redux-saga/types" "^1.2.1" - -"@redux-saga/symbols@^1.1.3": - version "1.1.3" - resolved "https://registry.npmjs.org/@redux-saga/symbols/-/symbols-1.1.3.tgz" - integrity sha512-hCx6ZvU4QAEUojETnX8EVg4ubNLBFl1Lps4j2tX7o45x/2qg37m3c6v+kSp8xjDJY+2tJw4QB3j8o8dsl1FDXg== + "@redux-saga/symbols" "^1.2.1" + "@redux-saga/types" "^1.3.1" -"@redux-saga/types@^1.2.1": +"@redux-saga/symbols@^1.2.1": version "1.2.1" - resolved "https://registry.npmjs.org/@redux-saga/types/-/types-1.2.1.tgz" - integrity sha512-1dgmkh+3so0+LlBWRhGA33ua4MYr7tUOj+a9Si28vUi0IUFNbff1T3sgpeDJI/LaC75bBYnQ0A3wXjn0OrRNBA== + resolved "https://registry.npmjs.org/@redux-saga/symbols/-/symbols-1.2.1.tgz" + integrity sha512-3dh+uDvpBXi7EUp/eO+N7eFM4xKaU4yuGBXc50KnZGzIrR/vlvkTFQsX13zsY8PB6sCFYAgROfPSRUj8331QSA== + +"@redux-saga/types@^1.3.1": + version "1.3.1" + resolved "https://registry.npmjs.org/@redux-saga/types/-/types-1.3.1.tgz" + integrity sha512-YRCrJdhQLobGIQ8Cj1sta3nn6DrZDTSUnrIYhS2e5V590BmfVDleKoAquclAiKSBKWJwmuXTb+b4BL6rSHnahw== "@rushstack/node-core-library@3.45.1": version "3.45.1" @@ -1262,131 +1205,54 @@ colors "~1.2.1" string-argv "~0.3.1" -"@scure/base@~1.1.0", "@scure/base@~1.1.4": - version "1.1.5" - resolved "https://registry.npmjs.org/@scure/base/-/base-1.1.5.tgz" - integrity sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ== +"@scure/base@~1.1.6": + version "1.1.9" + resolved "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz" + integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== -"@scure/bip32@1.1.5": - version "1.1.5" - resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.5.tgz" - integrity sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw== - dependencies: - "@noble/hashes" "~1.2.0" - "@noble/secp256k1" "~1.7.0" - "@scure/base" "~1.1.0" +"@scure/base@~1.2.5": + version "1.2.6" + resolved "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz" + integrity sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg== -"@scure/bip32@1.3.3": - version "1.3.3" - resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.3.tgz" - integrity sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ== +"@scure/bip32@1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz" + integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg== dependencies: - "@noble/curves" "~1.3.0" - "@noble/hashes" "~1.3.2" - "@scure/base" "~1.1.4" + "@noble/curves" "~1.4.0" + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" -"@scure/bip39@1.1.1": - version "1.1.1" - resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.1.tgz" - integrity sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg== +"@scure/bip39@1.3.0": + version "1.3.0" + resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz" + integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ== dependencies: - "@noble/hashes" "~1.2.0" - "@scure/base" "~1.1.0" + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" -"@scure/bip39@1.2.2": - version "1.2.2" - resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.2.tgz" - integrity sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA== - dependencies: - "@noble/hashes" "~1.3.2" - "@scure/base" "~1.1.4" - -"@sentry/core@5.30.0": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/core/-/core-5.30.0.tgz" - integrity sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg== - dependencies: - "@sentry/hub" "5.30.0" - "@sentry/minimal" "5.30.0" - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - tslib "^1.9.3" - -"@sentry/hub@5.30.0": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/hub/-/hub-5.30.0.tgz" - integrity sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ== - dependencies: - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - tslib "^1.9.3" - -"@sentry/minimal@5.30.0": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.30.0.tgz" - integrity sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw== - dependencies: - "@sentry/hub" "5.30.0" - "@sentry/types" "5.30.0" - tslib "^1.9.3" - -"@sentry/node@^5.18.1": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/node/-/node-5.30.0.tgz" - integrity sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg== - dependencies: - "@sentry/core" "5.30.0" - "@sentry/hub" "5.30.0" - "@sentry/tracing" "5.30.0" - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - cookie "^0.4.1" - https-proxy-agent "^5.0.0" - lru_map "^0.3.3" - tslib "^1.9.3" - -"@sentry/tracing@5.30.0": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.30.0.tgz" - integrity sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw== - dependencies: - "@sentry/hub" "5.30.0" - "@sentry/minimal" "5.30.0" - "@sentry/types" "5.30.0" - "@sentry/utils" "5.30.0" - tslib "^1.9.3" - -"@sentry/types@5.30.0": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/types/-/types-5.30.0.tgz" - integrity sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw== - -"@sentry/utils@5.30.0": - version "5.30.0" - resolved "https://registry.npmjs.org/@sentry/utils/-/utils-5.30.0.tgz" - integrity sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww== - dependencies: - "@sentry/types" "5.30.0" - tslib "^1.9.3" +"@sentry/core@^9.4.0": + version "9.47.1" + resolved "https://registry.npmjs.org/@sentry/core/-/core-9.47.1.tgz" + integrity sha512-KX62+qIt4xgy8eHKHiikfhz2p5fOciXd0Cl+dNzhgPFq8klq4MGMNaf148GB3M/vBqP4nw/eFvRMAayFCgdRQw== "@sindresorhus/is@^4.0.0", "@sindresorhus/is@^4.6.0": version "4.6.0" resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== -"@smithy/types@^2.1.0": - version "2.1.0" - resolved "https://registry.npmjs.org/@smithy/types/-/types-2.1.0.tgz" - integrity sha512-KLsCsqxX0j2l99iP8s0f7LBlcsp7a7ceXGn0LPYPyVOsqmIKvSaPQajq0YevlL4T9Bm+DtcyXfBTbtBcLX1I7A== +"@streamparser/json-node@^0.0.22": + version "0.0.22" + resolved "https://registry.npmjs.org/@streamparser/json-node/-/json-node-0.0.22.tgz" + integrity sha512-sJT2ptNRwqB1lIsQrQlCoWk5rF4tif9wDh+7yluAGijJamAhrHGYpFB/Zg3hJeceoZypi74ftXk8DHzwYpbZSg== dependencies: - tslib "^2.5.0" + "@streamparser/json" "^0.0.22" -"@solidity-parser/parser@^0.14.0", "@solidity-parser/parser@^0.14.1": - version "0.14.5" - resolved "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.5.tgz" - integrity sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg== - dependencies: - antlr4ts "^0.5.0-alpha.4" +"@streamparser/json@^0.0.22": + version "0.0.22" + resolved "https://registry.npmjs.org/@streamparser/json/-/json-0.0.22.tgz" + integrity sha512-b6gTSBjJ8G8SuO3Gbbj+zXbVx8NSs1EbpbMKpzGLWMdkR+98McH9bEjSz3+0mPJf68c5nxa3CrJHp5EQNXM6zQ== "@szmarczak/http-timer@^4.0.5": version "4.0.6" @@ -1698,21 +1564,14 @@ resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz" integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== -"@typechain/ethers-v5@^10.1.0", "@typechain/ethers-v5@^10.2.0": - version "10.2.0" - resolved "https://registry.npmjs.org/@typechain/ethers-v5/-/ethers-v5-10.2.0.tgz" - integrity sha512-ikaq0N/w9fABM+G01OFmU3U3dNnyRwEahkdvi9mqy1a3XwKiPZaF/lu54OcNaEWnpvEYyhhS0N7buCtLQqC92w== +"@typechain/ethers-v6@^0.5.0": + version "0.5.1" + resolved "https://registry.npmjs.org/@typechain/ethers-v6/-/ethers-v6-0.5.1.tgz" + integrity sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA== dependencies: lodash "^4.17.15" ts-essentials "^7.0.1" -"@typechain/hardhat@^6.1.2", "@typechain/hardhat@^6.1.5": - version "6.1.5" - resolved "https://registry.npmjs.org/@typechain/hardhat/-/hardhat-6.1.5.tgz" - integrity sha512-lg7LW4qDZpxFMknp3Xool61Fg6Lays8F8TXdFGBG+MxyYcYU5795P1U2XdStuzGq9S2Dzdgh+1jGww9wvZ6r4Q== - dependencies: - fs-extra "^9.1.0" - "@types/accepts@^1.3.5": version "1.3.7" resolved "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.7.tgz" @@ -1725,13 +1584,6 @@ resolved "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz" integrity sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA== -"@types/bn.js@^4.11.3": - version "4.11.6" - resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz" - integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== - dependencies: - "@types/node" "*" - "@types/bn.js@^5.1.0", "@types/bn.js@^5.1.1": version "5.1.1" resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz" @@ -1740,9 +1592,9 @@ "@types/node" "*" "@types/body-parser@*": - version "1.19.5" - resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz" - integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + version "1.19.6" + resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz" + integrity sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g== dependencies: "@types/connect" "*" "@types/node" "*" @@ -1765,24 +1617,20 @@ "@types/node" "*" "@types/responselike" "^1.0.0" -"@types/chai-as-promised@^7.1.3": - version "7.1.5" - resolved "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.5.tgz" - integrity sha512-jStwss93SITGBwt/niYrkf2C+/1KTeZCZl1LaeezTlqppAKeoQC7jxyqYuP72sxBGKCIbw7oHgbYssIRzT5FCQ== +"@types/chai-as-promised@^8.0.1": + version "8.0.2" + resolved "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-8.0.2.tgz" + integrity sha512-meQ1wDr1K5KRCSvG2lX7n7/5wf70BeptTKst0axGvnN6zqaVpRqegoIbugiAPSqOW9K9aL8gDVrm7a2LXOtn2Q== dependencies: "@types/chai" "*" -"@types/chai@*", "@types/chai@^4.2.0": - version "4.3.4" - resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.4.tgz" - integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw== - -"@types/concat-stream@^1.6.0": - version "1.6.1" - resolved "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz" - integrity sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA== +"@types/chai@*", "@types/chai@^5.2.3": + version "5.2.3" + resolved "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz" + integrity sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA== dependencies: - "@types/node" "*" + "@types/deep-eql" "*" + assertion-error "^2.0.1" "@types/connect@*": version "3.4.38" @@ -1796,6 +1644,11 @@ resolved "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz" integrity sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw== +"@types/deep-eql@*": + version "4.0.2" + resolved "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz" + integrity sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== + "@types/eslint-scope@^3.7.0": version "3.7.4" resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz" @@ -1818,9 +1671,9 @@ integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== "@types/express-serve-static-core@^4.17.18": - version "4.19.0" - resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz" - integrity sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ== + version "4.19.8" + resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz" + integrity sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA== dependencies: "@types/node" "*" "@types/qs" "*" @@ -1846,30 +1699,15 @@ "@types/qs" "*" "@types/serve-static" "*" -"@types/form-data@0.0.33": - version "0.0.33" - resolved "https://registry.npmjs.org/@types/form-data/-/form-data-0.0.33.tgz" - integrity sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw== - dependencies: - "@types/node" "*" - -"@types/glob@^7.1.1": - version "7.2.0" - resolved "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz" - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== - dependencies: - "@types/minimatch" "*" - "@types/node" "*" - "@types/http-cache-semantics@*": version "4.0.4" resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz" integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== "@types/http-errors@*": - version "2.0.4" - resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz" - integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + version "2.0.5" + resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz" + integrity sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg== "@types/json-schema@*", "@types/json-schema@^7.0.8": version "7.0.11" @@ -1888,40 +1726,22 @@ resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz" integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== -"@types/lru-cache@^5.1.0": - version "5.1.1" - resolved "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz" - integrity sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw== - "@types/lru-cache@5.1.1": version "5.1.1" resolved "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz" integrity sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw== -"@types/mime@^1": - version "1.3.5" - resolved "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz" - integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== - -"@types/minimatch@*": - version "5.1.2" - resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz" - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== - -"@types/mocha@>=9.1.0": - version "10.0.1" - resolved "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.1.tgz" - integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q== - -"@types/node@*", "@types/node@>=12.0.0", "@types/node@18.15.13": - version "18.15.13" - resolved "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz" - integrity sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q== +"@types/mocha@^10.0.10": + version "10.0.10" + resolved "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.10.tgz" + integrity sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q== -"@types/node@^10.0.3": - version "10.17.60" - resolved "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz" - integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== +"@types/node@*", "@types/node@22.7.5": + version "22.7.5" + resolved "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz" + integrity sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ== + dependencies: + undici-types "~6.19.2" "@types/node@^10.1.0": version "10.17.60" @@ -1933,11 +1753,6 @@ resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz" integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== -"@types/node@^8.0.0": - version "8.10.66" - resolved "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz" - integrity sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw== - "@types/node@12.20.24": version "12.20.24" resolved "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz" @@ -1955,7 +1770,7 @@ resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz" integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg== -"@types/qs@*", "@types/qs@^6.2.31", "@types/qs@^6.9.7": +"@types/qs@*": version "6.9.7" resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz" integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== @@ -1965,14 +1780,6 @@ resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz" integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== -"@types/readable-stream@^2.3.13": - version "2.3.15" - resolved "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.15.tgz" - integrity sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ== - dependencies: - "@types/node" "*" - safe-buffer "~5.1.1" - "@types/responselike@^1.0.0": version "1.0.3" resolved "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz" @@ -1993,21 +1800,19 @@ integrity sha512-giB9gzDeiCeloIXDgzFBCgjj1k4WxcDrZtGl6h1IqmUPlxF+Nx8Ve+96QCyDZ/HseB/uvDsKbpib9hU5cU53pw== "@types/send@*": - version "0.17.4" - resolved "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz" - integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + version "1.2.1" + resolved "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz" + integrity sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ== dependencies: - "@types/mime" "^1" "@types/node" "*" "@types/serve-static@*": - version "1.15.7" - resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz" - integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== + version "2.2.0" + resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz" + integrity sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ== dependencies: "@types/http-errors" "*" "@types/node" "*" - "@types/send" "*" "@ungap/promise-all-settled@1.1.2": version "1.1.2" @@ -2162,12 +1967,7 @@ resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== -abbrev@1, abbrev@1.0.x: - version "1.0.9" - resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz" - integrity sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q== - -abort-controller@^3.0.0, abort-controller@3.0.0: +abort-controller@3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz" integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== @@ -2179,19 +1979,6 @@ abortcontroller-polyfill@^1.7.3: resolved "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz" integrity sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ== -abstract-level@^1.0.0, abstract-level@^1.0.2, abstract-level@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz" - integrity sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA== - dependencies: - buffer "^6.0.3" - catering "^2.1.0" - is-buffer "^2.0.5" - level-supports "^4.0.0" - level-transcoder "^1.0.1" - module-error "^1.0.1" - queue-microtask "^1.2.3" - abstract-level@1.0.3: version "1.0.3" resolved "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz" @@ -2285,11 +2072,6 @@ acorn@^8.5.0: resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz" integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== -address@^1.0.1: - version "1.2.2" - resolved "https://registry.npmjs.org/address/-/address-1.2.2.tgz" - integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== - adm-zip@^0.4.16: version "0.4.16" resolved "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz" @@ -2305,21 +2087,6 @@ aes-js@4.0.0-beta.5: resolved "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz" integrity sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q== -agent-base@6: - version "6.0.2" - resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - ajv-formats@^2.1.1: version "2.1.1" resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" @@ -2353,73 +2120,35 @@ ajv@^6.12.5, ajv@~6.12.6: uri-js "^4.2.2" ajv@^8.0.0: - version "8.13.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz" - integrity sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA== + version "8.17.1" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" json-schema-traverse "^1.0.0" require-from-string "^2.0.2" - uri-js "^4.4.1" -ajv@^8.0.1: - version "8.12.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz" - integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== +ajv@^8.6.3: + version "8.17.1" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: - fast-deep-equal "^3.1.1" + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" json-schema-traverse "^1.0.0" require-from-string "^2.0.2" - uri-js "^4.2.2" - -ajv@^8.6.3: - version "8.13.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz" - integrity sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA== - dependencies: - fast-deep-equal "^3.1.3" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.4.1" - -amazon-cognito-identity-js@^6.0.1: - version "6.3.2" - resolved "https://registry.npmjs.org/amazon-cognito-identity-js/-/amazon-cognito-identity-js-6.3.2.tgz" - integrity sha512-g1MqdAuvIsUtzI4b9gqusk/J5hH93XVlTV4/pjWb2cKnsWJfyMo/52EKWJL5dI2cp37dZhXt/xS1l9me42ENDg== - dependencies: - "@aws-crypto/sha256-js" "1.2.2" - buffer "4.9.2" - fast-base64-decode "^1.0.0" - isomorphic-unfetch "^3.0.0" - js-cookie "^2.2.1" - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz" - integrity sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg== ansi-colors@^4.1.1: version "4.1.3" resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz" integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== -ansi-colors@3.2.3: - version "3.2.3" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz" - integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== - ansi-colors@4.1.1: version "4.1.1" resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== -ansi-escapes@^4.3.0: - version "4.3.2" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" @@ -2430,17 +2159,17 @@ ansi-regex@^3.0.0: resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz" integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== -ansi-regex@^4.1.0: - version "4.1.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz" - integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== - ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^3.2.0, ansi-styles@^3.2.1: +ansi-regex@^6.0.1: + version "6.2.2" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz" + integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== + +ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -2454,12 +2183,12 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -antlr4ts@^0.5.0-alpha.4: - version "0.5.0-alpha.4" - resolved "https://registry.npmjs.org/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz" - integrity sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ== +ansi-styles@^6.1.0: + version "6.2.3" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz" + integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== -anymatch@~3.1.1, anymatch@~3.1.2: +anymatch@~3.1.2: version "3.1.3" resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== @@ -2577,13 +2306,6 @@ arg@^4.1.0: resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz" integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - argparse@^2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" @@ -2629,16 +2351,6 @@ array-flatten@1.1.1: resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array-uniq@1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" - integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== - array.prototype.findlast@^1.2.2: version "1.2.5" resolved "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz" @@ -2651,17 +2363,6 @@ array.prototype.findlast@^1.2.2: es-object-atoms "^1.0.0" es-shim-unscopables "^1.0.2" -array.prototype.reduce@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz" - integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.7" - arraybuffer.prototype.slice@^1.0.3: version "1.0.3" resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz" @@ -2676,11 +2377,6 @@ arraybuffer.prototype.slice@^1.0.3: is-array-buffer "^3.0.4" is-shared-array-buffer "^1.0.2" -asap@~2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - asn1.js@^5.2.0: version "5.4.1" resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz" @@ -2703,15 +2399,10 @@ assert-plus@^1.0.0, assert-plus@1.0.0: resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== +assertion-error@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz" + integrity sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA== async-eventemitter@0.2.4: version "0.2.4" @@ -2725,7 +2416,7 @@ async-limiter@~1.0.0: resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -async-retry@^1.2.1, async-retry@^1.3.3: +async-retry@^1.2.1: version "1.3.3" resolved "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz" integrity sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw== @@ -2739,11 +2430,6 @@ async@^2.4.0: dependencies: lodash "^4.17.14" -async@1.x: - version "1.5.2" - resolved "https://registry.npmjs.org/async/-/async-1.5.2.tgz" - integrity sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w== - asynckit@^0.4.0: version "0.4.0" resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" @@ -2781,28 +2467,16 @@ aws4@^1.8.0: resolved "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz" integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== -axios@^0.21.1: - version "0.21.4" - resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== - dependencies: - follow-redirects "^1.14.0" - -axios@^0.21.2: - version "0.21.4" - resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== - dependencies: - follow-redirects "^1.14.0" - -axios@^0.26.1: - version "0.26.1" - resolved "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz" - integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== +axios@^1.8.4: + version "1.13.4" + resolved "https://registry.npmjs.org/axios/-/axios-1.13.4.tgz" + integrity sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg== dependencies: - follow-redirects "^1.14.8" + follow-redirects "^1.15.6" + form-data "^4.0.4" + proxy-from-env "^1.1.0" -axios@^1.4.0, axios@1.5.0: +axios@1.5.0: version "1.5.0" resolved "https://registry.npmjs.org/axios/-/axios-1.5.0.tgz" integrity sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ== @@ -2817,13 +2491,13 @@ balanced-match@^1.0.0: integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base-x@^3.0.2, base-x@^3.0.8: - version "3.0.9" - resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz" - integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + version "3.0.11" + resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.11.tgz" + integrity sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA== dependencies: safe-buffer "^5.0.1" -base64-js@^1.0.2, base64-js@^1.3.1: +base64-js@^1.3.1: version "1.5.1" resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -2855,18 +2529,6 @@ big.js@^6.0.3: resolved "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz" integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== -bigint-crypto-utils@^3.0.23: - version "3.1.8" - resolved "https://registry.npmjs.org/bigint-crypto-utils/-/bigint-crypto-utils-3.1.8.tgz" - integrity sha512-+VMV9Laq8pXLBKKKK49nOoq9bfR3j7NNQAtbA617a4nw9bVLo8rsqkKMBgM2AJWlNX9fEIyYaYX+d0laqYV4tw== - dependencies: - bigint-mod-arith "^3.1.0" - -bigint-mod-arith@^3.1.0: - version "3.1.2" - resolved "https://registry.npmjs.org/bigint-mod-arith/-/bigint-mod-arith-3.1.2.tgz" - integrity sha512-nx8J8bBeiRR+NlsROFH9jHswW5HO8mgfOSqW0AmjicMMvaONDa8AO+5ViKDUUNytBPWiwfvZP4/Bj4Y3lUfvgQ== - bignumber.js@^7.2.1: version "7.2.1" resolved "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz" @@ -2902,12 +2564,12 @@ bn.js@^4.1.0: resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== -bn.js@^4.11.0, bn.js@^4.11.8: +bn.js@^4.11.6: version "4.12.0" resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== -bn.js@^4.11.6: +bn.js@^4.11.8: version "4.12.0" resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== @@ -2932,23 +2594,23 @@ bn.js@4.11.6: resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz" integrity sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA== -body-parser@^1.16.0, body-parser@^1.19.0, body-parser@1.20.2: - version "1.20.2" - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz" - integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== +body-parser@^1.16.0, body-parser@^1.19.0, body-parser@~1.20.3: + version "1.20.4" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz" + integrity sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA== dependencies: - bytes "3.1.2" + bytes "~3.1.2" content-type "~1.0.5" debug "2.6.9" depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.2" + destroy "~1.2.0" + http-errors "~2.0.1" + iconv-lite "~0.4.24" + on-finished "~2.4.1" + qs "~6.14.0" + raw-body "~2.5.3" type-is "~1.6.18" - unpipe "1.0.0" + unpipe "~1.0.0" boolbase@^1.0.0: version "1.0.0" @@ -2964,19 +2626,26 @@ brace-expansion@^1.1.7: concat-map "0.0.1" brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + version "2.0.2" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" + integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== dependencies: balanced-match "^1.0.0" -braces@^3.0.2, braces@~3.0.2: +braces@^3.0.2: version "3.0.2" resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" +braces@~3.0.2: + version "3.0.3" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + brorand@^1.0.1: version "1.1.0" resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" @@ -2987,17 +2656,7 @@ brorand@^1.1.0: resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== -browser-level@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/browser-level/-/browser-level-1.0.1.tgz" - integrity sha512-XECYKJ+Dbzw0lbydyQuJzwNXtOpbMSq737qxJN11sIRTErOMShvDpbzTlgju7orJKvx4epULolZAuJGLzCmWRQ== - dependencies: - abstract-level "^1.0.2" - catering "^2.1.1" - module-error "^1.0.2" - run-parallel-limit "^1.1.0" - -browser-stdout@1.3.1: +browser-stdout@^1.3.1, browser-stdout@1.3.1: version "1.3.1" resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== @@ -3094,7 +2753,12 @@ bs58check@^2.1.2: create-hash "^1.1.0" safe-buffer "^5.1.2" -buffer-from@^1.0.0, buffer-from@1.1.2: +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-from@1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== @@ -3109,15 +2773,7 @@ buffer-xor@^1.0.3: resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz" integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== -buffer@^5.0.5: - version "5.7.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -buffer@^5.5.0, buffer@^5.6.0: +buffer@^5.0.5, buffer@^5.5.0, buffer@^5.6.0: version "5.7.1" resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -3133,15 +2789,6 @@ buffer@^6.0.3: base64-js "^1.3.1" ieee754 "^1.2.1" -buffer@4.9.2: - version "4.9.2" - resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz" - integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - buffer@6.0.3: version "6.0.3" resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz" @@ -3176,14 +2823,7 @@ builtin-status-codes@^3.0.0: resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz" integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== -busboy@^1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz" - integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== - dependencies: - streamsearch "^1.1.0" - -bytes@3.1.2: +bytes@~3.1.2: version "3.1.2" resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== @@ -3211,16 +2851,39 @@ cacheable-request@^7.0.2: normalize-url "^6.0.1" responselike "^2.0.0" -call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== dependencies: - es-define-property "^1.0.0" es-errors "^1.3.0" function-bind "^1.1.2" + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" get-intrinsic "^1.2.4" - set-function-length "^1.2.1" + set-function-length "^1.2.2" + +call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4: + version "1.0.4" + resolved "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz" + integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== + dependencies: + call-bind-apply-helpers "^1.0.2" + get-intrinsic "^1.3.0" camel-case@^3.0.0: version "3.0.0" @@ -3240,11 +2903,6 @@ camelcase@^4.1.0: resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz" integrity sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw== -camelcase@^5.0.0: - version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - camelcase@^6.0.0: version "6.3.0" resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" @@ -3255,17 +2913,12 @@ caniuse-lite@^1.0.30001400: resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001435.tgz" integrity sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA== -case@^1.6.3: - version "1.6.3" - resolved "https://registry.npmjs.org/case/-/case-1.6.3.tgz" - integrity sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== - -caseless@^0.12.0, caseless@~0.12.0: +caseless@~0.12.0: version "0.12.0" resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== -catering@^2.0.0, catering@^2.1.0, catering@^2.1.1: +catering@^2.0.0, catering@^2.1.0: version "2.1.1" resolved "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz" integrity sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w== @@ -3278,13 +2931,6 @@ cbor@^5.2.0: bignumber.js "^9.0.1" nofilter "^1.0.4" -cbor@^8.1.0: - version "8.1.0" - resolved "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz" - integrity sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg== - dependencies: - nofilter "^3.1.0" - cbor@^9.0.0: version "9.0.1" resolved "https://registry.npmjs.org/cbor/-/cbor-9.0.1.tgz" @@ -3292,27 +2938,33 @@ cbor@^9.0.0: dependencies: nofilter "^3.1.0" -chai-as-promised@^7.1.1: - version "7.1.1" - resolved "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz" - integrity sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA== +cbor2@^1.9.0: + version "1.12.0" + resolved "https://registry.npmjs.org/cbor2/-/cbor2-1.12.0.tgz" + integrity sha512-3Cco8XQhi27DogSp9Ri6LYNZLi/TBY/JVnDe+mj06NkBjW/ZYOtekaEU4wZ4xcRMNrFkDv8KNtOAqHyDfz3lYg== + +chai-as-promised@^8.0.0: + version "8.0.2" + resolved "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-8.0.2.tgz" + integrity sha512-1GadL+sEJVLzDjcawPM4kjfnL+p/9vrxiEUonowKOAzvVg0PixJUdtuDzdkDeQhK3zfOE76GqGkZIQ7/Adcrqw== dependencies: - check-error "^1.0.2" + check-error "^2.1.1" -chai@^4.2.0, chai@^4.3.7, "chai@>= 2.1.2 < 5": - version "4.3.7" - resolved "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz" - integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A== +chai@^5.1.2, chai@^6.2.2, "chai@>= 2.1.2 < 7": + version "6.2.2" + resolved "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz" + integrity sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg== + +chalk@^2.3.2: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: - assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^4.1.2" - get-func-name "^2.0.0" - loupe "^2.3.1" - pathval "^1.1.1" - type-detect "^4.0.5" + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" -chalk@^2.3.2, chalk@^2.4.2: +chalk@^2.4.2: version "2.4.2" resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -3337,6 +2989,11 @@ chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^5.3.0: + version "5.6.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz" + integrity sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA== + change-case@3.0.2: version "3.0.2" resolved "https://registry.npmjs.org/change-case/-/change-case-3.0.2.tgz" @@ -3361,15 +3018,10 @@ change-case@3.0.2: upper-case "^1.1.1" upper-case-first "^1.1.0" -"charenc@>= 0.0.1": - version "0.0.2" - resolved "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz" - integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== - -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz" - integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== +check-error@^2.1.1: + version "2.1.3" + resolved "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz" + integrity sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA== cheerio-select@^2.1.0: version "2.1.0" @@ -3396,10 +3048,17 @@ cheerio@^1.0.0-rc.2: parse5 "^7.0.0" parse5-htmlparser2-tree-adapter "^7.0.0" -chokidar@^3.4.0, chokidar@^3.5.2, chokidar@3.5.3: - version "3.5.3" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== +chokidar@^4.0.1, chokidar@^4.0.3: + version "4.0.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz" + integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== + dependencies: + readdirp "^4.0.1" + +chokidar@3.5.2: + version "3.5.2" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== dependencies: anymatch "~3.1.2" braces "~3.0.2" @@ -3411,25 +3070,10 @@ chokidar@^3.4.0, chokidar@^3.5.2, chokidar@3.5.3: optionalDependencies: fsevents "~2.3.2" -chokidar@3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.3.0.tgz" - integrity sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A== - dependencies: - anymatch "~3.1.1" - braces "~3.0.2" - glob-parent "~5.1.0" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.2.0" - optionalDependencies: - fsevents "~2.1.1" - -chokidar@3.5.2: - version "3.5.2" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz" - integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== +chokidar@3.5.3: + version "3.5.3" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== dependencies: anymatch "~3.1.2" braces "~3.0.2" @@ -3451,11 +3095,6 @@ chrome-trace-event@^1.0.2: resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - cids@^0.7.1: version "0.7.5" resolved "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz" @@ -3468,34 +3107,19 @@ cids@^0.7.1: multihashes "~0.4.15" cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + version "1.0.7" + resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.7.tgz" + integrity sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA== dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" + inherits "^2.0.4" + safe-buffer "^5.2.1" + to-buffer "^1.2.2" class-is@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz" integrity sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw== -classic-level@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/classic-level/-/classic-level-1.2.0.tgz" - integrity sha512-qw5B31ANxSluWz9xBzklRWTUAJ1SXIdaVKTVS7HcTGKOAmExx65Wo5BUICW+YGORe2FOUaDghoI9ZDxj82QcFg== - dependencies: - abstract-level "^1.0.2" - catering "^2.1.0" - module-error "^1.0.1" - napi-macros "~2.0.0" - node-gyp-build "^4.3.0" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - cli-cursor@^3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" @@ -3503,16 +3127,6 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" -cli-table3@^0.5.0: - version "0.5.1" - resolved "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz" - integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw== - dependencies: - object-assign "^4.1.0" - string-width "^2.1.1" - optionalDependencies: - colors "^1.1.2" - cliui@^3.2.0: version "3.2.0" resolved "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz" @@ -3522,15 +3136,6 @@ cliui@^3.2.0: strip-ansi "^3.0.1" wrap-ansi "^2.0.0" -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" - cliui@^7.0.2: version "7.0.4" resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" @@ -3540,6 +3145,15 @@ cliui@^7.0.2: strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + clone-buffer@1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz" @@ -3595,16 +3209,16 @@ colorette@^2.0.14: resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz" integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== -colors@^1.1.2, colors@1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - colors@~1.2.1: version "1.2.5" resolved "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz" integrity sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg== +colors@1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz" + integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== + combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" @@ -3612,11 +3226,6 @@ combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" -command-exists@^1.2.8: - version "1.2.9" - resolved "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz" - integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== - command-line-args@^5.1.1: version "5.2.1" resolved "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz" @@ -3647,11 +3256,6 @@ commander@^7.0.0: resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== -commander@3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz" - integrity sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow== - compare-versions@^6.0.0: version "6.1.0" resolved "https://registry.npmjs.org/compare-versions/-/compare-versions-6.1.0.tgz" @@ -3662,16 +3266,6 @@ concat-map@0.0.1: resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concat-stream@^1.6.0, concat-stream@^1.6.2: - version "1.6.2" - resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - conf@^10.1.2: version "10.2.0" resolved "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz" @@ -3696,7 +3290,7 @@ constant-case@^2.0.0: snake-case "^2.1.0" upper-case "^1.1.1" -content-disposition@0.5.4: +content-disposition@~0.5.4: version "0.5.4" resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== @@ -3717,20 +3311,15 @@ content-type@~1.0.4, content-type@~1.0.5: resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== -cookie-signature@1.0.6: +cookie-signature@~1.0.6: version "1.0.6" resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@^0.4.1: - version "0.4.2" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz" - integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== - -cookie@0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" - integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== +cookie@~0.7.1: + version "0.7.2" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz" + integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== core-util-is@~1.0.0, core-util-is@1.0.2: version "1.0.2" @@ -3802,10 +3391,14 @@ cross-spawn@^7.0.1, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -"crypt@>= 0.0.1": - version "0.0.2" - resolved "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz" - integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== +cross-spawn@^7.0.6: + version "7.0.6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" crypto-addr-codec@^0.1.7: version "0.1.8" @@ -3821,9 +3414,9 @@ crypto-addr-codec@^0.1.7: sha3 "^2.1.1" crypto-js@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz" - integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + version "4.2.0" + resolved "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz" + integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q== css-select@^5.1.0: version "5.1.0" @@ -3893,11 +3486,6 @@ dataloader@2.1.0: resolved "https://registry.npmjs.org/dataloader/-/dataloader-2.1.0.tgz" integrity sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ== -death@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/death/-/death-1.1.0.tgz" - integrity sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w== - debounce-fn@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz" @@ -3919,12 +3507,12 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@4, debug@4.3.4: - version "4.3.4" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== +debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.5: + version "4.4.3" + resolved "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz" + integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: - ms "2.1.2" + ms "^2.1.3" debug@2.6.9: version "2.6.9" @@ -3940,13 +3528,6 @@ debug@3.1.0: dependencies: ms "2.0.0" -debug@3.2.6: - version "3.2.6" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== - dependencies: - ms "^2.1.1" - debug@4.3.2: version "4.3.2" resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz" @@ -3954,12 +3535,14 @@ debug@4.3.2: dependencies: ms "2.1.2" -decamelize@^1.1.1: - version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== +debug@4.3.4: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" -decamelize@^1.2.0: +decamelize@^1.1.1: version "1.2.0" resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== @@ -3988,23 +3571,16 @@ decompress-response@^6.0.0: dependencies: mimic-response "^3.1.0" -deep-eql@^4.0.1, deep-eql@^4.1.2: - version "4.1.3" - resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz" - integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== - dependencies: - type-detect "^4.0.0" +deep-eql@^5.0.1: + version "5.0.2" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz" + integrity sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q== deep-extend@~0.6.0: version "0.6.0" resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== -deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - defer-to-connect@^2.0.0, defer-to-connect@^2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz" @@ -4027,7 +3603,7 @@ define-data-property@^1.0.1, define-data-property@^1.1.4: es-errors "^1.3.0" gopd "^1.0.1" -define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0, define-properties@^1.2.1: +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== @@ -4046,7 +3622,7 @@ delayed-stream@~1.0.0: resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -depd@2.0.0: +depd@~2.0.0, depd@2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== @@ -4059,7 +3635,7 @@ des.js@^1.0.0: inherits "^2.0.1" minimalistic-assert "^1.0.0" -destroy@1.2.0: +destroy@~1.2.0, destroy@1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== @@ -4069,23 +3645,15 @@ detect-indent@^5.0.0: resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz" integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== -detect-port@^1.3.0: - version "1.5.1" - resolved "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz" - integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== - dependencies: - address "^1.0.1" - debug "4" - diff@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + version "4.0.4" + resolved "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz" + integrity sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ== -diff@3.5.0: - version "3.5.0" - resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz" - integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== +diff@^5.2.0: + version "5.2.2" + resolved "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz" + integrity sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A== diff@5.0.0: version "5.0.0" @@ -4101,20 +3669,6 @@ diffie-hellman@^5.0.0: miller-rabin "^4.0.0" randombytes "^2.0.0" -difflib@^0.2.4: - version "0.2.4" - resolved "https://registry.npmjs.org/difflib/-/difflib-0.2.4.tgz" - integrity sha512-9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w== - dependencies: - heap ">= 0.2.0" - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - dom-serializer@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" @@ -4174,6 +3728,20 @@ double-ended-queue@2.1.0-0: resolved "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz" integrity sha512-+BNfZ+deCo8hMNpDqDnvT+c0XpJ5cUa6mqYq89bho2Ifze4URTqRkcwR399hWoTrTkbZ/XJYDgP6rc7pRgffEQ== +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz" @@ -4192,7 +3760,20 @@ electron-to-chromium@^1.4.251: resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz" integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== -elliptic@^6.4.0, elliptic@^6.5.2, elliptic@^6.5.3, elliptic@^6.5.4, elliptic@6.5.4: +elliptic@^6.4.0, elliptic@^6.5.7, elliptic@6.6.1: + version "6.6.1" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz" + integrity sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +elliptic@^6.5.3, elliptic@^6.5.4: version "6.5.4" resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== @@ -4205,40 +3786,48 @@ elliptic@^6.4.0, elliptic@^6.5.2, elliptic@^6.5.3, elliptic@^6.5.4, elliptic@6.5 minimalistic-assert "^1.0.1" minimalistic-crypto-utils "^1.0.1" -emittery@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/emittery/-/emittery-0.4.1.tgz" - integrity sha512-r4eRSeStEGf6M5SKdrQhhLK5bOwOBxQhIE3YSTnZE3GpKiLfnnhE+tPtrJE79+eDJgm39BM6LSoI8SCx4HbwlQ== - -emittery@0.10.0: +elliptic@6.5.4: + version "6.5.4" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emittery@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/emittery/-/emittery-0.4.1.tgz" + integrity sha512-r4eRSeStEGf6M5SKdrQhhLK5bOwOBxQhIE3YSTnZE3GpKiLfnnhE+tPtrJE79+eDJgm39BM6LSoI8SCx4HbwlQ== + +emittery@0.10.0: version "0.10.0" resolved "https://registry.npmjs.org/emittery/-/emittery-0.10.0.tgz" integrity sha512-AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ== -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + emojis-list@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== -encode-utf8@^1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz" - integrity sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== encoding-down@^6.3.0: version "6.3.0" @@ -4272,7 +3861,7 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.8.3: graceful-fs "^4.2.4" tapable "^2.2.0" -enquirer@^2.3.0, enquirer@^2.3.6: +enquirer@^2.3.0: version "2.3.6" resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== @@ -4308,7 +3897,7 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.20.4, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: version "1.23.3" resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz" integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== @@ -4360,17 +3949,10 @@ es-abstract@^1.20.4, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23 unbox-primitive "^1.0.2" which-typed-array "^1.1.15" -es-array-method-boxes-properly@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz" - integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== - -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" @@ -4382,21 +3964,22 @@ es-module-lexer@^0.9.0: resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz" integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== -es-object-atoms@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz" - integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== dependencies: es-errors "^1.3.0" -es-set-tostringtag@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz" - integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== +es-set-tostringtag@^2.0.3, es-set-tostringtag@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" + integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== dependencies: - get-intrinsic "^1.2.4" + es-errors "^1.3.0" + get-intrinsic "^1.2.6" has-tostringtag "^1.0.2" - hasown "^2.0.1" + hasown "^2.0.2" es-shim-unscopables@^1.0.2: version "1.0.2" @@ -4451,6 +4034,38 @@ es6-symbol@^3.1.1, es6-symbol@^3.1.3: d "^1.0.2" ext "^1.7.0" +esbuild@~0.27.0: + version "0.27.2" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz" + integrity sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw== + optionalDependencies: + "@esbuild/aix-ppc64" "0.27.2" + "@esbuild/android-arm" "0.27.2" + "@esbuild/android-arm64" "0.27.2" + "@esbuild/android-x64" "0.27.2" + "@esbuild/darwin-arm64" "0.27.2" + "@esbuild/darwin-x64" "0.27.2" + "@esbuild/freebsd-arm64" "0.27.2" + "@esbuild/freebsd-x64" "0.27.2" + "@esbuild/linux-arm" "0.27.2" + "@esbuild/linux-arm64" "0.27.2" + "@esbuild/linux-ia32" "0.27.2" + "@esbuild/linux-loong64" "0.27.2" + "@esbuild/linux-mips64el" "0.27.2" + "@esbuild/linux-ppc64" "0.27.2" + "@esbuild/linux-riscv64" "0.27.2" + "@esbuild/linux-s390x" "0.27.2" + "@esbuild/linux-x64" "0.27.2" + "@esbuild/netbsd-arm64" "0.27.2" + "@esbuild/netbsd-x64" "0.27.2" + "@esbuild/openbsd-arm64" "0.27.2" + "@esbuild/openbsd-x64" "0.27.2" + "@esbuild/openharmony-arm64" "0.27.2" + "@esbuild/sunos-x64" "0.27.2" + "@esbuild/win32-arm64" "0.27.2" + "@esbuild/win32-ia32" "0.27.2" + "@esbuild/win32-x64" "0.27.2" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" @@ -4461,28 +4076,16 @@ escape-html@~1.0.3: resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== -escape-string-regexp@^1.0.5, escape-string-regexp@1.0.5: +escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== -escape-string-regexp@4.0.0: +escape-string-regexp@^4.0.0, escape-string-regexp@4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escodegen@1.8.x: - version "1.8.1" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz" - integrity sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A== - dependencies: - esprima "^2.7.1" - estraverse "^1.9.1" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.2.0" - eslint-scope@5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" @@ -4501,16 +4104,6 @@ esniff@^2.0.1: event-emitter "^0.3.5" type "^2.7.2" -esprima@^2.7.1, esprima@2.7.x: - version "2.7.3" - resolved "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz" - integrity sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A== - -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - esrecurse@^4.3.0: version "4.3.0" resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" @@ -4518,11 +4111,6 @@ esrecurse@^4.3.0: dependencies: estraverse "^5.2.0" -estraverse@^1.9.1: - version "1.9.3" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz" - integrity sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA== - estraverse@^4.1.1: version "4.3.0" resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" @@ -4533,11 +4121,6 @@ estraverse@^5.2.0: resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - etag@~1.8.1: version "1.8.1" resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" @@ -4551,27 +4134,6 @@ eth-ens-namehash@^2.0.8, eth-ens-namehash@2.0.8: idna-uts46-hx "^2.3.1" js-sha3 "^0.5.7" -eth-gas-reporter@^0.2.25: - version "0.2.25" - resolved "https://registry.npmjs.org/eth-gas-reporter/-/eth-gas-reporter-0.2.25.tgz" - integrity sha512-1fRgyE4xUB8SoqLgN3eDfpDfwEfRxh2Sz1b7wzFbyQA+9TekMmvSjjoRu9SKcSVyK+vLkLIsVbJDsTWjw195OQ== - dependencies: - "@ethersproject/abi" "^5.0.0-beta.146" - "@solidity-parser/parser" "^0.14.0" - cli-table3 "^0.5.0" - colors "1.4.0" - ethereum-cryptography "^1.0.3" - ethers "^4.0.40" - fs-readdir-recursive "^1.1.0" - lodash "^4.17.14" - markdown-table "^1.1.3" - mocha "^7.1.1" - req-cwd "^2.0.0" - request "^2.88.0" - request-promise-native "^1.0.5" - sha1 "^1.1.1" - sync-request "^6.0.0" - eth-lib@^0.1.26: version "0.1.29" resolved "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz" @@ -4600,7 +4162,7 @@ ethereum-bloom-filters@^1.0.6: dependencies: js-sha3 "^0.8.0" -ethereum-cryptography@^0.1.3, ethereum-cryptography@0.1.3: +ethereum-cryptography@^0.1.3: version "0.1.3" resolved "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz" integrity sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ== @@ -4621,61 +4183,17 @@ ethereum-cryptography@^0.1.3, ethereum-cryptography@0.1.3: secp256k1 "^4.0.1" setimmediate "^1.0.5" -ethereum-cryptography@^1.0.3: - version "1.2.0" - resolved "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.2.0.tgz" - integrity sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw== - dependencies: - "@noble/hashes" "1.2.0" - "@noble/secp256k1" "1.7.1" - "@scure/bip32" "1.1.5" - "@scure/bip39" "1.1.1" - -ethereum-cryptography@^2.0.0: - version "2.1.3" - resolved "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.1.3.tgz" - integrity sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA== - dependencies: - "@noble/curves" "1.3.0" - "@noble/hashes" "1.3.3" - "@scure/bip32" "1.3.3" - "@scure/bip39" "1.2.2" - -ethereumjs-abi@^0.6.8: - version "0.6.8" - resolved "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz" - integrity sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA== - dependencies: - bn.js "^4.11.8" - ethereumjs-util "^6.0.0" - -ethereumjs-util@^6.0.0: - version "6.2.1" - resolved "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz" - integrity sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw== - dependencies: - "@types/bn.js" "^4.11.3" - bn.js "^4.11.0" - create-hash "^1.1.2" - elliptic "^6.5.2" - ethereum-cryptography "^0.1.3" - ethjs-util "0.1.6" - rlp "^2.2.3" - -ethereumjs-util@^6.2.1: - version "6.2.1" - resolved "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz" - integrity sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw== +ethereum-cryptography@^2.0.0, ethereum-cryptography@^2.2.1: + version "2.2.1" + resolved "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz" + integrity sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg== dependencies: - "@types/bn.js" "^4.11.3" - bn.js "^4.11.0" - create-hash "^1.1.2" - elliptic "^6.5.2" - ethereum-cryptography "^0.1.3" - ethjs-util "0.1.6" - rlp "^2.2.3" + "@noble/curves" "1.4.2" + "@noble/hashes" "1.4.0" + "@scure/bip32" "1.4.0" + "@scure/bip39" "1.3.0" -ethereumjs-util@^7.0.3, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.1, ethereumjs-util@^7.1.2, ethereumjs-util@^7.1.4, ethereumjs-util@^7.1.5: +ethereumjs-util@^7.0.3, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.1, ethereumjs-util@^7.1.2, ethereumjs-util@^7.1.5: version "7.1.5" resolved "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz" integrity sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg== @@ -4701,69 +4219,54 @@ ethers@^4.0.32: uuid "2.0.1" xmlhttprequest "1.8.0" -ethers@^4.0.40: - version "4.0.49" - resolved "https://registry.npmjs.org/ethers/-/ethers-4.0.49.tgz" - integrity sha512-kPltTvWiyu+OktYy1IStSO16i2e7cS9D9OxZ81q2UUaiNPVrm/RTcbxamCXF9VUSKzJIdJV68EAIhTEVBalRWg== - dependencies: - aes-js "3.0.0" - bn.js "^4.11.9" - elliptic "6.5.4" - hash.js "1.1.3" - js-sha3 "0.5.7" - scrypt-js "2.0.4" - setimmediate "1.0.4" - uuid "2.0.1" - xmlhttprequest "1.8.0" - -ethers@^5.0.0, ethers@^5.0.13, ethers@^5.0.5, ethers@^5.1.3, ethers@^5.4.7, ethers@^5.5.3, ethers@^5.7.0, ethers@^5.7.1, ethers@^5.7.2: - version "5.7.2" - resolved "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz" - integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg== - dependencies: - "@ethersproject/abi" "5.7.0" - "@ethersproject/abstract-provider" "5.7.0" - "@ethersproject/abstract-signer" "5.7.0" - "@ethersproject/address" "5.7.0" - "@ethersproject/base64" "5.7.0" - "@ethersproject/basex" "5.7.0" - "@ethersproject/bignumber" "5.7.0" - "@ethersproject/bytes" "5.7.0" - "@ethersproject/constants" "5.7.0" - "@ethersproject/contracts" "5.7.0" - "@ethersproject/hash" "5.7.0" - "@ethersproject/hdnode" "5.7.0" - "@ethersproject/json-wallets" "5.7.0" - "@ethersproject/keccak256" "5.7.0" - "@ethersproject/logger" "5.7.0" - "@ethersproject/networks" "5.7.1" - "@ethersproject/pbkdf2" "5.7.0" - "@ethersproject/properties" "5.7.0" - "@ethersproject/providers" "5.7.2" - "@ethersproject/random" "5.7.0" - "@ethersproject/rlp" "5.7.0" - "@ethersproject/sha2" "5.7.0" - "@ethersproject/signing-key" "5.7.0" - "@ethersproject/solidity" "5.7.0" - "@ethersproject/strings" "5.7.0" - "@ethersproject/transactions" "5.7.0" - "@ethersproject/units" "5.7.0" - "@ethersproject/wallet" "5.7.0" - "@ethersproject/web" "5.7.1" - "@ethersproject/wordlists" "5.7.0" - -ethers@^6.6.0: - version "6.10.0" - resolved "https://registry.npmjs.org/ethers/-/ethers-6.10.0.tgz" - integrity sha512-nMNwYHzs6V1FR3Y4cdfxSQmNgZsRj1RiTU25JwvnJLmyzw9z3SKxNc2XKDuiXXo/v9ds5Mp9m6HBabgYQQ26tA== - dependencies: - "@adraffy/ens-normalize" "1.10.0" +ethers@^5.0.13: + version "5.8.0" + resolved "https://registry.npmjs.org/ethers/-/ethers-5.8.0.tgz" + integrity sha512-DUq+7fHrCg1aPDFCHx6UIPb3nmt2XMpM7Y/g2gLhsl3lIBqeAfOJIl1qEvRf2uq3BiKxmh6Fh5pfp2ieyek7Kg== + dependencies: + "@ethersproject/abi" "5.8.0" + "@ethersproject/abstract-provider" "5.8.0" + "@ethersproject/abstract-signer" "5.8.0" + "@ethersproject/address" "5.8.0" + "@ethersproject/base64" "5.8.0" + "@ethersproject/basex" "5.8.0" + "@ethersproject/bignumber" "5.8.0" + "@ethersproject/bytes" "5.8.0" + "@ethersproject/constants" "5.8.0" + "@ethersproject/contracts" "5.8.0" + "@ethersproject/hash" "5.8.0" + "@ethersproject/hdnode" "5.8.0" + "@ethersproject/json-wallets" "5.8.0" + "@ethersproject/keccak256" "5.8.0" + "@ethersproject/logger" "5.8.0" + "@ethersproject/networks" "5.8.0" + "@ethersproject/pbkdf2" "5.8.0" + "@ethersproject/properties" "5.8.0" + "@ethersproject/providers" "5.8.0" + "@ethersproject/random" "5.8.0" + "@ethersproject/rlp" "5.8.0" + "@ethersproject/sha2" "5.8.0" + "@ethersproject/signing-key" "5.8.0" + "@ethersproject/solidity" "5.8.0" + "@ethersproject/strings" "5.8.0" + "@ethersproject/transactions" "5.8.0" + "@ethersproject/units" "5.8.0" + "@ethersproject/wallet" "5.8.0" + "@ethersproject/web" "5.8.0" + "@ethersproject/wordlists" "5.8.0" + +ethers@^6.14.0, ethers@^6.16.0, ethers@^6.6.0, ethers@6.x: + version "6.16.0" + resolved "https://registry.npmjs.org/ethers/-/ethers-6.16.0.tgz" + integrity sha512-U1wulmetNymijEhpSEQ7Ct/P/Jw9/e7R1j5XIbPRydgV2DjLVMsULDlNksq3RQnFgKoLlZf88ijYtWEXcPa07A== + dependencies: + "@adraffy/ens-normalize" "1.10.1" "@noble/curves" "1.2.0" "@noble/hashes" "1.3.2" - "@types/node" "18.15.13" + "@types/node" "22.7.5" aes-js "4.0.0-beta.5" - tslib "2.4.0" - ws "8.5.0" + tslib "2.7.0" + ws "8.17.1" ethjs-unit@0.1.6: version "0.1.6" @@ -4773,14 +4276,6 @@ ethjs-unit@0.1.6: bn.js "4.11.6" number-to-bn "1.7.0" -ethjs-util@^0.1.6, ethjs-util@0.1.6: - version "0.1.6" - resolved "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz" - integrity sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w== - dependencies: - is-hex-prefixed "1.0.0" - strip-hex-prefix "1.0.0" - event-emitter@^0.3.5: version "0.3.5" resolved "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz" @@ -4833,38 +4328,38 @@ execa@^5.0.0: strip-final-newline "^2.0.0" express@^4.14.0, express@^4.17.1: - version "4.19.2" - resolved "https://registry.npmjs.org/express/-/express-4.19.2.tgz" - integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== + version "4.22.1" + resolved "https://registry.npmjs.org/express/-/express-4.22.1.tgz" + integrity sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.20.2" - content-disposition "0.5.4" + body-parser "~1.20.3" + content-disposition "~0.5.4" content-type "~1.0.4" - cookie "0.6.0" - cookie-signature "1.0.6" + cookie "~0.7.1" + cookie-signature "~1.0.6" debug "2.6.9" depd "2.0.0" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" + finalhandler "~1.3.1" + fresh "~0.5.2" + http-errors "~2.0.0" + merge-descriptors "1.0.3" methods "~1.1.2" - on-finished "2.4.1" + on-finished "~2.4.1" parseurl "~1.3.3" - path-to-regexp "0.1.7" + path-to-regexp "~0.1.12" proxy-addr "~2.0.7" - qs "6.11.0" + qs "~6.14.0" range-parser "~1.2.1" safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" + send "~0.19.0" + serve-static "~1.16.2" setprototypeof "1.2.0" - statuses "2.0.1" + statuses "~2.0.1" type-is "~1.6.18" utils-merge "1.0.1" vary "~1.1.2" @@ -4886,11 +4381,6 @@ extsprintf@^1.2.0, extsprintf@1.3.0: resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== -fast-base64-decode@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz" - integrity sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q== - fast-check@3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/fast-check/-/fast-check-3.1.1.tgz" @@ -4903,39 +4393,26 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.0.3: - version "3.2.12" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" +fast-equals@^5.4.0: + version "5.4.0" + resolved "https://registry.npmjs.org/fast-equals/-/fast-equals-5.4.0.tgz" + integrity sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw== fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== +fast-uri@^3.0.1: + version "3.1.0" + resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz" + integrity sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA== fastest-levenshtein@^1.0.12: version "1.0.16" resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz" integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== -fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== - dependencies: - reusify "^1.0.4" - fetch-cookie@0.11.0: version "0.11.0" resolved "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.11.0.tgz" @@ -4950,17 +4427,24 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@~1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz" + integrity sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg== dependencies: debug "2.6.9" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" - on-finished "2.4.1" + on-finished "~2.4.1" parseurl "~1.3.3" - statuses "2.0.1" + statuses "~2.0.2" unpipe "~1.0.0" find-replace@^3.0.0: @@ -4985,7 +4469,7 @@ find-up@^2.1.0: dependencies: locate-path "^2.0.0" -find-up@^3.0.0, find-up@3.0.0: +find-up@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== @@ -5000,7 +4484,7 @@ find-up@^4.0.0: locate-path "^5.0.0" path-exists "^4.0.0" -find-up@5.0.0: +find-up@^5.0.0, find-up@5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== @@ -5008,42 +4492,36 @@ find-up@5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" -flat@^4.1.0: - version "4.1.1" - resolved "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz" - integrity sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA== - dependencies: - is-buffer "~2.0.3" - flat@^5.0.2: version "5.0.2" resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== -fmix@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/fmix/-/fmix-0.1.0.tgz" - integrity sha512-Y6hyofImk9JdzU8k5INtTXX1cu8LDlePWDFU5sftm9H+zKCr5SGrVjdhkvsim646cw5zD0nADj8oHyXMZmCZ9w== - dependencies: - imul "^1.0.0" +follow-redirects@^1.15.0, follow-redirects@^1.15.6: + version "1.15.11" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz" + integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ== -follow-redirects@^1.12.1, follow-redirects@^1.14.0, follow-redirects@^1.14.8, follow-redirects@^1.15.0: - version "1.15.2" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz" - integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== +for-each@^0.3.3, for-each@^0.3.5: + version "0.3.5" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz" + integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg== dependencies: - is-callable "^1.1.3" + is-callable "^1.2.7" foreach@^2.0.4: version "2.0.6" resolved "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz" integrity sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg== +foreground-child@^3.1.0: + version "3.3.1" + resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz" + integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== + dependencies: + cross-spawn "^7.0.6" + signal-exit "^4.0.1" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" @@ -5054,22 +4532,26 @@ form-data-encoder@1.7.1: resolved "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.1.tgz" integrity sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg== -form-data@^2.2.0: - version "2.5.1" - resolved "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz" - integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== +form-data@^4.0.0: + version "4.0.5" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz" + integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== dependencies: asynckit "^0.4.0" - combined-stream "^1.0.6" + combined-stream "^1.0.8" + es-set-tostringtag "^2.1.0" + hasown "^2.0.2" mime-types "^2.1.12" -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== +form-data@^4.0.4: + version "4.0.5" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz" + integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" + es-set-tostringtag "^2.1.0" + hasown "^2.0.2" mime-types "^2.1.12" form-data@~2.3.2: @@ -5086,12 +4568,7 @@ forwarded@0.2.0: resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== -fp-ts@^1.0.0, fp-ts@1.19.3: - version "1.19.3" - resolved "https://registry.npmjs.org/fp-ts/-/fp-ts-1.19.3.tgz" - integrity sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg== - -fresh@0.5.2: +fresh@~0.5.2: version "0.5.2" resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== @@ -5107,15 +4584,6 @@ fs-extra@^0.30.0: path-is-absolute "^1.0.0" rimraf "^2.2.8" -fs-extra@^10.0.0: - version "10.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs-extra@^4.0.2: version "4.0.3" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz" @@ -5125,7 +4593,7 @@ fs-extra@^4.0.2: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^7.0.0, fs-extra@^7.0.1: +fs-extra@^7.0.0: version "7.0.1" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz" integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== @@ -5134,15 +4602,6 @@ fs-extra@^7.0.0, fs-extra@^7.0.1: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" @@ -5169,27 +4628,22 @@ fs-minipass@^1.2.7: dependencies: minipass "^2.6.0" -fs-readdir-recursive@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz" - integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.1.1: - version "2.1.3" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== +fsevents@~2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -function-bind@^1.1.1, function-bind@^1.1.2: +function-bind@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== @@ -5240,28 +4694,12 @@ get-caller-file@^1.0.1: resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz" integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== -get-caller-file@^2.0.1, get-caller-file@^2.0.5: +get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz" - integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" - -get-intrinsic@^1.1.1: +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: version "1.1.3" resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz" integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== @@ -5270,10 +4708,29 @@ get-intrinsic@^1.1.1: has "^1.0.3" has-symbols "^1.0.3" -get-port@^3.1.0: - version "3.2.0" - resolved "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz" - integrity sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg== +get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + +get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" get-stream@^5.1.0: version "5.2.0" @@ -5301,6 +4758,13 @@ get-symbol-description@^1.0.2: es-errors "^1.3.0" get-intrinsic "^1.2.4" +get-tsconfig@^4.7.5: + version "4.13.0" + resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz" + integrity sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ== + dependencies: + resolve-pkg-maps "^1.0.0" + getpass@^0.1.1: version "0.1.7" resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz" @@ -5308,15 +4772,7 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -ghost-testrpc@^0.0.2: - version "0.0.2" - resolved "https://registry.npmjs.org/ghost-testrpc/-/ghost-testrpc-0.0.2.tgz" - integrity sha512-i08dAEgJ2g8z5buJIrCTduwPIhih3DP+hOCTyyryikfV8T0bNvHnGXO67i0DD1H4GBDETTclPy9njZbfluQYrQ== - dependencies: - chalk "^2.4.2" - node-emoji "^1.10.0" - -glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2: +glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -5328,21 +4784,22 @@ glob-to-regexp@^0.4.1: resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^5.0.15: - version "5.0.15" - resolved "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz" - integrity sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA== +glob@^10.4.5: + version "10.5.0" + resolved "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz" + integrity sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg== dependencies: - inflight "^1.0.4" - inherits "2" - minimatch "2 || 3" - once "^1.3.0" - path-is-absolute "^1.0.0" + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" -glob@^7.0.0, glob@^7.1.3, glob@7.2.0: - version "7.2.0" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== +glob@^7.0.0, glob@7.1.7: + version "7.1.7" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -5351,10 +4808,10 @@ glob@^7.0.0, glob@^7.1.3, glob@7.2.0: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.3: - version "7.1.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz" - integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== +glob@^7.1.3: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -5363,10 +4820,10 @@ glob@7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.7: - version "7.1.7" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== +glob@7.2.0: + version "7.2.0" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -5375,22 +4832,6 @@ glob@7.1.7: once "^1.3.0" path-is-absolute "^1.0.0" -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== - dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" - global@~4.4.0: version "4.4.0" resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz" @@ -5406,26 +4847,10 @@ globalthis@^1.0.3: dependencies: define-properties "^1.1.3" -globby@^10.0.1: - version "10.0.2" - resolved "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz" - integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== - dependencies: - "@types/glob" "^7.1.1" - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.0.3" - glob "^7.1.3" - ignore "^5.1.1" - merge2 "^1.2.3" - slash "^3.0.0" - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== got@^11.8.5: version "11.8.6" @@ -5476,27 +4901,15 @@ graphql-tag@^2.11.0, graphql-tag@^2.12.6: tslib "^2.1.0" "graphql@^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "graphql@^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "graphql@^14.2.1 || ^15.0.0 || ^16.0.0", graphql@^15.3.0, "graphql@^15.3.0 || ^16.0.0", "graphql@14.x || 15.x || 16.x": - version "15.8.0" - resolved "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz" - integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== + version "15.10.1" + resolved "https://registry.npmjs.org/graphql/-/graphql-15.10.1.tgz" + integrity sha512-BL/Xd/T9baO6NFzoMpiMD7YUZ62R6viR5tp/MULVEnbYJXZA//kRNW7J0j1w/wXArgL0sCxhDfK5dczSKn3+cg== growl@1.10.5: version "1.10.5" resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz" integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== -handlebars@^4.0.1: - version "4.7.7" - resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - har-schema@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz" @@ -5510,111 +4923,37 @@ har-validator@~5.1.3: ajv "^6.12.3" har-schema "^2.0.0" -hardhat-deploy@^0.11.34: - version "0.11.34" - resolved "https://registry.npmjs.org/hardhat-deploy/-/hardhat-deploy-0.11.34.tgz" - integrity sha512-N6xcwD8LSMV/IyfEr8TfR2YRbOh9Q4QvitR9MKZRTXQmgQiiMGjX+2efMjKgNMxwCVlmpfnE1tyDxOJOOUseLQ== - dependencies: - "@ethersproject/abi" "^5.7.0" - "@ethersproject/abstract-signer" "^5.7.0" - "@ethersproject/address" "^5.7.0" - "@ethersproject/bignumber" "^5.7.0" - "@ethersproject/bytes" "^5.7.0" - "@ethersproject/constants" "^5.7.0" - "@ethersproject/contracts" "^5.7.0" - "@ethersproject/providers" "^5.7.2" - "@ethersproject/solidity" "^5.7.0" - "@ethersproject/transactions" "^5.7.0" - "@ethersproject/wallet" "^5.7.0" - "@types/qs" "^6.9.7" - axios "^0.21.1" - chalk "^4.1.2" - chokidar "^3.5.2" - debug "^4.3.2" - enquirer "^2.3.6" - ethers "^5.5.3" - form-data "^4.0.0" - fs-extra "^10.0.0" - match-all "^1.2.6" - murmur-128 "^0.2.1" - qs "^6.9.4" - zksync-web3 "^0.14.3" - -hardhat-gas-reporter@^1.0.8, hardhat-gas-reporter@^1.0.9: - version "1.0.9" - resolved "https://registry.npmjs.org/hardhat-gas-reporter/-/hardhat-gas-reporter-1.0.9.tgz" - integrity sha512-INN26G3EW43adGKBNzYWOlI3+rlLnasXTwW79YNnUhXPDa+yHESgt639dJEs37gCjhkbNKcRRJnomXEuMFBXJg== - dependencies: - array-uniq "1.0.3" - eth-gas-reporter "^0.2.25" - sha1 "^1.1.1" - -hardhat@^2.0.0, hardhat@^2.0.2, hardhat@^2.0.4, hardhat@^2.11.0, hardhat@^2.14.0, hardhat@^2.9.4, hardhat@^2.9.5, hardhat@^2.9.9: - version "2.14.0" - resolved "https://registry.npmjs.org/hardhat/-/hardhat-2.14.0.tgz" - integrity sha512-73jsInY4zZahMSVFurSK+5TNCJTXMv+vemvGia0Ac34Mm19fYp6vEPVGF3sucbumszsYxiTT2TbS8Ii2dsDSoQ== - dependencies: - "@ethersproject/abi" "^5.1.2" - "@metamask/eth-sig-util" "^4.0.0" - "@nomicfoundation/ethereumjs-block" "5.0.1" - "@nomicfoundation/ethereumjs-blockchain" "7.0.1" - "@nomicfoundation/ethereumjs-common" "4.0.1" - "@nomicfoundation/ethereumjs-evm" "2.0.1" - "@nomicfoundation/ethereumjs-rlp" "5.0.1" - "@nomicfoundation/ethereumjs-statemanager" "2.0.1" - "@nomicfoundation/ethereumjs-trie" "6.0.1" - "@nomicfoundation/ethereumjs-tx" "5.0.1" - "@nomicfoundation/ethereumjs-util" "9.0.1" - "@nomicfoundation/ethereumjs-vm" "7.0.1" - "@nomicfoundation/solidity-analyzer" "^0.1.0" - "@sentry/node" "^5.18.1" - "@types/bn.js" "^5.1.0" - "@types/lru-cache" "^5.1.0" - abort-controller "^3.0.0" +hardhat@^3.0.0, hardhat@^3.0.12, hardhat@^3.0.7, hardhat@^3.1.5, hardhat@^3.1.6: + version "3.1.6" + resolved "https://registry.npmjs.org/hardhat/-/hardhat-3.1.6.tgz" + integrity sha512-72Wn3DaEByNtpsqI2oIZnsyxvaB2p2CC6mffQ18K6NgAgh6QzdpdMYLiIFtYBRDRY7U6BMxq7fj1ryMQxQvTBA== + dependencies: + "@nomicfoundation/edr" "0.12.0-next.22" + "@nomicfoundation/hardhat-errors" "^3.0.6" + "@nomicfoundation/hardhat-utils" "^3.0.6" + "@nomicfoundation/hardhat-vendored" "^3.0.1" + "@nomicfoundation/hardhat-zod-utils" "^3.0.1" + "@nomicfoundation/solidity-analyzer" "^0.1.1" + "@sentry/core" "^9.4.0" adm-zip "^0.4.16" - aggregate-error "^3.0.0" - ansi-escapes "^4.3.0" - chalk "^2.4.2" - chokidar "^3.4.0" - ci-info "^2.0.0" - debug "^4.1.1" + chalk "^5.3.0" + chokidar "^4.0.3" + debug "^4.3.2" enquirer "^2.3.0" - env-paths "^2.2.0" - ethereum-cryptography "^1.0.3" - ethereumjs-abi "^0.6.8" - find-up "^2.1.0" - fp-ts "1.19.3" - fs-extra "^7.0.1" - glob "7.2.0" - immutable "^4.0.0-rc.12" - io-ts "1.10.4" - keccak "^3.0.2" - lodash "^4.17.11" - mnemonist "^0.38.0" - mocha "^10.0.0" - p-map "^4.0.0" - qs "^6.7.0" - raw-body "^2.4.1" - resolve "1.17.0" - semver "^6.3.0" - solc "0.7.3" - source-map-support "^0.5.13" - stacktrace-parser "^0.1.10" - tsort "0.0.1" - undici "^5.14.0" - uuid "^8.3.2" - ws "^7.4.6" + ethereum-cryptography "^2.2.1" + micro-eth-signer "^0.14.0" + p-map "^7.0.2" + resolve.exports "^2.0.3" + semver "^7.6.3" + tsx "^4.19.3" + ws "^8.18.0" + zod "^3.23.8" has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz" - integrity sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA== - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" @@ -5632,15 +4971,15 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: +has-proto@^1.0.3: version "1.0.3" resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz" integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== -has-symbols@^1.0.0, has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.2, has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" @@ -5656,14 +4995,15 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== +hash-base@^3.0.0, hash-base@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.1.2.tgz" + integrity sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg== dependencies: inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" + readable-stream "^2.3.8" + safe-buffer "^5.2.1" + to-buffer "^1.2.1" hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.7, hash.js@1.1.7: version "1.1.7" @@ -5681,14 +5021,14 @@ hash.js@1.1.3: inherits "^2.0.3" minimalistic-assert "^1.0.0" -hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: +hasown@^2.0.0, hasown@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" -he@1.2.0: +he@^1.2.0, he@1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== @@ -5701,11 +5041,6 @@ header-case@^1.0.0: no-case "^2.2.0" upper-case "^1.1.3" -"heap@>= 0.2.0": - version "0.2.7" - resolved "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz" - integrity sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg== - highlight.js@^10.4.1: version "10.7.3" resolved "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz" @@ -5740,44 +5075,27 @@ htmlparser2@^8.0.1: domutils "^3.0.1" entities "^4.4.0" -http-basic@^8.1.1: - version "8.1.3" - resolved "https://registry.npmjs.org/http-basic/-/http-basic-8.1.3.tgz" - integrity sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw== - dependencies: - caseless "^0.12.0" - concat-stream "^1.6.2" - http-response-object "^3.0.1" - parse-cache-control "^1.0.1" - http-cache-semantics@^4.0.0: version "4.1.1" resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz" integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== +http-errors@~2.0.0, http-errors@~2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz" + integrity sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" + depd "~2.0.0" + inherits "~2.0.4" + setprototypeof "~1.2.0" + statuses "~2.0.2" + toidentifier "~1.0.1" http-https@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz" integrity sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg== -http-response-object@^3.0.1: - version "3.0.2" - resolved "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz" - integrity sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA== - dependencies: - "@types/node" "^10.0.3" - http-signature@~1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" @@ -5803,20 +5121,12 @@ http2-wrapper@^2.1.10: quick-lru "^5.1.1" resolve-alpn "^1.2.0" -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - human-signals@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== -iconv-lite@0.4.24: +iconv-lite@~0.4.24: version "0.4.24" resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -5830,25 +5140,20 @@ idna-uts46-hx@^2.3.1: dependencies: punycode "2.1.0" -ieee754@^1.1.13, ieee754@^1.1.4, ieee754@^1.2.1: +ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^5.1.1: - version "5.2.4" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - immediate@^3.2.3, immediate@3.3.0: version "3.3.0" resolved "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz" integrity sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q== -immutable@^4.0.0-rc.12: - version "4.3.0" - resolved "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz" - integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== +immer@10.0.2: + version "10.0.2" + resolved "https://registry.npmjs.org/immer/-/immer-10.0.2.tgz" + integrity sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA== import-lazy@~4.0.0: version "4.0.0" @@ -5863,16 +5168,6 @@ import-local@^3.0.2: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" -imul@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/imul/-/imul-1.0.1.tgz" - integrity sha512-WFAgfwPLAjU66EKt6vRdTlKj4nAgIDQzh29JonLa4Bqtl6D8JrIMvWjCnx7xEjVNmP3U0fM5o8ZObk7d0f62bA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" @@ -5886,11 +5181,6 @@ inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2. resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -ini@^1.3.5: - version "1.3.8" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - injectpromise@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/injectpromise/-/injectpromise-1.0.0.tgz" @@ -5920,13 +5210,6 @@ invert-kv@^1.0.0: resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" integrity sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ== -io-ts@1.10.4: - version "1.10.4" - resolved "https://registry.npmjs.org/io-ts/-/io-ts-1.10.4.tgz" - integrity sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g== - dependencies: - fp-ts "^1.0.0" - ipaddr.js@1.9.1: version "1.9.1" resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" @@ -5975,12 +5258,17 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-buffer@^2.0.5, is-buffer@~2.0.3: +is-buffer@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: +is-callable@^1.1.3: + version "1.2.7" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== @@ -6018,11 +5306,6 @@ is-fullwidth-code-point@^1.0.0: dependencies: number-is-nan "^1.0.0" -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" - integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" @@ -6146,12 +5429,12 @@ is-typed-array@^1.1.10: gopd "^1.0.1" has-tostringtag "^1.0.0" -is-typed-array@^1.1.13, is-typed-array@^1.1.3: - version "1.1.13" - resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz" - integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== +is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.3: + version "1.1.15" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz" + integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== dependencies: - which-typed-array "^1.1.14" + which-typed-array "^1.1.16" is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" @@ -6182,16 +5465,16 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" -isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - isarray@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + isarray@0.0.1: version "0.0.1" resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" @@ -6207,14 +5490,6 @@ isobject@^3.0.1: resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -isomorphic-unfetch@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz" - integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== - dependencies: - node-fetch "^2.6.1" - unfetch "^4.2.0" - isomorphic-ws@^4.0.1: version "4.0.1" resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz" @@ -6225,6 +5500,15 @@ isstream@~0.1.2: resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + jest-worker@^27.0.6: version "27.5.1" resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" @@ -6239,16 +5523,6 @@ jju@~1.4.0: resolved "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz" integrity sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA== -js-cookie@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz" - integrity sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ== - -js-sdsl@^4.1.4: - version "4.4.0" - resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz" - integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== - js-sha3@^0.5.7: version "0.5.7" resolved "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz" @@ -6269,23 +5543,7 @@ js-sha3@0.5.7: resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@3.13.1: - version "3.13.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@3.x: - version "3.14.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@4.1.0: +js-yaml@^4.1.0, js-yaml@4.1.0: version "4.1.0" resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== @@ -6335,16 +5593,22 @@ json-schema@0.4.0: integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== json-stable-stringify@^1.0.1: - version "1.1.1" - resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz" - integrity sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg== + version "1.3.0" + resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz" + integrity sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.8" + call-bound "^1.0.4" isarray "^2.0.5" jsonify "^0.0.1" object-keys "^1.1.1" -json-stringify-safe@~5.0.1: +json-stream-stringify@^3.1.6: + version "3.1.6" + resolved "https://registry.npmjs.org/json-stream-stringify/-/json-stream-stringify-3.1.6.tgz" + integrity sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog== + +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== @@ -6354,6 +5618,11 @@ json5@^2.1.2: resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsonfile@^2.1.0: version "2.4.0" resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz" @@ -6371,9 +5640,9 @@ jsonfile@^4.0.0: graceful-fs "^4.1.6" jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + version "6.2.0" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz" + integrity sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg== dependencies: universalify "^2.0.0" optionalDependencies: @@ -6384,11 +5653,6 @@ jsonify@^0.0.1: resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz" integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== -jsonschema@^1.2.4: - version "1.4.1" - resolved "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.1.tgz" - integrity sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ== - jsprim@^1.2.2: version "1.4.2" resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz" @@ -6399,7 +5663,7 @@ jsprim@^1.2.2: json-schema "0.4.0" verror "1.10.0" -keccak@^3.0.0, keccak@^3.0.2: +keccak@^3.0.0: version "3.0.3" resolved "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz" integrity sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ== @@ -6436,6 +5700,11 @@ klaw@^1.0.0: optionalDependencies: graceful-fs "^4.1.9" +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + lcid@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" @@ -6524,17 +5793,9 @@ level-transcoder@^1.0.1: level-write-stream@1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/level-write-stream/-/level-write-stream-1.0.0.tgz" - integrity sha512-bBNKOEOMl8msO+uIM9YX/gUO6ckokZ/4pCwTm/lwvs46x6Xs8Zy0sn3Vh37eDqse4mhy4fOMIb/JsSM2nyQFtw== - dependencies: - end-stream "~0.1.0" - -level@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/level/-/level-8.0.0.tgz" - integrity sha512-ypf0jjAk2BWI33yzEaaotpq7fkOPALKAgDBxggO6Q9HGX2MRXn0wbP1Jn/tJv1gtL867+YOjOB49WaUF3UoJNQ== + integrity sha512-bBNKOEOMl8msO+uIM9YX/gUO6ckokZ/4pCwTm/lwvs46x6Xs8Zy0sn3Vh37eDqse4mhy4fOMIb/JsSM2nyQFtw== dependencies: - browser-level "^1.0.1" - classic-level "^1.2.0" + end-stream "~0.1.0" level@6.0.1: version "6.0.1" @@ -6574,14 +5835,6 @@ levelup@^4.3.2, levelup@4.4.0: level-supports "~1.0.0" xtend "~4.0.0" -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz" @@ -6637,7 +5890,7 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" -lodash-es@^4.2.1: +lodash-es@^4.2.1, lodash-es@4.17.21: version "4.17.21" resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz" integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== @@ -6672,24 +5925,17 @@ lodash.sortby@^4.7.0: resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== -lodash.truncate@^4.4.2: - version "4.4.2" - resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz" - integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== - -lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.16, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.2.1, lodash@~4.17.15: +lodash@^4.17.14, lodash@~4.17.15: version "4.17.21" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -log-symbols@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz" - integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== - dependencies: - chalk "^2.4.2" +lodash@^4.17.15, lodash@^4.17.16, lodash@^4.17.21, lodash@^4.2.1: + version "4.17.23" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz" + integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== -log-symbols@4.1.0: +log-symbols@^4.1.0, log-symbols@4.1.0: version "4.1.0" resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== @@ -6698,9 +5944,9 @@ log-symbols@4.1.0: is-unicode-supported "^0.1.0" loglevel@^1.6.8: - version "1.9.1" - resolved "https://registry.npmjs.org/loglevel/-/loglevel-1.9.1.tgz" - integrity sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg== + version "1.9.2" + resolved "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz" + integrity sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg== long@^4.0.0: version "4.0.0" @@ -6714,13 +5960,6 @@ loose-envify@^1.1.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" -loupe@^2.3.1: - version "2.3.6" - resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz" - integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== - dependencies: - get-func-name "^2.0.0" - lower-case-first@^1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz" @@ -6743,17 +5982,10 @@ lowercase-keys@^3.0.0: resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz" integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== -lru_map@^0.3.3: - version "0.3.3" - resolved "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz" - integrity sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ== - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== lru-cache@^6.0.0: version "6.0.0" @@ -6777,20 +6009,10 @@ make-error@^1.1.1: resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== -markdown-table@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz" - integrity sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q== - -match-all@^1.2.6: - version "1.2.6" - resolved "https://registry.npmjs.org/match-all/-/match-all-1.2.6.tgz" - integrity sha512-0EESkXiTkWzrQQntBu2uzKvLu6vVkUGz40nGPbSZuegcfE5UuSzNjLaIu76zJWuaT/2I3Z/8M06OlUOZLGwLlQ== - -mcl-wasm@^0.7.1: - version "0.7.9" - resolved "https://registry.npmjs.org/mcl-wasm/-/mcl-wasm-0.7.9.tgz" - integrity sha512-iJIUcQWA88IJB/5L15GnJVnSQJmf/YaxxV6zRavv83HILHaJQb6y0iFyDMdDO0gN8X37tdxmAOrH/P8B6RB8sQ== +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== md5.js@^1.3.4: version "1.3.5" @@ -6818,49 +6040,43 @@ memdown@1.4.1: ltgt "~2.2.0" safe-buffer "~5.1.1" -memory-level@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/memory-level/-/memory-level-1.0.0.tgz" - integrity sha512-UXzwewuWeHBz5krr7EvehKcmLFNoXxGcvuYhC41tRnkrTbJohtS7kVn9akmgirtRygg+f7Yjsfi8Uu5SGSQ4Og== - dependencies: - abstract-level "^1.0.0" - functional-red-black-tree "^1.0.1" - module-error "^1.0.1" - memorystream@^0.3.1: version "0.3.1" resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz" integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== +merge-descriptors@1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz" + integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== -merge2@^1.2.3, merge2@^1.3.0: - version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - methods@~1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micromatch@^4.0.0: - version "4.0.5" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== +micro-eth-signer@^0.14.0: + version "0.14.0" + resolved "https://registry.npmjs.org/micro-eth-signer/-/micro-eth-signer-0.14.0.tgz" + integrity sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw== dependencies: - braces "^3.0.2" - picomatch "^2.3.1" + "@noble/curves" "~1.8.1" + "@noble/hashes" "~1.7.1" + micro-packed "~0.7.2" + +micro-packed@~0.7.2: + version "0.7.3" + resolved "https://registry.npmjs.org/micro-packed/-/micro-packed-0.7.3.tgz" + integrity sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg== + dependencies: + "@scure/base" "~1.2.5" -micromatch@^4.0.4: +micromatch@^4.0.0: version "4.0.5" resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -6921,9 +6137,9 @@ mimic-response@^3.1.0: integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== min-document@^2.19.0: - version "2.19.0" - resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz" - integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== + version "2.19.2" + resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.2.tgz" + integrity sha512-8S5I8db/uZN8r9HSLFVWPdJCvYOejMcEC82VIzNUc6Zkklf/d1gg2psfE79/vyhWOj4+J8MtwmoOz3TmvaGu5A== dependencies: dom-walk "^0.1.0" @@ -6937,20 +6153,27 @@ minimalistic-crypto-utils@^1.0.1: resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== -minimatch@^3.0.4, minimatch@^3.0.5, "minimatch@2 || 3": - version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@3.0.4: +minimatch@^3.0.4, minimatch@3.0.4: version "3.0.4" resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" +minimatch@^5.1.6: + version "5.1.6" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + minimatch@5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz" @@ -6968,7 +6191,15 @@ minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.7: resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass@^2.6.0, minipass@^2.9.0: +minipass@^2.6.0: + version "2.9.0" + resolved "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minipass@^2.9.0: version "2.9.0" resolved "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz" integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== @@ -6976,6 +6207,11 @@ minipass@^2.6.0, minipass@^2.9.0: safe-buffer "^5.1.2" yallist "^3.0.0" +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + minizlib@^1.3.3: version "1.3.3" resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz" @@ -6990,88 +6226,43 @@ mkdirp-promise@^5.0.1: dependencies: mkdirp "*" -mkdirp@*, mkdirp@^0.5.5, mkdirp@0.5.x: - version "0.5.6" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -mkdirp@^1.0.4: +mkdirp@*, mkdirp@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mkdirp@0.5.5: - version "0.5.5" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - dependencies: - minimist "^1.2.5" - -mnemonist@^0.38.0: - version "0.38.5" - resolved "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.5.tgz" - integrity sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg== - dependencies: - obliterator "^2.0.0" - -mocha@^10.0.0: - version "10.2.0" - resolved "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz" - integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg== +mkdirp@^0.5.5: + version "0.5.6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== dependencies: - ansi-colors "4.1.1" - browser-stdout "1.3.1" - chokidar "3.5.3" - debug "4.3.4" - diff "5.0.0" - escape-string-regexp "4.0.0" - find-up "5.0.0" - glob "7.2.0" - he "1.2.0" - js-yaml "4.1.0" - log-symbols "4.1.0" - minimatch "5.0.1" - ms "2.1.3" - nanoid "3.3.3" - serialize-javascript "6.0.0" - strip-json-comments "3.1.1" - supports-color "8.1.1" - workerpool "6.2.1" - yargs "16.2.0" - yargs-parser "20.2.4" - yargs-unparser "2.0.0" + minimist "^1.2.6" -mocha@^7.1.1: - version "7.2.0" - resolved "https://registry.npmjs.org/mocha/-/mocha-7.2.0.tgz" - integrity sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ== - dependencies: - ansi-colors "3.2.3" - browser-stdout "1.3.1" - chokidar "3.3.0" - debug "3.2.6" - diff "3.5.0" - escape-string-regexp "1.0.5" - find-up "3.0.0" - glob "7.1.3" - growl "1.10.5" - he "1.2.0" - js-yaml "3.13.1" - log-symbols "3.0.0" - minimatch "3.0.4" - mkdirp "0.5.5" - ms "2.1.1" - node-environment-flags "1.0.6" - object.assign "4.1.0" - strip-json-comments "2.0.1" - supports-color "6.0.0" - which "1.3.1" - wide-align "1.1.3" - yargs "13.3.2" - yargs-parser "13.1.2" - yargs-unparser "1.6.0" +mocha@^11.0.0, mocha@^11.3.0: + version "11.3.0" + resolved "https://registry.npmjs.org/mocha/-/mocha-11.3.0.tgz" + integrity sha512-J0RLIM89xi8y6l77bgbX+03PeBRDQCOVQpnwOcCN7b8hCmbh6JvGI2ZDJ5WMoHz+IaPU+S4lvTd0j51GmBAdgQ== + dependencies: + browser-stdout "^1.3.1" + chokidar "^4.0.1" + debug "^4.3.5" + diff "^5.2.0" + escape-string-regexp "^4.0.0" + find-up "^5.0.0" + glob "^10.4.5" + he "^1.2.0" + js-yaml "^4.1.0" + log-symbols "^4.1.0" + minimatch "^5.1.6" + ms "^2.1.3" + picocolors "^1.1.1" + serialize-javascript "^6.0.2" + strip-json-comments "^3.1.1" + supports-color "^8.1.1" + workerpool "^6.5.1" + yargs "^17.7.2" + yargs-parser "^21.1.1" + yargs-unparser "^2.0.0" mocha@10.1.0: version "10.1.0" @@ -7100,65 +6291,30 @@ mocha@10.1.0: yargs-parser "20.2.4" yargs-unparser "2.0.0" -mocha@7.1.2: - version "7.1.2" - resolved "https://registry.npmjs.org/mocha/-/mocha-7.1.2.tgz" - integrity sha512-o96kdRKMKI3E8U0bjnfqW4QMk12MwZ4mhdBTf+B5a1q9+aq2HRnj+3ZdJu0B/ZhJeK78MgYuv6L8d/rA5AeBJA== - dependencies: - ansi-colors "3.2.3" - browser-stdout "1.3.1" - chokidar "3.3.0" - debug "3.2.6" - diff "3.5.0" - escape-string-regexp "1.0.5" - find-up "3.0.0" - glob "7.1.3" - growl "1.10.5" - he "1.2.0" - js-yaml "3.13.1" - log-symbols "3.0.0" - minimatch "3.0.4" - mkdirp "0.5.5" - ms "2.1.1" - node-environment-flags "1.0.6" - object.assign "4.1.0" - strip-json-comments "2.0.1" - supports-color "6.0.0" - which "1.3.1" - wide-align "1.1.3" - yargs "13.3.2" - yargs-parser "13.1.2" - yargs-unparser "1.6.0" - mock-fs@^4.1.0: version "4.14.0" resolved "https://registry.npmjs.org/mock-fs/-/mock-fs-4.14.0.tgz" integrity sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw== -module-error@^1.0.1, module-error@^1.0.2: +module-error@^1.0.1: version "1.0.2" resolved "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz" integrity sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA== -ms@^2.1.1, ms@2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@^2.1.1, ms@^2.1.3, ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== ms@2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== -ms@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" - integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== - -ms@2.1.3: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== multibase@^0.7.0: version "0.7.0" @@ -7200,15 +6356,6 @@ multihashes@^0.4.15, multihashes@~0.4.15: multibase "^0.7.0" varint "^5.0.0" -murmur-128@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/murmur-128/-/murmur-128-0.2.1.tgz" - integrity sha512-WseEgiRkI6aMFBbj8Cg9yBj/y+OdipwVC7zUo3W2W1JAJITwouUOtpqsmGSg67EQmwwSyod7hsVsWY5LsrfQVg== - dependencies: - encode-utf8 "^1.0.2" - fmix "^0.1.0" - imul "^1.0.0" - nano-base32@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/nano-base32/-/nano-base32-1.0.1.tgz" @@ -7234,16 +6381,22 @@ napi-macros@~2.0.0: resolved "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz" integrity sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg== +ndjson@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ndjson/-/ndjson-2.0.0.tgz" + integrity sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ== + dependencies: + json-stringify-safe "^5.0.1" + minimist "^1.2.5" + readable-stream "^3.6.0" + split2 "^3.0.0" + through2 "^4.0.0" + negotiator@0.6.3: version "0.6.3" resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== -neo-async@^2.6.0: - version "2.6.2" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - neo-async@^2.6.2: version "2.6.2" resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" @@ -7271,22 +6424,12 @@ node-addon-api@^2.0.0: resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz" integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== -node-emoji@^1.10.0: - version "1.11.0" - resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz" - integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== - dependencies: - lodash "^4.17.21" - -node-environment-flags@1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz" - integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== - dependencies: - object.getownpropertydescriptors "^2.0.3" - semver "^5.7.0" +node-addon-api@^5.0.0: + version "5.1.0" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz" + integrity sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA== -node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7: +node-fetch@^2.6.12, node-fetch@^2.6.7: version "2.6.12" resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz" integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g== @@ -7300,7 +6443,12 @@ node-fetch@2.6.7: dependencies: whatwg-url "^5.0.0" -node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: +node-gyp-build@^4.2.0: + version "4.5.0" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +node-gyp-build@^4.3.0: version "4.6.0" resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz" integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== @@ -7337,13 +6485,6 @@ nofilter@^3.1.0: resolved "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz" integrity sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g== -nopt@3.x: - version "3.0.6" - resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz" - integrity sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg== - dependencies: - abbrev "1" - normalize-package-data@^2.3.2: version "2.5.0" resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" @@ -7401,10 +6542,10 @@ object-assign@^4, object-assign@^4.1.0, object-assign@^4.1.1: resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.13.1, object-inspect@^1.9.0: - version "1.13.1" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz" - integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== +object-inspect@^1.13.1, object-inspect@^1.13.3: + version "1.13.4" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz" + integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== object-is@^1.0.1: version "1.1.5" @@ -7414,7 +6555,7 @@ object-is@^1.0.1: call-bind "^1.0.2" define-properties "^1.1.3" -object-keys@^1.0.11, object-keys@^1.1.1: +object-keys@^1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -7429,31 +6570,6 @@ object.assign@^4.1.5: has-symbols "^1.0.3" object-keys "^1.1.1" -object.assign@4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" - -object.getownpropertydescriptors@^2.0.3: - version "2.1.5" - resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz" - integrity sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw== - dependencies: - array.prototype.reduce "^1.0.5" - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -obliterator@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz" - integrity sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ== - oboe@2.1.5: version "2.1.5" resolved "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz" @@ -7461,14 +6577,14 @@ oboe@2.1.5: dependencies: http-https "^1.0.0" -on-finished@2.4.1: +on-finished@~2.4.1: version "2.4.1" resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" -once@^1.3.0, once@^1.3.1, once@^1.4.0, once@1.x: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== @@ -7482,23 +6598,6 @@ onetime@^5.1.0, onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -ordinal@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/ordinal/-/ordinal-1.0.3.tgz" - integrity sha512-cMddMgb2QElm8G7vdaa02jhUNbTSrhsgAGUz1OokD83uJTwSUn+nKoNoKVVaRa08yF6sgfO7Maou1+bgLd9rdQ== - original-require@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/original-require/-/original-require-1.0.1.tgz" @@ -7511,11 +6610,6 @@ os-locale@^1.4.0: dependencies: lcid "^1.0.0" -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - p-cancelable@^2.0.0: version "2.1.1" resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz" @@ -7582,12 +6676,10 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" +p-map@^7.0.2: + version "7.0.4" + resolved "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz" + integrity sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ== p-try@^1.0.0: version "1.0.0" @@ -7599,6 +6691,11 @@ p-try@^2.0.0: resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + param-case@^2.1.0: version "2.1.1" resolved "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz" @@ -7617,11 +6714,6 @@ parse-asn1@^5.0.0, parse-asn1@^5.1.5: pbkdf2 "^3.0.3" safe-buffer "^5.1.1" -parse-cache-control@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz" - integrity sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg== - parse-headers@^2.0.0: version "2.0.5" resolved "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz" @@ -7701,10 +6793,18 @@ path-parse@^1.0.6: resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-to-regexp@~0.1.12: + version "0.1.12" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz" + integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ== path-type@^1.0.0: version "1.1.0" @@ -7715,26 +6815,17 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pathval@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz" - integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== - pbkdf2@^3.0.17: - version "3.1.2" - resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + version "3.1.5" + resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz" + integrity sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ== dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" + create-hash "^1.2.0" + create-hmac "^1.1.7" + ripemd160 "^2.0.3" + safe-buffer "^5.2.1" + sha.js "^2.4.12" + to-buffer "^1.2.1" pbkdf2@^3.0.3: version "3.1.2" @@ -7757,6 +6848,11 @@ picocolors@^1.0.0: resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" @@ -7767,11 +6863,6 @@ pify@^2.0.0: resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - pinkie-promise@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" @@ -7994,11 +7085,6 @@ pouchdb@7.3.0: uuid "8.3.2" vuvuzela "1.0.3" -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - prettier@^2.3.1: version "2.8.7" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz" @@ -8014,12 +7100,13 @@ process@^0.11.10: resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== -promise@^8.0.0: - version "8.3.0" - resolved "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz" - integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== +prompts@^2.4.2: + version "2.4.2" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== dependencies: - asap "~2.0.6" + kleur "^3.0.3" + sisteransi "^1.0.5" proper-lockfile@^4.1.1: version "4.1.2" @@ -8073,40 +7160,33 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -punycode@2.1.0: +punycode@^2.1.0, punycode@2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz" integrity sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA== +punycode@^2.1.1: + version "2.3.0" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + pure-rand@^5.0.1: version "5.0.5" resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-5.0.5.tgz" integrity sha512-BwQpbqxSCBJVpamI6ydzcKqyFmnd5msMWUGvzXLm1aXvusbbgkbOto/EUPM00hjveJEaJtdbhUjKSzWRhQVkaw== -qs@^6.4.0, qs@^6.7.0, qs@^6.9.4: - version "6.11.1" - resolved "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz" - integrity sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ== +qs@~6.14.0: + version "6.14.1" + resolved "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz" + integrity sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ== dependencies: - side-channel "^1.0.4" + side-channel "^1.1.0" qs@~6.5.2: version "6.5.3" resolved "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz" integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== -qs@6.11.0: - version "6.11.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - query-string@^5.0.1: version "5.1.1" resolved "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz" @@ -8151,15 +7231,15 @@ range-parser@~1.2.1: resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@^2.4.1, raw-body@2.5.2: - version "2.5.2" - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz" - integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== +raw-body@~2.5.3: + version "2.5.3" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz" + integrity sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA== dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" + bytes "~3.1.2" + http-errors "~2.0.1" + iconv-lite "~0.4.24" + unpipe "~1.0.0" read-pkg-up@^1.0.1: version "1.0.1" @@ -8178,7 +7258,7 @@ read-pkg@^1.0.0: normalize-package-data "^2.3.2" path-type "^1.0.0" -readable-stream@^2.2.2: +readable-stream@^2.3.8: version "2.3.8" resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== @@ -8191,7 +7271,7 @@ readable-stream@^2.2.2: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.4.0, readable-stream@^3.6.0, "readable-stream@2 || 3": +readable-stream@^3.0.0, readable-stream@^3.4.0, readable-stream@^3.6.0, "readable-stream@2 || 3", readable-stream@3: version "3.6.2" resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -8224,12 +7304,10 @@ readable-stream@1.1.14: isarray "0.0.1" string_decoder "~0.10.x" -readdirp@~3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz" - integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ== - dependencies: - picomatch "^2.0.4" +readdirp@^4.0.1: + version "4.1.2" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz" + integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg== readdirp@~3.6.0: version "3.6.0" @@ -8252,13 +7330,6 @@ rechoir@^0.7.0: dependencies: resolve "^1.9.0" -recursive-readdir@^2.2.2: - version "2.2.3" - resolved "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz" - integrity sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA== - dependencies: - minimatch "^3.0.5" - reduce-flatten@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz" @@ -8281,11 +7352,6 @@ redux@^3.7.2: loose-envify "^1.1.0" symbol-observable "^1.0.3" -regenerator-runtime@^0.13.11: - version "0.13.11" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== - regexp.prototype.flags@^1.5.2: version "1.5.2" resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz" @@ -8296,37 +7362,7 @@ regexp.prototype.flags@^1.5.2: es-errors "^1.3.0" set-function-name "^2.0.1" -req-cwd@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/req-cwd/-/req-cwd-2.0.0.tgz" - integrity sha512-ueoIoLo1OfB6b05COxAA9UpeoscNpYyM+BqYlA7H6LVF4hKGPXQQSSaD2YmvDVJMkk4UDpAHIeU1zG53IqjvlQ== - dependencies: - req-from "^2.0.0" - -req-from@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/req-from/-/req-from-2.0.0.tgz" - integrity sha512-LzTfEVDVQHBRfjOUMgNBA+V6DWsSnoeKzf42J7l0xa/B4jyPOuuF5MlNSmomLNGemWTnV2TIdjSSLnEn95fOQA== - dependencies: - resolve-from "^3.0.0" - -request-promise-core@1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz" - integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== - dependencies: - lodash "^4.17.19" - -request-promise-native@^1.0.5: - version "1.0.9" - resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz" - integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== - dependencies: - request-promise-core "1.1.4" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - -request@^2.34, request@^2.79.0, request@^2.88.0: +request@^2.79.0: version "2.88.2" resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz" integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== @@ -8362,7 +7398,7 @@ require-from-string@^1.1.0: resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz" integrity sha512-H7AkJWMobeskkttHyhTVtS0fxpFLjxhbfMa6Bk3wimP7sdPRGL3EyCg3sAQenFfAe+xQ+oAc85Nmtvq0ROM83Q== -require-from-string@^2.0.0, require-from-string@^2.0.2: +require-from-string@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== @@ -8372,11 +7408,6 @@ require-main-filename@^1.0.1: resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz" integrity sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug== -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - reselect-tree@^1.3.7: version "1.3.7" resolved "https://registry.npmjs.org/reselect-tree/-/reselect-tree-1.3.7.tgz" @@ -8403,17 +7434,29 @@ resolve-cwd@^3.0.0: dependencies: resolve-from "^5.0.0" -resolve-from@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" - integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== - resolve-from@^5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.9.0, resolve@~1.17.0, resolve@1.17.0: +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve.exports@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz" + integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A== + +resolve@^1.1.6, resolve@^1.9.0, resolve@~1.17.0: + version "1.17.0" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz" + integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== + dependencies: + path-parse "^1.0.6" + +resolve@^1.10.0: version "1.17.0" resolved "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz" integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== @@ -8428,11 +7471,6 @@ resolve@~1.19.0: is-core-module "^2.1.0" path-parse "^1.0.6" -resolve@1.1.x: - version "1.1.7" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz" - integrity sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg== - responselike@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz" @@ -8458,10 +7496,10 @@ retry@0.13.1: resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== +rfdc@^1.3.1: + version "1.4.1" + resolved "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz" + integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== rimraf@^2.2.8: version "2.7.1" @@ -8475,15 +7513,15 @@ ripemd160-min@0.0.6: resolved "https://registry.npmjs.org/ripemd160-min/-/ripemd160-min-0.0.6.tgz" integrity sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A== -ripemd160@^2.0.0, ripemd160@^2.0.1, ripemd160@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== +ripemd160@^2.0.0, ripemd160@^2.0.1, ripemd160@^2.0.2, ripemd160@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.3.tgz" + integrity sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA== dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" + hash-base "^3.1.2" + inherits "^2.0.4" -rlp@^2.2.3, rlp@^2.2.4: +rlp@^2.2.4: version "2.2.7" resolved "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz" integrity sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ== @@ -8497,18 +7535,6 @@ run-parallel-limit@^1.1.0: dependencies: queue-microtask "^1.2.2" -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rustbn.js@~0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/rustbn.js/-/rustbn.js-0.2.0.tgz" - integrity sha512-4VlvkRUuCJvr2J6Y0ImW7NvTCriMi7ErOAqWk1y69vAdoNIzCF3yPmgeNzx+RQTLEDFq5sHfscn1MwHxP9hNfA== - safe-array-concat@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz" @@ -8524,7 +7550,12 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@~5.1.0: + version "5.1.2" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== @@ -8543,26 +7574,6 @@ safer-buffer@^2.0.2, safer-buffer@^2.1.0, "safer-buffer@>= 2.1.2 < 3", safer-buf resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sc-istanbul@^0.4.5: - version "0.4.6" - resolved "https://registry.npmjs.org/sc-istanbul/-/sc-istanbul-0.4.6.tgz" - integrity sha512-qJFF/8tW/zJsbyfh/iT/ZM5QNHE3CXxtLJbZsL+CzdJLBsPD7SedJZoUA4d8iAcN2IoMp/Dx80shOOd2x96X/g== - dependencies: - abbrev "1.0.x" - async "1.x" - escodegen "1.8.x" - esprima "2.7.x" - glob "^5.0.15" - handlebars "^4.0.1" - js-yaml "3.x" - mkdirp "0.5.x" - nopt "3.x" - once "1.x" - resolve "1.1.x" - supports-color "^3.1.0" - which "^1.1.1" - wordwrap "^1.0.0" - schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" @@ -8583,12 +7594,12 @@ scrypt-js@2.0.4: integrity sha512-4KsaGcPnuhtCZQCxFxN3GVYIhKFPTdLd8PLC552XwbMndtD0cjRFAhDuuydXQ0h08ZfPgzqe6EKHozpuH74iDw== secp256k1@^4.0.1: - version "4.0.3" - resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz" - integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + version "4.0.4" + resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.4.tgz" + integrity sha512-6JfvwvjUOn8F/jUoBY2Q1v5WY5XS+rj8qSe0v8Y4ezH4InLgTEeOOPQsRll9OV429Pvo6BCHGavIyJfr3TAhsw== dependencies: - elliptic "^6.5.4" - node-addon-api "^2.0.0" + elliptic "^6.5.7" + node-addon-api "^5.0.0" node-gyp-build "^4.2.0" secp256k1@4.0.3: @@ -8605,25 +7616,10 @@ semver@^5.3.0: resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^5.5.0: - version "5.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - semver@^5.6.0: - version "5.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^5.7.0: - version "5.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "5.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@^7.3.4, semver@~7.3.0: version "7.3.8" @@ -8632,39 +7628,34 @@ semver@^7.3.4, semver@~7.3.0: dependencies: lru-cache "^6.0.0" -semver@^7.3.5: - version "7.6.2" - resolved "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz" - integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== - -semver@^7.5.4: - version "7.6.2" - resolved "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz" - integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== +semver@^7.3.5, semver@^7.5.4, semver@^7.6.3: + version "7.7.3" + resolved "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz" + integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== "semver@2 || 3 || 4 || 5": version "5.7.2" resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -send@0.18.0: - version "0.18.0" - resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +send@~0.19.0, send@~0.19.1: + version "0.19.2" + resolved "https://registry.npmjs.org/send/-/send-0.19.2.tgz" + integrity sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg== dependencies: debug "2.6.9" depd "2.0.0" destroy "1.2.0" - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" + fresh "~0.5.2" + http-errors "~2.0.1" mime "1.6.0" ms "2.1.3" - on-finished "2.4.1" + on-finished "~2.4.1" range-parser "~1.2.1" - statuses "2.0.1" + statuses "~2.0.2" sentence-case@^2.1.0: version "2.1.1" @@ -8681,15 +7672,22 @@ serialize-javascript@^6.0.0, serialize-javascript@6.0.0: dependencies: randombytes "^2.1.0" -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== +serialize-javascript@^6.0.2: + version "6.0.2" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + +serve-static@~1.16.2: + version "1.16.3" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz" + integrity sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA== dependencies: - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.18.0" + send "~0.19.1" servify@^0.1.12: version "0.1.12" @@ -8707,7 +7705,7 @@ set-blocking@^2.0.0: resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-function-length@^1.2.1: +set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -8739,26 +7737,19 @@ setimmediate@1.0.4: resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.4.tgz" integrity sha512-/TjEmXQVEzdod/FFskf3o7oOAsGhHf2j1dZqRFbDzq4F3mvvxflIIi4Hd3bLQE9y/CpwqfSQam5JakI/mi3Pog== -setprototypeof@1.2.0: +setprototypeof@~1.2.0, setprototypeof@1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== -sha.js@^2.4.0, sha.js@^2.4.11, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -sha1@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/sha1/-/sha1-1.1.1.tgz" - integrity sha512-dZBS6OrMjtgVkopB1Gmo4RQCDKiZsqcpAQpkV/aaj+FCrCg8r4I4qMkDPQjBgLIxlmu9k4nUbWq6ohXahOneYA== +sha.js@^2.4.0, sha.js@^2.4.11, sha.js@^2.4.12, sha.js@^2.4.8: + version "2.4.12" + resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz" + integrity sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w== dependencies: - charenc ">= 0.0.1" - crypt ">= 0.0.1" + inherits "^2.0.4" + safe-buffer "^5.2.1" + to-buffer "^1.2.0" sha3@^2.1.1: version "2.1.4" @@ -8791,7 +7782,7 @@ shebang-regex@^3.0.0: resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shelljs@^0.8.3: +shelljs@^0.8.4: version "0.8.5" resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== @@ -8800,23 +7791,45 @@ shelljs@^0.8.3: interpret "^1.0.0" rechoir "^0.6.2" -shelljs@^0.8.4: - version "0.8.5" - resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" - integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" + es-errors "^1.3.0" + object-inspect "^1.13.3" -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + +side-channel@^1.0.4, side-channel@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" signal-exit@^3.0.2: version "3.0.7" @@ -8828,6 +7841,11 @@ signal-exit@^3.0.3: resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + simple-concat@^1.0.0: version "1.0.1" resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz" @@ -8842,19 +7860,10 @@ simple-get@^2.7.0: once "^1.3.1" simple-concat "^1.0.0" -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== snake-case@^2.1.0: version "2.1.0" @@ -8874,21 +7883,6 @@ solc@^0.4.20: semver "^5.3.0" yargs "^4.7.1" -solc@0.7.3: - version "0.7.3" - resolved "https://registry.npmjs.org/solc/-/solc-0.7.3.tgz" - integrity sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA== - dependencies: - command-exists "^1.2.8" - commander "3.0.2" - follow-redirects "^1.12.1" - fs-extra "^0.30.0" - js-sha3 "0.8.0" - memorystream "^0.3.1" - require-from-string "^2.0.0" - semver "^5.5.0" - tmp "0.0.33" - solidity-ast@^0.4.26, solidity-ast@^0.4.51: version "0.4.56" resolved "https://registry.npmjs.org/solidity-ast/-/solidity-ast-0.4.56.tgz" @@ -8896,40 +7890,6 @@ solidity-ast@^0.4.26, solidity-ast@^0.4.51: dependencies: array.prototype.findlast "^1.2.2" -solidity-coverage@^0.8.1, solidity-coverage@^0.8.2: - version "0.8.2" - resolved "https://registry.npmjs.org/solidity-coverage/-/solidity-coverage-0.8.2.tgz" - integrity sha512-cv2bWb7lOXPE9/SSleDO6czkFiMHgP4NXPj+iW9W7iEKLBk7Cj0AGBiNmGX3V1totl9wjPrT0gHmABZKZt65rQ== - dependencies: - "@ethersproject/abi" "^5.0.9" - "@solidity-parser/parser" "^0.14.1" - chalk "^2.4.2" - death "^1.1.0" - detect-port "^1.3.0" - difflib "^0.2.4" - fs-extra "^8.1.0" - ghost-testrpc "^0.0.2" - global-modules "^2.0.0" - globby "^10.0.1" - jsonschema "^1.2.4" - lodash "^4.17.15" - mocha "7.1.2" - node-emoji "^1.10.0" - pify "^4.0.1" - recursive-readdir "^2.2.2" - sc-istanbul "^0.4.5" - semver "^7.3.4" - shelljs "^0.8.3" - web3-utils "^1.3.6" - -source-map-support@^0.5.13: - version "0.5.21" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - source-map-support@~0.5.20: version "0.5.21" resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" @@ -8943,13 +7903,6 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@~0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz" - integrity sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA== - dependencies: - amdefine ">=0.0.4" - spark-md5@3.0.2: version "3.0.2" resolved "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.2.tgz" @@ -8981,6 +7934,13 @@ spdx-license-ids@^3.0.0: resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz" integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== +split2@^3.0.0: + version "3.2.2" + resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz" + integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== + dependencies: + readable-stream "^3.0.0" + sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" @@ -9001,27 +7961,10 @@ sshpk@^1.7.0: safer-buffer "^2.0.2" tweetnacl "~0.14.0" -stacktrace-parser@^0.1.10: - version "0.1.10" - resolved "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz" - integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== - dependencies: - type-fest "^0.7.1" - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz" - integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== - -streamsearch@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" - integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== +statuses@~2.0.1, statuses@~2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz" + integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== strict-uri-encode@^1.0.0: version "1.1.0" @@ -9057,6 +8000,15 @@ string-format@^2.0.0: resolved "https://registry.npmjs.org/string-format/-/string-format-2.0.0.tgz" integrity sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA== +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^1.0.1: version "1.0.2" resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" @@ -9066,23 +8018,6 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2", string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0, string-width@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" @@ -9101,6 +8036,15 @@ string-width@^4.2.3: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + string.prototype.trim@^1.2.9: version "1.2.9" resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz" @@ -9129,6 +8073,13 @@ string.prototype.trimstart@^1.0.8: define-properties "^1.2.1" es-object-atoms "^1.0.0" +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" @@ -9143,13 +8094,6 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -9157,6 +8101,13 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: dependencies: ansi-regex "^5.0.1" +strip-ansi@^7.0.1: + version "7.1.2" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz" + integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA== + dependencies: + ansi-regex "^6.0.1" + strip-bom@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" @@ -9181,16 +8132,11 @@ strip-indent@^2.0.0: resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz" integrity sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA== -strip-json-comments@~3.1.1, strip-json-comments@3.1.1: +strip-json-comments@^3.1.1, strip-json-comments@~3.1.1, strip-json-comments@3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-json-comments@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - sublevel-pouchdb@7.3.1: version "7.3.1" resolved "https://registry.npmjs.org/sublevel-pouchdb/-/sublevel-pouchdb-7.3.1.tgz" @@ -9201,13 +8147,6 @@ sublevel-pouchdb@7.3.1: ltgt "2.2.1" readable-stream "1.1.14" -supports-color@^3.1.0: - version "3.2.3" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz" - integrity sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A== - dependencies: - has-flag "^1.0.0" - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" @@ -9222,20 +8161,13 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.0.0, supports-color@8.1.1: +supports-color@^8.0.0, supports-color@^8.1.1, supports-color@8.1.1: version "8.1.1" resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" -supports-color@6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz" - integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== - dependencies: - has-flag "^3.0.0" - swap-case@^1.1.0: version "1.1.2" resolved "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz" @@ -9266,22 +8198,6 @@ symbol-observable@^1.0.3: resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz" integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== -sync-request@^6.0.0: - version "6.1.0" - resolved "https://registry.npmjs.org/sync-request/-/sync-request-6.1.0.tgz" - integrity sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw== - dependencies: - http-response-object "^3.0.1" - sync-rpc "^1.2.1" - then-request "^6.0.0" - -sync-rpc@^1.2.1: - version "1.3.6" - resolved "https://registry.npmjs.org/sync-rpc/-/sync-rpc-1.3.6.tgz" - integrity sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw== - dependencies: - get-port "^3.1.0" - table-layout@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz" @@ -9292,17 +8208,6 @@ table-layout@^1.0.2: typical "^5.2.0" wordwrapjs "^4.0.0" -table@^6.8.0: - version "6.8.1" - resolved "https://registry.npmjs.org/table/-/table-6.8.1.tgz" - integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== - dependencies: - ajv "^8.0.1" - lodash.truncate "^4.4.2" - slice-ansi "^4.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - tapable@^2.1.1, tapable@^2.2.0: version "2.2.1" resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" @@ -9347,22 +8252,12 @@ testrpc@0.0.1: resolved "https://registry.npmjs.org/testrpc/-/testrpc-0.0.1.tgz" integrity sha512-afH1hO+SQ/VPlmaLUFj2636QMeDvPCeQMc/9RBMW0IfjNe9gFD9Ra3ShqYkB7py0do1ZcCna/9acHyzTJ+GcNA== -then-request@^6.0.0: - version "6.0.2" - resolved "https://registry.npmjs.org/then-request/-/then-request-6.0.2.tgz" - integrity sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA== +through2@^4.0.0: + version "4.0.2" + resolved "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz" + integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== dependencies: - "@types/concat-stream" "^1.6.0" - "@types/form-data" "0.0.33" - "@types/node" "^8.0.0" - "@types/qs" "^6.2.31" - caseless "~0.12.0" - concat-stream "^1.6.0" - form-data "^2.2.0" - http-basic "^8.1.1" - http-response-object "^3.0.1" - promise "^8.0.0" - qs "^6.4.0" + readable-stream "3" through2@3.0.2: version "3.0.2" @@ -9395,12 +8290,14 @@ title-case@^2.1.0: no-case "^2.2.0" upper-case "^1.0.3" -tmp@0.0.33: - version "0.0.33" - resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== +to-buffer@^1.2.0, to-buffer@^1.2.1, to-buffer@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.2.tgz" + integrity sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw== dependencies: - os-tmpdir "~1.0.2" + isarray "^2.0.5" + safe-buffer "^5.2.1" + typed-array-buffer "^1.0.3" to-regex-range@^5.0.1: version "5.0.1" @@ -9409,12 +8306,12 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -toidentifier@1.0.1: +toidentifier@~1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== -tough-cookie@^2.3.3, "tough-cookie@^2.3.3 || ^3.0.1 || ^4.0.0", tough-cookie@~2.5.0: +"tough-cookie@^2.3.3 || ^3.0.1 || ^4.0.0", tough-cookie@~2.5.0: version "2.5.0" resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== @@ -9428,14 +8325,14 @@ tr46@~0.0.3: integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== tronweb@^5.3.1: - version "5.3.1" - resolved "https://registry.npmjs.org/tronweb/-/tronweb-5.3.1.tgz" - integrity sha512-JF3HE0ab8KQWJWETCF7UqZHD4uMNNGlEPrquBoObu5bWc8A8eerBV9M2PJq+HcSYBivmEHeBqFgmpMAQP3ofpw== + version "5.3.4" + resolved "https://registry.npmjs.org/tronweb/-/tronweb-5.3.4.tgz" + integrity sha512-79HEnwSAqyCKrT7QB8dkxad0RqYx3dSulEg4dfBQQVwzhRr+AqdE1yz+nfTUpftu54RejqaHjqz40ZzWNy077w== dependencies: "@babel/runtime" "^7.0.0" "@ethersproject/abi" "^5.7.0" "@tronweb3/google-protobuf" "^3.21.2" - axios "^0.26.1" + axios "^1.8.4" bignumber.js "^9.0.1" ethereum-cryptography "^2.0.0" ethers "^6.6.0" @@ -9476,7 +8373,7 @@ ts-essentials@^7.0.1: resolved "https://registry.npmjs.org/ts-essentials/-/ts-essentials-7.0.3.tgz" integrity sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ== -ts-node@*, ts-node@^10.9.2, ts-node@>=8.0.0: +ts-node@^10.9.2: version "10.9.2" resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz" integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== @@ -9495,45 +8392,25 @@ ts-node@*, ts-node@^10.9.2, ts-node@>=8.0.0: v8-compile-cache-lib "^3.0.1" yn "3.1.1" -tslib@^1.11.1, tslib@^1.9.3: - version "1.14.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.1.0: - version "2.6.2" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== - -tslib@^2.3.1: - version "2.6.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz" - integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== - -tslib@^2.4.0: - version "2.6.2" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== - -tslib@^2.5.0: - version "2.6.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz" - integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== +tslib@^2.1.0, tslib@^2.4.0, tslib@2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz" + integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== tslib@~2.4.0: version "2.4.1" resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== -tslib@2.4.0: - version "2.4.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== - -tsort@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/tsort/-/tsort-0.0.1.tgz" - integrity sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw== +tsx@^4.19.3: + version "4.21.0" + resolved "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz" + integrity sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw== + dependencies: + esbuild "~0.27.0" + get-tsconfig "^4.7.5" + optionalDependencies: + fsevents "~2.3.3" tunnel-agent@^0.6.0: version "0.6.0" @@ -9542,48 +8419,11 @@ tunnel-agent@^0.6.0: dependencies: safe-buffer "^5.0.1" -tweetnacl-util@^0.15.1: - version "0.15.1" - resolved "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz" - integrity sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw== - -tweetnacl@^0.14.3: - version "0.14.5" - resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" - integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== - -tweetnacl@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz" - integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== - -tweetnacl@~0.14.0: +tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - -type-detect@^4.0.0, type-detect@^4.0.5: - version "4.0.8" - resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.7.1: - version "0.7.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz" - integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== - type-is@~1.6.18: version "1.6.18" resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" @@ -9597,10 +8437,10 @@ type@^2.7.2: resolved "https://registry.npmjs.org/type/-/type-2.7.2.tgz" integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== -typechain@^8.1.0, typechain@^8.1.1: - version "8.1.1" - resolved "https://registry.npmjs.org/typechain/-/typechain-8.1.1.tgz" - integrity sha512-uF/sUvnXTOVF2FHKhQYnxHk4su4JjZR8vr4mA2mBaRwHTbwh0jIlqARz9XJr1tA0l7afJGvEa1dTSi4zt039LQ== +typechain@^8.1.1, typechain@^8.3.1, typechain@^8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/typechain/-/typechain-8.3.2.tgz" + integrity sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q== dependencies: "@types/prettier" "^2.1.1" debug "^4.3.1" @@ -9613,14 +8453,14 @@ typechain@^8.1.0, typechain@^8.1.1: ts-command-line-args "^2.2.0" ts-essentials "^7.0.1" -typed-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz" - integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== +typed-array-buffer@^1.0.2, typed-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz" + integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" es-errors "^1.3.0" - is-typed-array "^1.1.13" + is-typed-array "^1.1.14" typed-array-byte-length@^1.0.1: version "1.0.1" @@ -9664,11 +8504,6 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - typescript-compare@^0.0.2: version "0.0.2" resolved "https://registry.npmjs.org/typescript-compare/-/typescript-compare-0.0.2.tgz" @@ -9688,7 +8523,7 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" -typescript@*, typescript@^5.3.3, typescript@>=2.7, typescript@>=3.7.0, typescript@>=4.2, typescript@>=4.3.0, typescript@>=4.5.0: +typescript@^5.3.3, typescript@>=2.7, typescript@>=3.7.0, typescript@>=4.2, typescript@>=4.3.0, typescript@>=4.7.0: version "5.3.3" resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz" integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== @@ -9708,11 +8543,6 @@ typical@^5.2.0: resolved "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz" integrity sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg== -uglify-js@^3.1.4: - version "3.17.4" - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz" - integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== - ultron@~1.1.0: version "1.1.1" resolved "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz" @@ -9728,17 +8558,15 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" -undici@^5.14.0: - version "5.21.0" - resolved "https://registry.npmjs.org/undici/-/undici-5.21.0.tgz" - integrity sha512-HOjK8l6a57b2ZGXOcUsI5NLfoTrfmbOl90ixJDl0AEFG4wgHNDQxtZy15/ZQp7HhjkpaGlp/eneMgtsu1dIlUA== - dependencies: - busboy "^1.6.0" +undici-types@~6.19.2: + version "6.19.8" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== -unfetch@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz" - integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== +undici@^6.16.1: + version "6.23.0" + resolved "https://registry.npmjs.org/undici/-/undici-6.23.0.tgz" + integrity sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g== universalify@^0.1.0: version "0.1.2" @@ -9750,7 +8578,7 @@ universalify@^2.0.0: resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unpipe@~1.0.0, unpipe@1.0.0: +unpipe@~1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== @@ -9775,7 +8603,7 @@ upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3: resolved "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz" integrity sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA== -uri-js@^4.2.2, uri-js@^4.4.1: +uri-js@^4.2.2: version "4.4.1" resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== @@ -9787,20 +8615,13 @@ url-set-query@^1.0.0: resolved "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz" integrity sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg== -utf-8-validate@^5.0.2: +utf-8-validate@^5.0.2, utf-8-validate@>=5.0.2: version "5.0.10" resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz" integrity sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ== dependencies: node-gyp-build "^4.3.0" -utf-8-validate@>=5.0.2, utf-8-validate@6.0.3: - version "6.0.3" - resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz" - integrity sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA== - dependencies: - node-gyp-build "^4.3.0" - utf-8-validate@5.0.7: version "5.0.7" resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.7.tgz" @@ -9808,6 +8629,13 @@ utf-8-validate@5.0.7: dependencies: node-gyp-build "^4.3.0" +utf-8-validate@6.0.3: + version "6.0.3" + resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz" + integrity sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA== + dependencies: + node-gyp-build "^4.3.0" + utf8@^3.0.0, utf8@3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz" @@ -9856,11 +8684,6 @@ uuid@^7.0.3: resolved "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz" integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== -uuid@^8.3.2, uuid@8.3.2: - version "8.3.2" - resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - uuid@^9.0.0: version "9.0.1" resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" @@ -9871,6 +8694,11 @@ uuid@2.0.1: resolved "https://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz" integrity sha512-nWg9+Oa3qD2CQzHIP4qKUqwNfzKn8P0LtFhotaCTFchsV7ZfDhAybeip/HZVeMIpZi9JgY1E3nUlwaCmZT1sEg== +uuid@8.3.2: + version "8.3.2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + v8-compile-cache-lib@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz" @@ -9885,9 +8713,9 @@ validate-npm-package-license@^3.0.1: spdx-expression-parse "^3.0.0" validator@^13.7.0: - version "13.9.0" - resolved "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz" - integrity sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA== + version "13.15.26" + resolved "https://registry.npmjs.org/validator/-/validator-13.15.26.tgz" + integrity sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA== value-or-promise@^1.0.12: version "1.0.12" @@ -10134,7 +8962,7 @@ web3-shh@1.10.0: web3-core-subscriptions "1.10.0" web3-net "1.10.0" -web3-utils@^1.0.0-beta.31, web3-utils@^1.3.6, web3-utils@1.10.0: +web3-utils@^1.0.0-beta.31, web3-utils@1.10.0: version "1.10.0" resolved "https://registry.npmjs.org/web3-utils/-/web3-utils-1.10.0.tgz" integrity sha512-kSaCM0uMcZTNUSmn5vMEhlo02RObGNRRCkdX0V9UTAU0+lrvn0HSaudyCo6CQzuXUsnuY2ERJGCGPfeWmv19Rg== @@ -10219,29 +9047,19 @@ which-module@^1.0.0: resolved "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz" integrity sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ== -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" - integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== - -which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: - version "1.1.15" - resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== +which-typed-array@^1.1.15, which-typed-array@^1.1.16, which-typed-array@^1.1.2: + version "1.1.20" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz" + integrity sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg== dependencies: available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - for-each "^0.3.3" - gopd "^1.0.1" + call-bind "^1.0.8" + call-bound "^1.0.4" + for-each "^0.3.5" + get-proto "^1.0.1" + gopd "^1.2.0" has-tostringtag "^1.0.2" -which@^1.1.1, which@^1.3.1, which@1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - which@^2.0.1, which@2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" @@ -10249,13 +9067,6 @@ which@^2.0.1, which@2.0.2: dependencies: isexe "^2.0.0" -wide-align@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - wildcard@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" @@ -10266,16 +9077,6 @@ window-size@^0.2.0: resolved "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz" integrity sha512-UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw== -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" - integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== - wordwrapjs@^4.0.0: version "4.0.1" resolved "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz" @@ -10284,6 +9085,11 @@ wordwrapjs@^4.0.0: reduce-flatten "^2.0.0" typical "^5.2.0" +workerpool@^6.5.1: + version "6.5.1" + resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz" + integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA== + workerpool@6.1.5: version "6.1.5" resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.1.5.tgz" @@ -10294,6 +9100,15 @@ workerpool@6.2.1: resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz" integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^2.0.0: version "2.1.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz" @@ -10302,15 +9117,6 @@ wrap-ansi@^2.0.0: string-width "^1.0.1" strip-ansi "^3.0.1" -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== - dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" - wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" @@ -10320,6 +9126,15 @@ wrap-ansi@^7.0.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + wrappy@1: version "1.0.2" resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" @@ -10332,10 +9147,10 @@ write-stream@~0.4.3: dependencies: readable-stream "~0.0.2" -ws@*, ws@^7.2.0, ws@^7.4.6, ws@7.4.6: - version "7.4.6" - resolved "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz" - integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== +ws@*, ws@^8.18.0, ws@8.18.0: + version "8.18.0" + resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== ws@^3.0.0: version "3.3.3" @@ -10346,15 +9161,20 @@ ws@^3.0.0: safe-buffer "~5.1.0" ultron "~1.1.0" +ws@^7.2.0: + version "7.5.10" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" + integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== + ws@8.13.0: version "8.13.0" resolved "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz" integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== -ws@8.5.0: - version "8.5.0" - resolved "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz" - integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg== +ws@8.17.1: + version "8.17.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz" + integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== xhr-request-promise@^0.1.2: version "0.1.3" @@ -10409,11 +9229,6 @@ y18n@^3.2.1: resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz" integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - y18n@^5.0.5: version "5.0.8" resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" @@ -10424,7 +9239,7 @@ yaeti@^0.0.6: resolved "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz" integrity sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug== -yallist@^3.0.0, yallist@^3.0.2, yallist@^3.1.1: +yallist@^3.0.0, yallist@^3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== @@ -10434,14 +9249,6 @@ yallist@^4.0.0: resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yargs-parser@^13.1.2, yargs-parser@13.1.2: - version "13.1.2" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz" - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - yargs-parser@^2.4.1: version "2.4.1" resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz" @@ -10455,16 +9262,12 @@ yargs-parser@^20.2.2, yargs-parser@20.2.4: resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz" integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== -yargs-unparser@1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz" - integrity sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== - dependencies: - flat "^4.1.0" - lodash "^4.17.15" - yargs "^13.3.0" +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs-unparser@2.0.0: +yargs-unparser@^2.0.0, yargs-unparser@2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz" integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== @@ -10474,21 +9277,18 @@ yargs-unparser@2.0.0: flat "^5.0.2" is-plain-obj "^2.1.0" -yargs@^13.3.0, yargs@13.3.2: - version "13.3.2" - resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz" - integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== +yargs@^17.7.2: + version "17.7.2" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.2" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" yargs@^4.7.1: version "4.8.1" @@ -10543,7 +9343,7 @@ z-schema@~5.0.2: lodash.isequal "^4.5.0" validator "^13.7.0" -zksync-web3@^0.14.3: - version "0.14.3" - resolved "https://registry.npmjs.org/zksync-web3/-/zksync-web3-0.14.3.tgz" - integrity sha512-hT72th4AnqyLW1d5Jlv8N2B/qhEnl2NePK2A3org7tAa24niem/UAaHMkEvmWI3SF9waYUPtqAtjpf+yvQ9zvQ== +zod@^3.23.8: + version "3.25.76" + resolved "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz" + integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==